/* ==========================================================================
   OperBot — operbot.ai
   Hand-authored. No build step, no CDN, no framework.

   Design language: a white, airy page where every *product* moment is a dark
   rounded panel inset into it. Contrast without a dark site. Geometry is taken
   from the mark — rounded gear teeth (33% radius), pill-shaped eyes, a circular
   face — so radii are generous and dials are circular. Ink is the machine,
   amber is the intelligence inside it.
   ========================================================================== */

/* ---------- fonts (self-hosted, latin subset, variable) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/jetbrainsmono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokens ---------- */
:root {
  /* light surfaces */
  --w: #ffffff;
  --s1: #fafafa;
  --s2: #f5f5f6;

  /* ink surfaces (product panels, dark bands) */
  --ink: #09090b;
  --ink2: #141418;
  --ink3: #1d1d23;

  /* text on light */
  --tx: #09090b;
  --body: #4f4f58;
  --mut: #83838e;
  --fnt: #a5a5ae;

  /* text on ink */
  --d-tx: #edeef1;
  --d-body: #b9bfc8;
  --d-mut: #8c939f;
  --d-fnt: #6c7380;

  /* lines */
  --ln: rgba(0, 0, 0, 0.06);
  --ln2: rgba(0, 0, 0, 0.095);
  --lnd: rgba(255, 255, 255, 0.1);
  --lnd2: rgba(255, 255, 255, 0.16);

  /* brand */
  --amb: #f2a144;
  --amb2: #e8913a;
  --ambd: #a65a0e; /* 4.9:1 on white — safe for small text */
  --ambw: #fff6ec;
  --grn: #2f855a;

  /* geometry — generous, matching the mark */
  --wrap: 1200px;
  --gut: 32px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 24px;

  /* elevation — real, layered, soft */
  --sh1: 0 1px 2px rgba(9, 9, 11, 0.04), 0 4px 10px -6px rgba(9, 9, 11, 0.08);
  --sh2: 0 1px 2px rgba(9, 9, 11, 0.04), 0 14px 34px -14px rgba(9, 9, 11, 0.14);
  --sh3: 0 2px 4px rgba(9, 9, 11, 0.04), 0 40px 80px -32px rgba(9, 9, 11, 0.2);
  --shd: 0 4px 10px -4px rgba(9, 9, 11, 0.15), 0 44px 88px -32px rgba(9, 9, 11, 0.38);

  --e: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--w);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

::selection { background: rgba(242, 161, 68, 0.28); color: var(--ink); }

:focus-visible { outline: 2px solid var(--amb2); outline-offset: 3px; border-radius: 6px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* Grid children default to min-width:auto, so any item whose min-content is
   wider than its track pushes the whole page wide. Reset it everywhere. */
.hero__in > *, .split > *, .frow > *, .spot__grid > *,
.grid > *, .pipe > * { min-width: 0; }
.tablewrap { min-width: 0; }

.sec { padding-block: 104px; position: relative; }
.sec--tint { background: var(--s1); border-block: 1px solid var(--ln); }

/* a full dark band — the spotlight, scaled up to section size */
.sec--dark {
  position: relative;
  background: linear-gradient(168deg, var(--ink2), var(--ink));
  color: var(--d-body);
  overflow: hidden;
}
.sec--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 420px at 82% -10%, rgba(242, 161, 68, 0.16), transparent 66%);
}
.sec--dark > .wrap { position: relative; z-index: 1; }
.sec--dark h2, .sec--dark h3, .sec--dark strong { color: #fff; }
.sec--dark .lead { color: var(--d-body); }

/* ---------- type ---------- */
h1, .h1 {
  font-size: clamp(40px, 4.9vw, 62px);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -0.038em;
  color: var(--tx);
  text-wrap: balance;
}
h2, .h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 540;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--tx);
  text-wrap: balance;
}
h3, .h3 {
  font-size: 19px;
  font-weight: 560;
  line-height: 1.35;
  letter-spacing: -0.022em;
  color: var(--tx);
}

.lead { margin-top: 18px; font-size: 17.5px; line-height: 1.58; color: var(--mut); max-width: 620px; }
.dim { color: var(--fnt); }

.hd { max-width: 680px; margin-bottom: 52px; }
.hd--center { margin-inline: auto; text-align: center; }
.hd--center .lead { margin-inline: auto; }

