/* =================================================================
   VETO — site design system
   Mirrors the product console brand: near-monochrome on a cool 270 hue,
   Inter (UI) + JetBrains Mono (numbers/ids/eyebrows), hairline-first
   elevation, status color only on dots & pills. No decorative color.
   Key moments use an inverted ink block (ink-on-paper, reversed).
   ================================================================= */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/launch/fonts/inter-latin-400-veto.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/launch/fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/launch/fonts/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/launch/fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/launch/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/launch/fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2");
}

:root {
  /* ---- ink (text) ---- */
  --ink:        oklch(0.18 0.005 270);   /* primary text, near-black */
  --ink-soft:   oklch(0.30 0.005 270);
  --mut:        oklch(0.46 0.005 270);   /* secondary / muted text */
  --faint:      oklch(0.62 0.006 270);   /* captions */

  /* ---- surfaces & hairline ---- */
  --line:       oklch(0.92 0.003 270);
  --line-2:     oklch(0.95 0.003 270);
  --bg:         oklch(1 0 0);
  --bg-2:       oklch(0.985 0.002 270);  /* surface */
  --bg-3:       oklch(0.965 0.003 270);  /* surface-2 / frame */

  /* ---- dark band (cool near-black) ---- */
  --dark:       oklch(0.175 0.008 270);
  --dark-2:     oklch(0.22 0.008 270);
  --dark-line:  oklch(0.30 0.008 270);
  --dark-tx:    oklch(0.97 0.002 270);
  --dark-mut:   oklch(0.70 0.006 270);

  /* ---- "accent" is structural, not a color: primary = ink ---- */
  --acc:        var(--ink);
  --acc-d:      oklch(0.30 0.006 270);    /* primary button hover */
  --acc-tint:   oklch(0.965 0.003 270);   /* neutral tint = surface-2 */
  --acc-tint-2: oklch(0.95 0.004 270);
  --acc-line:   oklch(0.86 0.004 270);
  --acc-on-dark:oklch(0.72 0.006 270);    /* light cool gray on dark */

  /* ---- status (sparing — dots, pills, thin tints only) ---- */
  --ok:     oklch(0.48 0.10 155);
  --ok-bg:  oklch(0.965 0.04 155);
  --ok-ln:  oklch(0.88 0.06 155);
  --warn:   oklch(0.52 0.11 60);
  --warn-bg:oklch(0.97 0.035 80);
  --warn-ln:oklch(0.88 0.06 75);
  --stop:   oklch(0.55 0.18 27);

  /* ---- metrics ---- */
  --maxw: 1200px;
  --pad-x: 40px;
  --radius: 10px;
  --radius-sm: 8px;

  --f-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --f-serif: var(--f-sans);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; font-feature-settings: "cv11","ss01","ss03"; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "cv11","ss01","ss03";
}
::selection { background: var(--ink); color: #fff; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.022em; line-height: 1.06; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: 120px 0; }
.section.tight { padding: 92px 0; }
.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }
.divline { border-top: 1px solid var(--line); }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mut);
}
.eyebrow.on-dark { color: var(--acc-on-dark); }
.eyebrow.mut { color: var(--faint); }

.h-display { font-size: 60px; letter-spacing: -0.03em; line-height: 1.02; }
.h-1 { font-size: 46px; letter-spacing: -0.028em; }
.h-2 { font-size: 34px; letter-spacing: -0.024em; }
.lead { font-size: 21px; line-height: 1.55; color: var(--mut); }
.muted { color: var(--mut); }
.kicker-line { font-size: 14px; color: var(--faint); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-sans); font-size: 16px; font-weight: 500;
  padding: 13px 22px; border-radius: 9px; border: 1px solid transparent;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--acc-d); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-text { color: var(--ink); font-weight: 500; padding: 13px 4px; }
