/* ============================================================
   opencontact — AURORA SPLIT
   Light, soft aurora mesh · violet primary + coral accent
   Plus Jakarta Sans / JetBrains Mono · pill buttons
   Theming: [data-theme] · accent vars (violet default)
   Glow   : [data-glow="on"|"off"]
   ============================================================ */

:root {
  --accent:   #5546f2;   /* violet primary (tweakable) */
  --accent-2: #9b5bff;   /* violet/lilac for gradients (tweakable) */
  --coral:    #ff5c39;
  --green:    #16a06b;
  --on-accent: #ffffff;

  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --maxw: 1200px;

  --radius: 16px;
  --radius-lg: 22px;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- LIGHT (default) ---------- */
html[data-theme="light"] {
  --bg:    #ffffff;
  --bg-1:  #faf9ff;
  --bg-2:  #ffffff;
  --bg-3:  #f4f2ff;
  --bg-4:  #ece9ff;
  --line:  #ebe9f6;
  --line-2:#f1eff9;
  --fg:    #14121f;
  --fg-2:  #4a4760;
  --fg-3:  #7c7993;
  --fg-4:  #a8a5bd;
  --card:  #ffffff;
  --accent-soft: color-mix(in srgb, var(--accent) 12%, #ffffff);
  --green-soft: #e2f6ee;
  --grid-line: rgba(85,70,242,0.045);
  --glow-a: color-mix(in srgb, var(--accent) 42%, transparent);
  --card-shadow: 0 40px 80px -40px color-mix(in srgb, var(--accent) 40%, transparent);
  --aurora-1: #cdc7ff; --aurora-2: #bfe2ff; --aurora-3: #ffd9cf;
  --aurora-op: .62;
  color-scheme: light;
}

/* ---------- DARK (deep plum aurora) ---------- */
html[data-theme="dark"] {
  --bg:    #0e0b1c;
  --bg-1:  #140f28;
  --bg-2:  #181235;
  --bg-3:  #1d1640;
  --bg-4:  #251c52;
  --line:  #2a2150;
  --line-2:#221a44;
  --fg:    #f5f3ff;
  --fg-2:  #b9b2d8;
  --fg-3:  #837bab;
  --fg-4:  #5a527e;
  --card:  #161030;
  --accent-soft: color-mix(in srgb, var(--accent) 22%, #161030);
  --green-soft: color-mix(in srgb, var(--green) 20%, #161030);
  --grid-line: rgba(255,255,255,0.04);
  --glow-a: color-mix(in srgb, var(--accent) 50%, transparent);
  --card-shadow: 0 44px 90px -46px rgba(0,0,0,.8);
  --aurora-1: #6a52ff; --aurora-2: #3f7bff; --aurora-3: #ff7a52;
  --aurora-op: .34;
  color-scheme: dark;
}

html[data-glow="off"] { --glow-a: transparent; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}
h1, h2, h3 { letter-spacing: -0.03em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--mono); }
::selection { background: color-mix(in srgb, var(--accent) 22%, transparent); color: var(--fg); }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--pill);
  padding: 6px 13px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.section { padding: 112px 0; position: relative; }
.section-head { max-width: 64ch; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 800;
  margin-top: 20px;
}
.section-head p {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 56ch;
}
.grad-text {
  background: linear-gradient(115deg, var(--accent), var(--accent-2) 75%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: var(--pill);
  border: 1.5px solid var(--line); background: var(--card); color: var(--fg);
  cursor: pointer; white-space: nowrap;
  transition: transform .14s var(--ease), background .18s, border-color .18s, box-shadow .25s, color .18s, filter .15s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary {
  background: var(--accent); color: var(--on-accent); border-color: transparent;
  box-shadow: 0 14px 30px -14px var(--glow-a);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 18px 38px -14px var(--glow-a); }
.btn-ghost { background: var(--card); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
nav.top { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s; }
nav.top.scrolled { background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: blur(16px) saturate(1.4); border-bottom-color: var(--line); }
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.brand-logo { height: 26px; width: auto; flex: none; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--fg-2); transition: color .15s; }
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 13px; }
.theme-toggle { width: 40px; height: 40px; border-radius: var(--pill); border: 1.5px solid var(--line); background: var(--card); color: var(--fg-2); cursor: pointer; display: grid; place-items: center; transition: color .15s, border-color .15s; }
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
html[data-theme="dark"] .theme-toggle .i-sun { display: block; }
html[data-theme="dark"] .theme-toggle .i-moon { display: none; }
html[data-theme="light"] .theme-toggle .i-sun { display: none; }
html[data-theme="light"] .theme-toggle .i-moon { display: block; }
.nav-login { font-size: 15px; font-weight: 600; color: var(--fg-2); padding: 9px 4px; }
.nav-login:hover { color: var(--fg); }

/* ---------- aurora blobs ---------- */
.aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora .a { position: absolute; border-radius: 50%; filter: blur(90px); opacity: var(--aurora-op); }
.aurora .a1 { width: 560px; height: 440px; background: var(--aurora-1); top: -160px; left: -90px; }
.aurora .a2 { width: 520px; height: 440px; background: var(--aurora-2); top: -120px; right: 100px; }
.aurora .a3 { width: 400px; height: 400px; background: var(--aurora-3); bottom: -200px; right: -70px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 76px 0 64px; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 52px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--fg-2);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 6px 15px 6px 8px; box-shadow: 0 12px 28px -18px var(--glow-a); white-space: nowrap;
}
.badge .live { width: 18px; height: 18px; }
.badge .chip { background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 11px; padding: 3px 9px; border-radius: var(--pill); letter-spacing: .02em; }
.badge b { color: var(--fg); font-weight: 700; }
h1.hero-title { font-size: clamp(40px, 5.6vw, 66px); line-height: 1.03; font-weight: 800; margin-top: 26px; max-width: 15ch; }
.hero-sub { margin-top: 24px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; color: var(--fg-2); max-width: 47ch; }
.hero-cta { margin-top: 32px; display: flex; gap: 13px; flex-wrap: wrap; }
.trust-bar { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; font-weight: 500; color: var(--fg-3); }
.trust-bar .ti { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar .ti::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--green-soft) url("../icons/check.svg") center/10px no-repeat; }
.trust-bar b { color: var(--accent); font-weight: 700; }

/* hero visual: white leads card */
.hero-visual { position: relative; }
.api-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); }
.api-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: var(--bg-1); }
.api-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.api-bar i:nth-child(1) { background: #ff6058; } .api-bar i:nth-child(2) { background: #ffbd2e; } .api-bar i:nth-child(3) { background: #28c93f; }
.api-bar .ttl { font-family: var(--mono); font-size: 11px; color: var(--fg-3); margin-left: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; }
.api-bar .method { margin-left: auto; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: var(--pill); }
.api-body { padding: 18px; }
.api-chead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.api-chead b { font-size: 15px; font-weight: 700; }
.api-credit { display: inline-flex; align-items: center; gap: 7px; background: var(--green-soft); color: var(--green); font-family: var(--mono); font-weight: 700; font-size: 11.5px; padding: 5px 11px; border-radius: var(--pill); }
.api-credit .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.api-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.api-filters .ft { font-size: 11.5px; font-weight: 700; color: var(--accent); background: var(--accent-soft); border-radius: 8px; padding: 4px 9px; }
.api-result { display: flex; flex-direction: column; }
.res-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid var(--line-2); }
.res-row .av { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; }
.res-row .av.v1 { background: linear-gradient(135deg, #5546f2, #8b7bff); }
.res-row .av.v2 { background: linear-gradient(135deg, #ff5c39, #ff9a6b); }
.res-row .av.v3 { background: linear-gradient(135deg, #16a06b, #4fd1a0); }
.res-row .who { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.res-row .who .nm { font-size: 13px; font-weight: 700; color: var(--fg); }
.res-row .who .rl { font-size: 11px; color: var(--fg-3); }
.res-row .vf { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-weight: 700; font-size: 11.5px; }
.res-row .vf svg { width: 13px; height: 13px; }

.float-chip { position: absolute; z-index: 3; font-size: 12px; font-weight: 600; background: var(--card); border: 1px solid var(--line); border-radius: var(--pill); padding: 9px 14px; box-shadow: 0 20px 44px -22px var(--glow-a); display: flex; align-items: center; gap: 8px; animation: floaty 6s ease-in-out infinite; color: var(--fg-2); }
.float-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.float-chip b { color: var(--fg); font-weight: 800; }
.float-chip.c1 { top: -20px; right: 30px; }
.float-chip.c2 { bottom: 44px; left: -30px; animation-delay: -2s; }
.float-chip.c3 { bottom: -18px; right: 56px; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- LOGO STRIP ---------- */
.logos { padding: 40px 0 8px; }
.logos .lead { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-3); }
.logo-row { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; color: var(--fg-3); opacity: .75; transition: opacity .2s, color .2s; }
.wordmark:hover { opacity: 1; color: var(--accent); }
.wordmark .g { width: 18px; height: 18px; border-radius: 6px; background: currentColor; opacity: .5; }
.wordmark.r .g { border-radius: 50%; }
.wordmark.sq .g { border-radius: 4px; transform: rotate(45deg); }

/* ---------- PROBLEM ---------- */
.problem .prob-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prob-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 28px; background: var(--card); box-shadow: 0 26px 50px -42px var(--glow-a); }
.prob-card .pn { font-family: var(--mono); font-size: 12px; color: var(--fg-4); display: flex; align-items: center; gap: 8px; }
.prob-card h3 { font-size: 18px; font-weight: 700; margin: 14px 0 9px; }
.prob-card p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; }
.prob-card .x { color: var(--coral); font-weight: 700; }

/* ---------- FEATURES ---------- */
.features { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feat-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 32px; transition: transform .18s var(--ease), box-shadow .25s; box-shadow: 0 26px 50px -44px var(--glow-a); }
.feat:hover { transform: translateY(-4px); box-shadow: 0 34px 64px -38px var(--glow-a); }
.feat .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 20px; }
.feat .ico svg { width: 22px; height: 22px; }
.feat h3 { font-size: 19px; font-weight: 700; }
.feat p { margin-top: 11px; font-size: 14.5px; color: var(--fg-2); line-height: 1.58; }
.feat .tags { margin-top: 17px; display: flex; flex-wrap: wrap; gap: 7px; }
.feat .tag { font-family: var(--mono); font-size: 10.5px; color: var(--fg-3); border: 1px solid var(--line); border-radius: var(--pill); padding: 3px 10px; }

/* ---------- HOW IT WORKS ---------- */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step .bar { display: none; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--sans); font-weight: 800; font-size: 15px; color: var(--on-accent); background: var(--accent); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; position: absolute; top: 0; left: 0; box-shadow: 0 10px 22px -10px var(--glow-a); }
.step h3 { font-size: 20px; font-weight: 700; }
.step p { margin-top: 11px; font-size: 14.5px; color: var(--fg-2); line-height: 1.58; }
.step code { font-family: var(--mono); font-size: 12.5px; color: var(--accent); background: var(--accent-soft); padding: 2px 7px; border-radius: 6px; }

/* ---------- PRICING ---------- */
.pricing { background: var(--bg-1); border-top: 1px solid var(--line); }
.price-cards { margin-top: 54px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
.pc { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 30px 60px -44px var(--glow-a); }
.pc.featured { border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 44px 90px -46px var(--glow-a); position: relative; }
.pc.featured::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-soft), transparent 62%); opacity: .6; }
.pc-top { padding: 32px 34px 28px; border-bottom: 1px solid var(--line-2); position: relative; }
.pc .plan { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-3); display: flex; align-items: center; gap: 10px; }
.pc.featured .plan { color: var(--accent); }
.pc .pill { font-size: 10.5px; font-weight: 700; color: var(--on-accent); background: var(--accent); border-radius: var(--pill); padding: 3px 10px; letter-spacing: .02em; text-transform: none; }
.pc .amt { display: flex; align-items: baseline; gap: 9px; margin: 18px 0 8px; }
.pc .amt .n { font-size: 56px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.pc .amt .per { font-family: var(--mono); font-size: 14px; color: var(--fg-3); }
.pc .blurb { font-size: 14.5px; color: var(--fg-2); line-height: 1.5; }
.pc-feats { list-style: none; padding: 26px 34px 8px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.pc-feats li { display: flex; gap: 12px; font-size: 14.5px; align-items: flex-start; color: var(--fg); }
.pc-feats .ck { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--green); }
.pc-cta { padding: 14px 34px 32px; }
.pc-cta .fine { text-align: center; margin-top: 13px; font-family: var(--mono); font-size: 12px; color: var(--fg-4); }

/* comparison table */
.compare-wrap { margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); box-shadow: 0 30px 60px -46px var(--glow-a); }
.ctable { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.ctable th, .ctable td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-2); }
.ctable thead th { font-size: 12px; letter-spacing: .03em; color: var(--fg-3); font-weight: 700; text-transform: uppercase; vertical-align: bottom; }
.ctable thead th.you { color: var(--accent); font-size: 15px; text-transform: none; letter-spacing: -0.01em; font-weight: 800; }
.ctable td.feat-name { color: var(--fg-2); font-weight: 600; }
.ctable td { color: var(--fg-3); }
.ctable .col-you { background: var(--accent-soft); color: var(--fg); font-weight: 700; }
.ctable thead th.you { background: var(--accent-soft); }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable .muted { color: var(--fg-4); }
.ctable .yes { color: var(--green); }
.ctable .no { color: var(--coral); }
.compare-note { font-family: var(--mono); font-size: 12px; color: var(--fg-4); margin-top: 16px; }

