/* ============================================================
   Daiton — Command Center site
   Shared stylesheet (design tokens + components)
   ============================================================ */

:root {
  /* ============ DESIGN.md system — adopted from the LIVE daiton.ai ============
     brand accent = electric blue; coral is ONLY the live-activity pulse. */

  /* brand accent — blue family (aliased onto the old --plum names so every
     component flips at once) */
  --plum: #1C8CFF;                       /* blue-500 · buttons, links, strong accents */
  --plum-600: #5EB4FF;                   /* blue-300 · hovers */
  --plum-700: #8FC9F5;                   /* light text-on-tint */
  --plum-050: rgba(28, 140, 255, .10);   /* tint bg */
  --plum-100: rgba(28, 140, 255, .30);   /* tint border */
  --spark: #5CC2FF;                      /* the signature glow · logo · key lines */
  --spark-soft: #C4E9FF;

  /* dark (mission control) — live-site elevations */
  --bg-900: #0A0E16;
  --bg-850: #0E131D;
  --bg-800: #11161F;
  --bg-750: #1A2130;
  --line-dk: #242C3A;
  --ink-dk: #EAF1F8;
  --mut-dk: #97A6BC;

  /* one canvas aliases */
  --bg: #0A0E16;
  --bg-soft: #0C111A;
  --bg-soft2: #0E131D;
  --ink: #EAF1F8;
  --ink-2: #C9D6E6;
  --mut: #97A6BC;
  --faint: #788AA2;
  --line: #242C3A;
  --panel: #11161F;
  --panel-2: #1A2130;
  --line-2: #34405A;

  /* status — lime is LIVE/RUNNING, amber is status-only */
  --lime: #5FD0A8;
  --amber: #E0922E;

  /* the PULSE — warm coral, exclusively "work happening right now"
     (viz active paths, live boards, activity LEDs). Never on chrome. */
  --ember: #FF9E7A;
  --ember-2: #F08D68;
  --ember-deep: #C77450;
  --ember-glow: rgba(255, 158, 122, .45);
  --navy: #0A0E16;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, .55);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, .65);

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow { font: 700 13px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--plum); }
.dark .eyebrow { color: var(--spark); }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.muted { color: var(--mut); }

/* ---------- buttons ---------- */
.btn {
  --b: var(--plum);
  display: inline-flex; align-items: center; gap: .5em;
  font: 700 15px/1 var(--sans);
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--plum); color: #fff; box-shadow: 0 10px 24px -10px rgba(28,140,255,.55); }
.btn-primary:hover { background: var(--plum-600); box-shadow: 0 16px 34px -12px rgba(94,180,255,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }
.dark .btn-ghost { color: var(--ink-dk); border-color: var(--line-dk); }
.dark .btn-ghost:hover { border-color: var(--spark); color: var(--spark); }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn .arw { transition: transform .2s; }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- announcement bar ---------- */
.annobar {
  background: var(--bg-850);
  border-bottom: 1px solid var(--line-dk);
  color: #E8E5F2; font: 600 13.5px/1.2 var(--sans);
  text-align: center; padding: 9px 16px;
}
.annobar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.annobar .dot { display:inline-block; width:7px; height:7px; border-radius:50%; background: var(--lime); margin-right: 7px; box-shadow: 0 0 0 0 rgba(95,208,168,.7); animation: pulse 2s infinite; vertical-align: middle;}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(95,208,168,.6)} 70%{box-shadow:0 0 0 7px rgba(95,208,168,0)} 100%{box-shadow:0 0 0 0 rgba(95,208,168,0)} }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,22,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dk);
  transition: background .2s ease;
}
.nav-in { display: flex; align-items: center; gap: 24px; padding: 16px var(--pad); max-width: var(--maxw); margin-inline: auto; }
.nav.shrink .nav-in { padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--ink-dk); letter-spacing: -.02em; }
.brand .mk { width: 26px; height: 26px; }
.nav-links { display: flex; gap: 22px; margin-left: 12px; }
.nav-links a { color: var(--mut-dk); font-weight: 600; font-size: 14.5px; transition: color .15s; }
.nav-links a:hover { color: var(--ink-dk); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-right .login { color: var(--mut-dk); font-weight:600; font-size:14.5px; }
.nav-right .login:hover { color: var(--ink-dk); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display:block; width: 22px; height: 2px; background: var(--ink-dk); margin: 4px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero (dark) ---------- */
.dark { background: var(--bg-900); color: var(--ink-dk); }
.hero { position: relative; overflow: hidden; background: radial-gradient(1100px 520px at 72% -8%, rgba(92,194,255,.10), transparent 60%), radial-gradient(760px 420px at 8% 12%, rgba(28,140,255,.07), transparent 60%), var(--bg-900); }
.hero::after { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--line-dk) 1px, transparent 1px), linear-gradient(90deg, var(--line-dk) 1px, transparent 1px); background-size: 46px 46px; opacity:.14; mask-image: radial-gradient(70% 60% at 60% 30%, #000, transparent 75%); pointer-events:none; }
.hero-in { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: clamp(34px, 4vw, 52px); padding: clamp(44px, 7vw, 80px) var(--pad) clamp(30px, 4vw, 44px); max-width: var(--maxw); margin-inline: auto; }
.hero-in > * { min-width: 0; }
.hero-copy { text-align: center; max-width: 860px; }
.hero-copy .eyebrow { margin-bottom: 14px; }
.hero-visual.full { width: 100%; }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); font-weight: 850; letter-spacing: -.035em; margin-bottom: .35em; }
.hero h1 .accent { color: var(--spark); }

.hero-sub { font-size: clamp(17px, 1.9vw, 20.5px); color: var(--mut-dk); max-width: 58ch; margin: 0 auto 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-bottom: 22px; }
.hero .btn-ghost { color: var(--ink-dk); }
.chips { display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; }
.chip { font: 600 13px/1 var(--sans); color: var(--mut-dk); border: 1px solid var(--line-dk); background: rgba(255,255,255,.02); padding: 8px 12px; border-radius: 999px; }
.chip b { color: var(--ember); font-weight:700; }
.trust { margin-top: 4px; width: 100%; max-width: 760px; }
.trust .lbl.center { text-align: center; }
.trust .lbl { font: 600 11.5px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--mut-dk); opacity:.8; margin-bottom: 10px; }
.trust .logos { display: flex; flex-wrap: nowrap; gap: 8px 18px; justify-content: center; color: var(--ink-dk); font-weight: 700; font-size: 14px; opacity: .82; }
.trust .logos span { display:inline-flex; align-items:center; gap:7px; }
.trust .logos i { width:7px; height:7px; border-radius:50%; background: var(--ember); opacity:.85; font-style: normal; }

/* (A/B toggle removed — command center only) */

