*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --brand:       #000000;
  --brand-dark:  #1a1a1a;
  --brand-light: #f0f0f0;
  --brand-mid:   #d0d0d0;
  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-hero:     #f0f9ff;
  --border:      #e2e8f0;
  --border-soft: #f1f5f9;
  --nav-bg:      rgba(255,255,255,0.92);
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.10);
  --font:        'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --green:       #22c55e;
  --green-light: #dcfce7;
  --green-dark:  #15803d;
}
[data-theme="dark"] {
  --brand:       #ffffff;
  --brand-dark:  #e0e0e0;
  --brand-mid:   rgba(255,255,255,0.20);
  --bg:          #080a0f;
  --bg-soft:     #0e1016;
  --bg-hero:     #080c14;
  --text:        #f0f9ff;
  --text-2:      #94a3b8;
  --text-3:      #475569;
  --border:      rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.04);
  --nav-bg:      rgba(12, 14, 20, 0.85);
  --brand-light: #1a1d27;
  --shadow:      0 1px 3px rgba(0,0,0,.3), 0 4px 16px rgba(0,0,0,.25);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.4);
  --footer-bg:   #0a0d08;
  --green-light: rgba(34,197,94,.12);
}

/* Dark mode text overrides */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] .hero h1,
[data-theme="dark"] .section-head h2,
[data-theme="dark"] .split-text h2 {
  color: var(--text) !important;
}
[data-theme="dark"] .hero {
  background: linear-gradient(160deg, #0d1520 0%, #0a0f1a 60%);
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .val-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .product-strip-card,
[data-theme="dark"] .tl-card,
[data-theme="dark"] .stat-chip {
  background: #0d0f16;
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .pill {
  background: #1e293b !important;
  color: #94a3b8 !important;
}

body {
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; transition: background .2s, color .2s;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-light); color: var(--brand-dark);
  font-size: .78rem; font-weight: 600; padding: 5px 14px;
  border-radius: 100px; letter-spacing: .01em;
}
.text-brand { color: var(--brand); }
.text-green { color: var(--green); }

/* ══ NAV ══ */
.nav {
  position: sticky; top: 0; z-index: 200; width: 100%;
  background: var(--nav-bg); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
}
.nav .container.nav-inner {
  width: 100%; max-width: 1160px; margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px; box-sizing: border-box;
}
.nav-inner { display: grid; grid-template-columns: minmax(0, 5fr) auto minmax(0, 7fr); align-items: center; height: 76px; padding-left: 24px; padding-right: 24px; }
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; line-height: 1; justify-self: start; }
.nav-logo svg { display: block; }
[data-theme="dark"] .logo-text-dark { fill: #f0f9ff !important; }
.nav-links { display: flex; align-items: center; gap: 4px; justify-content: center; justify-self: center; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-2); padding: 6px 12px; border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-soft); }
.nav-badge { background: #22c55e; color: #fff; font-size: .6rem; font-weight: 700; padding: 1px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: .05em; vertical-align: middle; margin-left: 4px; }
.nav-item { position: relative; list-style: none; }
.nav-item > button { font-family: var(--font); font-size: .88rem; font-weight: 500; color: var(--text-2); padding: 6px 12px; border-radius: var(--radius-sm); background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color .15s, background .15s; }
.nav-item > button:hover, .nav-item.open > button { color: var(--text); background: var(--bg-soft); }
.nav-item > button svg { transition: transform .2s; }
.nav-item.open > button svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.10); min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 200; }
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); transition: background .15s; }
.dropdown-item:hover { background: var(--bg-soft); }
.dropdown-item-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.dropdown-item-name { font-size: .86rem; font-weight: 700; color: var(--text); }
.dropdown-item-desc { font-size: .76rem; color: var(--text-3); margin-top: 1px; line-height: 1.4; }
.dropdown-badge { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 1px 5px; border-radius: 4px; vertical-align: middle; margin-left: 5px; }
.dropdown-badge.live { background: #22c55e; color: #fff; }
.dropdown-badge.soon { background: var(--bg-soft); color: var(--text-3); border: 1px solid var(--border); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; justify-content: flex-end; justify-self: end; }
.theme-toggle { height: 38px; padding: 0 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; line-height: 1; transition: border-color .15s, background .15s; flex-shrink: 0; color: var(--text); }
.theme-toggle:hover { border-color: var(--brand); background: var(--brand-light); }
.btn-nav-ghost { height: 38px; display: inline-flex; align-items: center; font-size: .88rem; font-weight: 600; color: var(--text); padding: 0 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: border-color .15s, background .15s; }
.btn-nav-ghost:hover { border-color: var(--brand); background: var(--brand-light); }
.btn-nav-cta { font-size: .88rem; font-weight: 700; color: #fff; background: var(--brand); padding: 9px 22px; border-radius: var(--radius-sm); transition: background .15s, transform .15s; display: inline-flex; align-items: center; gap: 6px; }
[data-theme="dark"] .btn-nav-cta { color: #0a0f1a; }
.btn-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-hamburger { display: none; width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg-soft); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; transition: border-color .15s; flex-shrink: 0; }
.nav-hamburger:hover { border-color: var(--brand); }
.nav-hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); z-index: 199; padding: 16px 24px 24px; box-shadow: var(--shadow-lg); transform: translateY(-8px); opacity: 0; transition: transform .25s, opacity .25s; }
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-menu-links a { font-size: .95rem; font-weight: 600; color: var(--text-2); padding: 12px 14px; border-radius: var(--radius-sm); transition: background .15s, color .15s; }
.mobile-menu-links a:hover { background: var(--bg-soft); color: var(--text); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.mobile-menu-actions .btn-nav-ghost, .mobile-menu-actions .btn-nav-cta { text-align: center; justify-content: center; padding: 12px; font-size: .95rem; }
.mobile-theme-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1.5px solid var(--border); }
.mobile-theme-label { font-size: .88rem; font-weight: 600; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.mobile-theme-toggle { display: flex; gap: 4px; background: var(--border); border-radius: 6px; padding: 3px; }
.mtt-btn { font-family: var(--font); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; border: none; cursor: pointer; background: none; color: var(--text-3); transition: background .15s, color .15s; }
.mtt-btn.active { background: var(--bg); color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,.1); }

