/* ============================================================
   SIMON — Mission Control sales page (light / cool / green)
   "What you say, Simon does."
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* surfaces — cooler, modern base */
  --bg: #eceef3;
  --bg-2: #e3e6ed;
  --surface: #ffffff;
  --surface-2: #f6f7fa;
  --surface-3: #eef0f5;

  /* ink — slightly cooled */
  --ink: #16181f;
  --ink-2: #424856;
  --ink-3: #69707e;
  --muted: #969dac;        /* mono labels */

  /* lines — slate tint */
  --line: rgba(24,28,40,0.10);
  --line-2: rgba(24,28,40,0.06);
  --line-strong: rgba(24,28,40,0.17);

  /* brand green (primary CTA) — "go / live / Simon does" */
  --accent: #13b267;
  --accent-deep: #0c9152;
  --accent-bright: #21d57f;
  --accent-tint: #e6f8ee;
  --accent-tint-2: #d2f1de;
  --accent-line: #a7e4c4;

  /* signals + multi-accent glow system */
  --green: #2f9e63;
  --green-tint: #e8f2ec;
  --teal: #14a99a;
  --teal-tint: #e2f4f1;
  --c-purple: #7a5cd6;
  --c-red: #e0533d;
  --c-slate: #7b8494;
  --c-amber: #e3902a;
  --c-blue: #3f8ad6;
  --blue: #3f6bd6;
  --blue-tint: #e9eefb;
  --purple: #7a5cd6;
  --red: #d6452f;

  /* council (cool) */
  --teal: #14a99a;
  --council-bg: #e9ebef;
  --council-bg-2: #dfe2e8;

  /* type */
  --sans: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* shadow — cool slate */
  --sh-xs: 0 1px 2px rgba(20,28,45,0.06);
  --sh-sm: 0 1px 2px rgba(20,28,45,0.05), 0 2px 8px rgba(20,28,45,0.05);
  --sh-md: 0 2px 6px rgba(20,28,45,0.06), 0 12px 34px rgba(20,28,45,0.09);
  --sh-lg: 0 4px 14px rgba(20,28,45,0.07), 0 28px 64px rgba(20,28,45,0.15);
  --sh-orange: 0 8px 24px rgba(19,178,103,0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

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

/* fixed cool grid backdrop with subtle colour blooms */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(var(--line-2) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(ellipse 48% 40% at 10% 4%, rgba(122,92,214,0.12), transparent 60%),
    radial-gradient(ellipse 44% 40% at 92% 3%, rgba(20,169,154,0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 112%, rgba(63,138,214,0.10), transparent 60%),
    linear-gradient(180deg, #eef0f5, #e3e6ed);
}

main { position: relative; z-index: 2; }

/* ---------- layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
section { padding: 104px 0; position: relative; }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }
h1 { font-size: clamp(40px, 5.6vw, 74px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.015em; }
h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
strong, b { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow.accent { color: var(--accent); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow .dot.green { background: var(--green); }

.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.62; color: var(--ink-3); }
.kicker { color: var(--accent); }

.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 { margin-bottom: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #fff; box-shadow: var(--sh-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(19,178,103,0.38); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.btn-lg { font-size: 18px; padding: 18px 34px; }
.btn .arrow { transition: transform .16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); color: var(--ink-3);
}
.chip.tint { background: var(--accent-tint); border-color: var(--accent-line); color: var(--accent-deep); }
.chip.green { background: var(--green-tint); border-color: rgba(47,158,99,0.25); color: #1f7a4a; }
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* tiny tag (skill tags etc.) */
.tag {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 9px; border-radius: 6px; background: var(--accent-tint); color: var(--accent-deep);
}
.tag.gray { background: var(--surface-3); color: var(--ink-3); }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.card-pad { padding: 26px; }

/* ---------- brand mark ---------- */
.px-mark {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
}
.px-mark.fill { background: linear-gradient(165deg, var(--accent-bright), var(--accent-deep)); color: #fff; box-shadow: var(--sh-orange); }
.px-mark.outline { border: 2px solid var(--accent); color: var(--accent); background: var(--accent-tint); }

/* ---------- SIMON logo mark (command prompt glyph) ---------- */
.simon-mark {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--accent-bright), var(--accent-deep));
  box-shadow: var(--sh-orange);
}
.simon-mark svg { width: 56%; height: 56%; display: block; }
.simon-mark.ghost { background: var(--accent-tint); border: 1.5px solid var(--accent-line); box-shadow: none; }
.simon-mark.ghost svg { color: var(--accent); }
.cmd-glyph { color: #fff; }

.logo-lockup { display: inline-flex; align-items: center; gap: 12px; }
.logo-lockup .wm { font-family: var(--mono); font-weight: 700; font-size: 19px; letter-spacing: 0.14em; color: var(--ink); line-height: 1; }
.logo-lockup .sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(236,238,243,0.82); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 28px; max-width: 1320px; margin: 0 auto; }
.nav .links { display: flex; gap: 28px; }
.nav .links a { font-size: 14.5px; font-weight: 500; color: var(--ink-3); transition: color .15s; }
.nav .links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-price { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; white-space: nowrap; }

/* announcement strip */
.announce {
  position: relative; z-index: 3;
  background: var(--ink); color: #efe9df;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em;
  text-align: center; padding: 9px 16px;
  display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.announce b { color: #fff; }
.announce .sep { color: var(--accent-bright); }

/* ---------- hero ---------- */
.hero { padding: 70px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .lo { display: block; color: var(--ink); }
.hero h1 .accent { color: var(--accent); }
.hero .sub { margin-top: 24px; max-width: 540px; }
.hero .micro { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); margin-top: 28px; }
.hero-cta { display: flex; gap: 14px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.hero .scroll-link { font-size: 14.5px; color: var(--ink-3); display: inline-flex; gap: 6px; align-items: center; }
.hero .scroll-link:hover { color: var(--accent); }

/* device / command mock */
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.mock-top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); }
.mock-top .dots { display: flex; gap: 6px; }
.mock-top .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock-top .url { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-left: 4px; }
.mock-body { padding: 22px; }

.hud-greet { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hud-h { font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin: 8px 0 18px; }

/* command bar */
.cmd {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 12px 12px 12px 18px; box-shadow: var(--sh-sm);
}
.cmd .chev { color: var(--accent); font-family: var(--mono); font-weight: 700; }
.cmd .ph { flex: 1; color: var(--ink-3); font-size: 14.5px; }
.cmd .ico-row { display: flex; gap: 6px; align-items: center; }
.cmd .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--ink-3); }
.cmd .ico:hover { background: var(--surface-3); color: var(--ink); }
.cmd .ico svg { width: 18px; height: 18px; }
.cmd .exec {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 11px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent)); color: #fff;
  font-size: 13.5px; font-weight: 600; box-shadow: var(--sh-orange);
}
.cmd .exec svg { width: 14px; height: 14px; }

