/* =========================================================
   SEOnamics — Hulo edition
   Bold geometric grotesk · black + white · electric blue + lime
   Sora (display) / Hanken Grotesk (text)
   ========================================================= */

:root {
  --bg:        #FFFFFF;
  --bg-soft:   #F3F4F6;
  --bg-soft-2: #ECEEF1;
  --ink:       #0A0A0B;
  --ink-2:     #111114;
  --ink-soft:  #595E66;
  --ink-mute:  #9A9FA7;
  --line:      rgba(10,10,11,0.10);
  --line-2:    rgba(10,10,11,0.06);
  --d-line:    rgba(255,255,255,0.12);
  --d-soft:    rgba(255,255,255,0.60);
  --d-mute:    rgba(255,255,255,0.40);

  --blue:      #2B50FF;   /* electric blue — primary brand */
  --blue-deep: #1d3ce0;
  --lime:      #C8F94E;   /* chartreuse — accent / highlight */
  --lime-deep: #b6ed2f;
  --star:      #F6A609;

  --accent:    var(--blue);   /* brand dot / links / icons */
  --hi:        var(--lime);   /* highlighter / ticker / pop */
  --hi-ink:    #0A0A0B;       /* text that sits on --hi */

  --serif: "Sora", system-ui, sans-serif;       /* display */
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1240px;
  --rc: 22px;     /* card radius */
  --rs: 46px;     /* big section radius */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* accent themes (Tweaks) ------------------------------------ */
html[data-accent="electric"] { --hi: #2B50FF; --hi-ink: #ffffff; }
html[data-accent="acid"]     { --accent: #0A0A0B; --hi: #C8F94E; --hi-ink: #0A0A0B; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.04; margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--hi); color: var(--hi-ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section { padding: 130px 0; }

/* ---------- atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em; color: var(--ink);
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.eyebrow.on-dark { color: #fff; }

.lede { font-size: 18px; line-height: 1.62; color: var(--ink-soft); }

/* highlighter swipe under emphasized words */
.hl {
  background: linear-gradient(180deg, transparent 56%, var(--hi) 56%, var(--hi) 94%, transparent 94%);
  padding: 0 .06em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* buttons */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  border: none; border-radius: 999px; padding: 18px 30px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; line-height: 1;
  white-space: nowrap; transition: transform .3s var(--ease), background .25s, color .25s, box-shadow .3s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translate(3px,-3px); }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: #000; transform: translateY(-2px); }
.btn-blue  { background: var(--accent); color: #fff; }
.btn-blue:hover  { filter: brightness(1.08); transform: translateY(-2px); }
.btn-hi    { background: var(--hi); color: var(--hi-ink); }
.btn-hi:hover { filter: brightness(1.04); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-light:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-outline-d { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.btn-outline-d:hover { box-shadow: inset 0 0 0 1px #fff; transform: translateY(-2px); }

/* circular icon button */
.cbtn {
  width: 56px; height: 56px; border-radius: 999px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink); transition: all .3s var(--ease);
}
.cbtn:hover { background: var(--ink); color: #fff; box-shadow: none; }
.cbtn svg { width: 20px; height: 20px; }
.cbtn.on-dark { color: #fff; box-shadow: inset 0 0 0 1px var(--d-line); }
.cbtn.on-dark:hover { background: var(--hi); color: var(--hi-ink); box-shadow: none; }

/* a text link with a small arrow */
.alink {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.alink .ai {
  width: 34px; height: 34px; border-radius: 999px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px currentColor; transition: all .3s var(--ease);
}
.alink:hover .ai { background: var(--accent); color: #fff; box-shadow: none; transform: rotate(0) translate(2px,-2px); }
.alink.on-dark { color: #fff; }

/* placeholder imagery */
.ph {
  position: relative; background:
    repeating-linear-gradient(135deg, rgba(10,10,11,0.05) 0 11px, rgba(10,10,11,0) 11px 22px), var(--bg-soft);
  overflow: hidden;
}
.ph-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: .03em;
  background: #fff; padding: 5px 12px; border-radius: 6px; white-space: nowrap;
  box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- wordmark ---------- */
.wm { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 800; font-size: 25px; letter-spacing: -0.03em; color: var(--ink); }
.wm-mark { position: relative; width: 30px; height: 30px; flex: none; color: var(--accent); }
.wm-mark svg { width: 100%; height: 100%; display: block; }
.wm-mark .sat { fill: var(--hi); }
.wm .dim { color: var(--ink); }
.wm.on-dark { color: #fff; }
.wm.on-dark .wm-mark { color: var(--hi); }
.wm.on-dark .wm-mark .sat { fill: #fff; }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: sticky; top: 0; z-index: 100; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 92px; gap: 20px; }
.nav-links { display: flex; gap: 30px; align-items: center; justify-content: center; font-size: 16px; color: var(--ink); font-weight: 500; }
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--ink); transition: right .3s var(--ease); }
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.nav-signin { font-size: 16px; font-weight: 500; white-space: nowrap; }
.nav-right .btn { padding: 13px 24px; font-size: 15px; }
.nav-menu { width: 52px; height: 52px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex: none; transition: all .3s var(--ease); }
.nav-menu:hover { background: var(--ink); }
.nav-menu i { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .3s; }
.nav-menu:hover i { background: #fff; }
@media (max-width: 1000px) { .nav-links { display: none; } .nav-inner { grid-template-columns: 1fr auto; } }
@media (max-width: 620px) { .nav-signin { display: none; } }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 40px 0 70px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(46px, 6.6vw, 92px); letter-spacing: -0.045em; }
.hero h1 .hl { white-space: nowrap; }
.hero .lede { font-size: clamp(17px, 1.5vw, 20px); max-width: 30ch; margin: 30px 0 38px; }
.hero-pain { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--bg-soft); border-radius: 999px; padding: 9px 16px; }
.hero-pain b { color: var(--accent); }

.hero-form { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; }
.field { display: flex; align-items: center; background: #fff; box-shadow: inset 0 0 0 1px var(--line); border-radius: 999px; padding: 6px 6px 6px 24px; gap: 8px; flex: 1; min-width: 240px; transition: box-shadow .2s; }
.field:focus-within { box-shadow: inset 0 0 0 1.5px var(--accent); }
.field input { border: none; outline: none; background: transparent; font-family: var(--sans); font-size: 16px; color: var(--ink); flex: 1; min-width: 0; }
.field input::placeholder { color: var(--ink-mute); }
.hero-micro { margin-top: 18px; font-size: 14px; color: var(--ink-soft); }
.hero-micro b { color: var(--ink); font-weight: 700; }

/* hero collage (right) */
.hero-art { position: relative; }
.hero-card { border-radius: var(--rc); overflow: hidden; background: #fff; box-shadow: 0 40px 90px -50px rgba(10,10,11,0.5); position: relative; z-index: 2; }
.hero-square { position: absolute; left: -22px; bottom: -24px; width: 104px; height: 104px; background: var(--accent); z-index: 3; border-radius: 4px; }
.hero-orb { position: absolute; left: 50px; bottom: 8px; width: 96px; height: 96px; border-radius: 999px; z-index: 4;
  background: radial-gradient(circle at 32% 28%, #ffffff 0%, var(--hi) 34%, var(--lime-deep) 78%);
  box-shadow: 0 18px 40px -16px rgba(150,200,40,0.7); }
.hero-badge { position: absolute; left: -58px; bottom: -50px; width: 132px; height: 132px; z-index: 5; }
.hero-badge svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero-badge text { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; fill: var(--ink); text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-badge svg { animation: none; } }
.hero-dot { position: absolute; right: -8px; top: 34px; width: 28px; height: 28px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); display: flex; align-items: center; justify-content: center; z-index: 6; }
.hero-dot::after { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: clamp(44px, 12vw, 76px); }
  .hero .lede { max-width: 46ch; }
  .hero-badge { left: auto; right: 18px; }
}

/* =========================================================
   DASHBOARD MOCK (inside hero card)
   ========================================================= */
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: var(--bg-soft); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(10,10,11,0.14); display: block; }
.browser-url { margin-left: 14px; font-size: 12.5px; color: var(--ink-mute); font-family: var(--mono); }
.dash { padding: 22px; }
.dash-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.stat-card { background: var(--bg-soft); border-radius: 14px; padding: 14px 16px; }
.stat-card .lbl { font-size: 12px; color: var(--ink-mute); font-weight: 500; }
.stat-card .val { font-family: var(--serif); font-weight: 700; font-size: 26px; margin-top: 6px; letter-spacing: -0.02em; }
.stat-card .val .up { color: #1f9d57; }
.dash-chart { margin-top: 12px; background: var(--bg-soft); border-radius: 14px; padding: 16px; }
.dash-chart .chart-head { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-mute); margin-bottom: 8px; font-weight: 500; }
.spark { width: 100%; height: 70px; }
.agent-feed { margin-top: 12px; }
.feed-row { display: flex; gap: 12px; align-items: flex-start; padding: 11px 4px; border-top: 1px solid var(--line-2); }
.feed-row:first-child { border-top: none; }
.feed-tick { margin-top: 1px; width: 22px; height: 22px; flex: none; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
.feed-tick.done { background: #1f9d57; }
.feed-tick.active { background: var(--accent); }
.feed-tick.todo { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); }
.feed-tick.todo span { width: 5px; height: 5px; border-radius: 999px; background: var(--ink-mute); }
.feed-row .ft { font-size: 14px; font-weight: 600; }
.feed-row .fs { font-size: 12.5px; color: var(--ink-mute); margin-top: 1px; }

/* =========================================================
   TICKER (lime marquee strip)
   ========================================================= */
.ticker { background: var(--hi); color: var(--hi-ink); overflow: hidden; padding: 22px 0; }
.ticker.dark { background: var(--ink); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.ticker-track.rev { animation-direction: reverse; }
.ticker-track span { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; white-space: nowrap; }
.ticker-track span::after { content: "✦"; font-size: 16px; opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* =========================================================
   SECTION HEADER
   ========================================================= */
.head { max-width: 760px; }
.head.center { margin: 0 auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head h2 { font-size: clamp(34px, 4.6vw, 62px); letter-spacing: -0.035em; margin-top: 22px; }
.head .lede { margin-top: 22px; }
.head .lede.wide { max-width: 620px; }

/* split header: left title, right intro + action (Hulo services head) */
.head-split { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 40px; align-items: end; }
.head-split .hs-title h2 { font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -0.035em; margin-top: 20px; }
.head-split .hs-intro { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.head-split.on-dark .hs-intro { color: var(--d-soft); }
.head-split.on-dark .hs-intro b { color: #fff; }
@media (max-width: 900px) { .head-split { grid-template-columns: 1fr; gap: 26px; align-items: start; } }

/* =========================================================
   BLOCK — black rounded section wrapper
   ========================================================= */
.block-dark { background: var(--ink); color: #fff; border-radius: var(--rs); padding: 100px 70px; }
.block-dark h2 { color: #fff; }
.block-soft { background: var(--bg-soft); border-radius: var(--rs); padding: 100px 70px; }
@media (max-width: 720px) { .block-dark, .block-soft { padding: 64px 26px; border-radius: 30px; } }

/* =========================================================
   PROBLEM — black 3-column
   ========================================================= */
.problem .prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 64px; }
.prob-item { padding: 0 44px; border-left: 1px solid var(--d-line); }
.prob-item:first-child { padding-left: 0; border-left: none; }
.prob-item:last-child { padding-right: 0; }
.prob-amount { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--hi); letter-spacing: -0.02em; }
.prob-item h3 { font-size: 24px; margin: 16px 0 12px; letter-spacing: -0.02em; }
.prob-item p { font-size: 15.5px; color: var(--d-soft); line-height: 1.6; }
.prob-item .alink { margin-top: 22px; }
.problem-kicker { text-align: center; margin-top: 70px; }
.problem-kicker p { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 4vw, 46px); line-height: 1.16; letter-spacing: -0.03em; max-width: 20ch; margin: 0 auto; }
.problem-kicker em { font-style: normal; }
.problem-kicker .hl { font-style: normal; }
@media (max-width: 820px) { .problem .prob-grid { grid-template-columns: 1fr; gap: 40px; } .prob-item { padding: 0; border-left: none; padding-top: 36px; border-top: 1px solid var(--d-line); } .prob-item:first-child { padding-top: 0; border-top: none; } }

/* =========================================================
   PROCESS — dark numbered list (Hulo "What we offer")
   ========================================================= */
.proc-list { margin-top: 70px; }
.proc-row { display: grid; grid-template-columns: 64px 1fr 1.1fr; gap: 30px; align-items: center; padding: 34px 0; border-top: 1px solid var(--d-line); transition: padding .3s var(--ease); }
.proc-row:last-child { border-bottom: 1px solid var(--d-line); }
.proc-num { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--d-mute); transition: color .3s; }
.proc-title { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.025em; color: #fff; }
.proc-desc { font-size: 15.5px; color: var(--d-soft); line-height: 1.55; max-width: 42ch; }
.proc-row:hover { padding-left: 18px; }
.proc-row:hover .proc-num { color: var(--hi); }
@media (max-width: 820px) { .proc-row { grid-template-columns: 44px 1fr; gap: 16px 18px; } .proc-desc { grid-column: 1 / -1; padding-left: 62px; } }
/* light variant (numbered list on grey block) */
.proc.light .proc-row { border-color: var(--line); }
.proc.light .proc-num { color: var(--ink-mute); }
.proc.light .proc-title { color: var(--ink); }
.proc.light .proc-desc { color: var(--ink-soft); }
.proc.light .proc-row:hover .proc-num { color: var(--accent); }

/* =========================================================
   CAPABILITIES — light card grid
   ========================================================= */
.caps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 64px; }
.cap { background: var(--bg-soft); border-radius: var(--rc); padding: 34px 30px; transition: background .3s, transform .3s var(--ease); }
.cap:hover { background: var(--ink); transform: translateY(-4px); }
.cap-ic { width: 52px; height: 52px; border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 24px; transition: background .3s, color .3s; }
.cap-ic svg { width: 26px; height: 26px; }
.cap:hover .cap-ic { background: var(--hi); color: var(--hi-ink); }
.cap h3 { font-size: 21px; letter-spacing: -0.02em; margin-bottom: 10px; transition: color .3s; }
.cap p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; transition: color .3s; }
.cap:hover h3 { color: #fff; }
.cap:hover p { color: var(--d-soft); }
@media (max-width: 900px) { .caps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .caps { grid-template-columns: 1fr; } }

/* =========================================================
   LOOP — dark ring
   ========================================================= */
.loop-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; margin-top: 30px; }
.loop-stages { display: flex; flex-direction: column; }
.loop-stage { display: flex; gap: 22px; padding: 24px 0; border-top: 1px solid var(--d-line); }
.loop-stage:first-child { border-top: none; }
.loop-stage .ls-num { font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--hi); flex: none; width: 30px; }
.loop-stage h3 { font-size: 22px; color: #fff; margin-bottom: 7px; letter-spacing: -0.02em; }
.loop-stage p { font-size: 15px; color: var(--d-soft); line-height: 1.55; }
.loop-visual { display: flex; align-items: center; justify-content: center; }
.loop-ring { position: relative; width: 360px; height: 360px; }
.loop-svg { width: 100%; height: 100%; animation: spin 30s linear infinite; }
.loop-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.loop-center .lc-k { font-size: 13px; letter-spacing: .06em; color: var(--hi); font-weight: 700; }
.loop-center .lc-v { font-family: var(--serif); font-weight: 800; font-size: 68px; line-height: 1; margin-top: 6px; color: #fff; letter-spacing: -0.03em; }
.loop-center .lc-s { font-size: 13.5px; color: var(--d-soft); margin-top: 10px; }
@media (max-width: 900px) { .loop-grid { grid-template-columns: 1fr; gap: 44px; } .loop-ring { width: 280px; height: 280px; } }

/* =========================================================
   DIFFERENTIATOR — compare
   ========================================================= */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 64px; }
.cc { border-radius: var(--rc); padding: 42px 40px; }
.cc.them { background: var(--bg-soft); }
.cc.us { background: var(--ink); color: #fff; }
.cc-label { font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.cc.them .cc-label { color: var(--ink-mute); }
.cc.us .cc-label { color: var(--hi); }
.cc h3 { font-size: 28px; margin: 12px 0 28px; letter-spacing: -0.025em; }
.cc.us h3 { color: #fff; }
.cc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.cc-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.cc-list .ci { flex: none; width: 24px; height: 24px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.cc.them li { color: var(--ink-soft); }
.cc.them .ci { background: rgba(10,10,11,0.08); color: var(--ink-mute); }
.cc.us li { color: rgba(255,255,255,0.86); }
.cc.us .ci { background: var(--hi); color: var(--hi-ink); }
.reassure { margin-top: 18px; display: flex; gap: 22px; align-items: center; background: var(--accent); color: #fff; border-radius: var(--rc); padding: 30px 38px; }
.reassure .re-ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; }
.reassure .re-t { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.reassure .re-s { font-size: 15px; color: rgba(255,255,255,0.86); margin-top: 5px; line-height: 1.5; }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } .reassure { flex-direction: column; text-align: center; } }

/* =========================================================
   VALUE STACK
   ========================================================= */
.stack { max-width: 760px; margin: 64px auto 0; background: #fff; border-radius: var(--rc); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.stack-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 30px; border-bottom: 1px solid var(--line-2); }
.sr-l { display: flex; flex-direction: column; }
.sr-t { font-size: 16.5px; font-weight: 600; }
.sr-s { font-size: 13.5px; color: var(--ink-mute); margin-top: 2px; }
.sr-p { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink-soft); white-space: nowrap; letter-spacing: -0.02em; }
.stack-total { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px; background: var(--ink); color: #fff; }
.st-t { font-size: 17px; font-weight: 600; }
.st-t span { display: block; font-size: 13.5px; color: var(--d-soft); font-weight: 400; margin-top: 3px; }
.st-p { text-align: right; }
.st-p s { font-family: var(--serif); font-size: 19px; color: var(--d-mute); }
.st-p b { display: block; font-family: var(--serif); font-weight: 800; font-size: 38px; color: var(--hi); letter-spacing: -0.03em; }

/* =========================================================
   PRICING
   ========================================================= */
.offer .head h2 { color: #fff; }
.price-toggle { display: inline-flex; background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px var(--d-line); border-radius: 999px; padding: 5px; margin: 40px 0 8px; gap: 4px; }
.price-toggle button { border: none; background: transparent; color: var(--d-soft); font-family: var(--sans); font-weight: 600; font-size: 14.5px; padding: 11px 24px; border-radius: 999px; transition: all .25s var(--ease); white-space: nowrap; }
.price-toggle button.active { background: #fff; color: var(--ink); }
.price-toggle .save { font-size: 11px; color: var(--accent); font-weight: 700; margin-left: 6px; }

.price-card { max-width: 500px; margin: 44px auto 0; background: #fff; color: var(--ink); border-radius: var(--rc); padding: 46px 46px 40px; text-align: left; }
.pc-tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--accent); background: rgba(43,80,255,0.10); padding: 7px 14px; border-radius: 999px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin: 24px 0 4px; }
.pa-cur { font-family: var(--serif); font-weight: 700; font-size: 32px; }
.pa-num { font-family: var(--serif); font-weight: 800; font-size: 74px; line-height: 1; letter-spacing: -0.04em; }
.pa-per { font-size: 16px; color: var(--ink-mute); white-space: nowrap; }
.pa-strike { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--ink-mute); text-decoration: line-through; align-self: center; }
.price-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 28px; }
.price-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.price-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.pl-check { flex: none; width: 22px; height: 22px; border-radius: 999px; background: var(--hi); color: var(--hi-ink); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; padding: 18px; font-size: 17px; }
.price-note { text-align: center; font-size: 13.5px; color: var(--ink-mute); margin-top: 16px; }
.price-note b { color: var(--ink); }

/* =========================================================
   GUARANTEE (lime block)
   ========================================================= */
.guarantee { text-align: center; }
.guar-inner { background: var(--hi); color: var(--hi-ink); border-radius: var(--rs); padding: 90px 60px; }
.guar-seal { width: 92px; height: 92px; margin: 0 auto 30px; border-radius: 999px; background: var(--ink); color: var(--hi); display: flex; align-items: center; justify-content: center; }
.guar-inner h2 { font-size: clamp(30px, 4.4vw, 50px); max-width: 20ch; margin: 0 auto 22px; letter-spacing: -0.03em; line-height: 1.08; color: var(--hi-ink); }
.guar-inner .lede { max-width: 620px; margin: 0 auto; color: rgba(10,10,11,0.7); }
html[data-accent="electric"] .guar-inner .lede { color: rgba(255,255,255,0.82); }
@media (max-width: 720px) { .guar-inner { padding: 60px 28px; border-radius: 30px; } }

/* =========================================================
   FOUNDER — testimonial image card
   ========================================================= */
.founder-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.founder-media { position: relative; }
.founder-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; border-radius: var(--rc); display: block; }
.founder-quote { position: absolute; left: 22px; top: 26px; right: 26px; background: #fff; border-radius: 16px; padding: 22px 24px; box-shadow: 0 24px 50px -28px rgba(10,10,11,0.4); }
.founder-quote .fq-mark { color: var(--accent); font-family: var(--serif); font-weight: 800; font-size: 34px; line-height: .6; }
.founder-quote p { font-family: var(--serif); font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; margin-top: 6px; }
.founder-tag { position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 999px; padding: 10px 18px 10px 10px; box-shadow: 0 18px 40px -22px rgba(10,10,11,0.5); }
.founder-tag .ft-play { width: 42px; height: 42px; border-radius: 999px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.founder-tag .ft-n { font-weight: 700; font-size: 14.5px; }
.founder-tag .ft-r { font-size: 12.5px; color: var(--ink-mute); }
.founder-body .eyebrow { margin-bottom: 22px; }
.founder-body blockquote { margin: 0; font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.16; letter-spacing: -0.03em; }
.founder-body p { margin-top: 24px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.62; }
.founder-sign { margin-top: 30px; display: flex; align-items: baseline; gap: 14px; }
.founder-sign .fs-name { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }
.founder-sign .fs-role { font-size: 14px; color: var(--ink-mute); }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } .founder-media { max-width: 460px; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.faq-grid { margin-top: 56px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px 6px; font-family: var(--serif); font-weight: 700; font-size: clamp(20px, 2.4vw, 27px); color: var(--ink); letter-spacing: -0.025em; }
.faq-icon { flex: none; width: 40px; height: 40px; border-radius: 999px; position: relative; box-shadow: inset 0 0 0 1px var(--line); transition: all .3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: all .3s; }
.faq-icon::before { width: 2px; height: 14px; left: 19px; top: 13px; }
.faq-icon::after { width: 14px; height: 2px; left: 13px; top: 19px; }
.faq-item.open .faq-icon { background: var(--accent); box-shadow: none; }
.faq-item.open .faq-icon::before { opacity: 0; }
.faq-item.open .faq-icon::after { background: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 6px 30px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.62; max-width: 70ch; }
@media (max-width: 760px) { .faq-head { grid-template-columns: 1fr; gap: 20px; } }

/* =========================================================
   BIG MARQUEE (display)
   ========================================================= */
.bigmq { padding: 30px 0 10px; overflow: hidden; }
.bigmq-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.bigmq-track span { font-family: var(--serif); font-weight: 800; font-size: clamp(60px, 12vw, 150px); letter-spacing: -0.05em; line-height: 1; padding-right: 50px; white-space: nowrap; color: var(--ink); }
.bigmq-track span .hl { padding: 0 .04em; }
@media (prefers-reduced-motion: reduce) { .bigmq-track { animation: none; } }

/* =========================================================
   FINAL + FOOTER (black rounded card)
   ========================================================= */
.final-cta { text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(36px, 5.4vw, 70px); letter-spacing: -0.04em; margin: 22px 0; }
.final-cta .lede { max-width: 560px; margin: 0 auto 38px; }
.final-cta .hero-form { margin: 0 auto; justify-content: center; }
.final-cta .hero-micro { text-align: center; }

.footer-wrap { padding: 0 0 18px; }
.footer { background: var(--ink); color: var(--d-soft); border-radius: var(--rs); padding: 80px 70px 40px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .wm { margin-bottom: 28px; }
.footer-cta-t { font-family: var(--serif); font-weight: 700; font-size: 28px; color: #fff; letter-spacing: -0.025em; }
.footer-cta-s { font-size: 15px; margin: 12px 0 26px; max-width: 30ch; }
.footer-letstalk { display: inline-flex; align-items: center; gap: 14px; color: #fff; font-weight: 700; font-size: 17px; }
.footer-letstalk .ai { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1px var(--d-line); transition: all .3s var(--ease); }
.footer-letstalk:hover .ai { background: var(--hi); color: var(--hi-ink); box-shadow: none; }
.footer-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .04em; color: #fff; font-weight: 700; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 15px; color: var(--d-soft); margin-bottom: 13px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a { width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s var(--ease); }
.footer-socials a:hover { background: var(--hi); color: var(--hi-ink); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-ghost { display: block; width: 100%; height: auto; margin: 48px 0 0; user-select: none; }
.footer-bottom { text-align: center; font-size: 13.5px; color: var(--d-mute); margin-top: 10px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 720px) { .footer { padding: 56px 26px 30px; border-radius: 30px; } .footer-top { grid-template-columns: 1fr; } }

/* =========================================================
   FORM SUCCESS
   ========================================================= */
.form-success { display: none; align-items: center; gap: 12px; justify-content: center; background: #fff; box-shadow: inset 0 0 0 1px var(--line); border-radius: 999px; padding: 16px 26px; max-width: 480px; margin: 0 auto; font-weight: 500; color: var(--ink); }
.form-success.show { display: flex; }
.form-success .fs-tick { width: 24px; height: 24px; border-radius: 999px; background: #1f9d57; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex: none; }

/* beta scarcity */
.beta-scarcity { max-width: 480px; margin: 22px 0 0; }
.final-cta .beta-scarcity { margin: 22px auto 0; }
.seats-bar { height: 8px; border-radius: 999px; background: var(--bg-soft-2); overflow: hidden; }
.seats-bar > i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width .7s var(--ease); }
.seats-text { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: var(--ink-soft); margin-top: 11px; font-weight: 500; }
.seats-text b { color: var(--accent); }

/* =========================================================
   MODE SWITCH
   ========================================================= */
html[data-mode="launch"] .beta-only { display: none !important; }
html[data-mode="beta"]   .launch-only { display: none !important; }
html[data-mode="beta"]   .beta-hide { display: none !important; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top { position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 52px; height: 52px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1px var(--accent), 0 14px 30px -16px rgba(10,10,11,0.5); color: var(--accent); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(14px); pointer-events: none; transition: all .3s var(--ease); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent); color: #fff; box-shadow: 0 16px 30px -14px rgba(43,80,255,0.7); }

/* =========================================================
   TWEAKS PANEL (vanilla)
   ========================================================= */
.tw-panel { position: fixed; top: 20px; right: 20px; z-index: 99999; width: 300px; background: #fff; box-shadow: 0 36px 80px -28px rgba(10,10,11,0.5), inset 0 0 0 1px var(--line); border-radius: 18px; font-family: var(--sans); color: var(--ink); display: none; overflow: hidden; }
.tw-panel.open { display: block; }
.tw-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; border-bottom: 1px solid var(--line-2); cursor: grab; user-select: none; background: var(--bg-soft); }
.tw-head:active { cursor: grabbing; }
.tw-title { font-weight: 700; font-size: 14px; }
.tw-close { border: none; background: none; font-size: 20px; color: var(--ink-mute); cursor: pointer; line-height: 1; }
.tw-close:hover { color: var(--ink); }
.tw-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 22px; }
.tw-label { font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--ink-mute); margin-bottom: 10px; display: block; }
.tw-seg { display: flex; background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); border-radius: 12px; padding: 3px; gap: 3px; }
.tw-seg button { flex: 1; border: none; background: none; padding: 10px 6px; border-radius: 9px; font-family: inherit; font-weight: 600; font-size: 13px; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); }
.tw-seg button.active { background: var(--ink); color: #fff; }
.tw-swatches { display: flex; gap: 8px; }
.tw-sw { flex: 1; height: 44px; border-radius: 11px; border: none; cursor: pointer; position: relative; box-shadow: inset 0 0 0 1px var(--line); transition: transform .2s var(--ease); overflow: hidden; }
.tw-sw:hover { transform: translateY(-2px); }
.tw-sw.active { box-shadow: inset 0 0 0 2px var(--ink); }
.tw-sw i { position: absolute; inset: 0; display: flex; }
.tw-sw i b { flex: 1; }
.tw-rowval { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.tw-rowval .v { font-family: var(--serif); font-weight: 700; font-size: 16px; }
.tw-range { width: 100%; accent-color: var(--accent); }
.tw-num { width: 100%; padding: 11px 12px; box-shadow: inset 0 0 0 1px var(--line); border: none; border-radius: 11px; font-family: inherit; font-size: 14px; color: var(--ink); background: var(--bg-soft); }
.tw-num:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent); }
.tw-hint { font-size: 11.5px; color: var(--ink-mute); margin-top: 8px; line-height: 1.45; }
.tw-disabled { opacity: .42; pointer-events: none; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

@media (max-width: 600px) {
  .section { padding: 84px 0; }
  .container { padding: 0 22px; }
}