/* ---------- live board (hero visual) ---------- */
.board { position: relative; border: 1px solid var(--line-dk); border-radius: 18px; background: linear-gradient(180deg, var(--bg-800), var(--bg-850)); box-shadow: var(--shadow-lg); overflow: hidden; }
.board-bar { display:flex; align-items:center; gap:8px; padding: 12px 14px; border-bottom: 1px solid var(--line-dk); background: rgba(255,255,255,.015); }
.board-bar .dots { display:flex; gap:6px; }
.board-bar .dots i { width:10px; height:10px; border-radius:50%; background:#3a3350; }
.board-bar .ttl { font: 600 12.5px/1 var(--mono); color: var(--mut-dk); letter-spacing:.03em; }
.board-bar .live { margin-left:auto; font: 700 11px/1 var(--mono); color: var(--lime); display:flex; align-items:center; gap:6px; letter-spacing:.1em; }
.board-bar .live::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--lime); box-shadow:0 0 10px var(--lime); animation: pulse 2s infinite; }
.board-body { padding: 14px; display:grid; gap: 12px; }
.board-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile { border:1px solid var(--line-dk); border-radius: 12px; padding: 12px; background: rgba(255,255,255,.02); }
.tile .row1 { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.tile .name { font: 700 13px/1 var(--sans); color: var(--ink-dk); display:flex; align-items:center; gap:8px; }
.tile .name i { width:8px; height:8px; border-radius:50%; font-style:normal; }
.st-run i { background: var(--ember); box-shadow:0 0 8px var(--ember);} .st-done i{ background: var(--lime);} .st-wait i{ background: var(--amber);}
.tile .st { font: 700 10.5px/1 var(--mono); letter-spacing:.1em; text-transform:uppercase; color: var(--mut-dk); }
.tile .tok { font: 600 12px/1 var(--mono); color: var(--mut-dk); }
.tile .tok b { color: var(--ink-dk); }
.tile .barwrap { height:5px; background: var(--line-dk); border-radius:3px; overflow:hidden; margin-top:8px; }
.tile .barfill { height:100%; width:100%; background: linear-gradient(90deg, var(--plum), var(--spark)); border-radius:3px; transform-origin: left; transform: scaleX(var(--fill, .4)); transition: transform .6s var(--ease-out-quart, ease); }
.meter { border:1px solid var(--line-dk); border-radius:12px; padding: 12px 14px; background: rgba(255,255,255,.02); }
.meter .row1 { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.meter .lbl { font: 700 11px/1 var(--mono); letter-spacing:.12em; text-transform:uppercase; color: var(--mut-dk); }
.meter .val { font: 800 22px/1 var(--mono); color: var(--ink-dk); }
.meter .val small { font-size: 12px; color: var(--mut-dk); font-weight:600; }
.meter .track { height:8px; border-radius:5px; background: var(--line-dk); overflow:hidden; }
.meter .track > div { height:100%; width:100%; background: linear-gradient(90deg, var(--ember), var(--amber)); border-radius:5px; transform-origin: left; transform: scaleX(var(--fill, .34)); transition: transform .8s var(--ease-out-quart, ease); }
.meter .save { color: var(--lime); font-weight:700; }

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 104px) 0; }
.sec-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); text-align:center; }
.sec-head h2 { font-size: clamp(28px, 4vw, 44px); }
.sec-head p { font-size: clamp(16px, 1.7vw, 19px); color: var(--mut); }
.soft { background: var(--bg-soft); }
.soft2 { background: var(--bg-soft2); }