.btn-text .arr { transition: transform .15s; }
.btn-text:hover .arr { transform: translateX(3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #EDEFF2; }
.btn.sm { padding: 9px 16px; font-size: 15px; border-radius: 8px; }

.arr { display: inline-block; }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 15px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.brand .mark { width: 18px; height: 18px; border-radius: 5px; background: var(--acc); position: relative; flex-shrink: 0; }
.brand .mark::after { content: ''; position: absolute; left: 7px; top: 4px; width: 4px; height: 10px; background: #fff; border-radius: 1px; }
.brand svg.logo { height: 19px; width: auto; display: block; }
.brand .logo-mask { display: block; height: 26px; aspect-ratio: 320 / 238; background: currentColor;
  -webkit-mask: url(/launch/veto-logo.svg) center / contain no-repeat; mask: url(/launch/veto-logo.svg) center / contain no-repeat; }
.pillnav .brand .logo-mask { height: 24px; }
.foot-brand .brand .logo-mask { height: 30px; }
.foot-brand .brand svg.logo { height: 21px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--mut); font-size: 15.5px; font-weight: 500; transition: color .15s; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .signin { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.tag-soon { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--faint); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; }

/* ---------- hero ---------- */
.hero { padding: 86px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 70px; align-items: center; }
.hero h1 { font-size: 58px; letter-spacing: -0.032em; line-height: 1.0; max-width: 13ch; margin-top: 26px; }
.hero .lead { margin-top: 26px; max-width: 46ch; }
.hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 38px; }
.hero-micro { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--mut); display: flex; align-items: center; gap: 10px; }
.hero-micro strong { color: var(--ink); font-weight: 600; }

/* =================================================================
   PRODUCT MOCKS — styled to read as real Veto surfaces
   ================================================================= */
.mock { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 70px -34px rgba(20,34,62,0.30), 0 3px 10px -4px rgba(0,0,0,0.05); }

/* frame backdrop for showcased mocks */
.frame { background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px; padding: 46px; }
.frame.tint { background: var(--bg-3); border-color: var(--line); }

/* Review Record card */
.rr { padding: 26px 28px; }
.rr-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.rr-kick { display: block; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--acc); font-weight: 600; }
.rr-sub { display: block; font-size: 17px; font-weight: 600; margin-top: 5px; letter-spacing: -0.01em; }
.pill { font-family: var(--f-mono); font-size: 11.5px; font-weight: 500; padding: 5px 10px; border-radius: 20px; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.pill .dotx { width: 6px; height: 6px; border-radius: 50%; }
.pill.cur { color: var(--ok); background: var(--ok-bg); border: 1px solid var(--ok-ln); }
.pill.cur .dotx { background: var(--ok); }
.pill.exc { color: var(--warn); background: var(--warn-bg); border: 1px solid var(--warn-ln); }
.pill.exc .dotx { background: var(--warn); }
.pill.blk { color: var(--mut); background: #F1F2F4; border: 1px solid var(--line); }
.pill.blk .dotx { background: var(--mut); }
.rr-meta { display: flex; gap: 38px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.rr-meta > div { font-size: 14px; }
.rr-meta span { display: block; color: var(--mut); font-size: 12px; margin-bottom: 3px; }
.rr-sec { padding: 16px 0; border-bottom: 1px solid var(--line); }
.rr-sec:last-of-type { border-bottom: none; }
.rr-lab { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut); margin-bottom: 9px; }
.rr-lab em { font-style: normal; color: var(--acc); margin-left: 6px; }
.rr-val { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.rr-src { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.rr-src li { display: flex; align-items: baseline; gap: 11px; font-size: 14.5px; font-weight: 500; }
.rr-src li > span.dot { align-self: center; }
.rr-src li .nm { white-space: nowrap; }
.rr-src em { font-style: normal; font-weight: 400; color: var(--mut); margin-left: auto; font-size: 12.5px; text-align: right; max-width: 50%; line-height: 1.35; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot.ok { background: var(--ok); }
.dot.warn { background: var(--warn); }
.rr-foot { padding-top: 16px; font-size: 12.5px; line-height: 1.5; color: var(--mut); }

/* Review Register table */
.reg { padding: 8px 0 0; }
.reg-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.reg-title { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.reg-title .mono { font-family: var(--f-mono); font-size: 11px; color: var(--mut); font-weight: 400; letter-spacing: 0.06em; white-space: nowrap; }
.reg-tabs { display: flex; gap: 4px; }
.reg-tabs span { font-size: 12.5px; color: var(--mut); padding: 5px 11px; border-radius: 7px; }
.reg-tabs span.on { background: var(--acc-tint); color: var(--acc); font-weight: 500; }
.reg-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 0.9fr; gap: 16px; align-items: center;
  padding: 15px 22px; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.reg-row:last-child { border-bottom: none; }
.reg-row.head { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); padding: 12px 22px; }
.reg-inst { font-weight: 600; }
.reg-file { color: var(--mut); font-variant-numeric: tabular-nums; }
.reg-who { color: var(--mut); }

/* flow diagram */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: stretch; }
.flow .node { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 22px 20px; position: relative; }
.flow .node .nlab { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.flow .node .nmain { font-size: 16px; font-weight: 600; margin-top: 8px; letter-spacing: -0.01em; line-height: 1.18; }
.flow .node .ndesc { font-size: 13px; color: var(--mut); margin-top: 9px; line-height: 1.45; }
.flow .node.accent { border-color: var(--ink); background: var(--ink); box-shadow: 0 14px 34px -22px rgba(20,20,32,0.5); }
.flow .node.accent .nlab { color: var(--dark-mut); }
.flow .node.accent .nmain { color: #fff; }
.flow .node.accent .ndesc { color: var(--dark-mut); }
.flow .arrow { align-self: center; justify-self: center; color: var(--faint); font-size: 16px; padding: 0 9px; }

/* ---------- dark problem band ---------- */
.band-dark { background: var(--dark); color: var(--dark-tx); }
.neg-list { list-style: none; margin: 30px 0 0; padding: 0; }
.neg-list li { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; padding: 16px 0; border-bottom: 1px solid var(--dark-line); }
.neg-list li:last-child { border-bottom: none; }
.neg-list .x { color: var(--acc-on-dark); font-family: var(--f-mono); font-size: 18px; font-weight: 400; margin-right: 14px; }
.neg-list .is { color: var(--dark-mut); font-weight: 400; }

/* ---------- feature grid (Veto Core) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cell { background: #fff; padding: 30px 28px; }
.cell .clab { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--acc); font-weight: 600; }
.cell h3 { font-size: 20px; margin-top: 12px; }
.cell p { font-size: 15px; color: var(--mut); margin-top: 9px; line-height: 1.5; }

/* ---------- two-column boundary ---------- */
.bound { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.bound > div { background: #fff; padding: 34px 32px; }
.bound .bh { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.bound .does .bh { color: var(--ok); }
.bound .doesnt { background: var(--bg-2); }
.bound .doesnt .bh { color: var(--mut); }
.bound ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.bound li { font-size: 15.5px; display: flex; gap: 11px; align-items: flex-start; line-height: 1.4; }
.bound li .gl { flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.bound .does li .gl { color: var(--ok); }
.bound .doesnt li { color: var(--mut); }
.bound .doesnt li .gl { color: var(--faint); }

/* ---------- serif pull quote ---------- */
.quote { text-align: center; max-width: 22ch; margin: 0 auto; }
.quote p { font-family: var(--f-sans); font-size: 44px; line-height: 1.18; letter-spacing: -0.025em; font-weight: 600; }
.quote .src { display: block; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 30px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: #fff; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--acc); box-shadow: 0 24px 50px -30px rgba(28,63,112,0.45); }
.plan .pname { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc); font-weight: 600; }
.plan .pfor { font-size: 14px; color: var(--mut); margin-top: 6px; min-height: 40px; }
.plan .pfeat { list-style: none; margin: 22px 0 26px; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan .pfeat li { font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.plan .pfeat li .ck { color: var(--acc); flex-shrink: 0; }

/* ---------- ecosystem strip ---------- */
.eco { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.eco .chip { font-family: var(--f-mono); font-size: 14px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 8px; padding: 9px 16px; background: #fff; }

/* ---------- final CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 52px; letter-spacing: -0.03em; max-width: 18ch; margin: 0 auto; }
.cta-band .lead { margin: 24px auto 0; max-width: 52ch; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; margin-top: 38px; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--dark-mut); padding: 80px 0 46px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.foot-brand .brand { color: #fff; }
.foot-brand .mark { background: var(--acc-on-dark); }
.foot-brand .mark::after { background: var(--dark); }
.foot-brand p { margin-top: 18px; font-size: 14px; max-width: 30ch; line-height: 1.55; }
.foot-col h4 { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-weight: 500; margin-bottom: 16px; }
.foot-col a { display: flex; align-items: center; gap: 7px; font-size: 14.5px; color: var(--dark-mut); padding: 6px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-col .tag-soon { color: var(--faint); border-color: var(--dark-line); }
.foot-bottom { margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--dark-line); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; }
.foot-bottom .legal { max-width: 70ch; line-height: 1.55; }

/* ---------- section heading block ---------- */
.shead { max-width: 60ch; }
.shead .eyebrow { margin-bottom: 18px; }
.shead h2 { margin-bottom: 18px; }
.shead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- reusable 2-col feature ---------- */
.feat-2col { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.feat-2col.rev { grid-template-columns: 1.08fr 0.92fr; }

/* ---------- category contrast ---------- */
.contrast { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.contrast .crow { display: grid; grid-template-columns: 300px 1fr; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contrast .csys { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.04em; color: var(--mut); text-transform: uppercase; }
.contrast .cask { font-size: 21px; letter-spacing: -0.012em; color: var(--ink-soft); }
.contrast .crow.veto { background: var(--ink); margin: 8px -28px 0; padding: 30px 28px; border-radius: 12px; border: 1px solid var(--ink); }
.contrast .crow.veto .csys { color: var(--dark-mut); font-weight: 600; }
.contrast .crow.veto .cask { color: #fff; font-weight: 600; font-size: 26px; }

/* ---------- source panel mock ---------- */
.srcpanel { padding: 22px 26px; }
.sp-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.sp-top .spt { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.sp-top .mono { font-family: var(--f-mono); font-size: 11px; color: var(--mut); letter-spacing: 0.06em; }
.sp-row { padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.sp-row:last-child { border-bottom: none; }
.sp-claim { font-size: 15.5px; font-weight: 600; display: flex; align-items: center; gap: 11px; }
.sp-claim .sp-tag { margin-left: auto; }
.sp-supports { font-size: 13.5px; color: var(--ink-soft); margin-top: 9px; line-height: 1.5; }
.sp-supports b { font-weight: 600; color: var(--ink); }
.sp-not { font-size: 13.5px; color: var(--mut); margin-top: 5px; line-height: 1.5; }
.sp-not b { font-weight: 600; color: var(--warn); }

/* ---------- stale banner inside rr ---------- */
.rr-banner { margin: -2px 0 4px; padding: 12px 14px; background: var(--warn-bg); border: 1px solid var(--warn-ln); border-radius: 8px; font-size: 13px; color: #7A5410; line-height: 1.45; }
.rr-banner b { font-weight: 600; }

/* ---------- product principles ---------- */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.principle { background: #fff; padding: 28px 30px; display: flex; gap: 18px; }
.principle .pn { font-family: var(--f-mono); font-size: 13px; color: var(--acc); font-weight: 600; padding-top: 3px; flex-shrink: 0; }
.principle h4 { font-size: 18px; letter-spacing: -0.012em; }
.principle p { font-size: 14.5px; color: var(--mut); margin-top: 8px; line-height: 1.5; }

/* ---------- flywheel ---------- */
.flyw { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fstep { border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; background: #fff; }
.fstep .fnum { font-family: var(--f-mono); font-size: 12px; color: var(--acc); font-weight: 600; }
.fstep p { font-size: 15px; margin-top: 10px; font-weight: 500; line-height: 1.38; letter-spacing: -0.01em; }
.flyw-foot { margin-top: 22px; font-size: 14px; color: var(--faint); font-family: var(--f-mono); letter-spacing: 0.04em; text-align: center; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; font-size: 20px; font-weight: 600; letter-spacing: -0.015em; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .qm { font-family: var(--f-mono); font-size: 24px; color: var(--acc); font-weight: 400; flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq details[open] summary .qm { transform: rotate(45deg); }
.faq .ans { padding: 0 0 28px; max-width: 76ch; font-size: 16px; color: var(--mut); line-height: 1.62; }
.faq .ans strong { color: var(--ink); font-weight: 600; }

/* =================================================================
   WARM LAYER — Acctual-style composition over the console brand.
   Pill nav · centered hero · soft floating stages · segment cards ·
   testimonial + logo placeholders. Monochrome ink is preserved;
   warmth comes from rounding, soft shadow, generous space, imagery.
   ================================================================= */

/* pill buttons */
.btn, .btn.sm { border-radius: 999px; }

/* floating pill nav */
.pillnav { position: sticky; top: 16px; z-index: 60; padding: 0 20px; }
.pillnav-inner { max-width: 1080px; margin: 0 auto; background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 12px 36px -16px rgba(20,20,32,0.18);
  padding: 9px 10px 9px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pillnav .brand svg.logo { height: 17px; }
.pillnav .nav-links { gap: 26px; }
.pillnav .nav-links a { font-size: 15px; }
.pillnav .nav-cta { gap: 14px; }

/* centered hero */
.hero-c { padding: 60px 0 24px; text-align: center; }
.hero-c .badge { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 7px 6px 16px; font-size: 13.5px; color: var(--mut); margin-bottom: 32px; }
.hero-c .badge .bk { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.hero-c h1 { font-size: 76px; letter-spacing: -0.038em; line-height: 0.96; max-width: 16ch; margin: 0 auto; }
.hero-c .lead { margin: 28px auto 0; max-width: 50ch; font-size: 20px; }
.hero-c .hero-cta { justify-content: center; margin-top: 36px; }
.checkrow { display: flex; gap: 28px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.checkrow .ci { display: inline-flex; align-items: center; gap: 9px; }
.checkrow .ci .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--ok-bg); border: 1px solid var(--ok-ln);
  color: var(--ok); display: grid; place-items: center; font-size: 10px; flex-shrink: 0; }
.checkrow .ci b { font-family: var(--f-mono); font-weight: 500; font-size: 13px; color: var(--mut); }

/* big composition stage — image slot + floating product cards */
.stage { position: relative; margin-top: 56px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(168deg, var(--bg-3), var(--bg-2) 70%); height: 560px; box-shadow: 0 50px 100px -55px rgba(20,20,44,0.45); }
.stage > image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage .float { position: absolute; z-index: 2; }
.stage .float .mock { box-shadow: 0 36px 80px -30px rgba(15,22,45,0.5); }

/* soft frame variant */
.frame { border-radius: 24px; padding: 42px; }
.frame.soft { background: var(--bg-2); box-shadow: 0 30px 70px -52px rgba(20,20,40,0.4); }

/* feature stage (heading row + framed visual, Acctual pattern) */
.feat-head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; margin-bottom: 38px; }
.feat-head h2 { font-size: 38px; letter-spacing: -0.026em; }
.feat-head .fbody { font-size: 17px; line-height: 1.62; color: var(--mut); }
.feat-head .fbody b { color: var(--ink); font-weight: 600; }
.feat-stage { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-3); min-height: 520px; box-shadow: 0 44px 92px -58px rgba(20,20,40,0.42);
  display: grid; place-items: center; padding: 60px; }
.feat-stage > image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.feat-stage .mock { position: relative; z-index: 2; box-shadow: 0 36px 84px -32px rgba(15,22,45,0.5); max-width: 580px; width: 100%; }

/* segment cards */
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seg-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; transition: background .15s, border-color .15s; }
.seg-card:hover { background: var(--bg-3); border-color: var(--acc-line); }
.seg-badge { width: 46px; height: 46px; border-radius: 13px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--f-mono); font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 22px; }
.seg-card .role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 7px; }
.seg-card h3 { font-size: 20px; letter-spacing: -0.015em; }
.seg-card p { font-size: 14.5px; color: var(--mut); margin-top: 10px; line-height: 1.5; }

/* logo wall placeholder */
.logowall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 28px; }
.logo-slot { height: 58px; border: 1px dashed var(--acc-line); border-radius: 12px; display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); background: var(--bg-2); }
.placeholder-tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); border: 1px dashed var(--acc-line); border-radius: 999px; padding: 5px 13px; }

/* founder bio */
.bio-block { display: grid; grid-template-columns: minmax(280px, 0.82fr) 1.18fr; gap: 48px; align-items: center; }
.bio-card { display: flex; align-items: center; gap: 20px; }
.bio-card img { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 28px 58px -44px rgba(20,20,40,0.55); }
.bio-card h2 { font-size: 30px; line-height: 1.04; letter-spacing: -0.026em; margin-top: 10px; }
.bio-role { margin-top: 8px; color: var(--mut); font-size: 14px; line-height: 1.45; }
.bio-copy { display: grid; gap: 13px; color: var(--mut); font-size: 16px; line-height: 1.62; }
.bio-copy p { max-width: 68ch; }
.bio-copy .kicker-line { margin-top: 8px; color: var(--faint); }

/* testimonial (placeholder-ready) */
.testi { text-align: center; max-width: 900px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: 28px; padding: 60px 56px; }
.testi p { font-size: 33px; line-height: 1.3; letter-spacing: -0.02em; font-weight: 500; max-width: 24ch; margin: 0 auto; }
.testi .attr { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--faint); margin-top: 28px; text-transform: uppercase; }

/* warm-layer responsive */
@media (max-width: 1080px) {
  .hero-c h1 { font-size: 54px; }
  .feat-head { grid-template-columns: 1fr; gap: 18px; }
  .seg-grid { grid-template-columns: 1fr 1fr; }
  .logowall { grid-template-columns: repeat(3, 1fr); }
  .bio-block { grid-template-columns: 1fr; gap: 26px; }
  .stage { height: 520px; }
}
@media (max-width: 720px) {
  .pillnav .nav-links { display: none; }
  .pillnav { top: 14px; padding: 0 16px; }
  .pillnav-inner { width: 100%; gap: 10px; padding: 8px 10px 8px 20px; }
  .hero-c { padding-top: 44px; overflow: hidden; }
  .hero-c .badge { max-width: 100%; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; padding: 6px 8px; }
  .hero-c h1 { font-size: clamp(34px, 10.5vw, 40px); max-width: 11ch; }
  .hero-c .lead { max-width: 31ch; font-size: 17px; line-height: 1.55; }
  .hero-c .hero-cta {
    width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-c .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .checkrow { flex-direction: column; align-items: center; gap: 10px; margin-top: 32px; }
  .wrap[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 28px !important; }
  .wrap > * { min-width: 0; }
  .frame { padding: 20px; border-radius: 18px; }
  .rr { padding: 20px; }
  .rr-head,
  .rr-meta,
  .rr-src li { flex-wrap: wrap; }
  .rr-meta { gap: 10px; }
  .rr-src li .nm { white-space: normal; }
  .rr-src em { flex-basis: 100%; max-width: none; margin-left: 19px; text-align: left; }
  .reg-top { display: grid; gap: 12px; align-items: start; }
  .reg-tabs { flex-wrap: wrap; }
  .seg-grid { grid-template-columns: 1fr; }
  .bio-card { align-items: flex-start; }
  .bio-card img { width: 86px; height: 86px; }
  .bio-card h2 { font-size: 25px; }
  .bio-copy { font-size: 15px; }
  .testi p { font-size: 24px; }
  .stage { height: 440px; }
}

/* ---------- email capture (Vanta-style) ---------- */
.email-capture { display: flex; gap: 8px; max-width: 500px; margin: 38px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 7px 7px 22px; box-shadow: 0 12px 34px -18px rgba(20,20,32,0.18); transition: border-color .15s; }
.email-capture:focus-within { border-color: var(--ink); }
.email-capture input { flex: 1; border: none; outline: none; font-family: var(--f-sans); font-size: 16px; color: var(--ink); background: transparent; min-width: 0; }
.email-capture input::placeholder { color: var(--faint); }
.email-capture .btn { flex-shrink: 0; }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--faint); }
.cta-note a { color: var(--mut); text-decoration: underline; text-underline-offset: 2px; }
.cta-thanks { margin: 38px auto 0; font-size: 18px; font-weight: 500; max-width: 40ch; }
.cta-thanks .em { font-family: var(--f-mono); font-size: 14px; color: var(--mut); display: block; margin-top: 8px; }

/* ---------- comparison table ---------- */
.cmp { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cmp-row { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--line-2); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row.head > div { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mut); padding: 16px 18px; }
.cmp-row.head { background: var(--bg-2); }
.cmp-cap { padding: 17px 18px; font-size: 14.5px; font-weight: 500; }
.cmp-cell { padding: 17px 18px; text-align: center; }
.cmp-cell .yes { color: var(--ink); font-weight: 700; font-size: 16px; }
.cmp-cell .no { color: var(--faint); font-size: 16px; }
.cmp-cell .part { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mut); }
.cmp .veto-col { background: var(--bg-3); }
.cmp-row.head .veto-col { color: var(--ink); font-weight: 600; border-top: 2px solid var(--ink); }
@media (max-width: 820px) {
  .cmp-row { grid-template-columns: 1.5fr 1fr; }
  .cmp-other { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 50px; }
  .flow { grid-template-columns: 1fr; }
  .flow .arrow { transform: rotate(90deg); padding: 8px 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .feat-2col, .feat-2col.rev { grid-template-columns: 1fr; gap: 48px; }
  .flyw { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --pad-x: 22px; }
  .section { padding: 84px 0; }
  .nav-links, .nav-cta .signin { display: none; }
  .h-display, .hero h1 { font-size: 40px; }
  .h-1 { font-size: 34px; }
  .cta-band h2 { font-size: 36px; }
  .quote p { font-size: 32px; }
  .neg-list li { font-size: 22px; }
  .grid-3, .bound, .principles { grid-template-columns: 1fr; }
  .contrast .crow { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .contrast .crow.veto { margin: 8px 0 0; }
  .reg-row { grid-template-columns: 1.4fr 1fr; }
  .reg-row .reg-who, .reg-row.head span:nth-child(3), .reg-row.head span:nth-child(4) { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* =================================================================
   SHARED UI — coming-soon toast · industry tools · stat proof ·
   footer tools strip · Intercom-style messenger
   ================================================================= */

/* ---- coming-soon toast ---- */
.veto-toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 16px);
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.45); opacity: 0; pointer-events: none; z-index: 220; max-width: 90vw;
  transition: opacity .2s, transform .2s; }
.veto-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---- industry tools (social proof cards) ---- */
.seg-card.tool { display: flex; flex-direction: column; }
.seg-card.tool .seg-badge { font-size: 19px; }
.seg-card.tool .tool-go { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink); margin-top: 18px; }
.seg-card.tool:hover .tool-go { text-decoration: underline; text-underline-offset: 2px; }

/* ---- stat proof bar (replaces testimonials) ---- */
.proofbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.proof { background: #fff; padding: 36px 30px; text-align: center; }
.proof .pnum { font-family: var(--f-mono); font-size: 46px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.proof .pcap { font-size: 14.5px; color: var(--mut); margin-top: 14px; line-height: 1.45; max-width: 30ch; margin-left: auto; margin-right: auto; }
@media (max-width: 820px) { .proofbar { grid-template-columns: 1fr; } }

/* ---- footer tools strip ---- */
.foot-tools { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--dark-line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 28px; }
.foot-tools .ft-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.foot-tools .ft-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-tools .ft-links a { font-size: 14px; color: var(--dark-mut); transition: color .15s; }
.foot-tools .ft-links a:hover { color: #fff; }

/* ---- Intercom-style messenger ---- */
.vmsg { position: fixed; right: 24px; bottom: 24px; z-index: 160; font-family: var(--f-sans); }
.vmsg-launcher { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); border: none; cursor: pointer;
  box-shadow: 0 16px 40px -12px rgba(20,20,40,0.55); display: grid; place-items: center; transition: transform .15s; }
.vmsg-launcher:hover { transform: translateY(-2px); }
.vmsg-launcher svg { width: 24px; height: 24px; color: #fff; }
.vmsg-launcher .ic-close { display: none; }
.vmsg.open .vmsg-launcher .ic-chat { display: none; }
.vmsg.open .vmsg-launcher .ic-close { display: block; }
.vmsg-panel { position: absolute; right: 0; bottom: 70px; width: 372px; max-width: calc(100vw - 32px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 34px 84px -28px rgba(20,20,40,0.5);
  overflow: hidden; opacity: 0; transform: translateY(10px) scale(0.98); transform-origin: bottom right;
  pointer-events: none; transition: opacity .18s, transform .18s; }
.vmsg.open .vmsg-panel { opacity: 1; transform: none; pointer-events: auto; }
.vmsg-head { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.vmsg-id { display: flex; align-items: center; gap: 12px; }
.vmsg-av { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-weight: 700; font-size: 14px; letter-spacing: -0.02em; flex-shrink: 0; }
.vmsg-name { font-weight: 600; font-size: 15px; line-height: 1.1; }
.vmsg-status { font-size: 12px; color: var(--dark-mut); margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.vmsg-status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); display: inline-block; }
.vmsg-x { background: none; border: none; color: var(--dark-mut); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; }
.vmsg-x:hover { color: #fff; }
.vmsg-body { padding: 18px; max-height: 300px; min-height: 180px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: var(--bg-2); }
.vmsg-row { display: flex; }
.vmsg-row.bot { justify-content: flex-start; }
.vmsg-row.me { justify-content: flex-end; }
.vmsg-bubble { max-width: 82%; font-size: 14px; line-height: 1.5; padding: 11px 14px; border-radius: 14px; }
.vmsg-row.bot .vmsg-bubble { background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; }
.vmsg-row.me .vmsg-bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
.vmsg-bubble a { text-decoration: underline; text-underline-offset: 2px; color: inherit; font-weight: 500; }
.vmsg-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; background: var(--bg-2); }
.vmsg-quick button { font-family: var(--f-sans); font-size: 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; cursor: pointer; transition: border-color .15s; }
.vmsg-quick button:hover { border-color: var(--ink); }
.vmsg-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; align-items: center; }
.vmsg-input input { flex: 1; border: none; outline: none; font-family: var(--f-sans); font-size: 14px; color: var(--ink); background: transparent; }
.vmsg-input button { background: var(--ink); color: #fff; border: none; border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 500; cursor: pointer; flex-shrink: 0; }
.vmsg-foot { text-align: center; font-size: 11px; color: var(--faint); padding: 0 0 12px; background: #fff; }
@media (max-width: 480px) { .vmsg-panel { width: calc(100vw - 32px); } }

/* ---- mobile nav menu ---- */
.pillnav-burger { display: none; width: 40px; height: 40px; border: none; background: none; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center; flex-shrink: 0; }
.pillnav-burger span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .18s; }
.pillnav-burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pillnav-burger.on span:nth-child(2) { opacity: 0; }
.pillnav-burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 140; background: rgba(255,255,255,0.985); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity .2s; display: flex; align-items: flex-start; justify-content: center; padding-top: 104px; }
body.mm-open { overflow: hidden; }
body.mm-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mm-inner { display: flex; flex-direction: column; gap: 2px; width: 100%; max-width: 340px; padding: 0 24px; }
.mm-inner a { font-size: 22px; font-weight: 600; letter-spacing: -0.022em; color: var(--ink); padding: 17px 4px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.mm-inner a .tag-soon { font-size: 9.5px; }
.mm-inner a.mm-cta { margin-top: 24px; border: none; background: var(--ink); color: #fff; justify-content: center; border-radius: 999px; padding: 16px; font-size: 16px; }
@media (max-width: 720px) {
  .pillnav-burger { display: flex; }
  .pillnav .nav-cta { display: none; }
}

.launch-stage-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 22% 18%, rgba(255,255,255,0.72), transparent 34%), radial-gradient(circle at 78% 68%, rgba(209,109,74,0.16), transparent 38%); opacity: 0.9; }
