/* ScanSuite homepage. Replaces scansuite-redesign.css on this page only; the
   navigation and footer come from scansuite-chrome.css. Light, editorial page
   with navy "engine room" bands, mirroring the product: navy sidebar, white
   working surface, one orange accent. */

:root {
  --navy-950: #0b1326;
  --navy-900: #111a2f;
  --navy-800: #1a2540;
  --navy-700: #273453;
  --navy-line: rgba(148, 163, 184, 0.16);
  --navy-text: #e7ecf4;
  --navy-muted: #9aa8bf;

  --paper: #ffffff;
  --paper-alt: #f6f7f9;
  --paper-tint: #fff7ed;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-muted: #5b6678;
  --line: #e3e7ee;
  --line-strong: #cfd6e1;

  --orange: #f97316;
  --orange-strong: #ea580c;
  --orange-ink: #c2410c;         /* orange that passes AA on white */
  --orange-soft: rgba(249, 115, 22, 0.12);

  --crit: #dc2626;
  --high: #ea580c;
  --med: #d97706;
  --ok: #16a34a;
  --ok-soft: #dcfce7;
  --info: #2563eb;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-2: 0 12px 32px -12px rgba(15, 23, 42, 0.18), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-3: 0 40px 80px -24px rgba(2, 6, 23, 0.55);

  --font-display: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --wrap: 1200px;
  --gutter: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.25; letter-spacing: -0.02em; color: inherit; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(249, 115, 22, 0.25); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.wrap { width: min(100%, var(--wrap)); margin: 0 auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: var(--paper); padding: 8px 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  font: 600 15px/1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 6px 16px -6px rgba(234, 88, 12, .6); }
.btn-primary:hover { background: var(--orange-strong); }
.btn-ghost-dark { color: var(--navy-text); border-color: rgba(231, 236, 244, .22); }
.btn-ghost-dark:hover { border-color: rgba(231, 236, 244, .5); background: rgba(255,255,255,.04); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); background: var(--paper); }
.btn-ghost:hover { border-color: var(--ink-muted); }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-ink); font-weight: 600; font-size: 14px; text-decoration: none;
}
.link-arrow .material-symbols-outlined { font-size: 18px; transition: transform .15s; }
.link-arrow:hover .material-symbols-outlined { transform: translateX(3px); }
.on-dark .link-arrow { color: #fdba74; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(249,115,22,.16), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(59,130,246,.10), transparent 60%),
    var(--navy-950);
  color: var(--navy-text);
  padding: 152px 0 0;  /* 64px fixed navigation + 88px */
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 56px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-ink);
}
.on-dark .eyebrow, .hero .eyebrow { color: #fdba74; }
.hero h1 {
  margin: 0 auto; max-width: 900px;
  font-size: clamp(40px, 6vw, 68px); line-height: 1.04; font-weight: 800; letter-spacing: -0.035em; color: #fff;
}
.hero h1 em { font-style: normal; background: linear-gradient(100deg, #fdba74, #f97316 60%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { margin: 24px auto 0; max-width: 720px; font-size: 19px; line-height: 1.6; color: #c3cddc; }
.hero-cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-assurances { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; font-size: 14px; color: var(--navy-muted); }
.hero-assurances li { display: inline-flex; align-items: center; gap: 8px; }
.hero-assurances .material-symbols-outlined { font-size: 18px; color: #4ade80; }

/* product shot + evidence card */
.hero-stage { position: relative; margin: 8px auto 0; max-width: 1080px; }
.browser {
  border-radius: 14px 14px 0 0; overflow: hidden;
  background: #fff; border: 1px solid rgba(255,255,255,.12); border-bottom: 0;
  box-shadow: var(--shadow-3);
}
.browser-bar { display: flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; background: #eef1f5; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfd5de; }
.browser-bar .url { margin-left: 14px; flex: 0 1 360px; height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--line); font: 500 11px/20px var(--font-mono); color: var(--ink-muted); padding: 0 10px; text-align: left; }
.browser img { width: 100%; height: auto; }

.evidence-card {
  position: absolute; right: -28px; bottom: 56px; width: 340px;
  text-align: left; color: var(--ink);
  background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(2,6,23,.55);
  padding: 18px 18px 16px;
}
.evidence-card .ec-head { display: flex; align-items: center; justify-content: space-between; font: 600 11px/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }
.evidence-card h4 { margin-top: 10px; font-size: 16px; line-height: 1.35; letter-spacing: -0.01em; }
.evidence-card .ec-meta { margin-top: 4px; font: 500 12px/1.4 var(--font-mono); color: var(--ink-muted); }
.ec-checks { margin-top: 14px; display: grid; gap: 8px; }
.ec-checks li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; font-size: 13px; line-height: 1.4; color: var(--ink-2); }
.ec-checks .material-symbols-outlined { font-size: 18px; color: var(--ok); font-variation-settings: "FILL" 1; }
.ec-checks b { color: var(--ink); font-weight: 600; }
.evidence-float-left {
  position: absolute; left: -36px; top: 120px; width: 250px; text-align: left;
  background: var(--navy-900); color: var(--navy-text); border: 1px solid var(--navy-line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(2,6,23,.7); padding: 14px 16px;
  font: 500 12px/1.65 var(--font-mono);
}
.evidence-float-left .t { color: var(--navy-muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.evidence-float-left .t::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.18); }
.evidence-float-left .k { color: #fdba74; }
.evidence-float-left .dim { color: var(--navy-muted); }

/* ---------- Badges ---------- */
.sev { display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 6px; font: 700 11.5px/1 var(--font-body); }
.sev-crit { background: #fee2e2; color: #b91c1c; }
.sev-high { background: #ffedd5; color: #c2410c; }
.tag { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 9px; border-radius: 999px; font: 600 12px/1 var(--font-body); background: var(--paper-alt); color: var(--ink-2); border: 1px solid var(--line); }
.tag-ok { background: var(--ok-soft); color: #166534; border-color: #bbf7d0; }

/* ---------- Proof strip ---------- */
.proof-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); }
.proof-item { padding: 34px 24px 30px; border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; padding-left: 0; }
.proof-value { font: 800 34px/1 var(--font-display); letter-spacing: -0.03em; color: var(--ink); }
.proof-value small { font-size: 20px; color: var(--orange-ink); margin-left: 2px; }
.proof-value small.pre { margin: 0 2px 0 0; }
.proof-label { margin-top: 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-muted); }

/* ---------- Sections ---------- */
.section { padding: 112px 0; }
.section-alt { background: var(--paper-alt); border-block: 1px solid var(--line); }
.section-dark { background: var(--navy-950); color: var(--navy-text); }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; font-weight: 800; }
.section-head p { margin-top: 18px; font-size: 18px; color: var(--ink-muted); }
.section-dark .section-head p { color: var(--navy-muted); }
.section-dark .section-head h2 { color: #fff; }

/* ---------- Before / after ---------- */
.compare { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow-1); }
.compare-col { padding: 36px 40px 40px; }
.compare-col + .compare-col { border-left: 1px solid var(--line); background: linear-gradient(180deg, var(--paper-tint), var(--paper) 55%); }
.compare-col h3 { display: flex; align-items: center; gap: 10px; font-size: 14px; font-family: var(--font-mono); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }
.compare-col + .compare-col h3 { color: var(--orange-ink); }
.compare-col ul { margin-top: 22px; display: grid; gap: 18px; }
.compare-col li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; font-size: 16px; color: var(--ink-2); }
.compare-col li b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.compare-col li .material-symbols-outlined { margin-top: 2px; color: #94a3b8; }
.compare-col + .compare-col li .material-symbols-outlined { color: var(--orange); }

/* ---------- Audience tabs ---------- */
.audience { margin-top: 48px; }
.seg { display: inline-flex; padding: 4px; border-radius: 10px; background: var(--paper-alt); border: 1px solid var(--line); gap: 4px; }
.seg button { border: 0; background: none; padding: 10px 18px; border-radius: 7px; cursor: pointer; font: 600 14px/1 var(--font-body); color: var(--ink-muted); display: inline-flex; align-items: center; gap: 8px; }
.seg button[aria-selected="true"] { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-1), 0 0 0 1px var(--line); }
.aud-panel { margin-top: 32px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.aud-panel[hidden] { display: none; }
.aud-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-1); }
.aud-card .icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-ink); }
.aud-card h3 { margin-top: 18px; font-size: 18px; line-height: 1.3; }
.aud-card p { margin-top: 8px; font-size: 15px; color: var(--ink-muted); }
.aud-card .proof { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-strong); font: 500 12.5px/1.5 var(--font-mono); color: var(--ink-2); }

