:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #dbe4f0;
  --brand: #2563eb;
  --brand-deep: #1d4ed8;
  --accent: #14b8a6;
  --warm: #f59e0b;
  --danger: #ef4444;
  --ink: #0f172a;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #ffffff;
  --panel-muted: #f8fafc;
  --nav-bg: rgba(255, 255, 255, 0.88);
  --nav-text: #334155;
  --hero-bg:
    linear-gradient(120deg, rgba(37, 99, 235, 0.13), rgba(20, 184, 166, 0.09) 38%, rgba(245, 158, 11, 0.10)),
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.18), transparent 30%),
    #ffffff;
  --hero-copy: #334155;
  --section-soft: #ffffff;
  --footer-bg: #eef3f8;
  --footer-text: #475569;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

body.site-night {
  --bg: #071014;
  --surface: #ffffff;
  --surface-soft: #0f1d24;
  --text: #e8f7f8;
  --muted: #8ab0b8;
  --line: rgba(119, 241, 255, 0.18);
  --brand: #00d4ff;
  --brand-deep: #47f3d5;
  --accent: #2ee987;
  --ink: #0d171d;
  --panel: rgba(9, 25, 31, 0.78);
  --panel-solid: rgba(9, 25, 31, 0.78);
  --panel-muted: rgba(255, 255, 255, 0.03);
  --nav-bg: rgba(7, 16, 20, 0.84);
  --nav-text: #b7d9de;
  --hero-bg:
    linear-gradient(105deg, rgba(5, 13, 18, 0.94), rgba(7, 27, 33, 0.88) 48%, rgba(15, 45, 41, 0.74)),
    linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(46, 233, 135, 0.10) 42%, rgba(245, 158, 11, 0.14));
  --hero-copy: #bad9df;
  --section-soft: rgba(255, 255, 255, 0.03);
  --footer-bg: #050b0e;
  --footer-text: #9fc1c8;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(20, 184, 166, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 6vw, 88px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.3);
}

.brand-text {
  font-size: 20px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--nav-text);
  font-size: 15px;
  font-weight: 650;
}

.site-theme-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-solid) 82%, transparent);
}

.site-theme-button {
  min-width: 58px;
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.site-theme-button-active {
  color: #ffffff;
  background: var(--brand);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100vh - 72px);
  padding: clamp(52px, 8vw, 96px) clamp(20px, 6vw, 88px) 48px;
  background: var(--hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 212, 255, 0.18) 50%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  opacity: 0.55;
}

.tech-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(46, 233, 135, 0.10) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(720px) rotateX(62deg) translateY(18%);
  transform-origin: center bottom;
  opacity: 0.32;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.95;
  font-weight: 900;
  text-shadow: 0 0 34px rgba(0, 212, 255, 0.36);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 860;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  color: var(--hero-copy);
  font-size: clamp(18px, 2.3vw, 24px);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(119, 241, 255, 0.22);
  border-radius: 8px;
  color: var(--nav-text);
  background: color-mix(in srgb, var(--panel-solid) 70%, transparent);
}

.signal-row strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 760;
}

.primary-action {
  color: #041014;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset, 0 18px 38px rgba(0, 212, 255, 0.24);
}