/* problem cards */
.cards { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card { background: var(--panel); border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.dark .card { background: var(--bg-800); border-color: var(--line-dk); }
.card .ic { width: 44px; height:44px; border-radius: 12px; display:grid; place-items:center; margin-bottom:16px; background: var(--plum-050); color: var(--plum); }
/* h2 as well as h3: the /compare cards are h2 so the page has no h1->h3 heading skip.
   This selector is tag-based, so the tag and this rule must always move together. */
.card h2, .card h3 { font-size: 20px; }
.card p { color: var(--mut); margin:0; font-size: 15.5px; }

/* the shift band */
.shift { background: var(--bg-900); color: var(--ink-dk); text-align:center; }
.shift .not { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin: 6px 0 26px; }
.shift .not span { border:1px solid var(--line-2); background: var(--bg-850); border-radius:999px; padding:10px 18px; color: var(--mut-dk); font-weight:600; font-size:14.5px; }
.shift .not span::before { content:"\2715\00a0\00a0"; color:#6E6890; font-weight:800; font-size:12px; }
.shift h2 { font-size: clamp(28px, 4.4vw, 50px); max-width: 16ch; margin-inline:auto; }
.shift h2 .accent, .cta h2 .accent { color: var(--spark); }

/* how it works (terminal) */
.how-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:center; }
.terminal { border-radius: 14px; overflow:hidden; border:1px solid var(--line-dk); background: var(--bg-850); box-shadow: var(--shadow-lg); font-family: var(--mono); }
.terminal .tbar { display:flex; gap:7px; padding:12px 14px; border-bottom:1px solid var(--line-dk); background: rgba(255,255,255,.02);}
.terminal .tbar i { width:11px;height:11px;border-radius:50%; }
.terminal .tbar i:nth-child(1){background:#ff5f57} .terminal .tbar i:nth-child(2){background:#febc2e} .terminal .tbar i:nth-child(3){background:#28c840}
.terminal .tbody { padding: 24px 26px; font-size: 14.5px; line-height: 2.05; color: var(--ink-dk); }
.terminal .pr { color: var(--ember); }
.terminal .ok { color: var(--lime); }
.terminal .cm { color: var(--mut-dk); }
.terminal .cur { display:inline-block; width:8px; height:15px; background: var(--ember); vertical-align:-2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50%{opacity:0} }
.steps { display:grid; gap: 16px; }
.step { display:flex; gap:16px; }
.step .n { flex:0 0 auto; width:34px; height:34px; border-radius:10px; display:grid; place-items:center; font:800 15px/1 var(--mono); background: linear-gradient(135deg,#5EB4FF,#1C8CFF); color:#fff; }
.step h3, .step h4 { margin:2px 0 3px; font-size:17px; }
.step p { margin:0; color: var(--mut); font-size:15px; }
.badge-star { display:inline-flex; align-items:center; gap:8px; background: var(--plum-050); color: var(--plum-700); border:1px solid var(--plum-100); font-weight:700; font-size:13.5px; padding:8px 14px; border-radius:999px; margin-top:6px; }

/* pillars */
.pillars { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.pillar { border:1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--panel); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--plum-100); }
.pillar .ic { width:42px;height:42px;border-radius:11px; display:grid;place-items:center; background: linear-gradient(135deg,#5EB4FF,#1C8CFF); color:#fff; margin-bottom:14px; }
.pillar h3 { font-size:18px; }
.pillar p { color: var(--mut); font-size:14.5px; margin:0; }

/* who it's for */
.who { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.who .col { border-radius: var(--radius); padding: 28px; border:1px solid var(--line); }
.who .yes { background: linear-gradient(180deg, var(--panel), rgba(28,140,255,.06)); }
.who .no { background: var(--bg-soft); }
.who h3 { font-size:19px; display:flex; align-items:center; gap:10px; }
.who ul { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.who li { display:flex; gap:10px; font-size:15.5px; color: var(--ink-2); }
.who li .mk { flex:0 0 auto; margin-top:2px; font-weight:800; }
.who .yes .mk { color: var(--plum); } .who .no .mk { color: var(--mut); }

/* pricing cards */
.prices { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; align-items:start; }
.price { border:1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--panel); position:relative; box-shadow: var(--shadow); }
.price.feat { border-color: var(--plum); box-shadow: 0 30px 60px -30px rgba(28,140,255,.4); }
.price .tag { position:absolute; top:-12px; right:22px; background: linear-gradient(135deg,#5EB4FF,#1C8CFF); color:#fff; font:700 11px/1 var(--mono); letter-spacing:.1em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }
.price h2, .price h3 { font-size:20px; margin-bottom:4px; }
.price .who2 { color: var(--mut); font-size:14px; margin-bottom:16px; }
.price .amt { font: 800 30px/1 var(--sans); letter-spacing:-.02em; margin-bottom:4px; }
.price .amt small { font-size:14px; color: var(--mut); font-weight:600; }
.price ul { list-style:none; padding:0; margin:18px 0 22px; display:grid; gap:10px; }
.price li { display:flex; gap:9px; font-size:14.5px; color: var(--ink-2); }
.price li .ck { color: var(--plum); font-weight:800; flex:0 0 auto; }
.price .btn { width:100%; justify-content:center; }

/* compare table */
.tablewrap { overflow-x:auto; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
table.cmp { width:100%; border-collapse: collapse; min-width: 640px; background: var(--panel); }
table.cmp th, table.cmp td { text-align:left; padding: 15px 18px; border-bottom:1px solid var(--line); font-size:14.5px; }
table.cmp thead th { background: var(--bg-soft); font-size:13px; text-transform:uppercase; letter-spacing:.06em; color: var(--mut); }
table.cmp tbody tr td:first-child { font-weight:700; color: var(--ink); }
table.cmp .col-daiton { background: var(--plum-050); }
table.cmp th.col-daiton { color: var(--plum-700); }
table.cmp .yes { color: #7CE3A0; font-weight:700; }
table.cmp .no { color: #7A7590; }

/* CTA band */
.cta { background: radial-gradient(900px 400px at 50% -20%, rgba(28,140,255,.20), transparent 60%), var(--bg-900); color: var(--ink-dk); text-align:center; border-radius: 0; }
.cta h2 { font-size: clamp(28px, 4.4vw, 46px); }
.cta p { color: var(--mut-dk); max-width: 52ch; margin: 0 auto 28px; }
.cta .seats { font:600 13px/1 var(--mono); letter-spacing:.05em; color: var(--mut-dk); margin-top:16px; }

/* pilot form */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--panel); border:1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow); }
.field { margin-bottom:16px; }
.field label { display:block; font-weight:700; font-size:14px; margin-bottom:7px; }
.field input, .field select, .field textarea {
  width:100%; padding: 12px 14px; border:1px solid var(--line); border-radius: 10px; font: 400 15px/1.5 var(--sans); color: var(--ink); background: var(--bg-soft2);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(28,140,255,.22); }
.grid2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-ok { display:none; text-align:center; padding: 20px; }
.form-ok.show { display:block; }
.form-ok .big { font-size:48px; margin-bottom:8px; }

/* footer */
.footer { background: var(--bg-900); color: var(--mut-dk); padding: 56px 0 30px; border-top:1px solid var(--line-dk); }
.footer-in { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer h2, .footer h5 { color: var(--ink-dk); font:700 13px/1 var(--mono); letter-spacing:.1em; text-transform:uppercase; margin:0 0 14px; }
.footer a { display:block; color: var(--mut-dk); font-size:14.5px; padding:5px 0; }
.footer a:hover { color: var(--ink-dk); }
.footer .tag { max-width: 30ch; font-size:14.5px; line-height:1.6; }
.footer .brand { color: var(--ink-dk); margin-bottom:12px; }
.footer-bot { border-top:1px solid var(--line-dk); margin-top:36px; padding-top:20px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; }

/* reveal — visible by default; JS adds .fx to PLAY an entrance (never gates visibility) */
.reveal { opacity:1; transform:none; }
.reveal.fx { animation: rise .7s var(--ease-out-quart) both; animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes rise { from { opacity:0; transform: translateY(16px); } }

/* page hero (interior) */
.pagehero { background: radial-gradient(800px 340px at 70% -30%, rgba(28,140,255,.16), transparent 60%), var(--bg-900); color: var(--ink-dk); text-align:center; padding: clamp(56px,8vw,96px) 0 clamp(40px,6vw,64px); }
.pagehero h1 { font-size: clamp(32px, 5vw, 52px); }
.pagehero p { color: var(--mut-dk); max-width: 60ch; margin: 0 auto; font-size: 18px; }

/* faq */
.faq { max-width: 780px; margin: 0 auto; }
.qa { border:1px solid var(--line); border-radius: 12px; padding: 20px 22px; margin-bottom:14px; background: var(--panel); }
.qa h3, .qa h4 { margin:0 0 6px; font-size:17px; }
.qa p { margin:0; color: var(--mut); font-size:15px; }

/* generic two-col feature list (security) */
.feats { display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
.feat { border:1px solid var(--line); border-radius: var(--radius); padding:26px; background: var(--panel); box-shadow: var(--shadow); }
.feat .ic { width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:var(--plum-050);color:var(--plum);margin-bottom:14px; }
.feat h2, .feat h3 { font-size:19px; }
.feat p { color: var(--mut); margin:0; font-size:15px; }
.pill-status { display:inline-flex; align-items:center; gap:8px; font:700 12px/1 var(--mono); letter-spacing:.08em; text-transform:uppercase; color: var(--amber); border:1px solid rgba(255,194,75,.4); background: rgba(255,194,75,.08); padding:6px 12px; border-radius:999px; }
.pill-status.done { color:#7CE3A0; border-color: rgba(124,227,160,.35); background: rgba(124,227,160,.08); }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .how-grid { grid-template-columns: 1fr; }
  .cards, .pillars, .prices, .feats, .who, .footer-in { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 100%; left:0; right:0; flex-direction: column; gap: 0; background: var(--bg-850); border-bottom:1px solid var(--line-dk); padding: 8px var(--pad) 16px; }
  .nav.open .nav-links a { padding: 12px 0; border-bottom:1px solid var(--line-dk); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards, .pillars, .prices, .feats, .who, .footer-in, .grid2 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content:center; }
  .nav-in { gap: 12px; }
  .nav-right { gap: 10px; }
  .nav-right .login { display: none; }
  .nav-right .btn { padding: 11px 16px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
}

/* ============================================================
   BRAIN VIZ — the "company brain" network (3 variations)
   Fixed 640×520 stage, scaled to its frame by brain-viz.js
   ============================================================ */
.viz-frame { position: relative; width: 100%; }
.viz-stage { position: absolute; top: 0; left: 0; width: 640px; height: 520px; transform-origin: 0 0; }
.viz-mesh { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.viz-edge { fill: none; stroke: #2E3448; stroke-width: 1.1; transition: stroke .5s ease, opacity .5s ease; opacity: .8; }
.viz-edge.faint { opacity: .28; }
.viz-edge.thick { stroke-width: 1.6; }
.viz-edge.active { stroke: var(--ember); opacity: 1; filter: drop-shadow(0 0 5px var(--ember-glow)); }
.viz-edge.broken { stroke: #7A4040; stroke-dasharray: 4 5; opacity: .6; animation: brokenShift 1.4s linear infinite; }
@keyframes brokenShift { to { stroke-dashoffset: -18; } }
.viz-dot { fill: #FFE9DA; filter: drop-shadow(0 0 3px #FF9E7A) drop-shadow(0 0 8px #FF9E7A); }
.viz-star { fill: #3A4158; }
.viz-star.s0 { opacity: .8; } .viz-star.s1 { opacity: .5; } .viz-star.s2 { opacity: .3; }

.viz-toplabel { position: absolute; text-align: center; font: 700 12px/1 var(--mono); letter-spacing: .3em; color: var(--ember); opacity: .9; transition: opacity .4s; }

.viz-node { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 11px;
  background: rgba(22,26,38,.88); border: 1px solid #2E3448; border-radius: 12px;
  transition: border-color .45s, box-shadow .45s, transform .45s; }
.viz-node .pic { width: 18px; height: 18px; flex: 0 0 auto; }
.viz-node .pic svg, .viz-node .mini svg, .chip-ic svg { width: 100%; height: 100%; display: block; }
.viz-node .nm { font: 700 13px/1.1 var(--sans); color: #E8E6F2; white-space: nowrap; }
.viz-node .mini { margin-left: auto; display: flex; gap: 5px; }
.viz-node .mini i { width: 15px; height: 15px; opacity: .9; }
.viz-node .st-txt { margin-left: auto; font: 600 9.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: #7A7690; }
.viz-node.hot { border-color: var(--ember); box-shadow: 0 0 0 1px var(--ember), 0 0 22px -4px var(--ember-glow); }
.viz-node.synced .st-txt { color: var(--ember); }
.viz-node.agent.broken { border-color: #5A3A3A; }
.viz-node.agent.broken .st-txt { color: #C97B6B; }
.viz-node.j1 { animation: jitter 3.1s ease-in-out infinite; }
.viz-node.j2 { animation: jitter 2.6s ease-in-out infinite reverse; }
.viz-node.j3 { animation: jitter 3.7s ease-in-out infinite; }
.viz-node.synced { animation: none; }
@keyframes jitter { 0%,100% { transform: translate(0,0); } 30% { transform: translate(1.5px,-1px); } 60% { transform: translate(-1px,1.5px); } 80% { transform: translate(1px,.5px); } }
.viz-node .free { margin-left: auto; font: 700 10px/1 var(--mono); color: #57906B; opacity: 0; transition: opacity .25s; }
.viz-node.paid .free { opacity: 1; color: var(--lime); }
.viz-node.docnode { align-items: center; }
.viz-node.docnode .dcol { display: flex; flex-direction: column; gap: 3px; }
.viz-node.docnode .dcol .st-txt { margin-left: 0; }

.viz-brain { position: absolute; text-align: center; padding: 16px 12px 13px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(26,30,44,.96), rgba(18,21,32,.96));
  border: 1px solid var(--ember-2); box-shadow: 0 0 0 1px rgba(255,158,122,.25), 0 0 34px -6px var(--ember-glow), 0 24px 50px -20px rgba(0,0,0,.8);
  transition: box-shadow .5s; }
.viz-brain::before { content: ""; position: absolute; inset: -34px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,158,122,.14), transparent 72%); pointer-events: none; }
.viz-brain .bmark { width: 30px; height: 30px; margin: 0 auto 8px; }
.viz-brain .bmark svg { width: 100%; height: 100%; }
.viz-brain .bname { font: 800 18px/1 var(--sans); color: #F2EFF8; letter-spacing: -.01em; }
.viz-brain .bsub { margin-top: 6px; font: 700 8.5px/1 var(--mono); letter-spacing: .24em; color: #948DA8; }
.viz-brain.hot { box-shadow: 0 0 0 1.5px var(--ember), 0 0 46px -4px var(--ember), 0 24px 50px -20px rgba(0,0,0,.8); }

.viz-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: rgba(24,27,39,.94); border: 1px solid #333A50; border-radius: 12px;
  opacity: 0; transform: translateY(8px) scale(.96); transition: opacity .45s ease, transform .45s ease;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.75); z-index: 3; }
.viz-card.show { opacity: 1; transform: none; }
.viz-card .tag { flex: 0 0 auto; font: 700 9px/1 var(--mono); letter-spacing: .14em; padding: 5px 8px; border-radius: 999px;
  color: #B9B3CC; border: 1px solid #3D445C; }
.viz-card.ember { border-color: rgba(255,158,122,.55); box-shadow: 0 0 20px -6px var(--ember-glow), 0 18px 40px -18px rgba(0,0,0,.75); }
.viz-card.ember .tag { color: #14161F; background: var(--ember); border-color: var(--ember); }
.viz-card.amber .tag.warn, .viz-card .tag.warn { color: #14161F; background: var(--amber); border-color: var(--amber); }
.viz-card.amber { border-color: rgba(255,194,75,.5); }
.viz-card .txt { font: 500 12.5px/1.35 var(--sans); color: #E4E1EE; }

.viz-cluster { position: absolute; padding: 9px 11px 10px; background: rgba(22,26,38,.88); border: 1px solid #2E3448; border-radius: 12px;
  transition: border-color .45s, box-shadow .45s; }
.viz-cluster .clabel { display: flex; justify-content: flex-end; align-items: center; gap: 7px; font: 700 10px/1 var(--mono); letter-spacing: .14em; color: #8B85A0; margin-bottom: 8px; }
.viz-cluster .crow { display: flex; gap: 6px; justify-content: flex-end; }
.viz-cluster.hot { border-color: var(--ember); box-shadow: 0 0 0 1px var(--ember), 0 0 22px -4px var(--ember-glow); }

.viz-mlabel { position: absolute; display: flex; align-items: center; gap: 7px; font: 700 10px/1 var(--mono); letter-spacing: .18em; color: #8B85A0; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot.db { background: var(--ember); } .dot.de { background: var(--ember); }

.viz-panel { position: absolute; padding: 10px 12px; background: rgba(22,26,38,.88); border: 1px solid #2E3448; border-radius: 12px; }
.viz-panel .plabel { display: flex; align-items: center; gap: 7px; font: 700 9.5px/1 var(--mono); letter-spacing: .16em; color: #8B85A0; margin-bottom: 9px; }
.viz-panel .prow { display: flex; gap: 7px; }
.chip-ic { width: 22px; height: 22px; padding: 3px; border-radius: 6px; background: rgba(255,255,255,.05); border: 1px solid #333A50; display: inline-block; }
.viz-row { display: flex; align-items: center; gap: 8px; padding: 6px 4px; border-top: 1px solid rgba(255,255,255,.05); opacity: .38; transition: opacity .5s; }
.viz-row .chip-ic { width: 18px; height: 18px; padding: 2px; }
.viz-row span { font: 600 11.5px/1 var(--sans); color: #D9D5E6; }
.viz-row b { margin-left: auto; font: 700 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ember); }
.viz-row.on { opacity: 1; }
.viz-scrap { position: absolute; font: 600 10.5px/1 var(--mono); color: #C97B6B; opacity: .55; white-space: nowrap; }
.viz-scrap.s0 { animation: drift 6s ease-in-out infinite; }
.viz-scrap.s1 { animation: drift 7s ease-in-out infinite reverse; }
.viz-scrap.s2 { animation: drift 8s ease-in-out infinite; }
.viz-scrap.s3 { animation: drift 6.6s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0); opacity:.55; } 50% { transform: translate(4px,-5px); opacity:.3; } }

.viz-panel.counters .cline { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; border-top: 1px solid rgba(255,255,255,.05); }
.viz-panel.counters .cline span { font: 600 10px/1 var(--mono); letter-spacing: .06em; color: #8B85A0; text-transform: uppercase; }
.viz-panel.counters .cline b { font: 700 12.5px/1 var(--mono); color: #E8E6F2; }
.viz-panel.counters .cline b s { color: #C97B6B; margin-right: 3px; }
.viz-panel.counters .cline b em { font-style: normal; color: var(--ember); }
.viz-panel.counters .cline b.zero { color: var(--lime); transition: transform .2s; }
.viz-panel.counters .cline b.zero.pulse { transform: scale(1.25); }
.viz-panel.counters .cbig { margin-top: 8px; text-align: center; font: 800 30px/1 var(--mono); color: var(--ember);
  text-shadow: 0 0 18px var(--ember-glow); }
.viz-panel.counters .cbig label { display: block; margin-top: 5px; font: 700 8.5px/1 var(--mono); letter-spacing: .2em; color: #8B85A0; text-transform: uppercase; }
.viz-panel.tallpanel { width: 172px; }

/* ============================================================
   POP PASS — micro-interactions
   ============================================================ */
/* grain over dark sections */
.hero::before, .cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"); }
.cta { position: relative; overflow: hidden; }
.cta .container { position: relative; z-index: 2; }

/* button sheen sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .55s ease; }
.btn-primary:hover::after { left: 130%; }

/* card lift + glow hovers */
.card, .feat, .price { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover, .feat:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -22px rgba(10,14,25,.4); border-color: var(--plum-100); }
.price:hover { transform: translateY(-5px); }
.pillar:hover .ic { transform: scale(1.08) rotate(-3deg); }
.pillar .ic { transition: transform .25s ease; }

/* section-head ember underline on reveal */
.sec-head h2 { position: relative; display: inline-block; }
.sec-head h2::after { content: ""; position: absolute; left: 50%; bottom: -12px; height: 3px; width: 56px;
  background: var(--plum); border-radius: 2px; opacity: .9;
  transform: translateX(-50%) scaleX(var(--u, 1)); transform-origin: center; transition: transform .7s var(--ease-out-quart, ease) .25s; }
.sec-head { padding-bottom: 6px; }

/* trust marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee .track { display: flex; gap: 34px; width: max-content; animation: marq 26s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }

/* proof board shimmer + feed */
.board { position: relative; }
.board::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,158,122,.05) 45%, transparent 60%);
  background-size: 240% 100%; animation: scan 5.5s ease-in-out infinite; }
@keyframes scan { 0% { background-position: 120% 0; } 60%, 100% { background-position: -120% 0; } }
.feedline { display: flex; align-items: center; gap: 8px; font: 600 11.5px/1.3 var(--mono); color: var(--mut-dk); padding: 10px 4px 2px; }
.feedline .fdot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 8px var(--ember); flex: 0 0 auto; }
.feedline b { color: var(--ink-dk); font-weight: 600; }

@media (max-width: 940px) {
  .intwall { grid-template-columns: repeat(3, 1fr); }
  .loops, .quotes { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .accent { animation: none; }
  .marquee .track { animation: none; }
  .board::after { animation: none; }
  .viz-node.j1, .viz-node.j2, .viz-node.j3, .viz-scrap { animation: none !important; }
}

/* ============================================================
   PART 5 — big readable viz (overrides) + new sections
   ============================================================ */
/* viz typography & contrast at 1:1 scale */
.viz-node { padding: 12px 14px; border-radius: 14px; background: rgba(28,33,48,.93); border-color: #3A4160; }
.viz-node .nm { font-size: 15px; color: #F2F0F9; }
.viz-node .pic { width: 20px; height: 20px; }
.viz-node .mini { gap: 6px; }
.viz-node .mini i { width: 19px; height: 19px; }
.viz-node.sm { padding: 9px 11px; }
.viz-node.sm .nm { font-size: 13px; }
.chip-ic { width: 28px; height: 28px; padding: 4.5px; border-radius: 8px; background: rgba(255,255,255,.06); border-color: #3A4160; }
.viz-cluster { padding: 12px 14px 13px; border-radius: 14px; background: rgba(28,33,48,.93); border-color: #3A4160; }
.viz-cluster .clabel { font-size: 11px; color: #A49DBB; margin-bottom: 9px; gap: 8px; }
.viz-cluster .crow { gap: 7px; }
.viz-cluster.sm { padding: 9px 11px 10px; }
.viz-cluster.sm .clabel { font-size: 9.5px; }
.viz-cluster.sm .chip-ic { width: 24px; height: 24px; padding: 4px; }
.viz-card { padding: 13px 17px; border-radius: 14px; background: rgba(30,34,49,.97); border-color: #3D4462; }
.viz-card .txt { font-size: 14.5px; color: #ECEAF4; }
.viz-card .tag { font-size: 10px; padding: 6px 10px; }
.viz-brain { padding: 22px 18px 17px; border-radius: 20px; }
.viz-brain .bmark { width: 38px; height: 38px; margin-bottom: 10px; }
.viz-brain .bname { font-size: 24px; }
.viz-brain .bsub { font-size: 9.5px; margin-top: 8px; letter-spacing: .18em; white-space: nowrap; }
.viz-toplabel { font-size: 13px; }
.viz-mlabel { font-size: 11px; }
.viz-panel { padding: 12px 14px; border-radius: 14px; background: rgba(28,33,48,.93); border-color: #3A4160; }
.viz-panel .plabel { font-size: 10.5px; margin-bottom: 10px; }
.viz-panel .prow { gap: 8px; }
.viz-edge { stroke: #3A4160; stroke-width: 1.4; opacity: .9; }
.viz-edge.faint { opacity: .3; }
.viz-edge.active, .viz-edge.hover { stroke: rgba(255,158,122,.55); opacity: 1; filter: drop-shadow(0 0 6px var(--ember-glow)); }
.viz-star { fill: #454D6B; }

/* flowing energy overlay on active paths */
.viz-flow { fill: none; stroke: var(--ember); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 3 11; opacity: 0; transition: opacity .35s; }
.viz-flow.active, .viz-flow.hover { opacity: 1; animation: flowDash .8s linear infinite; filter: drop-shadow(0 0 5px var(--ember)); }
@keyframes flowDash { to { stroke-dashoffset: -14; } }

/* radar ping from the brain */
.viz-ping { position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; margin: -42px 0 0 -42px;
  border: 1.5px solid var(--ember); border-radius: 50%; opacity: 0; pointer-events: none;
  animation: pingRing 4.4s ease-out infinite; }
.viz-ping.p2 { animation-delay: 2.2s; }
@keyframes pingRing { 0% { opacity: .5; transform: scale(.45); } 70% { opacity: 0; transform: scale(2.7); } 100% { opacity: 0; transform: scale(2.7); } }

/* blinking cluster status dots */
.viz-cluster .clabel .dot { animation: blinkDot 3.4s ease-in-out infinite; }
@keyframes blinkDot { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* hover-to-light nodes */
.viz-node, .viz-cluster { cursor: default; }
.viz-node.hov, .viz-cluster.hov { border-color: rgba(255,158,122,.75); box-shadow: 0 0 18px -6px var(--ember-glow); }

/* dim idle drift dots */
.viz-dot.dim { fill: #6E77A0; filter: none; opacity: .55; }

/* hero metrics strip */
.hero-metrics { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 64px; max-width: var(--maxw); margin: 0 auto; padding: 28px var(--pad) 44px;
  border-top: 1px solid var(--line-dk); }
.hm { text-align: center; min-width: 130px; }
.hm b { display: block; font: 800 30px/1.1 var(--mono); color: var(--ink-dk); letter-spacing: -.02em; }
.hm span { font: 600 11px/1.5 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--mut-dk); }

/* integrations wall */
.intwall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.int-tile { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--panel); font: 600 13.5px/1.2 var(--sans); color: var(--ink-2);
  transition: transform .2s, border-color .2s, box-shadow .2s; }
.int-tile:hover { transform: translateY(-3px); border-color: var(--plum-100); box-shadow: var(--shadow); }
.int-tile .tico { width: 22px; height: 22px; flex: 0 0 auto; }
.int-tile .tico svg { width: 100%; height: 100%; display: block; }
.int-tile.more { justify-content: center; color: var(--mut); border-style: dashed; background: var(--bg-soft); }

/* loops gallery */
.loops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loop { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 22px;
  box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s, border-color .22s; }
.loop:hover { transform: translateY(-4px); border-color: var(--plum-100); }
.loop h3 { font-size: 17.5px; margin-bottom: 10px; }
.loop .lflow { display: block; font: 600 11px/1.65 var(--mono); color: var(--plum-700);
  background: var(--plum-050); border: 1px solid var(--plum-100); border-radius: 8px;
  padding: 8px 11px; margin-bottom: 12px; }
.loop .lflow b { color: var(--plum-600); font-weight: 700; }
.loop p { color: var(--mut); font-size: 14px; margin: 0; }

/* operator quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 24px; box-shadow: var(--shadow); }
.quote::before { content: "\201C"; position: absolute; top: 4px; left: 18px;
  font: 800 66px/1 Georgia, "Times New Roman", serif; color: var(--plum-100); }
.quote p { position: relative; font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 14px 0 16px; }
.quote .role { font: 700 10.5px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--mut); }
.quote .role b { display: block; color: var(--plum); }

@media (max-width: 620px) {
  .intwall { grid-template-columns: 1fr 1fr; }
  .loops, .quotes { grid-template-columns: 1fr; }
  .hero-metrics { gap: 18px 30px; }
  .hm b { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .viz-ping, .viz-flow.active, .viz-flow.hover, .viz-cluster .clabel .dot { animation: none !important; }
  .viz-flow.active, .viz-flow.hover { opacity: .9; }
}

/* ============================================================
   PART 6 — legibility-first v3 (overrides win by cascade)
   ============================================================ */
/* type scale up */
.viz-node { padding: 13px 15px; }
.viz-node .nm { font-size: 17px; color: #F4F2FA; }
.viz-node .pic { width: 22px; height: 22px; }
.viz-node .mini { gap: 7px; }
.viz-node .mini i { width: 24px; height: 24px; }
.viz-cluster .clabel { font-size: 13px; letter-spacing: .1em; color: #C7C1DA; justify-content: space-between; margin-bottom: 10px; }
.viz-cluster .clabel .dot { width: 8px; height: 8px; }
.viz-mlabel { font-size: 12.5px; color: #B7B1CC; }
.viz-panel .plabel { font-size: 12.5px; color: #B7B1CC; }
.viz-card { padding: 15px 20px; }
.viz-card .txt { font-size: 16px; }
.viz-card .tag { font-size: 11px; padding: 7px 11px; }
.viz-toplabel { font-size: 15px; }
.viz-brain .bmark { width: 44px; height: 44px; }
.viz-brain .bname { font-size: 28px; }
.viz-brain .bsub { font-size: 11px; }
.chip-ic { width: 36px; height: 36px; padding: 6px; border-radius: 9px; }
.viz-cluster .crow { gap: 9px; }

/* lines you can actually see */
.viz-edge { stroke: #5A6388; stroke-width: 2; opacity: 1; }
.viz-edge.faint { opacity: .38; }
.viz-flow { stroke-width: 2.8; stroke-dasharray: 3.5 12; }
.viz-star { fill: #545C7E; }
.viz-ping { width: 104px; height: 104px; margin: -52px 0 0 -52px; }

/* live agent-sessions panel */
.viz-panel.sessions { padding: 14px 14px 8px; }
.srow { display: flex; align-items: center; gap: 11px; padding: 9px 4px; border-top: 1px solid rgba(255,255,255,.06); border-radius: 8px; transition: background .4s; }
.srow .chip-ic { width: 30px; height: 30px; padding: 5px; flex: 0 0 auto; }
.srow .scol { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.srow .scol b { font: 700 14.5px/1.2 var(--sans); color: #F0EEF8; }
.srow .scol span { font: 500 12.5px/1.3 var(--sans); color: #9C96B4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srow .sst { margin-left: auto; flex: 0 0 auto; font: 700 9.5px/1 var(--mono); letter-spacing: .1em; font-style: normal; display: inline-flex; align-items: center; gap: 6px; }
.srow .sst::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.srow .sst.run { color: var(--lime); }
.srow .sst.run::before { background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: pulse 2s infinite; }
.srow .sst.idle { color: #7A7690; }
.srow .sst.idle::before { background: #7A7690; }
.srow.live { background: rgba(255,158,122,.09); box-shadow: inset 2px 0 0 var(--ember); }

/* compact mobile bumps */
.viz-node.sm .nm { font-size: 14px; }
.viz-cluster.sm .clabel { font-size: 10.5px; }

/* ============================================================
   PART 7 — v4: BIG, readable, navy+ember, accessible
   ============================================================ */
/* the graphic breaks out of the content column and dominates */
.hero-visual.full { width: min(1280px, 96vw); max-width: none; }

/* type scale v4 — true on-screen sizes at scale 1.0 */
.viz-node { padding: 14px 16px; border-radius: 15px; background: #232938; border-color: #4A5170; }
.viz-node .nm { font-size: 19px; color: #F4F2FA; }
.viz-node .pic { width: 24px; height: 24px; }
.viz-node .mini { gap: 8px; }
.viz-node .mini i { width: 30px; height: 30px; }
.viz-cluster { padding: 15px 17px 16px; border-radius: 16px; background: #232938; border-color: #4A5170; }
.viz-cluster .clabel { font-size: 14px; font-weight: 600; letter-spacing: .06em; color: #D4CFE4; margin-bottom: 11px; }
.viz-cluster .clabel .dot { width: 7px; height: 7px; opacity: .75; }
.viz-cluster .crow { gap: 10px; }
.chip-ic { width: 44px; height: 44px; padding: 7px; border-radius: 11px; background: rgba(255,255,255,.07); border-color: #4A5170; }
.viz-card { padding: 17px 22px; border-radius: 16px; background: #1E2231; border-color: #454E6B; }
.viz-card .txt { font-size: 17.5px; color: #F2F0F8; }
.viz-card .tag { font-size: 11px; padding: 7px 12px; color: #C9C4DC; border-color: #4A5170; }
.viz-toplabel { font-size: 16px; color: var(--ember); }
.viz-mlabel { font-size: 13.5px; color: var(--mut-dk); }
.viz-panel { background: #232938; border-color: #4A5170; border-radius: 16px; }
.viz-panel .plabel { font-size: 13.5px; color: var(--mut-dk); }
.viz-brain { border-radius: 24px; }
.viz-brain .bmark { width: 46px; height: 46px; }
.viz-brain .bname { font-size: 32px; }
.viz-brain .bsub { font-size: 12px; }

/* sessions rows v4 */
.viz-panel.sessions { padding: 16px 16px 10px; }
.srow { gap: 12px; padding: 11px 6px; }
.srow .chip-ic { width: 36px; height: 36px; padding: 6px; }
.srow .scol b { font-size: 16px; }
.srow .scol span { font-size: 13.5px; color: #B3AEC8; }
.srow .sst { font-size: 11px; }

/* lines + anchors */
.viz-edge { stroke: #626B92; stroke-width: 2.2; opacity: 1; }
.viz-flow { stroke-width: 3; stroke-dasharray: 4 13; }
.viz-anchor { fill: #7A83AC; }
.viz-star { fill: #5A628A; }

/* compact mobile bumps v4 */
.viz-node.sm .nm { font-size: 15px; }
.viz-cluster.sm .chip-ic { width: 34px; height: 34px; padding: 5px; }
.viz-cluster.sm .clabel { font-size: 11px; }

/* ============================================================
   PART 8 — v5.1: clean-band composition + readable secondary
   text, sized so the whole graphic fits one screen
   ============================================================ */
.viz-node { padding: 12px 15px; }
.viz-node .nm { font-size: 18px; }
.viz-node .mini i { width: 26px; height: 26px; }
.viz-cluster { padding: 12px 15px 13px; }
.viz-cluster .clabel { font-size: 15px; font-weight: 700; letter-spacing: .08em; color: #EFEDF7; margin-bottom: 10px; }
.viz-cluster .clabel .dot { width: 8px; height: 8px; opacity: .9; }
.viz-card { padding: 14px 18px; }
.viz-card .txt { font-size: 17px; }
.viz-card .tag { font-size: 11.5px; }
.viz-toplabel { font-size: 16px; }
.viz-mlabel, .viz-panel .plabel { font-size: 14px; color: #C9C4DC; }
.chip-ic { width: 40px; height: 40px; padding: 6px; }
.viz-brain { padding: 18px 16px 15px; }
.viz-brain .bmark { width: 46px; height: 46px; margin-bottom: 8px; }
.viz-brain .bname { font-size: 30px; }
.viz-brain .bsub { font-size: 12px; }

/* sessions rows: readable tasks + status pills */
.viz-panel.sessions { padding: 13px 14px 7px; }
.srow { padding: 8px 5px; }
.srow .chip-ic { width: 32px; height: 32px; padding: 5px; }
.srow .scol b { font-size: 15.5px; }
.srow .scol span { font-size: 14px; color: #C3BED6; }
.srow .sst { font-size: 11.5px; padding: 4px 9px; border-radius: 999px; }
.srow .sst.run { color: #7FE0B4; background: rgba(95,208,168,.13); border: 1px solid rgba(95,208,168,.35); }
.srow .sst.idle { color: #A29DB8; background: rgba(255,255,255,.06); border: 1px solid #4A5170; }

/* lines: one step brighter, plugged-in anchors, card stem */
.viz-edge { stroke: #6B74A0; stroke-width: 2.4; }
.viz-anchor { fill: #8A93BC; }
.viz-stem { fill: none; stroke: #6B74A0; stroke-width: 2.2; stroke-dasharray: 3 8; opacity: .9; }
.viz-ping { width: 120px; height: 120px; margin: -60px 0 0 -60px; }

/* compact bumps */
.viz-cluster.sm .clabel { font-size: 12px; }

/* ============================================================
   PART 10 — ONE CANVAS: elevation, glows, hairlines, balance
   ============================================================ */
/* headings never orphan a single word */
h1, h2, .sec-head p, .hero-sub { text-wrap: balance; }

/* sections read as elevation shifts, not color jumps */
section { position: relative; }
.soft, .soft2 { box-shadow: inset 0 1px 0 var(--line-dk), inset 0 -1px 0 var(--line-dk); }

/* faint ember life behind key sections (one canvas, breathing) */
#pillars { background: radial-gradient(760px 320px at 18% 0%, rgba(28,140,255,.05), transparent 65%), var(--bg-soft); }
#loops { background: radial-gradient(820px 360px at 85% 8%, rgba(28,140,255,.04), transparent 65%), var(--bg-soft); }
#who { background: radial-gradient(700px 300px at 50% 100%, rgba(28,140,255,.04), transparent 65%), var(--bg-soft); }
.shift { box-shadow: inset 0 1px 0 var(--line-dk), inset 0 -1px 0 var(--line-dk);
  background: radial-gradient(900px 380px at 50% 120%, rgba(28,140,255,.10), transparent 60%), var(--bg-900); }

/* readable floor for card/list body text */
.pillar p, .price li, table.cmp th, table.cmp td, .loop p, .qa p, .step p, .feat p { font-size: 15px; }
.card p, .who li { font-size: 15.5px; }
.loop .lflow { font-size: 11.5px; }

/* dark hover language: glow, not gray shadow */
.card:hover, .feat:hover, .loop:hover, .int-tile:hover {
  border-color: rgba(92,194,255,.45);
  box-shadow: 0 0 0 1px rgba(92,194,255,.16), 0 18px 44px -20px rgba(0,0,0,.7);
}
.price:hover { border-color: rgba(92,194,255,.35); }

/* keep the RUNNING/live semantics as the only lime on the page */
/* .sec-head p was outranking .eyebrow — eyebrows are ember, everywhere */
.sec-head .eyebrow, .container .eyebrow { color: var(--ember); }
.int-tile.more { font-size: 12.5px; text-align: center; line-height: 1.4; }

/* ============================================================
   PART 11 — de-slopped structures (impeccable pass)
   ============================================================ */
/* motion tokens */
:root { --ease-out-quart: cubic-bezier(0.25,1,0.5,1); --ease-out-expo: cubic-bezier(0.16,1,0.3,1); }

/* telemetry statusbar — the system's own console footer */
.statusbar { position:relative; z-index:2; display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:10px 34px; border-top:1px solid var(--line-dk); background:rgba(14,19,29,.65);
  padding:13px var(--pad); font:600 13px/1.5 var(--mono); color:var(--faint); letter-spacing:.02em; }
.statusbar b { color:var(--ink-dk); font-weight:700; }
.sb-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--lime);
  box-shadow:0 0 8px var(--lime); margin-right:8px; vertical-align:middle; animation:pulse 2s infinite; }
.sb-feed b { color:var(--mut-dk); font-weight:600; }
@media (max-width:940px){ .sb-feed{ display:none; } }

/* problem ledger — hairline rows, not cards */
.ledger { max-width:880px; margin:0 auto; border-top:1px solid var(--line); }
.lrow { display:grid; grid-template-columns:240px 1fr; gap:10px 44px; padding:26px 6px;
  border-bottom:1px solid var(--line); align-items:start; }
.lrow h3 { font-size:19px; margin:0; }
.lrow p { margin:0; color:var(--mut); font-size:16px; max-width:62ch; }
@media (max-width:620px){ .lrow{ grid-template-columns:1fr; gap:6px; } }

/* pillars split — sticky heading left, feature rows right */
.split { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(28px,5vw,72px); align-items:start; }
.split-head { position:sticky; top:96px; }
.split-head h2 { font-size:clamp(26px,3.4vw,38px); }
.split-head p { color:var(--mut); font-size:16.5px; max-width:38ch; }
.featlist { border-top:1px solid var(--line); }
.frow { display:flex; gap:18px; padding:22px 4px; border-bottom:1px solid var(--line); }
.frow .fic { flex:0 0 auto; width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:var(--plum-050); color:var(--plum-600); border:1px solid var(--plum-100); }
.frow h3 { font-size:17.5px; margin:0 0 4px; }
.frow p { margin:0; color:var(--mut); font-size:15px; }
@media (max-width:940px){ .split{ grid-template-columns:1fr; } .split-head{ position:static; } }

/* loops crontab — a scheduler, not a card grid */
.cron { border:1px solid var(--line); border-radius:var(--radius); background:var(--panel); overflow:hidden; }
.cron-head { display:grid; grid-template-columns:170px 1.25fr 1fr; gap:20px; padding:12px 22px;
  font:700 11.5px/1 var(--mono); letter-spacing:.1em; text-transform:uppercase; color:var(--faint);
  background:var(--bg-soft2); border-bottom:1px solid var(--line); }
.cron-row { display:grid; grid-template-columns:170px 1.25fr 1fr; gap:20px; padding:17px 22px;
  border-bottom:1px solid var(--line); align-items:center; transition:background .2s; }
.cron-row:last-child { border-bottom:0; }
.cron-row:hover { background:var(--panel-2); }
.cron-row h3 { font-size:15.5px; margin:0; }
.cron-row .lflow { background:transparent; border:0; padding:0; margin:0; display:block;
  font:600 12.5px/1.6 var(--mono); color:var(--mut); }
.cron-row .lflow b { color:var(--plum-600); }
.cron-row p { margin:0; color:var(--mut); font-size:14px; }
@media (max-width:940px){ .cron-head{ display:none; } .cron-row{ grid-template-columns:1fr; gap:8px; } }

/* ---- showpiece motion layer ---- */
/* hero copy choreography on load (time-based, never gates content) */
.hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-sub, .hero-copy .hero-cta, .hero-copy .chips {
  animation: rise .8s var(--ease-out-expo) both; }
.hero-copy h1 { animation-delay: .08s; }
.hero-copy .hero-sub { animation-delay: .18s; }
.hero-copy .hero-cta { animation-delay: .28s; }
.hero-copy .chips { animation-delay: .38s; }

/* per-section entrance variants (JS assigns .fx + --i) */
.cron-row.reveal-item.fx { animation-name: slidein; }
@keyframes slidein { from { opacity:0; transform: translateX(-14px); } }
.frow.reveal-item.fx, .lrow.reveal-item.fx { animation-name: rise; }

/* terminal typing — lines appear sequentially once scrolled into view */
.terminal.typing .tbody > div { visibility: hidden; }
.terminal.typing .tbody > div.on { visibility: visible; animation: tline .18s var(--ease-out-quart) both; }
@keyframes tline { from { opacity: 0; transform: translateY(4px); } }

/* magnetic primary CTA */
.btn-magnet { will-change: transform; transition: transform .18s var(--ease-out-quart); }

/* brain-viz boot: nodes power up */
.viz-stage .viz-node, .viz-stage .viz-cluster, .viz-stage .viz-panel, .viz-stage .viz-brain {
  transform-origin: center; }
.viz-stage.boot .viz-node, .viz-stage.boot .viz-cluster, .viz-stage.boot .viz-panel, .viz-stage.boot .viz-brain {
  animation: powerup .6s var(--ease-out-quart) both; animation-delay: calc(var(--b, 0) * 60ms); }
@keyframes powerup { from { opacity: 0; transform: scale(.965); } }

/* statusbar feed swap */
.sb-feed { transition: opacity .3s ease; }
.sb-feed.swap { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-sub, .hero-copy .hero-cta, .hero-copy .chips,
  .reveal.fx, .viz-stage.boot .viz-node, .viz-stage.boot .viz-cluster, .viz-stage.boot .viz-panel,
  .viz-stage.boot .viz-brain { animation: none !important; }
  .terminal.typing .tbody > div { visibility: visible !important; }
}

/* settle: after the entrance window, animations are removed so base (visible)
   styles win even in throttled/paused rendering contexts */
.reveal.settled { animation: none !important; }
body.motion-settled .hero-copy .eyebrow, body.motion-settled .hero-copy h1,
body.motion-settled .hero-copy .hero-sub, body.motion-settled .hero-copy .hero-cta,
body.motion-settled .hero-copy .chips { animation: none !important; }

/* ============================================================================
   PART 12 — brand marks + section vignettes (visual overhaul)
   ========================================================================== */

/* real brand logos scale inside their existing slots */
.tico svg, .chip-ic svg, .pic svg { width: 100%; height: 100%; display: block; }
.int-tile .tico svg { opacity: .85; transition: opacity .15s var(--ease-out-quart); }
.int-tile:hover .tico svg { opacity: 1; }

/* --- .shift convergence diagram --- */
.shift-viz { max-width: 1020px; margin: 44px auto 0; }
.shift-viz svg { width: 100%; height: auto; display: block; }
.shift-lb { font: 700 12.5px var(--mono); letter-spacing: .14em; fill: #8FA0B8; }
@media (max-width: 620px) { .shift-viz { margin-top: 26px; } .shift-lb { font-size: 15px; } }

/* --- #problem ledger glyphs --- */
.lrow.has-glyph { grid-template-columns: 76px 240px 1fr; }
.lrow-glyph { width: 60px; height: 60px; }
.lrow-glyph svg { width: 100%; height: 100%; display: block; }
.lglyph-tx { font: 700 11px var(--mono); fill: #E8C36B; }
#problem .lrow:nth-child(3) .lglyph-tx { fill: #97A6BC; font-size: 14px; }
@media (max-width: 620px) {
  .lrow.has-glyph { grid-template-columns: 1fr; }
  .lrow-glyph { width: 44px; height: 44px; margin-bottom: 4px; }
}

/* --- #loops orbit glyphs --- */
.cron-row h3 { display: flex; align-items: center; gap: 10px; }
.loop-orb { width: 22px; height: 22px; flex: 0 0 auto; }

/* --- #faq details/summary --- */
.faq details.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq details.qa summary::-webkit-details-marker { display: none; }
.faq .qa-q { font-weight: 700; font-size: 17px; color: var(--text, #EAF1F8); }
.faq .qa-x { font: 700 18px/1 var(--mono); color: var(--spark); flex: 0 0 auto; transition: transform .25s var(--ease-out-quart); }
.faq details[open] .qa-x { transform: rotate(45deg); }
.faq .qa-a { overflow: hidden; }
.faq .qa-a p { margin: 10px 0 0; }
.faq details.qa summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 6px; }

/* --- .cta D-mark echo ornament --- */
.cta .cta-echo { position: absolute; right: -70px; bottom: -90px; width: 380px; height: 380px; opacity: .07; pointer-events: none; z-index: 0; }
@media (max-width: 620px) { .cta .cta-echo { width: 240px; right: -60px; bottom: -70px; } }

/* --- #how steps progress line --- */
.steps.has-line { position: relative; }
.steps-line { position: absolute; left: 16px; top: 20px; bottom: 20px; width: 2px; background: var(--line, #242C3A); border-radius: 2px; }
.steps-fill { position: absolute; inset: 0; background: linear-gradient(180deg, var(--blue), var(--spark)); border-radius: 2px; transform: scaleY(0); }
.steps.has-line .step { position: relative; }
.steps.has-line .step .n { position: relative; z-index: 1; }
@media (max-width: 620px) { .steps-line { display: none; } }

/* --- #compare Daiton column --- */
.cmp-brand { display: inline-flex; align-items: center; gap: 8px; }
.cmp-brand svg { width: 18px; height: 18px; }
table.cmp .col-daiton { transition: background .7s var(--ease-out-expo), box-shadow .7s var(--ease-out-expo); }
table.cmp .col-daiton.lit { background: rgba(28, 140, 255, .07); box-shadow: inset 0 0 0 1px rgba(92, 194, 255, .22); }

/* --- reduced-motion backstop for all vignettes --- */
@media (prefers-reduced-motion: reduce) {
  .orb-g, .cta-echo line { animation: none !important; }
  .steps-fill { transform: scaleY(1) !important; }
}

/* ============================================================================
   PART 13 — round-2 refinements: contrast + legibility over the WebGL hero
   ========================================================================== */

/* hero eyebrow: legible kicker over the constellation — brighter, bolder, tighter spacing */
.hero .eyebrow {
  color: #FFFFFF;
  font-size: 14px; font-weight: 800; letter-spacing: .12em;
  text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 0 22px rgba(10,14,22,.95);
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 20px;
}
/* live status dot — pulses to read as an ONLINE/armed system */
.hero .eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: #33D17A; box-shadow: 0 0 10px 1px rgba(51,209,122,.95);
  animation: statusPulse 1.9s ease-in-out infinite;
}
/* ONLINE badge */
.hero .eyebrow .ol {
  color: #4FE39B; font-weight: 800; letter-spacing: .18em;
  padding-left: 10px; margin-left: 4px; position: relative;
}
.hero .eyebrow .ol::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(255,255,255,.22);
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px 1px rgba(51,209,122,.95); }
  50%      { opacity: .45; box-shadow: 0 0 3px 0 rgba(51,209,122,.45); }
}
@media (prefers-reduced-motion: reduce) { .hero .eyebrow::before { animation: none; } }
/* hero copy pops off the busy backdrop */
.hero h1 { text-shadow: 0 2px 26px rgba(10,14,22,.6); }
.hero .hero-sub { color: #C4D2E4; text-shadow: 0 1px 12px rgba(10,14,22,.7); }
.hero .chip { color: #C4D2E4; }
/* statusbar footer legibility */
.statusbar { text-shadow: 0 1px 8px rgba(10,14,22,.7); }
.statusbar .sb-item { color: #AFC0D6; }
.sb-feed b, .statusbar b { color: #EAF1F8; }

/* shift diagram v3 — bigger, labeled clusters, centered daiton */
.shift-viz svg { overflow: visible; }
.shift-src { font: 600 15px var(--mono); fill: #C4D2E4; }
.shift-cat { font: 800 12.5px var(--mono); letter-spacing: .08em; }
.shift-core-lb { font: 800 18px var(--sans); fill: #EAF1F8; letter-spacing: -.01em; text-anchor: middle; }
.shift-sub { font: 700 9px var(--mono); letter-spacing: .16em; fill: #788AA2; text-anchor: middle; }
.shift-lb-c { font: 700 11px var(--mono); letter-spacing: .16em; fill: #788AA2; text-anchor: middle; }
.shift-viz .loop-ring { transform-box: fill-box; }
/* live data-flow: streams of glowing packets moving along each pipe into daiton and out to the tools */
.shift-viz .flow-line {
  animation-name: shiftFlow; animation-timing-function: linear; animation-iteration-count: infinite;
  filter: drop-shadow(0 0 2.6px currentColor);
}
@keyframes shiftFlow { to { stroke-dashoffset: -13; } }
@media (prefers-reduced-motion: reduce) {
  .shift-viz .flow-line { animation: none; stroke-dasharray: none; stroke-width: 1.4; opacity: .55; filter: none; }
  .shift-viz .flow-base { opacity: .35; }
}
/* themed loop symbols (replaces the generic orbit) */
.loop-sym { width: 22px; height: 22px; flex: 0 0 auto; overflow: visible; }
.loop-sym .loop-ring { transform-origin: 14px 14px; }
@media (max-width: 620px) { .shift-src { font-size: 15px; } }

/* live-board tile tool logos */
.tile-logo { width: 15px; height: 15px; display: inline-flex; flex: 0 0 auto; }
.tile-logo svg { width: 100%; height: 100%; display: block; }