/* ---------- TESTIMONIALS ---------- */
.tgrid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 26px; background: var(--card); display: flex; flex-direction: column; box-shadow: 0 26px 50px -44px var(--glow-a); }
.tcard .q { font-size: 16.5px; line-height: 1.55; color: var(--fg); flex: 1; font-weight: 500; }
.tcard .q .hl { color: var(--accent); font-weight: 700; }
.tcard .who { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.tcard .who .meta .nm { font-size: 14px; font-weight: 700; }
.tcard .who .meta .rl { font-size: 11.5px; color: var(--fg-3); margin-top: 2px; }

/* ---------- DEVELOPERS ---------- */
.dev { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dev-grid { margin-top: 52px; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; }
.dev-points { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.dev-point { display: flex; gap: 15px; }
.dev-point .di { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); }
.dev-point .di svg { width: 19px; height: 19px; }
.dev-point h4 { font-size: 16px; font-weight: 700; }
.dev-point p { font-size: 14px; color: var(--fg-2); margin-top: 5px; line-height: 1.55; }
.code-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); }
.code-tabs { display: flex; gap: 2px; padding: 10px 12px 0; border-bottom: 1px solid var(--line); background: var(--bg-1); }
.code-tab { font-family: var(--mono); font-size: 12.5px; color: var(--fg-3); padding: 9px 15px; border-radius: 9px 9px 0 0; cursor: pointer; border: 1px solid transparent; border-bottom: none; transition: color .15s, background .15s; }
.code-tab:hover { color: var(--fg-2); }
.code-tab.active { color: var(--accent); background: var(--card); border-color: var(--line); }
.code-body { padding: 22px; font-family: var(--mono); font-size: 13px; line-height: 1.95; overflow-x: auto; color: var(--fg-2); }
.code-body pre { display: none; white-space: pre; }
.code-body pre.active { display: block; }
.code-body .cm { color: var(--fg-4); }
.code-body .kw { color: var(--accent); }
.code-body .fn { color: var(--fg); }
.code-body .str { color: var(--coral); }
.code-body .pr { color: var(--fg-3); }
.code-body .zero { color: var(--green); font-weight: 700; }