.suggest-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.suggest {
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
  padding: 7px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line);
  display: inline-flex; gap: 7px; align-items: center;
}
.suggest .b { color: var(--accent); }

/* mini stat row in hud */
.hud-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.hud-stat .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hud-stat .v { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; margin-top: 4px; }
.hud-stat .v.green { color: var(--green); }
.hud-stat .v.ink { color: var(--ink); }

/* trust row under hero */
.trust-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 30px; }
.trust-item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-3); }
.trust-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ---------- generic feature grid ---------- */
.grid { display: grid; gap: 18px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* agent card */
.agent {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--sh-xs); transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
  display: flex; flex-direction: column; gap: 12px; min-height: 100%;
}
.agent:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--accent-line); }
.agent .av { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 13px; color: #fff; background: linear-gradient(165deg, var(--accent-bright), var(--accent-deep)); }
.agent .nm { font-weight: 700; color: var(--ink); font-size: 17px; letter-spacing: -0.01em; }
.agent .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }
.agent .desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.agent.lead { background: linear-gradient(180deg, #fff, var(--accent-tint)); border-color: var(--accent-line); }

/* feature block (icon + text) */
.feat { display: flex; gap: 16px; }
.feat .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); border: 1px solid var(--accent-line); }
.feat .ic svg { width: 22px; height: 22px; }
.feat h4 { margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--ink-3); }