/* headline left, supporting line right — fills a wide band instead of
   leaving the right half dead under a narrow column */
.hd--split {
  max-width: none; display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 22px 72px; align-items: end; margin-bottom: 58px;
}
.hd--split > * { min-width: 0; }
.hd--split h2 { max-width: 17ch; }
.hd--split .lead { margin-top: 0; max-width: 50ch; padding-bottom: 6px; }

/* badges */
.eye {
  display: inline-flex; align-items: center; gap: 8px; height: 28px; padding-inline: 12px;
  border-radius: 999px; background: var(--ambw); border: 1px solid rgba(242, 161, 68, 0.22);
  color: var(--ambd); font-size: 12px; font-weight: 600; letter-spacing: 0.01em; margin-bottom: 18px;
}
.sec--dark .eye { background: rgba(242, 161, 68, 0.12); border-color: rgba(242, 161, 68, 0.3); color: var(--amb); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding-inline: 22px; border-radius: 12px;
  font-size: 14.5px; font-weight: 550; white-space: nowrap;
  transition: background-color .16s var(--e), border-color .16s var(--e), filter .16s var(--e), transform .16s var(--e);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--amber {
  background: linear-gradient(180deg, var(--amb), var(--amb2));
  color: #231603;
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 10px 24px -10px rgba(242,161,68,.7), inset 0 1px 0 rgba(255,255,255,.36);
}
.btn--amber:hover { filter: brightness(1.05); }

.btn--ink {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 2px rgba(9,9,11,.12), 0 8px 20px -10px rgba(9,9,11,.4);
}
.btn--ink:hover { background: var(--ink3); }

.btn--ghost { background: #fff; color: var(--tx); border: 1px solid var(--ln2); box-shadow: var(--sh1); }
.btn--ghost:hover { background: var(--s1); }

.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border: 1px solid var(--lnd2); }
.btn--onDark:hover { background: rgba(255,255,255,.14); }

.btn--sm { height: 38px; padding-inline: 16px; border-radius: 10px; font-size: 13.5px; }

.textlink {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 550; color: var(--ambd);
  border-bottom: 1px solid rgba(242,161,68,.4); padding-bottom: 1px;
  transition: border-color .16s var(--e);
}
.textlink:hover { border-color: var(--amb); }
.textlink svg { width: 15px; height: 15px; transition: transform .16s var(--e); }
.textlink:hover svg { transform: translateX(3px); }
.sec--dark .textlink { color: var(--amb); border-color: rgba(242,161,68,.35); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--e);
}
.nav.is-stuck { border-bottom-color: var(--ln); }
.nav__in { display: flex; align-items: center; gap: 32px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 18px; letter-spacing: -.03em; color: var(--tx); flex: none; }
.brand img { width: 27px; height: 27px; }
.brand__wm b { font-weight: 600; color: var(--tx); }
.brand__wm > span { font-weight: 700; color: var(--ambd); }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 7px 12px; border-radius: 9px; font-size: 14px; font-weight: 450; color: var(--body);
  transition: background-color .15s var(--e), color .15s var(--e);
}
.nav__links a:hover { background: var(--s2); color: var(--tx); }
.nav__cta { flex: none; }

.nav__toggle {
  display: none; margin-left: auto; width: 40px; height: 40px;
  align-items: center; justify-content: center; border: 1px solid var(--ln2); border-radius: 11px;
}
.nav__toggle svg { width: 18px; height: 18px; }

.nav__panel { display: none; border-top: 1px solid var(--ln); background: #fff; padding: 12px var(--gut) 20px; }
.nav__panel.is-open { display: block; }
.nav__panel a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--body); border-bottom: 1px solid var(--ln); }
.nav__panel .btn { width: 100%; margin-top: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 86px 0 92px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -280px; right: -180px; width: 940px; height: 800px;
  pointer-events: none; background: radial-gradient(closest-side, rgba(242,161,68,.19), transparent 70%);
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.06fr; gap: 60px; align-items: center; }