/* ---------- FINAL CTA ---------- */
.final { position: relative; overflow: hidden; text-align: center; padding: 124px 0; }
.final .wrap { position: relative; z-index: 2; }
.final h2 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; line-height: 1.05; max-width: 17ch; margin: 0 auto; }
.final p { margin: 22px auto 0; font-size: 19px; color: var(--fg-2); max-width: 48ch; }
.final .hero-cta { justify-content: center; margin-top: 36px; }

/* ---------- FOOTER ---------- */
footer.site { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--bg-1); }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
.foot-brand p { color: var(--fg-3); font-size: 13.5px; margin-top: 16px; line-height: 1.6; max-width: 30ch; }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--fg-3); margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-family: var(--mono); font-size: 12.5px; color: var(--fg-4); }
.foot-status { display: inline-flex; align-items: center; gap: 8px; }
.foot-status .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- FLOATING CTA ---------- */
.float-cta { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; padding: 14px 22px; border-radius: var(--pill); background: var(--accent); color: var(--on-accent); box-shadow: 0 16px 40px -12px var(--glow-a); cursor: pointer; transform: translateY(140%); opacity: 0; transition: transform .45s var(--ease), opacity .3s, filter .15s; }
.float-cta.show { transform: translateY(0); opacity: 1; }
.float-cta:hover { filter: brightness(1.06); }
.float-cta .spark { width: 8px; height: 8px; border-radius: 50%; background: var(--on-accent); animation: pulse2 1.8s infinite; }
@keyframes pulse2 { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .float-cta .spark { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .dev-grid, .price-cards { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .float-chip { display: none; }
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .feat-grid, .prob-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .ctable { min-width: 620px; }
  .hero { padding: 48px 0 40px; }
}

/* openprofiles — components on top of opencontact-aurora.css tokens */
.annot { font-family: "Caveat", cursive; font-size: 21px; color: var(--coral); line-height: 1.2; }

/* nav dropdowns */
.nav-links .dd { position: relative; }
.nav-links .dd > a::after { content: " ▾"; font-size: 10px; color: var(--fg-3); }
.dd-menu { position: absolute; top: calc(100% + 10px); left: -14px; min-width: 210px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 26px 50px -30px var(--glow-a); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s; }
.dd:hover .dd-menu, .dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: none; }
.dd-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--fg-2); }
.dd-menu a:hover { background: var(--accent-soft); color: var(--accent); }