/* ---------- Engines ---------- */
.engines { margin-top: 56px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.engine {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px 24px; border-radius: var(--radius);
  background: var(--navy-900); border: 1px solid var(--navy-line);
  transition: border-color .2s, transform .2s;
}
.engine:hover { border-color: rgba(249,115,22,.45); transform: translateY(-2px); }
.engine .code { font: 600 11px/1 var(--font-mono); letter-spacing: .08em; color: var(--navy-muted); }
.engine .material-symbols-outlined.big { margin-top: 22px; font-size: 28px; color: #fdba74; }
.engine h3 { margin-top: 14px; font-size: 19px; color: #fff; }
.engine p { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--navy-muted); }
.engine .facts { margin-top: 18px; display: grid; gap: 8px; font-size: 13.5px; color: var(--navy-text); }
.engine .facts li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; }
.engine .facts li::before { content: ""; width: 6px; height: 6px; margin-top: 8px; border-radius: 2px; background: var(--orange); }
.engine .link-arrow { margin-top: auto; padding-top: 22px; }

.also-row { margin-top: 16px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.also { display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--navy-line); background: rgba(255,255,255,.02); }
.also .material-symbols-outlined { color: #fdba74; margin-top: 2px; }
.also h4 { font-size: 15px; color: #fff; }
.also p { margin-top: 4px; font-size: 13.5px; color: var(--navy-muted); line-height: 1.5; }

/* ---------- Pentest agent loop ---------- */
.agent-grid { margin-top: 56px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.terminal {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--navy-line);
  background: #070d1c; box-shadow: var(--shadow-3);
  font: 500 13px/1.75 var(--font-mono); color: #cbd5e1;
}
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--navy-900); border-bottom: 1px solid var(--navy-line); font-size: 11.5px; color: var(--navy-muted); }
.terminal-bar i { width: 9px; height: 9px; border-radius: 50%; background: #334155; }
.terminal-bar span { margin-left: 8px; }
.terminal-body { padding: 18px 20px 22px; }
.terminal .ph { display: inline-block; min-width: 64px; color: #fdba74; }
.terminal .ok { color: #4ade80; }
.terminal .dim { color: #64748b; }
.terminal .q { color: #e2e8f0; }
.terminal .line + .line { margin-top: 2px; }
.terminal .gap { height: 10px; }
.terminal-note { margin-top: 12px; font-size: 12.5px; color: var(--navy-muted); }

.steps { display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--navy-line); }
.step:last-child { border-bottom: 0; }
.step .n { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; border: 1px solid rgba(253,186,116,.35); color: #fdba74; font: 700 13px/1 var(--font-mono); }
.step h3 { font-size: 17px; color: #fff; }
.step p { margin-top: 4px; font-size: 14.5px; color: var(--navy-muted); }

.guardrails { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--navy-line); background: var(--navy-line); }
.guardrail { padding: 22px 22px 24px; background: var(--navy-900); }
.guardrail .material-symbols-outlined { color: #4ade80; }
.guardrail h4 { margin-top: 12px; font-size: 15px; color: #fff; }
.guardrail p { margin-top: 6px; font-size: 13.5px; color: var(--navy-muted); line-height: 1.5; }

/* ---------- Product tour ---------- */
.tour { margin-top: 48px; display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 40px; align-items: start; }
.tour-tabs { display: grid; gap: 6px; }
.tour-tab {
  text-align: left; cursor: pointer; border: 1px solid transparent; background: none; border-radius: var(--radius);
  padding: 16px 18px; display: grid; gap: 4px; font-family: var(--font-body); color: var(--ink);
  transition: background .15s, border-color .15s;
}
.tour-tab:hover { background: var(--paper); }
.tour-tab .t { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15.5px; }
.tour-tab .t .material-symbols-outlined { color: var(--ink-muted); }
.tour-tab .d { font-size: 14px; color: var(--ink-muted); line-height: 1.5; padding-left: 30px; display: none; }
.tour-tab[aria-selected="true"] { background: var(--paper); border-color: var(--line); box-shadow: var(--shadow-2); }
.tour-tab[aria-selected="true"] .t .material-symbols-outlined { color: var(--orange); }
.tour-tab[aria-selected="true"] .d { display: block; }
.tour-view { position: relative; }
.tour-view .browser { border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.tour-view figure { margin: 0; }
.tour-view figure[hidden] { display: none; }
.tour-view figcaption { margin-top: 14px; font-size: 13.5px; color: var(--ink-muted); display: flex; justify-content: space-between; gap: 16px; }

/* ---------- Lifecycle ---------- */
.lifecycle { margin-top: 56px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); position: relative; }
.lifecycle::before { content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 14px); }
.lc { position: relative; text-align: center; padding: 0 14px; }
.lc .dot { width: 56px; height: 56px; margin: 0 auto; border-radius: 16px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-1); color: var(--ink-2); }
.lc:last-child .dot { background: var(--ok-soft); border-color: #bbf7d0; color: var(--ok); }
.lc h3 { margin-top: 18px; font-size: 16px; }
.lc p { margin-top: 6px; font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

.split { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { padding: 32px; border-radius: 16px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-1); }
.panel h3 { font-size: 20px; }
.panel > p { margin-top: 8px; color: var(--ink-muted); font-size: 15px; }
.kv { margin-top: 20px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.kv div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.kv dt { color: var(--ink-muted); }
.kv dd { margin: 0; color: var(--ink); }
.panel .link-arrow { margin-top: 20px; }

/* ---------- Deployment ---------- */
.deploy-grid { margin-top: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.perimeter {
  position: relative; padding: 28px; border-radius: 18px;
  border: 1.5px dashed rgba(74,222,128,.45); background: rgba(74,222,128,.03);
}
.perimeter-label { position: absolute; top: -12px; left: 24px; padding: 2px 10px; border-radius: 999px; background: var(--navy-950); border: 1px solid rgba(74,222,128,.45); color: #86efac; font: 600 11px/1.6 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.perimeter-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.node { padding: 14px; border-radius: 10px; background: var(--navy-900); border: 1px solid var(--navy-line); }
.node .material-symbols-outlined { color: #fdba74; font-size: 20px; }
.node b { display: block; margin-top: 8px; color: #fff; font-size: 13.5px; font-weight: 600; }
.node span.s { display: block; margin-top: 2px; color: var(--navy-muted); font-size: 12px; line-height: 1.4; }
.node.wide { grid-column: span 3; display: flex; align-items: center; gap: 12px; }
.node.wide b { margin-top: 0; }
.perimeter-out { margin-top: 18px; display: flex; gap: 12px; align-items: center; font: 500 12.5px/1.5 var(--font-mono); color: var(--navy-muted); }
.perimeter-out .material-symbols-outlined { color: #f87171; }
.deploy-list { display: grid; gap: 22px; }
.deploy-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; }
.deploy-list .material-symbols-outlined { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(249,115,22,.1); color: #fdba74; }
.deploy-list h3 { font-size: 17px; color: #fff; }
.deploy-list p { margin-top: 4px; font-size: 14.5px; color: var(--navy-muted); }

.controls { margin-top: 64px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.control { padding: 22px; border-radius: var(--radius); border: 1px solid var(--navy-line); background: rgba(255,255,255,.02); }
.control .material-symbols-outlined { color: #93c5fd; }
.control h4 { margin-top: 12px; color: #fff; font-size: 15px; }
.control p { margin-top: 6px; color: var(--navy-muted); font-size: 13.5px; line-height: 1.5; }

/* ---------- Integrations ---------- */
.int-wrap { margin-top: 48px; display: grid; gap: 28px; }
.int-group h4 { font: 600 12px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); }
.int-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.int-list li { padding: 9px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--paper); font-size: 14px; font-weight: 500; color: var(--ink-2); box-shadow: var(--shadow-1); }

/* ---------- Editions ---------- */
.editions { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.edition { padding: 36px; border-radius: 16px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-1); display: flex; flex-direction: column; }
.edition.featured { border-color: rgba(249,115,22,.5); box-shadow: 0 0 0 4px var(--orange-soft), var(--shadow-2); }
.edition .ed-top { display: flex; align-items: center; justify-content: space-between; }
.edition h3 { font-size: 24px; }
.edition .for { margin-top: 8px; color: var(--ink-muted); font-size: 15px; }
.edition ul { margin-top: 24px; display: grid; gap: 12px; }
.edition li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 15px; color: var(--ink-2); }
.edition li .material-symbols-outlined { color: var(--ok); font-size: 19px; margin-top: 2px; }
.edition .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font: 600 16.5px/1.4 var(--font-display); letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "add"; font-family: "Material Symbols Outlined"; font-size: 22px; color: var(--ink-muted); transition: transform .2s; }
.faq details[open] summary::after { content: "remove"; }
.faq details p { margin-top: 10px; color: var(--ink-muted); font-size: 15px; }

/* ---------- Demo ---------- */
.demo { background: var(--navy-950); color: var(--navy-text); position: relative; overflow: hidden; }
.demo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 10% 0%, rgba(249,115,22,.14), transparent 60%); pointer-events: none; }
.demo-grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.demo h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; color: #fff; font-weight: 800; margin-top: 14px; }
.demo .lead { margin-top: 18px; color: var(--navy-muted); font-size: 17px; }
.demo-steps { margin-top: 32px; display: grid; gap: 18px; }
.demo-steps li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; font-size: 15px; color: var(--navy-text); }
.demo-steps .n { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(249,115,22,.14); color: #fdba74; font: 700 12px/1 var(--font-mono); }
.demo-steps small { display: block; color: var(--navy-muted); font-size: 13.5px; margin-top: 2px; }
.demo-contact { margin-top: 32px; font-size: 14px; color: var(--navy-muted); }
.demo-contact a { color: #fdba74; }
.form-card { padding: 32px; border-radius: 16px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow-3); }
.form-card h3 { font-size: 20px; }
.form-card .sub { margin-top: 4px; font-size: 14px; color: var(--ink-muted); }
.form-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select {
  width: 100%; height: 44px; padding: 0 12px; border-radius: 8px; border: 1px solid var(--line-strong); background: #fff;
  font: 400 15px/1 var(--font-body); color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.consent { margin-top: 16px; display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 13px; color: var(--ink-muted); }
.consent a { color: var(--orange-ink); }
.form-card .btn { margin-top: 20px; width: 100%; }
.form-note { margin-top: 10px; font-size: 12px; color: var(--ink-muted); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .evidence-card { right: 12px; bottom: 16px; width: 300px; }
  .evidence-float-left { display: none; }
  .engines { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .proof-item:nth-child(4) { border-left: 0; padding-left: 0; }
  .proof-item:nth-child(n+4) { border-top: 1px solid var(--line); }
  .guardrails, .controls { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tour { grid-template-columns: 1fr; }
  .tour-tabs { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .tour-tab .d { display: none !important; }
}
@media (max-width: 860px) {
  :root { --gutter: 20px; }
  .section { padding: 80px 0; }
  .hero { padding-top: 128px; }
  .hero-lead { font-size: 17px; }
  .evidence-card { position: relative; right: auto; bottom: auto; width: auto; margin: -40px 12px 0; }
  .browser { border-radius: 10px 10px 0 0; }
  .compare, .split, .agent-grid, .deploy-grid, .editions, .faq, .demo-grid, .also-row { grid-template-columns: 1fr; }
  .compare-col + .compare-col { border-left: 0; border-top: 1px solid var(--line); }
  .compare-col { padding: 28px 24px; }
  .aud-panel { grid-template-columns: 1fr; }
  .lifecycle { grid-template-columns: 1fr; gap: 24px; }
  .lifecycle::before { display: none; }
  .lc { display: grid; grid-template-columns: 56px 1fr; gap: 16px; text-align: left; padding: 0; }
  .lc .dot { margin: 0; }
  .lc h3 { margin-top: 4px; }
  .kv div { grid-template-columns: 1fr; gap: 2px; }
  .seg { display: flex; }
  .seg button { flex: 1; justify-content: center; padding: 10px; }
}
@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .engines, .guardrails, .controls, .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-left: 0 !important; padding-left: 0; border-top: 1px solid var(--line); padding-block: 22px; }
  .proof-item:first-child { border-top: 0; }
  .perimeter-grid { grid-template-columns: 1fr 1fr; }
  .node.wide { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-assurances { flex-direction: column; align-items: flex-start; width: fit-content; margin-inline: auto; text-align: left; }
  .browser-bar .url { display: none; }
  .terminal { font-size: 12px; }
  .terminal-body { padding: 14px 14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Demo request result dialog (site.js) ---------- */
body.modal-open { overflow: hidden; }
.form-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .18s ease; }
.form-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.form-modal-backdrop { position: absolute; inset: 0; background: rgba(5, 10, 20, .7); backdrop-filter: blur(8px); }
.form-modal-panel {
  position: relative; width: min(100%, 440px); padding: 40px 36px 32px; border-radius: 16px;
  background: var(--paper); color: var(--ink); text-align: center; box-shadow: var(--shadow-3);
  transform: translateY(12px) scale(.98); transition: transform .18s ease;
}
.form-modal[aria-hidden="false"] .form-modal-panel { transform: none; }
.form-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 8px; background: var(--paper-alt); color: var(--ink-muted); cursor: pointer; }
.form-modal-close:hover { color: var(--ink); }
.form-modal-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--ok-soft); color: var(--ok); }
.form-modal-icon .material-symbols-outlined { font-size: 36px; }
.form-modal.is-error .form-modal-icon { background: #fee2e2; color: var(--crit); }
.form-modal-panel h2 { font-size: 24px; }
.form-modal-panel p { margin: 10px 0 24px; color: var(--ink-muted); font-size: 15px; }
.form-card .btn:disabled { opacity: .65; cursor: wait; }

/* ---------- Screenshot lightbox (site.js) ---------- */
[data-zoomable] { cursor: zoom-in; }
.image-lightbox { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: clamp(16px, 4vw, 48px); background: rgba(6, 14, 32, .85); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.image-lightbox.is-open { opacity: 1; pointer-events: auto; }
.image-lightbox img { max-width: min(1600px, 94vw); max-height: 90vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 40px 120px rgba(0,0,0,.6); cursor: zoom-out; }
.image-lightbox-close { position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px); width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.image-lightbox-close:hover { background: rgba(255,255,255,.2); }
@media (prefers-reduced-motion: reduce) {
  .form-modal, .form-modal-panel, .image-lightbox { transition: none; }
}