/* ══ SECTION BASE ══ */
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .pill { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.section-head p { font-size: 1rem; color: var(--text-2); line-height: 1.7; }

/* ══ HERO ══ */
.hero { background: linear-gradient(160deg, var(--bg-hero) 0%, var(--bg) 60%); padding: 88px 0 80px; overflow: hidden; }
.hero:not(:has(.hero-content)) { text-align: center; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 20px; color: var(--text); }
.hero-sub { font-size: 1.1rem; color: var(--text-2); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.hero:not(:has(.hero-content)) .hero-sub { margin: 0 auto 44px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; justify-content: flex-start; }
.hero:not(:has(.hero-content)) .hero-btns { justify-content: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; font-weight: 700; font-size: .95rem; padding: 13px 28px; border-radius: var(--radius-sm); box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: background .15s, transform .15s, box-shadow .15s; }
[data-theme="dark"] .btn-primary { color: #0a0f1a; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); color: var(--text); font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); transition: border-color .15s, background .15s; }
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-light); }

.fhero-visual { position: relative; }
.fhero-panel { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.fhero-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 11px 16px; display: flex; align-items: center; gap: 6px; }
.fhero-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.fhero-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--border); }
.fhero-row-left { display: flex; align-items: center; gap: 10px; }
.fhero-row-icon { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fhero-row-name { font-size: .84rem; font-weight: 700; color: var(--text); }
.fhero-row-desc { font-size: .72rem; color: var(--text-3); margin-top: 1px; }
.fhero-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 8px; border-radius: 4px; }
.ft-on { background: #dcfce7; color: #15803d; }
.ft-auto { background: var(--brand-light); color: var(--text-2); }
.fhero-float { position: absolute; right: -16px; bottom: 40px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: float1 4s ease-in-out infinite; }
.fhero-float-icon { width: 32px; height: 32px; border-radius: 8px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; }
.fhero-float > div { display: flex; flex-direction: column; line-height: 1.2; }
.fhero-float strong { font-size: .9rem; color: var(--text); }
.fhero-float span { font-size: .72rem; color: var(--text-3); }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
[data-theme="dark"] .fhero-panel { background: #0d0f16; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .fhero-bar, [data-theme="dark"] .fhero-row { background: #12141c; border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .ft-on { background: rgba(34,197,94,.15); color: #4ade80; }
[data-theme="dark"] .ft-auto { background: rgba(255,255,255,.08); color: var(--text-3); }
[data-theme="dark"] .fhero-float { background: #0d0f16; border-color: rgba(255,255,255,.1); }

.hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--text-3); }
.hero-meta-item svg { color: var(--green); }

/* ══ FEATURES GRID ══ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* ══ SPLIT ══ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; overflow: visible; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text .pill { margin-bottom: 16px; }
.split-text h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.split-text p { font-size: .95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.split-text p:last-child { margin-bottom: 0; }
.split-text strong { color: var(--text); }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; color: var(--text-2); }
.check-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
[data-theme="dark"] .check-icon { color: #0a0f1a; }

/* mock panel */
.mock-panel { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
[data-theme="dark"] .mock-panel { background: var(--bg-soft); }
.mock-panel-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
.mpb-dot { width: 10px; height: 10px; border-radius: 50%; }
.mpb-dot.r { background: #f87171; } .mpb-dot.y { background: #fbbf24; } .mpb-dot.g { background: #4ade80; }
.mpb-title { font-size: .75rem; font-weight: 600; color: var(--text-3); margin-left: 6px; }
.mock-panel-body { padding: 24px; }
.mock-rows { display: flex; flex-direction: column; gap: 10px; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: 1px solid var(--border-soft);
}
.mock-row-left { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600; color: var(--text); }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.green { background: #22c55e; }
.mock-dot.blue  { background: #3b82f6; }
.mock-dot.amber { background: #f59e0b; }
.mock-dot.purple{ background: #a855f7; }
.mock-tag { font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.mock-tag.active { background: #dcfce7; color: #15803d; }
.mock-tag.managed { background: #e0f2fe; color: #075985; }
.mock-tag.secure { background: #fef9c3; color: #854d0e; }
.mock-tag.synced { background: #ede9fe; color: #6d28d9; }

/* ══ COMPARISON TABLE ══ */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.compare-table th {
  padding: 18px 24px; text-align: left; font-size: .78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3);
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: 16px 24px; font-size: .9rem; color: var(--text-2);
  border-bottom: 1px solid var(--border-soft); vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.col-pp { background: rgba(0,0,0,.02); }
[data-theme="dark"] .col-pp { background: rgba(255,255,255,.03); }
.compare-table th.col-pp { color: var(--text); }
.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no  { color: var(--text-3); font-size: 1rem; }
.check-partial { font-size: .78rem; font-weight: 600; color: var(--text-3); }

/* ══ PRODUCT CHIPS ══ */
.products-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-strip-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.product-strip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--brand-mid); }
.product-strip-card.featured { border-color: var(--brand); }
.psc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.psc-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.psc-badge { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 100px; }
.psc-badge.live { background: #dcfce7; color: #15803d; }
.psc-badge.soon { background: var(--bg-soft); color: var(--text-3); border: 1px solid var(--border); }
.psc-name { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.psc-desc { font-size: .84rem; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.psc-link { font-size: .82rem; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: 5px; transition: gap .15s; }
.psc-link:hover { gap: 8px; }

/* ══ STATS ══ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-chip {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow); text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.stat-chip:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.stat-num { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; display: block; }
.stat-lbl { font-size: .72rem; font-weight: 600; color: var(--text-3); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; display: block; }

/* terminal */
.terminal { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
[data-theme="dark"] .terminal { background: var(--bg-soft); }
.terminal-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.r { background: #f87171; } .t-dot.y { background: #fbbf24; } .t-dot.g { background: #4ade80; }
.t-title { font-size: .72rem; font-weight: 600; color: var(--text-3); margin-left: 6px; font-family: monospace; }
.terminal-body { padding: 24px; font-family: var(--mono); font-size: .8rem; line-height: 1.9; }
.t-line { display: flex; gap: 10px; }
.t-prompt { color: #22c55e; flex-shrink: 0; }
.t-cmd { color: var(--text); }
.t-out { color: var(--text-3); padding-left: 18px; }
.t-green { color: #22c55e; }
.t-cursor { display: inline-block; width: 7px; height: 14px; background: var(--text); vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* cards */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vm-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; transition: box-shadow .2s, transform .2s; }
.vm-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vm-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: 14px; }
.vm-card h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.25; color: var(--text); margin-bottom: 16px; }
.vm-card p { font-size: .9rem; color: var(--text-2); line-height: 1.8; }
.val-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.val-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.val-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.val-title { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.val-desc { font-size: .84rem; color: var(--text-2); line-height: 1.65; }
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tl-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.tl-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tl-year { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--brand); margin-bottom: 10px; line-height: 1; }
.tl-title { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tl-desc { font-size: .84rem; color: var(--text-2); line-height: 1.65; }

/* ══ MONEY VISUAL ══ */
.money-visual { position: relative; height: 420px; }
.dash-card {
  position: absolute; right: 0; bottom: 0;
  width: 260px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px;
}
.dash-label { font-size: .72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.dash-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 4px; }
.dash-amount span { font-size: 1.2rem; color: var(--text-3); font-weight: 600; }
.dash-change { font-size: .78rem; font-weight: 700; color: var(--green); margin-bottom: 20px; }
.dash-divider { height: 1px; background: var(--border-soft); margin-bottom: 16px; }
.dash-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.dash-row:last-child { margin-bottom: 0; }
.dash-row-label { font-size: .8rem; color: var(--text-2); font-weight: 500; }
.dash-row-val { font-size: .84rem; font-weight: 700; color: var(--text); }
.dash-row-val.green { color: var(--green); }
.dash-mini-bar { height: 6px; background: var(--border); border-radius: 3px; margin-top: 12px; overflow: hidden; }
.dash-mini-bar-fill { height: 100%; background: var(--green); border-radius: 3px; width: 72%; }
.payout-card {
  position: absolute;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.10);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  min-width: 210px;
}
.payout-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
[data-theme="dark"] .payout-icon { background: rgba(34,197,94,.15); color: var(--green); }
.payout-amount { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.payout-label { font-size: .75rem; color: var(--text-3); font-weight: 500; }
.pc-1 { top: 16px; left: 0; animation: float1 4s ease-in-out infinite; }
.pc-2 { top: 130px; left: 40px; animation: float2 5s ease-in-out infinite; }
.pc-3 { top: 260px; left: 10px; animation: float1 4.5s ease-in-out infinite 1s; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ══ COMMISSION HIGHLIGHT ══ */
.commission-highlight {
  background: var(--brand); border-radius: var(--radius);
  padding: 64px 56px; text-align: center;
}
.ch-num {
  font-size: clamp(5rem, 12vw, 8rem); font-weight: 800;
  letter-spacing: -0.05em; line-height: .9; color: #fff; margin-bottom: 12px;
}
[data-theme="dark"] .ch-num { color: #0a0f1a; }
.ch-sub { font-size: 1.15rem; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 40px; }
[data-theme="dark"] .ch-sub { color: rgba(10,15,26,.65); }
.ch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.15); border-radius: 12px; overflow: hidden; max-width: 720px; margin: 0 auto; }
[data-theme="dark"] .ch-grid { background: rgba(10,15,26,.25); }
.ch-item { background: rgba(255,255,255,.08); padding: 28px 20px; text-align: center; }
[data-theme="dark"] .ch-item { background: rgba(10,15,26,.08); }
.ch-item-num { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 4px; }
[data-theme="dark"] .ch-item-num { color: #0a0f1a; }
.ch-item-lbl { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
[data-theme="dark"] .ch-item-lbl { color: rgba(10,15,26,.55); }

/* ══ HOW IT WORKS ══ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px; background: var(--border); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
[data-theme="dark"] .step-num { color: #0a0f1a; }
.step-card h3 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ══ CALCULATOR ══ */
.calc-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto;
}
.calc-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 28px; text-align: center; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.calc-field label { font-size: .78rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 8px; }
.calc-field input, .calc-field select {
  width: 100%; padding: 12px 16px; font-family: var(--font); font-size: .95rem; font-weight: 600;
  color: var(--text); background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); outline: none; transition: border-color .15s;
  appearance: none;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--brand); }
.calc-result {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px; text-align: center;
}
.calc-result-label { font-size: .78rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.calc-result-monthly { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.calc-result-monthly .currency { font-size: 1.5rem; color: var(--text-3); }
.calc-result-annually { font-size: .9rem; color: var(--text-3); font-weight: 500; margin-top: 6px; }
.calc-result-annually strong { color: var(--green); font-weight: 700; }

/* ══ FAQ ══ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.faq-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.faq-item h3 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.faq-item p { font-size: .875rem; color: var(--text-2); line-height: 1.75; }

/* ══ CTA BANNER ══ */
.cta-banner { background: var(--brand); border-radius: var(--radius); padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 10px; }
[data-theme="dark"] .cta-banner h2 { color: #0a0f1a; }
.cta-banner p { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 400px; }
[data-theme="dark"] .cta-banner p { color: rgba(10,15,26,.65); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0a0f1a; font-weight: 700; font-size: .95rem; padding: 14px 32px; border-radius: var(--radius-sm); transition: background .15s, transform .15s; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-1px); }

/* ══ FOOTER ══ */
.footer { background: var(--footer-bg, #0f172a); color: rgba(255,255,255,.65); padding: 64px 0 0; }
[data-theme="dark"] .footer { background: var(--footer-bg, #0a0d08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 28px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 16px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-bottom-links a:hover { color: #fff; }

/* ══ SUPPORT PAGE ══ */
.support-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.support-left {
  background: #0a0a0a;
  padding: 56px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.support-left::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.support-left::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.left-logo { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 800; color: #f0f9ff; letter-spacing: -.02em; }
.left-logo-icon { width: 36px; height: 36px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.left-content { position: relative; z-index: 1; }
.left-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.left-content h1 { font-size: clamp(1.9rem, 2.8vw, 2.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; color: #f0f9ff; margin-bottom: 16px; }
.left-content h1 span { color: rgba(255,255,255,.5); }
.left-content > p { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 380px; margin-bottom: 36px; }
.recommend-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 32px;
}
.recommend-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.recommend-text h3 { font-size: .86rem; font-weight: 700; color: #f0f9ff; margin-bottom: 4px; }
.recommend-text p { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.6; margin: 0; }
.recommend-link { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.7); margin-top: 8px; transition: gap .15s, color .15s; }
.recommend-link:hover { gap: 8px; color: #fff; }
.response-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.response-chip { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 14px; }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.rc-label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); }
.rc-val { font-size: .82rem; font-weight: 800; color: #f0f9ff; margin-top: 1px; }
.support-right { background: var(--bg); padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.form-header { margin-bottom: 36px; }
.form-header h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 6px; }
.form-header p { font-size: .86rem; color: var(--text-3); }
.support-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .78rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }
.field label span { color: #dc2626; margin-left: 2px; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: .9rem; color: var(--text);
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px;
  outline: none; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
  background: var(--bg);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { background: var(--text-3); cursor: not-allowed; transform: none; box-shadow: none; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.submit-btn.loading .spinner { display: block; }
.submit-btn.loading .btn-text { display: none; }
.form-feedback {
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: .86rem; font-weight: 600; line-height: 1.5;
  display: none; align-items: center; gap: 10px; margin-bottom: 4px;
}
.form-feedback.show { display: flex; }
.form-feedback.success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.form-feedback.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.form-note { font-size: .75rem; color: var(--text-3); margin-top: 4px; display: flex; align-items: center; gap: 6px; }

/* ══ DOCS LAYOUT ══ */
.docs-layout { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; }
.docs-sidebar {
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  background: var(--bg-soft); border-right: 1.5px solid var(--border); padding: 32px 0;
}
.sidebar-header { padding: 0 20px 24px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-weight: 800; font-size: .95rem; color: var(--text); }
.sidebar-logo-icon { width: 32px; height: 32px; border-radius: 8px; background: #000; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-page-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 4px; }
.sidebar-updated { display: inline-flex; align-items: center; gap: 4px; font-size: .68rem; font-weight: 600; color: var(--text-3); background: var(--brand-light); padding: 2px 8px; border-radius: 100px; margin-top: 4px; }
.sidebar-section { padding: 0 12px; margin-bottom: 8px; }
.sidebar-section-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); padding: 8px 10px 4px; }
.sidebar-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; color: var(--text-2);
  padding: 7px 10px; border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  cursor: pointer; border: none; background: none; width: 100%; text-align: left;
}
.sidebar-link:hover { background: var(--border); color: var(--text); }
.sidebar-link.active { background: var(--brand); color: #fff; font-weight: 600; }
.sidebar-link svg { flex-shrink: 0; opacity: .5; }
.sidebar-link.active svg { opacity: 1; }
.sidebar-footer { padding: 20px; margin-top: 20px; border-top: 1px solid var(--border); }
.sidebar-footer a { font-size: .78rem; color: var(--text-3); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.sidebar-footer a:hover { color: var(--text); }
.docs-main { padding: 48px 64px; max-width: 820px; }
.doc-article { display: none; }
.doc-article.active { display: block; }
.doc-hero { padding-bottom: 32px; border-bottom: 1.5px solid var(--border); margin-bottom: 40px; }
.doc-category { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 12px; }
.doc-hero h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--text); margin-bottom: 12px; }
.doc-hero p { font-size: .95rem; color: var(--text-2); line-height: 1.75; max-width: 620px; }
.doc-hero .effective-date { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: var(--text-3); background: var(--bg-soft); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; margin-top: 14px; }
.doc-section { margin-bottom: 48px; }
.doc-section h2 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.doc-section h2 .h2-num { width: 26px; height: 26px; border-radius: 7px; background: var(--brand); color: #fff; font-size: .7rem; font-weight: 800; font-family: var(--mono); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-section p { font-size: .9rem; color: var(--text-2); line-height: 1.85; margin-bottom: 12px; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section strong { color: var(--text); font-weight: 700; }
.doc-list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.doc-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-2); line-height: 1.7; }
.doc-list-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 9px; }
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .86rem; }
.data-table th { text-align: left; padding: 10px 14px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); background: var(--bg-soft); border-bottom: 1.5px solid var(--border); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-soft, #f1f5f9); color: var(--text-2); vertical-align: top; line-height: 1.6; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.doc-highlight {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm); padding: 16px 18px;
  margin: 20px 0; font-size: .86rem; color: var(--text-2); line-height: 1.75;
  display: flex; gap: 12px; align-items: flex-start;
}
.doc-highlight svg { color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.doc-highlight.warn { border-left-color: #f59e0b; background: #fffbeb; }
.doc-highlight.warn svg { color: #f59e0b; }
.doc-highlight.green { border-left-color: var(--green); background: var(--green-light); }
.doc-highlight.green svg { color: var(--green-dark); }
.doc-divider { height: 1.5px; background: var(--border); margin: 40px 0; }
.tag-green { display: inline-flex; align-items: center; gap: 4px; background: var(--green-light); color: var(--green-dark); font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.tag-black { display: inline-flex; align-items: center; gap: 4px; background: var(--brand-light); color: var(--text); font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.uptime-hero { background: var(--brand); border-radius: var(--radius); padding: 48px 40px; text-align: center; margin: 24px 0; }
.uptime-num { font-size: clamp(4rem, 10vw, 6rem); font-weight: 800; letter-spacing: -0.05em; color: #fff; line-height: 1; margin-bottom: 8px; font-family: var(--mono); }
.uptime-label { font-size: .95rem; color: rgba(255,255,255,.65); font-weight: 600; margin-bottom: 32px; }
.uptime-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.15); border-radius: 10px; overflow: hidden; max-width: 480px; margin: 0 auto; }
.uptime-stat { background: rgba(255,255,255,.08); padding: 20px 16px; }
.uptime-stat-num { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 2px; font-family: var(--mono); }
.uptime-stat-lbl { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.contact-box { background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-text { flex: 1; }
.contact-text h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-text p { font-size: .84rem; color: var(--text-2); }
.contact-btn { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 700; color: #fff; background: var(--brand); padding: 10px 22px; border-radius: var(--radius-sm); transition: background .15s; white-space: nowrap; }
.contact-btn:hover { background: var(--brand-dark); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .support-page { grid-template-columns: 1fr; }
  .support-left { padding: 40px 32px; min-height: auto; }
  .support-right { padding: 40px 32px; }
}
@media (max-width: 900px) {
  .docs-layout { grid-template-columns: 220px 1fr; }
  .docs-main { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .nav-inner { display: flex; justify-content: space-between; }
  .nav-links { display: none !important; }
  .btn-nav-ghost, .btn-nav-cta, .theme-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .products-strip { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .fhero-visual { display: none; }
  .money-visual { height: 300px; margin-top: 20px; }
  .dash-card { width: 220px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .calc-grid { grid-template-columns: 1fr; }
  .ch-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 28px; flex-direction: column; }
  .commission-highlight { padding: 40px 24px; }
}
@media (max-width: 700px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: relative; height: auto; border-right: none; border-bottom: 1.5px solid var(--border); }
  .docs-main { padding: 28px 20px; }
  .uptime-stats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .support-left, .support-right { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