.secondary-action {
  color: var(--brand-deep);
  background: color-mix(in srgb, var(--panel-solid) 78%, transparent);
  border: 1px solid var(--line);
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.device-stage {
  position: relative;
  width: min(100%, 440px);
  display: flex;
  justify-content: center;
  padding-top: 52px;
}

.hud-card {
  position: absolute;
  z-index: 2;
  width: 184px;
  padding: 14px;
  border: 1px solid rgba(119, 241, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 22, 28, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 26px rgba(0, 212, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hud-card span,
.hud-card strong {
  display: block;
}

.hud-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hud-card strong {
  margin-top: 4px;
  color: #ffffff;
}

.hud-card-top {
  top: 56px;
  left: -28px;
}

.hud-card-bottom {
  right: -18px;
  bottom: 88px;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, 393px);
  height: 852px;
  padding: 0;
  border: 1px solid rgba(119, 241, 255, 0.28);
  border-radius: 34px;
  background: #f6f7f9;
  box-shadow: var(--shadow);
}

.mini-preview-night {
  background: #111827;
}

.ios-status {
  position: relative;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: #000000;
  background: #f5f6f8;
  font-size: 20px;
  font-weight: 900;
}

.mini-preview-night .ios-status {
  color: #f8fafc;
  background: #0b1120;
}

.dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 126px;
  height: 38px;
  border-radius: 999px;
  background: #000000;
  transform: translateX(-50%);
}

.mini-preview-night .dynamic-island {
  background: #020617;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.16);
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-icons i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c5c7cc;
}

.mini-preview-night .status-icons i {
  background: #64748b;
}

.wifi-icon {
  width: 18px;
  height: 13px;
  margin-left: 6px;
  border: 4px solid #000000;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 18px 18px 0 0;
}

.mini-preview-night .wifi-icon {
  border-color: #f8fafc;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
}

.battery-icon {
  position: relative;
  width: 28px;
  height: 14px;
  margin-left: 5px;
  border: 2px solid #000000;
  border-radius: 5px;
}

.mini-preview-night .battery-icon {
  border-color: #f8fafc;
}

.battery-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: #000000;
}

.mini-preview-night .battery-icon::before,
.mini-preview-night .battery-icon::after {
  background: #f8fafc;
}

.battery-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -5px;
  width: 3px;
  height: 6px;
  border-radius: 0 3px 3px 0;
  background: #000000;
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 64px;
  padding: 0 16px;
  border-radius: 0;
  background: #ffffff;
  border: 0;
}

.mini-preview-night .mini-header {
  background: #111827;
}

.mini-logo {
  position: absolute;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 0;
  object-fit: cover;
  flex: 0 0 auto;
}

.mini-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.mini-tab {
  position: relative;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: #9aa3b1;
  font-size: 18px;
  font-weight: 800;
}

.mini-preview-night .mini-tab {
  color: #64748b;
}

.mini-tab-active {
  color: #111827;
  background: transparent;
}

.mini-preview-night .mini-tab-active {
  color: #f8fafc;
}

.mini-tab-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.mini-preview-night .mini-tab-active::after {
  background: #f8fafc;
}

.preview-scroll {
  height: calc(100% - 68px - 64px - 76px);
  overflow: hidden;
  padding-bottom: 18px;
  background: #f6f7f9;
}

.mini-preview-night .preview-scroll {
  background: #0f172a;
}

.mini-search {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 12px 17px;
  padding: 0 15px;
  color: #9aa3b1;
  background: #ffffff;
  border: 1px solid #e7ebf1;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
}

.mini-preview-night .mini-search {
  color: #64748b;
  background: #1e293b;
  border-color: #334155;
  box-shadow: none;
}

.mini-search b {
  width: 18px;
  height: 18px;
  border: 3px solid #2563eb;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.mini-search b::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #2563eb;
  transform: rotate(45deg);
}

.quick-row-preview {
  display: flex;
  gap: 6px;
  margin: 0 0 10px;
  padding: 10px 16px 17px;
  overflow: hidden;
  background: #ffffff;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.mini-preview-night .quick-row-preview {
  background: #111827;
  box-shadow: none;
}

.quick-chip-preview {
  flex: 0 0 auto;
  min-width: 70px;
  min-height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #7b8492;
  background: #ffffff;
  border: 1px solid #e7ebf1;
  font-size: 15px;
  font-weight: 800;
}

.mini-preview-night .quick-chip-preview {
  color: #94a3b8;
  background: #1e293b;
  border-color: #334155;
}

.quick-chip-preview-active {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
}

.mini-preview-night .quick-chip-preview-active {
  color: #0f172a;
  background: #f8fafc;
  border-color: #f8fafc;
}

.feed-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 8px;
  padding: 0 10px 110px;
}

.note-card-preview {
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 10px 10px;
  border-radius: 14px;
  color: #111827;
  box-shadow: none;
}

.mini-preview-night .note-card-preview {
  color: #f8fafc;
}

.cover-blue {
  background: #eef7ff;
}

.cover-green {
  background: #effbf5;
}

.cover-warm {
  background: #fff7ec;
}

.mini-preview-night .cover-blue {
  background: #1e3a5f;
}