.hero .lead { max-width: 490px; font-size: 18px; }
.hero__cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- the spotlight: dark product panel inset on white ---------- */
.spot {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--ink2), var(--ink));
  border-radius: var(--r-xl);
  box-shadow: var(--shd);
  color: var(--d-tx);
}
.spot::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(580px 320px at 78% -8%, rgba(242,161,68,.17), transparent 66%);
}
.spot__bar {
  position: relative; display: flex; align-items: center; gap: 11px;
  padding: 0 18px; height: 52px; border-bottom: 1px solid var(--lnd);
}
.spot__mk {
  width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--amb), var(--amb2));
  box-shadow: 0 2px 6px -2px rgba(242,161,68,.6);
}
.spot__mk img { width: 15px; height: 15px; }
.spot__t { font-size: 13px; font-weight: 500; color: #fff; }
.spot__sub { font-size: 13px; color: var(--d-fnt); }
.spot__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px; height: 26px; padding-inline: 11px;
  border-radius: 999px; background: rgba(242,161,68,.14); border: 1px solid rgba(242,161,68,.28);
  color: var(--amb); font-size: 11.5px; font-weight: 600;
}
.spot__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--amb); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,161,68,.35); }
  55% { box-shadow: 0 0 0 7px rgba(242,161,68,0); }
}

.spot__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.spot__col { padding: 26px; }
.spot__col + .spot__col { border-left: 1px solid var(--lnd); }

.lbl { font-size: 11px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--d-fnt); margin-bottom: 18px; }

/* dial — drawn from the gear geometry */
.dial { display: flex; align-items: center; gap: 18px; }
.dial__g { position: relative; width: 92px; height: 92px; flex: none; }
.dial__g svg { transform: rotate(-90deg); }
.dial__g span {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 13px; font-weight: 600; color: var(--amb);
}
.big {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 46px; font-weight: 500; letter-spacing: -.04em; line-height: 1; color: var(--amb);
}
.big__c { margin-top: 8px; font-size: 13.5px; color: var(--d-mut); max-width: 210px; }

.kv {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--lnd); font-size: 14px; color: var(--d-mut);
}
.kv b { font-family: "JetBrains Mono", ui-monospace, monospace; font-weight: 500; color: var(--d-tx); font-variant-numeric: tabular-nums; }
.kv b.on { color: var(--amb); }
.tag--pass {
  display: inline-flex; align-items: center; height: 22px; padding-inline: 9px; border-radius: 999px;
  background: rgba(47,133,90,.2); color: #68d8a0; font-size: 11px; font-weight: 600;
}

/* chat bubbles */
.bub {
  padding: 15px 17px; border-radius: 16px 16px 16px 5px;
  background: rgba(255,255,255,.07); border: 1px solid var(--lnd);
  font-size: 14.5px; line-height: 1.5; color: #fff; max-width: 96%;
}
.bub2 {
  margin: 12px 0 0 auto; padding: 15px 17px; border-radius: 16px 16px 5px 16px;
  background: #fff; color: var(--tx); font-size: 14.5px; line-height: 1.5; max-width: 96%;
  box-shadow: 0 6px 18px -10px rgba(0,0,0,.5);
}
.voice { margin-top: 10px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; font-size: 12px; color: var(--d-mut); }
.voice span { display: flex; align-items: center; gap: 2.5px; height: 14px; }
.voice i { display: block; width: 2.5px; border-radius: 2px; background: var(--amb); height: 9px; animation: eq 1.1s infinite; }
.voice i:nth-child(2) { animation-delay: .1s; }
.voice i:nth-child(3) { animation-delay: .2s; }
.voice i:nth-child(4) { animation-delay: .3s; }
@keyframes eq { 0%, 100% { height: 5px; } 50% { height: 14px; } }

.spot__foot {
  position: relative; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 26px; border-top: 1px solid var(--lnd); background: rgba(255,255,255,.03);
}
.diff { display: inline-flex; align-items: center; gap: 10px; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 13.5px; color: var(--d-mut); }
.diff del { color: var(--d-fnt); }
.diff ins { text-decoration: none; color: var(--amb); font-weight: 600; }
.spot__foot .st { margin-left: auto; font-size: 12.5px; color: var(--d-fnt); }

/* ---------- the stakes: a plain claim beside a spec list, not a stat grid ---------- */
/* tighter than a normal .sec — it's a bridge between hero and the walkthrough,
   so it shouldn't read as its own full-height chapter */