/* hero extras */
.eyebrow-soon { white-space: nowrap; align-items: center; gap: 0; }
.eyebrow-soon::before { display: none; }
.eyebrow-soon b { display: inline-block; white-space: nowrap; margin-right: 10px; padding: 3px 9px; border-radius: var(--pill); background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.hero-checks { margin-top: 30px; display: flex; flex-wrap: nowrap; gap: 22px; align-items: center; }
.hero-checks .ti { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--fg-2); }
.hero-checks .ti::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--green-soft) url("../icons/check.svg") center/10px no-repeat; }
.soon-dot { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--fg-2); }
.soon-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green, #16a06b); box-shadow: 0 0 0 4px var(--green-soft); }
.wl { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; max-width: 470px; }
.wl input { flex: 1 1 230px; min-width: 0; padding: 15px 20px; font: inherit; font-size: 15px; font-weight: 500; color: var(--fg); background: var(--card); border: 1px solid var(--line); border-radius: var(--pill); box-shadow: 0 12px 28px -22px var(--glow-a); transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.wl input::placeholder { color: var(--fg-4); }
.wl input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.wl button { flex: none; cursor: pointer; border: 0; font: inherit; }
.wl-note.ok { color: var(--green); font-weight: 600; }
.wl-note { margin-top: 14px; font-size: 13.5px; color: var(--fg-3); max-width: 44ch; }

/* profile card stack (hero visual) */
.stack { position: relative; min-height: 430px; }
.pcard { position: absolute; width: 320px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); overflow: hidden; }
.pcard .cover { height: 64px; background: linear-gradient(120deg, var(--aurora-1), var(--aurora-2)); }
.pcard .pbody { padding: 0 20px 20px; }
.pcard .pavatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--card); margin-top: -32px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 20px; }
.pcard h4 { margin: 10px 0 2px; font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.pcard .hd { font-size: 13px; color: var(--fg-2); line-height: 1.45; }
.pcard .loc { font-size: 12px; color: var(--fg-3); margin-top: 6px; }
.pcard .prow { margin-top: 12px; display: flex; gap: 7px; flex-wrap: wrap; }
.pcard .ptag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--pill); background: var(--accent-soft); color: var(--accent); }
.pcard .ptag.gn { background: var(--green-soft); color: var(--green); }
.stack .p1 { top: 0; left: 6%; z-index: 3; }
.stack .p2 { top: 84px; right: 0; z-index: 2; transform: rotate(2.5deg); }
.stack .p3 { top: 210px; left: 0; z-index: 1; transform: rotate(-2deg); }