.mini-preview-night .cover-green {
  background: #12392f;
}

.mini-preview-night .cover-warm {
  background: #3f2a16;
}

.note-card-preview strong {
  display: -webkit-box;
  min-height: 104px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.52;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.mini-preview-night .note-card-preview strong {
  color: #f8fafc;
}

.note-tags-preview,
.note-foot-preview {
  display: flex;
  align-items: center;
  gap: 6px;
}

.note-tags-preview {
  justify-content: space-between;
  margin-top: 18px;
}

.note-tags-preview span {
  padding: 0;
  border-radius: 0;
  color: #a4afbf;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.mini-preview-night .note-tags-preview span {
  color: #94a3b8;
}

.note-tags-preview b {
  color: #ef4444;
  font-size: 15px;
}

.mini-preview-night .note-tags-preview b {
  color: #fb7185;
}

.note-foot-preview {
  margin-top: 10px;
  color: #8b96a6;
  font-size: 12px;
  white-space: nowrap;
}

.mini-preview-night .note-foot-preview {
  color: #94a3b8;
}

.avatar-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.avatar-yellow {
  background: radial-gradient(circle at 35% 35%, #fff7ad, #f59e0b 58%, #ffffff 60%);
}

.avatar-green {
  background: radial-gradient(circle at 35% 35%, #fde68a, #84cc16 58%, #ef4444 60%);
}

.avatar-sky {
  background: radial-gradient(circle at 35% 35%, #ffffff, #60a5fa 58%, #dbeafe 60%);
}

.avatar-pink {
  background: radial-gradient(circle at 35% 35%, #fce7f3, #f472b6 58%, #111827 60%);
}

.mini-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #eef1f4;
}

.mini-preview-night .mini-tabbar {
  background: #111827;
  border-top-color: #1f2937;
}

.tabbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #7b8492;
  font-size: 13px;
  font-weight: 700;
}

.mini-preview-night .tabbar-item {
  color: #94a3b8;
}

.tabbar-item i {
  display: block;
  width: 26px;
  height: 26px;
  font-style: normal;
}

.tabbar-active {
  color: #e69a00;
}

.mini-preview-night .tabbar-active {
  color: #fbbf24;
}

.home-icon {
  position: relative;
  border: 2px solid currentColor;
  border-top: 0;
}

.home-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -9px;
  width: 18px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.publish-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50%;
  color: #ffffff;
  background: #9ca3af;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.user-icon {
  position: relative;
  border: 2px solid #000000;
  border-radius: 50%;
}

.mini-preview-night .user-icon,
.mini-preview-night .user-icon::after {
  border-color: #f8fafc;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -13px;
  height: 18px;
  border: 2px solid #000000;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.section {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 88px);
}

.section-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.rule-block,
.contact-panel,
.info-list {
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--warm));
}

.card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(119, 241, 255, 0.24);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.service-card p,
.rule-block p,
.about-copy p,
.contact-panel p,
.info-list dd {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #0ea5e9);
  font-size: 14px;
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: var(--accent);
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
  background: var(--warm);
}

.community-section {
  background: var(--section-soft);
}

.rules-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rule-block {
  padding: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.about-copy p {
  font-size: 18px;
}

.info-list {
  display: grid;
  margin: 0;
  overflow: hidden;
}

.info-list div {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--text);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
}

.contact-section {
  background: var(--section-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.contact-panel div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.contact-panel div:last-child {
  border-right: 0;
}

.contact-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-panel p {
  margin-bottom: 0;
}

.contact-panel a {
  color: var(--brand);
  font-weight: 760;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  min-height: 96px;
  padding: 26px 20px;
  color: var(--footer-text);
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
  font-size: 14px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand);
}

.legal-page {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 6vw, 88px);
}

.legal-document {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-document h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 68px);
}

.legal-document h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.legal-document section {
  margin-top: 34px;
}

.legal-lead,
.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
}

.legal-lead {
  color: var(--text);
  font-size: 19px;
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-document li {
  margin: 8px 0;
}

@media (max-width: 980px) {
  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .rules-layout,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-panel div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 104px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .phone-shell {
    min-height: 0;
    border-radius: 24px;
  }

  .service-grid,
  .rules-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