/* ---------- fleet map diagram ---------- */
.fleet-map { display: flex; flex-direction: column; align-items: center; }
.fm-you { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fm-cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); }
.fm-node {
  display: grid; place-items: center; font-family: var(--mono); font-weight: 700;
  border-radius: 14px; letter-spacing: 0.04em;
}
.fm-node.you { width: 90px; height: 44px; background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); font-size: 14px; box-shadow: var(--sh-xs); }
.fm-node.ceo { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(165deg, var(--accent-bright), var(--accent-deep)); color: #fff; font-size: 17px; box-shadow: var(--sh-orange); }
.fm-line.v { width: 2px; height: 32px; background: linear-gradient(var(--accent-line), var(--accent)); position: relative; overflow: hidden; border-radius: 2px; }
.fm-line.v::after { content: ''; position: absolute; left: 0; width: 100%; height: 45%; background: linear-gradient(180deg, transparent, var(--accent-bright)); animation: lineFlow 1.7s linear infinite; }
@keyframes lineFlow { from { top: -45%; } to { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .fm-line.v::after { animation: none; display: none; } }
.fm-ceo { display: flex; align-items: center; gap: 14px; padding: 10px 18px 10px 12px; background: var(--surface); border: 1px solid var(--accent-line); border-radius: 16px; box-shadow: var(--sh-sm); }
.fm-ceo-txt { display: flex; flex-direction: column; line-height: 1.25; }
.fm-ceo-txt b { color: var(--ink); font-size: 15px; }
.fm-ceo-txt span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.fm-fan { width: 70%; max-width: 620px; height: 46px; margin-top: 18px;
  border-left: 1.5px solid var(--accent-line); border-right: 1.5px solid var(--accent-line);
  border-top: 1.5px solid var(--accent-line); border-radius: 16px 16px 0 0;
  position: relative;
}
.fm-fan::after { content: ''; position: absolute; top: -18px; left: 50%; width: 1.5px; height: 18px; background: var(--accent); transform: translateX(-50%); }

/* ---------- fleet map: flowing green light ---------- */
.fm-line.v { box-shadow: 0 0 7px rgba(19,178,103,0.22); }
.fm-line.v::after {
  height: 55%;
  background: linear-gradient(180deg, transparent, var(--accent-bright));
  box-shadow: 0 0 11px 2px rgba(33,213,127,0.75);
}
/* SVG connector with light packets radiating from the CEO out to the fleet */
.fm-conn { width: 72%; max-width: 640px; height: 66px; margin-top: 14px; display: block; overflow: visible; }
.fm-conn .fc-base { fill: none; stroke: var(--accent-line); stroke-width: 1.6; }
.fm-conn .fc-flow {
  fill: none; stroke: var(--accent-bright); stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 34 600;
  filter: drop-shadow(0 0 4px var(--accent-bright)) drop-shadow(0 0 9px rgba(33,213,127,0.55));
  animation: fcFlow 2.4s linear infinite;
}
@keyframes fcFlow { from { stroke-dashoffset: 34; } to { stroke-dashoffset: -372; } }
@media (prefers-reduced-motion: reduce) { .fm-conn .fc-flow { animation: none; opacity: 0; } }
.fm-agents { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 720px; margin-top: 4px; }
.fm-agent {
  font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--ink-2);
  padding: 9px 16px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--sh-xs); transition: transform .15s, border-color .2s, color .2s;
}
.fm-agent:hover { border-color: var(--accent-line); color: var(--accent-deep); transform: translateY(-2px); }
.loop-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.audit-card { padding: 24px; }
.audit-line { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.audit-line:last-child { border-bottom: 0; }
.audit-line .st { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; margin-top: 1px; }
.audit-line .st.fix { background: var(--green-tint); color: #1f7a4a; }
.audit-line .st.scan { background: var(--accent-tint); color: var(--accent); }
.audit-line .tx { font-size: 13.5px; color: var(--ink-2); }
.audit-line .tx b { color: var(--ink); }
.audit-line .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.03em; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--sh-xs); }
.step .n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: #fff; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(165deg, var(--accent-bright), var(--accent-deep)); margin-bottom: 16px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-3); }
.step code { font-family: var(--mono); font-size: 13px; background: var(--surface-3); padding: 2px 6px; border-radius: 5px; color: var(--accent-deep); }