/* marquee */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: mq 34s linear infinite; padding: 26px 0 6px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }

/* benefits tabs */
.tabs-bar { margin-top: 46px; display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn { font-family: var(--sans); font-weight: 700; font-size: 14.5px; padding: 11px 20px; border-radius: var(--pill); border: 1.5px solid var(--line); background: var(--card); color: var(--fg-2); cursor: pointer; transition: all .18s var(--ease); }
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: var(--accent); border-color: transparent; color: var(--on-accent); box-shadow: 0 12px 26px -12px var(--glow-a); }
.tab-pane { display: none; margin-top: 30px; }
.tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; animation: fadeup .4s var(--ease); }
@keyframes fadeup { from { opacity: 0; transform: translateY(12px); } }
.tab-pane h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.025em; }
.tab-pane .tp-copy p { margin-top: 14px; font-size: 15.5px; color: var(--fg-2); line-height: 1.62; }
.tab-visual { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 30px 60px -44px var(--glow-a); }

/* simulator */
.sim { background: var(--card); border: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 34px 70px -40px var(--glow-a); }
.sim .sim-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--fg-3); display: flex; justify-content: space-between; }
.sim .sim-label b { color: var(--accent); font-size: 15px; }
.sim .big { font-size: clamp(40px, 4vw, 54px); font-weight: 800; letter-spacing: -0.035em; margin-top: 18px; }
.sim .big small { font-size: 17px; font-weight: 600; color: var(--fg-2); letter-spacing: 0; }
.sim .sub { font-size: 14px; color: var(--fg-3); margin-top: 4px; }
.sim .fine { font-family: var(--mono); font-size: 11.5px; color: var(--fg-4); margin-top: 16px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--accent) var(--fill, 25%), var(--bg-4) var(--fill, 25%)); outline: none; margin: 18px 0 4px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--card); border: 3px solid var(--accent); box-shadow: 0 6px 16px -6px var(--glow-a); cursor: grab; }
input[type="range"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* integrations strip */
.int-row { margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.int-chip { display: inline-flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line); border-radius: var(--pill); padding: 10px 18px; font-weight: 700; font-size: 14px; color: var(--fg-2); transition: all .18s; }
.int-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.int-chip .g { width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); opacity: .8; }
.int-more { text-align: center; margin-top: 22px; }
.int-more a { font-weight: 700; color: var(--accent); font-size: 14.5px; }
.int-more a:hover { text-decoration: underline; }