.stakes { padding-block: 64px 68px; }
#how { padding-top: 76px; }
.stakes__in { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 72px; align-items: center; }
.stakes__in > * { min-width: 0; }
.spec { display: grid; }
.spec > div {
  position: relative;
  display: grid; grid-template-columns: 138px 1fr; gap: 26px; align-items: center;
  padding: 26px 0 26px 24px; border-top: 1px solid var(--ln);
}
.spec > div:last-child { border-bottom: 1px solid var(--ln); }
/* the amber tick — the intelligence marking each fact */
.spec > div::before {
  content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 3px;
  border-radius: 3px; background: linear-gradient(180deg, var(--amb), var(--amb2));
}
.spec dt {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(28px, 2.6vw, 36px); font-weight: 600; letter-spacing: -0.035em;
  line-height: 1; color: var(--ambd); font-variant-numeric: tabular-nums;
}
.spec dd { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--body); }

/* ---------- alternating feature rows (replaces card grids) ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-block: 44px; border-top: 1px solid var(--ln); }
.frow:nth-child(even) .frow__art { order: -1; }
.frow__n {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 10px; background: var(--ink); color: #fff;
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 12px; margin-bottom: 16px;
}
.frow h3 { font-size: 24px; font-weight: 550; letter-spacing: -.025em; }
.frow p { margin-top: 12px; font-size: 15.5px; color: var(--mut); max-width: 440px; }
.frow__art {
  border-radius: var(--r-lg); background: var(--s1); border: 1px solid var(--ln2);
  padding: 22px; min-height: 190px; display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.line {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 11px; background: #fff; border: 1px solid var(--ln); font-size: 13.5px;
}
.line b { font-family: "JetBrains Mono", ui-monospace, monospace; font-weight: 500; color: var(--tx); }
.line.hi { border-color: rgba(242,161,68,.35); background: var(--ambw); }
/* ---------- generic split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checks { margin-top: 26px; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; font-size: 15px; line-height: 1.55; }
.checks svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--ambd); }
.checks strong { color: var(--tx); font-weight: 600; }
.sec--dark .checks li { color: var(--d-body); }
.sec--dark .checks svg { color: var(--amb); }
.sec--dark .checks strong { color: #fff; }
/* the moats, hung under the comparison table rather than sat in cards */
.checks--cmp { margin-top: 34px; gap: 16px; max-width: 900px; color: var(--mut); }

/* ---------- cards (used sparingly, only where a grid genuinely fits) ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--ln2);
  box-shadow: var(--sh1); transition: box-shadow .2s var(--e), transform .2s var(--e);
}
.card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.card p { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--mut); }
.sec--dark .card {
  background: rgba(255,255,255,.04); border-color: var(--lnd); box-shadow: none;
}
.sec--dark .card:hover { background: rgba(255,255,255,.07); transform: none; box-shadow: none; }
.sec--dark .card p { color: var(--d-body); }

.ic {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, var(--ambw)); border: 1px solid rgba(242,161,68,.22);
  color: var(--ambd); box-shadow: 0 2px 6px -2px rgba(242,161,68,.35);
}
.ic svg { width: 21px; height: 21px; }
.sec--dark .ic { background: rgba(242,161,68,.12); border-color: rgba(242,161,68,.26); color: var(--amb); box-shadow: none; }

/* circular step badge — gear face */
.gnum {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, var(--ambw)); border: 1px solid rgba(242,161,68,.26);
  color: var(--ambd); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 3px 8px -3px rgba(242,161,68,.4);
}

/* ---------- media / video ---------- */
.media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(165deg, var(--ink2), var(--ink));
  box-shadow: var(--shd); aspect-ratio: 16 / 9;
}
.media video, .media img { width: 100%; height: 100%; object-fit: cover; }
.media--ph { display: grid; place-items: center; }
.media--ph::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 50% 0%, rgba(242,161,68,.14), transparent 68%);
}
.media__ph { position: relative; text-align: center; padding: 24px; }
.media__ph .play {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid var(--lnd2); color: #fff;
}
.media__ph .play svg { width: 24px; height: 24px; }
.media__ph p { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--d-mut); }

/* ---------- pipeline (quality audit) ---------- */
.pipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pipe__s { position: relative; padding: 0 28px; }
.pipe__s:first-child { padding-left: 0; }
.pipe__s:last-child { padding-right: 0; }
.pipe__s + .pipe__s { border-left: 1px solid var(--ln); }
.pipe__s h3 { margin-top: 4px; }
.pipe__s p { margin-top: 10px; font-size: 14.5px; color: var(--mut); }
.sec--dark .pipe__s + .pipe__s { border-left-color: var(--lnd); }
.sec--dark .pipe__s p { color: var(--d-body); }
.sec--dark .gnum {
  background: rgba(242,161,68,.12); border-color: rgba(242,161,68,.28);
  color: var(--amb); box-shadow: none;
}