/* stat strip */
.statstrip { display: grid; grid-template-columns: repeat(3, 1fr); }
.statstrip .s { padding: 36px 28px; text-align: center; border-right: 1px solid var(--line-2); }
.statstrip .s:last-child { border-right: 0; }
.statstrip .num { font-size: clamp(44px, 6vw, 68px); font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.statstrip .lab { font-size: 14px; color: var(--ink-3); margin-top: 12px; }

/* pricing */
.price-card { max-width: 560px; margin: 0 auto; padding: 0; overflow: hidden; }
.price-head { padding: 30px 34px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); }
.price-head .name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.price-amt { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.price-amt .big { font-size: 62px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-amt .per { font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
.price-body { padding: 28px 34px 34px; }
.price-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.price-list .pi { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.price-list .pi svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.price-foot { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 16px; letter-spacing: 0.03em; }

/* value math */
.valmath { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.valmath .vm { padding: 24px; border-right: 1px solid var(--line-2); }
.valmath .vm:last-child { border-right: 0; background: var(--accent-tint); }
.valmath .vm .t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.valmath .vm .a { font-size: 26px; font-weight: 800; color: var(--ink); margin-top: 8px; letter-spacing: -0.02em; }
.valmath .vm:last-child .a { color: var(--accent); }

/* guarantee */
.guarantee { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 48px; display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.seal { width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); border: 2px dashed var(--accent-line); color: var(--accent); flex-shrink: 0; text-align: center; }
.seal .big { font-size: 34px; font-weight: 800; line-height: 1; color: var(--accent); }
.seal .sm { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

/* founder */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.founder .photo { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); aspect-ratio: 4/5; background: var(--surface-3); }
.founder .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-weight: 600; font-size: 18px; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pl { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .2s; color: var(--accent); }
.qa summary .pl::before, .qa summary .pl::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.qa summary .pl::before { left: 11px; top: 4px; width: 2px; height: 16px; }
.qa summary .pl::after { left: 4px; top: 11px; width: 16px; height: 2px; }
.qa[open] summary .pl { transform: rotate(45deg); }
.qa .a { padding: 0 4px 24px; font-size: 15.5px; color: var(--ink-3); line-height: 1.62; max-width: 700px; }

/* CTA band */
.cta-band { background: var(--ink); border-radius: var(--r-xl); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 50% 120%, rgba(33,213,127,0.30), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #c9c2b6; margin: 22px auto 0; max-width: 640px; }
.cta-band .micro { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: #9a9384; margin-top: 22px; }

/* footer */
.footer { padding: 56px 0 64px; border-top: 1px solid var(--line); }
.footer .row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .links { display: flex; gap: 22px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.04em; }
.footer .links a:hover { color: var(--accent); }
.footer .cr { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- reveal animation (enhancement only — visible by default) ---------- */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js-anim .reveal { opacity: 0; transform: translateY(22px); }
.js-anim .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .js-anim .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- council of titans ---------- */
.council { background: linear-gradient(180deg, var(--council-bg), var(--council-bg-2)); border-top: 1px solid rgba(26,23,18,0.07); border-bottom: 1px solid rgba(26,23,18,0.07); }
.council .eyebrow { color: #5b6472; }
.council .eyebrow .dot { background: var(--teal); }
.council h2 .teal { color: var(--teal); }
.council .lede { color: #5b6472; }

.council-input {
  display: flex; align-items: center; gap: 12px; max-width: 620px; margin: 36px auto 0;
  background: #fff; border: 1px solid rgba(26,23,18,0.12); border-radius: 14px; padding: 12px 14px 12px 18px;
  box-shadow: 0 6px 22px rgba(40,50,70,0.10);
}
.council-input .tgt { width: 18px; height: 18px; color: var(--teal); }
.council-input .q { flex: 1; color: var(--ink-2); font-size: 15px; }
.council-input .lane { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--teal); background: rgba(20,169,154,0.1); padding: 5px 10px; border-radius: 999px; }
.council-input .conv { font-family: var(--mono); font-size: 11px; color: #98a0ad; }

.titans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1000px; margin: 56px auto 0; }
.titan { display: flex; flex-direction: column; align-items: center; text-align: center; }
.titan .ring {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; font-family: var(--mono); font-weight: 700; font-size: 19px;
  border: 2px solid currentColor; position: relative;
}
.titan .ring::after { content: ''; position: absolute; inset: -7px; border-radius: 50%; background: radial-gradient(circle, currentColor, transparent 68%); opacity: 0.22; z-index: -1; }
.titan .nm { font-weight: 700; color: var(--ink); font-size: 15px; margin-top: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.titan .sp { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a92a0; margin-top: 3px; }
.titan .take { margin-top: 14px; width: 100%; background: #fff; border: 1px solid rgba(26,23,18,0.08); border-top: 2px solid currentColor; border-radius: 12px; padding: 12px; box-shadow: 0 4px 14px rgba(40,50,70,0.06); text-align: left; }
.titan .take .l { height: 6px; border-radius: 4px; background: rgba(40,50,70,0.10); margin-bottom: 7px; }
.titan .take .l.w1 { width: 100%; } .titan .take .l.w2 { width: 72%; } .titan .take .l.w3 { width: 86%; margin-bottom: 0; }
.titan.elon { color: #7a5cd6; } .titan.alex { color: #e0533d; } .titan.steve { color: #6b7280; } .titan.gary { color: #e3902a; } .titan.bill { color: #3f8ad6; }

.council-stage { max-width: 760px; margin: 56px auto 0; }
.council-phase { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #98a0ad; text-align: center; margin-bottom: 16px; }
.council-phase b { color: var(--teal); }
.pyxi-check { background: rgba(255,255,255,0.7); border: 1px solid rgba(20,169,154,0.25); border-radius: 16px; padding: 22px 24px; }
.pyxi-check .hd { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pyxi-check p { font-size: 14.5px; color: #4f5765; }
.verdict { background: #fff; border: 1px solid rgba(26,23,18,0.1); border-radius: 16px; padding: 26px; text-align: center; box-shadow: 0 10px 30px rgba(40,50,70,0.1); margin-top: 20px; }
.verdict .hd { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #98a0ad; margin-bottom: 10px; }
.verdict .big { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }

@media (max-width: 760px) {
  .titans { grid-template-columns: repeat(2, 1fr); max-width: 420px; }
  .titan:last-child { grid-column: 1 / -1; max-width: 200px; margin: 0 auto; }
}
@media (max-width: 980px) {
  .hero-grid, .loop-grid, .founder { grid-template-columns: 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 24px; padding: 36px; }
  .nav .links { display: none; }
}
@media (max-width: 680px) {
  section { padding: 72px 0; }
  .wrap, .wrap-wide { padding: 0 18px; }
  .g-2, .g-4, .g-3, .valmath, .statstrip { grid-template-columns: 1fr; }
  .statstrip .s { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .valmath .vm { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .hud-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-price { display: none; }
  .cta-band { padding: 48px 22px; }
  .hero .micro { font-size: 11px; }
}

/* ============================================================
   FLOW-LIGHT ENGINE + GLOW + LIVE TOUCHES
   ============================================================ */

/* traveling light bars along SVG connector paths */
.flow-base { fill: none; stroke-width: 2; stroke-linecap: round; opacity: 0.32; }
.flow-light {
  fill: none; stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 46 460;
  filter: drop-shadow(0 0 6px currentColor);
  animation: flowDown 2.6s linear infinite;
}
@keyframes flowDown { from { stroke-dashoffset: 506; } to { stroke-dashoffset: 0; } }
.flow-light.s2 { animation-duration: 3.1s; animation-delay: -0.6s; }
.flow-light.s3 { animation-duration: 2.9s; animation-delay: -1.2s; }
.flow-light.s4 { animation-duration: 3.3s; animation-delay: -0.3s; }
.flow-light.s5 { animation-duration: 2.7s; animation-delay: -1.6s; }
@media (prefers-reduced-motion: reduce) { .flow-light { animation: none; opacity: 0.5; stroke-dasharray: none; } }

/* glow pulse for nodes */
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 0 0 var(--glowc, rgba(122,92,214,0.4)); } 50% { box-shadow: 0 0 0 7px transparent, 0 0 22px 2px var(--glowc, rgba(122,92,214,0.4)); } }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: relative; display: inline-block; }
.live-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--green); opacity: 0; animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.7; } 100% { transform: scale(1.9); opacity: 0; } }

/* typewriter caret */
.type-target { white-space: pre-wrap; }
.caret { display: inline-block; width: 2px; height: 1.05em; background: var(--accent); vertical-align: text-bottom; margin-left: 1px; animation: caretBlink 1s steps(1) infinite; transform: translateY(2px); }
.caret.teal { background: var(--teal); }
@keyframes caretBlink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

/* ---- Council SVG scene ---- */
.council-scene { position: relative; max-width: 1000px; margin: 18px auto 0; }
.council-scene svg { display: block; width: 100%; height: auto; overflow: visible; }
.cs-router {
  position: absolute; top: 4%; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 3;
}
.cs-hex { width: 52px; height: 58px; display: grid; place-items: center; position: relative; }
.cs-hex svg { width: 100%; height: 100%; }
.cs-lanes { position: absolute; top: 28%; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 92%; }
.lane-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--teal); background: rgba(20,169,154,0.10); border: 1px solid rgba(20,169,154,0.28); padding: 8px 16px; border-radius: 999px; font-size: 15px; box-shadow: 0 4px 16px rgba(20,169,154,0.14); }
.lane-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; }
.lane-chip { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: #7a8290; display: inline-flex; gap: 5px; align-items: center; text-transform: uppercase; }
.lane-chip.on { color: #fff; background: var(--teal); padding: 5px 11px; border-radius: 999px; box-shadow: 0 3px 10px rgba(20,169,154,0.3); }
.cs-nodes { position: absolute; left: 0; bottom: 0; width: 100%; display: grid; grid-template-columns: repeat(5,1fr); z-index: 3; }
.cs-node { display: flex; flex-direction: column; align-items: center; }
.cs-ring { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: #fff; font-family: var(--mono); font-weight: 700; font-size: 18px; border: 2px solid currentColor; position: relative; animation: glowPulse 3.2s ease-in-out infinite; }
.cs-ring::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: radial-gradient(circle, currentColor, transparent 66%); opacity: 0.20; z-index: -1; }
.cs-init { font-family: var(--mono); font-weight: 700; font-size: 24px; fill: currentColor; text-anchor: middle; dominant-baseline: central; }
.cs-halo { opacity: 0.12; animation: haloPulse 3.4s ease-in-out infinite; }
.cs-halo.h2 { animation-delay: -0.7s; } .cs-halo.h3 { animation-delay: -1.3s; } .cs-halo.h4 { animation-delay: -0.4s; } .cs-halo.h5 { animation-delay: -1.8s; }
@keyframes haloPulse { 0%,100% { opacity: 0.08; } 50% { opacity: 0.26; } }
@media (prefers-reduced-motion: reduce) { .cs-halo { animation: none; opacity: 0.18; } .cs-ring { animation: none; } }

/* live feed ticker */
.livefeed { display: flex; flex-direction: column; gap: 0; }
.lf-row { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-2); animation: lfIn .5s ease both; }
.lf-row:last-child { border-bottom: 0; }
@keyframes lfIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lf-tag { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 6px; flex-shrink: 0; }
.lf-tag.link { background: var(--teal-tint); color: #0e7d72; }
.lf-tag.cron { background: var(--accent-tint); color: var(--accent-deep); }
.lf-tag.meta { background: var(--blue-tint); color: #2a52b0; }
.lf-tag.shop { background: #efe9fb; color: #5a40a8; }
.lf-time { font-family: var(--mono); font-size: 11px; color: var(--muted); width: 30px; flex-shrink: 0; }
.lf-txt { font-size: 13.5px; color: var(--ink-2); }