/* profile showcase */
.show-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.show-grid .pcard { position: static; width: auto; }
.show-grid .cell { position: relative; }
.show-grid .annot { position: absolute; display: block; }
.an1 { top: -44px; left: 18px; transform: rotate(-4deg); }
.an2 { top: -44px; left: 30%; transform: rotate(3deg); }
.an3 { bottom: -46px; right: 16px; transform: rotate(-2deg); }

/* advantages */
.adv-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.adv { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px 26px; box-shadow: 0 26px 50px -44px var(--glow-a); }
.adv .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.adv .ico svg { width: 20px; height: 20px; }
.adv h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -0.015em; }
.adv p { margin-top: 8px; font-size: 13px; color: var(--fg-2); line-height: 1.55; }

/* timeline */
.tl { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; counter-reset: tls; }
.tl::before { content: ""; position: absolute; top: 17px; left: 6%; right: 6%; height: 2px; background: var(--line); }
.tl .step { padding-top: 0; }
.tl .step::before { counter-increment: tls; content: counter(tls); position: static; margin-bottom: 18px; }
.tl .step { display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 1; }
.tl .step h3 { font-size: 17px; }
.tl .step p { font-size: 13.5px; margin-top: 8px; }

/* dashboard tour */
.dash-wrap { margin-top: 60px; position: relative; }
.dash { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); overflow: hidden; }
.dash .bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: var(--bg-1); }
.dash .bar i { width: 11px; height: 11px; border-radius: 50%; }
.dash .bar i:nth-child(1) { background: #ff6058; } .dash .bar i:nth-child(2) { background: #ffbd2e; } .dash .bar i:nth-child(3) { background: #28c93f; }
.dash .bar .ttl { font-family: var(--mono); font-size: 11px; color: var(--fg-3); margin-left: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; }
.dash-body { display: grid; grid-template-columns: 190px 1fr; min-height: 380px; }
.dash-side { border-right: 1px solid var(--line-2); background: var(--bg-1); padding: 18px 12px; display: flex; flex-direction: column; gap: 4px; }
.dash-side .it { font-size: 13px; font-weight: 600; color: var(--fg-3); padding: 9px 12px; border-radius: 9px; }
.dash-side .it.on { background: var(--accent-soft); color: var(--accent); }
.dash-main { padding: 22px; }
.dash-main .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.dash-stat { border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.dash-stat .k { font-family: var(--mono); font-size: 10.5px; color: var(--fg-3); text-transform: uppercase; letter-spacing: .05em; }
.dash-stat .v { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.dash-stat .v em { font-style: normal; color: var(--green); font-size: 12px; font-weight: 700; }
.acct { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.acct .pavatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 13px; margin: 0; border: none; }
.acct .who { flex: 1; line-height: 1.3; }
.acct .who .nm { font-size: 13.5px; font-weight: 700; }
.acct .who .rl { font-size: 11px; color: var(--fg-3); }
.acct .st { font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-soft); border-radius: var(--pill); padding: 4px 10px; }
.acct .st.wm { color: #b45309; background: #fdf1e2; }
.acct .btn { padding: 7px 14px; font-size: 12.5px; }
.hotspot { position: absolute; z-index: 5; }
.hotspot .pin { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-weight: 800; font-size: 13px; display: grid; place-items: center; cursor: pointer; border: none; box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 18%, transparent), 0 10px 22px -8px var(--glow-a); transition: transform .15s; }
.hotspot .pin:hover { transform: scale(1.12); }
.hotspot .tip { position: absolute; top: 36px; left: 50%; transform: translateX(-50%) translateY(6px); width: 230px; background: var(--fg); color: var(--bg); font-size: 12.5px; font-weight: 600; line-height: 1.5; border-radius: 12px; padding: 12px 14px; opacity: 0; visibility: hidden; transition: all .18s var(--ease); pointer-events: none; }
.hotspot .pin:hover + .tip, .hotspot .pin:focus + .tip { opacity: 1; visibility: visible; transform: translateX(-50%); }
.hs1 { top: 90px; left: 175px; } .hs2 { top: 56px; right: 40px; } .hs3 { bottom: 150px; right: 130px; } .hs4 { bottom: 44px; left: 320px; }

/* pricing — single solid rig: slider drives both region columns */
.prig { margin: 40px 0 0; max-width: none; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 34px 70px -46px var(--glow-a); overflow: hidden; }
.prig-top { padding: 26px 30px 22px; background: linear-gradient(180deg, var(--accent-soft), transparent); border-bottom: 1px solid var(--line); }
.qh { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.qh-l { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-3); }
.qh-v { display: flex; align-items: center; gap: 10px; }
.qh-v b { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.tiers { margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tiers span { display: flex; flex-direction: column; gap: 2px; padding: 8px 10px; border-radius: 10px; border: 1px solid transparent; font-size: 12px; font-weight: 700; color: var(--fg-3); font-variant-numeric: tabular-nums; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.tiers span i { font-family: var(--mono); font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--fg-4); }
.tiers span.on { background: var(--card); border-color: color-mix(in srgb, var(--accent) 35%, transparent); color: var(--accent); box-shadow: 0 10px 22px -18px var(--glow-a); }
.tiers span.on i { color: var(--accent); }
.qnote { margin-top: 14px; font-size: 13px; color: var(--fg-2); }
.qnote b { color: var(--accent); }
.prig-cols { display: grid; grid-template-columns: 1fr 1fr; }
.prig-cols .pcol { padding: 24px 30px; }
.prig-cols .pcol + .pcol { border-left: 1px solid var(--line-2); }
.pcol.featured { background: color-mix(in srgb, var(--accent) 4%, var(--card)); }
.pcol .plan { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-3); display: flex; align-items: center; gap: 9px; }
.pcol.featured .plan { color: var(--accent); }
.pcol .pill { font-size: 10px; font-weight: 700; color: var(--on-accent); background: var(--accent); border-radius: var(--pill); padding: 3px 9px; text-transform: none; letter-spacing: .02em; }
.pcol .amt { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 12px 0 6px; }
.pcol .amt .n { font-size: 40px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.pcol .amt .per { font-family: var(--mono); font-size: 12.5px; color: var(--fg-3); }
.pcol .amt .was { font-size: 14px; color: var(--fg-4); text-decoration: line-through; font-weight: 600; }
.pcol .blurb { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.prig-feats { list-style: none; padding: 18px 34px; border-top: 1px solid var(--line-2); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 22px; }
.prig-feats li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fg); }
.prig-feats li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--green-soft) url("../icons/check.svg") center/10px no-repeat; }
.prig-cta { padding: 22px 34px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.prig-cta .fine { font-family: var(--mono); font-size: 12px; color: var(--fg-4); }
@media (max-width: 780px) { .prig-cols { grid-template-columns: 1fr } .prig-cols .pcol + .pcol { border-left: 0; border-top: 1px solid var(--line-2) } .tiers { grid-template-columns: repeat(2, 1fr) } .prig-feats { grid-template-columns: repeat(2, 1fr) } }
.disc { display: inline-flex; align-items: center; font-weight: 800; font-size: 13px; color: var(--green); background: var(--green-soft); border-radius: var(--pill); padding: 5px 13px; }
.disc[hidden] { display: none; }

/* testimonials 4-up */
.tgrid.four { grid-template-columns: repeat(4, 1fr); }
.tcard .stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard .stars b { color: var(--fg-2); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0; margin-left: 6px; }

/* personas carousel */
.carousel { margin-top: 54px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; }
.persona { scroll-snap-align: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: 0 26px 50px -44px var(--glow-a); display: flex; flex-direction: column; gap: 14px; }
.persona .pi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.persona .pi svg { width: 20px; height: 20px; }
.persona q { font-size: 14px; color: var(--fg-2); line-height: 1.6; flex: 1; }
.persona .pl { font-size: 13px; font-weight: 800; color: var(--accent); }

/* FAQ */
.faq { margin-top: 54px; max-width: 760px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-bottom: 12px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--accent); transition: transform .2s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; margin: 0; font-size: 14.5px; color: var(--fg-2); line-height: 1.62; }
.faq-foot { margin-top: 26px; font-size: 15px; color: var(--fg-2); }
.faq-foot a { color: var(--accent); font-weight: 700; }
.faq-foot a:hover { text-decoration: underline; }

/* blog */
.blog-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 26px 50px -44px var(--glow-a); display: flex; flex-direction: column; transition: transform .18s var(--ease); }
.bcard:hover { transform: translateY(-4px); }
.bcard .thumb { height: 130px; }
.bcard .bb { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bcard h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.4; flex: 1; }
.bcard .rd { font-size: 13px; font-weight: 700; color: var(--accent); }