/* the security posture, folded under the audit pipeline as a plain strip */
.posture { margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--lnd); }
.posture__g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 32px; }
.posture__g > * { min-width: 0; }
.posture__g h3 { font-size: 16.5px; }
.posture__g p { margin-top: 9px; font-size: 14px; line-height: 1.6; color: var(--d-body); }

/* ---------- comparison table ---------- */
.tablewrap { border: 1px solid var(--ln2); border-radius: var(--r-lg); overflow-x: auto; background: #fff; box-shadow: var(--sh1); }
.cmp { min-width: 800px; font-size: 14.5px; }
.cmp th, .cmp td { padding: 18px 20px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--ln); }
.cmp thead th {
  font-size: 11.5px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
  color: var(--mut); background: var(--s1);
}
.cmp tbody th { font-weight: 550; color: var(--tx); width: 30%; }
.cmp td { color: var(--mut); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.cmp .us { background: var(--ambw); color: var(--tx); font-weight: 600; }
.cmp thead .us { background: rgba(242,161,68,.16); color: var(--ambd); }

/* ---------- roadmap ---------- */
.rail-v { display: grid; }
.node { position: relative; padding: 0 24px 36px 30px; border-left: 1px solid var(--ln2); }
.node:last-child { padding-bottom: 0; border-left-color: transparent; }
.node::before {
  content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; border: 2px solid var(--ln2);
}
.node--now::before { background: var(--amb); border-color: var(--amb); box-shadow: 0 0 0 4px rgba(242,161,68,.16); }
.node__k { font-size: 11.5px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--fnt); }
.node--now .node__k { color: var(--ambd); }
.node h3 { margin-top: 7px; }
.node p { margin-top: 8px; font-size: 14.5px; color: var(--mut); max-width: 520px; }

/* ---------- team ---------- */
/* ---------- CTA: the spotlight, one last time ---------- */
.ctaBox {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, var(--ink2), var(--ink));
  border-radius: 28px; padding: 72px 40px; box-shadow: var(--shd); color: var(--d-body);
}
.ctaBox::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 340px at 50% -10%, rgba(242,161,68,.2), transparent 66%);
}
.ctaBox > * { position: relative; z-index: 1; }
.ctaBox h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.ctaBox .lead { color: var(--d-body); margin-inline: auto; }
.ctaBox__row { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { padding-block: 56px; border-top: 1px solid var(--ln); }
.foot__top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.foot__links { display: flex; flex-wrap: wrap; gap: 26px; }
.foot__links a { font-size: 14px; color: var(--mut); }
.foot__links a:hover { color: var(--tx); }
.foot__bot {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--ln);
  font-size: 11.5px; letter-spacing: .01em; color: var(--fnt);
}
/* ---------- scroll reveal ---------- */
.js .rise { opacity: 0; transform: translateY(14px); }
.js .rise.is-in { animation: rise .55s var(--e) both; animation-delay: calc(var(--i, 0) * 60ms); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__in, .split, .frow, .pipe { grid-template-columns: 1fr; gap: 40px; }
  .frow:nth-child(even) .frow__art { order: 0; }
  .pipe__s { padding: 0; }
  .pipe__s + .pipe__s { border-left: 0; border-top: 1px solid var(--ln); padding-top: 28px; margin-top: 28px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .spot__grid { grid-template-columns: 1fr; }
  .spot__col + .spot__col { border-left: 0; border-top: 1px solid var(--lnd); }
}

@media (max-width: 860px) {
  :root { --gut: 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .sec { padding-block: 72px; }
  .hero { padding: 56px 0 68px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .posture__g { grid-template-columns: repeat(2, 1fr); }
  .stakes__in { grid-template-columns: 1fr; }
  .hd--split { grid-template-columns: 1fr; align-items: start; }
  .hd--split h2 { max-width: none; }
  .hd { margin-bottom: 40px; }
  .ctaBox { padding: 48px 24px; border-radius: 22px; }
  .dial { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn { width: auto; flex: 1 1 auto; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .rise { opacity: 1; transform: none; }
}

@media print {
  .nav, .hero::before, .ctaBox { display: none; }
  body { color: #000; }
}