/* CTA banner */
.banner { border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #fff; padding: 70px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 44px 90px -40px var(--glow-a); }
.banner::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.12); filter: blur(60px); top: -180px; right: -120px; }
.banner h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; position: relative; }
.banner p { margin: 16px auto 0; font-size: 17px; color: rgba(255,255,255,.85); max-width: 46ch; position: relative; }
.banner .hero-cta { justify-content: center; position: relative; }
.banner .btn-primary { background: #fff; color: var(--accent); box-shadow: none; }
.banner .btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.banner .btn-ghost:hover { border-color: #fff; color: #fff; }

/* footer extras */
.legal { margin-top: 34px; font-size: 12px; color: var(--fg-4); line-height: 1.6; max-width: 90ch; }
.wa { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--green); }

/* count-up */
.cnt { font-variant-numeric: tabular-nums; }

/* waitlist modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: color-mix(in srgb, var(--fg) 45%, transparent); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), visibility 0s linear .22s;
}
.modal-overlay.show { opacity: 1; visibility: visible; transition: opacity .22s var(--ease); }
.modal-card {
  position: relative; width: 100%; max-width: 440px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: 0 60px 120px -50px var(--glow-a); padding: 36px 32px 32px;
  transform: translateY(14px) scale(.98); transition: transform .25s var(--ease);
}
.modal-overlay.show .modal-card { transform: translateY(0) scale(1); }
.modal-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.modal-card > p { margin-top: 8px; font-size: 14.5px; color: var(--fg-2); line-height: 1.55; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card); color: var(--fg-2); font-size: 15px; line-height: 1;
  display: grid; place-items: center; cursor: pointer; transition: color .15s, border-color .15s;
}
.modal-close:hover { color: var(--accent); border-color: var(--accent); }
.modal-form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.modal-form input[type="email"] {
  padding: 15px 20px; font: inherit; font-size: 15px; font-weight: 500; color: var(--fg); background: var(--bg-1);
  border: 1px solid var(--line); border-radius: var(--pill); box-shadow: 0 12px 28px -22px var(--glow-a);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.modal-form input[type="email"]::placeholder { color: var(--fg-4); }
.modal-form input[type="email"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.modal-form button { width: 100%; justify-content: center; cursor: pointer; }
body.modal-open { overflow: hidden; }

/* responsive */
@media (max-width: 1060px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } .tgrid.four { grid-template-columns: repeat(2, 1fr); } .blog-grid { grid-template-columns: repeat(2, 1fr); } .hs3, .hs4 { display: none; } }
@media (max-width: 960px) {
  .tab-pane.active { grid-template-columns: 1fr; }
  .show-grid { grid-template-columns: 1fr; gap: 64px; max-width: 380px; margin-left: auto; margin-right: auto; }
  .tl { grid-template-columns: 1fr 1fr; } .tl::before { display: none; }
  .stack { display: none; }
  .hero-checks { grid-template-columns: repeat(2, auto); }
  .dash-body { grid-template-columns: 1fr; } .dash-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line-2); }
  .hotspot { display: none; }
}
@media (max-width: 600px) { .adv-grid, .tl, .tgrid.four, .blog-grid { grid-template-columns: 1fr; } .hero-checks { grid-template-columns: 1fr 1fr; } }
