:root {
  --bg: #04060a;
  --bg-2: #080c12;
  --panel: #0c1219;
  --panel-2: #111a24;
  --soft: #0e151e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --ink: #f3f6f9;
  --body: #a8b3bf;
  --muted: #6d7986;
  --brand: #19e3b1;
  --brand-2: #3aa8ff;
  --violet: #8b6cff;
  --ok: #2ee6a6;
  --no: #ff5d6c;
  --hold: #ffb547;
  --redact: #6aa9ff;
  --grad: linear-gradient(100deg, #19e3b1 0%, #4cc3f0 100%);
  --radius: 16px;
  --mono: ui-monospace, "JetBrains Mono", "Cascadia Code", "SF Mono", Consolas, monospace;
  --sans: "Inter", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; background: var(--bg); color: var(--body); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: rgba(25, 227, 177, 0.3); color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; letter-spacing: -0.025em; font-weight: 600; }
p { margin: 0; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 12px; z-index: 50; background: #fff; color: #000; padding: 8px 12px; border-radius: 6px; }
.grad { color: var(--brand); }

/* Announcement and nav */
.announce { position: relative; z-index: 31; background: var(--bg-2); border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13.5px; text-align: center; padding: 9px 16px; }
.announce a { color: var(--brand); font-weight: 600; margin-left: 8px; }
.nav { position: sticky; top: 12px; z-index: 30; width: calc(100% - 32px); max-width: 1240px; margin: 12px auto 0; border-radius: 18px; background: rgba(12, 17, 24, 0.55); border: 1px solid rgba(255, 255, 255, 0.07); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 50px -20px rgba(0, 0, 0, 0.7); transition: border-color 0.3s, background 0.3s; }
.nav.scrolled { border-color: rgba(255, 255, 255, 0.12); background: rgba(10, 14, 20, 0.82); }
.nav-in { display: flex; align-items: center; height: 62px; gap: 28px; padding: 0 12px 0 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.logo-mark { width: 26px; height: 26px; }
.logo-img { display: block; height: 32px; width: auto; margin-left: -4px; }
.menu { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; flex: 1; }
.menu > li { position: relative; }
.menu > li > a, .menu > li > button { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 8px; font: 500 14.5px var(--sans); color: var(--body); background: none; border: 0; cursor: pointer; transition: color 0.2s, background 0.2s; }
.menu > li > a:hover, .menu > li > button:hover, .menu > li.open > button, .menu a[aria-current] { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.menu .caret { width: 10px; height: 10px; transition: transform 0.25s var(--ease); }
.menu li.open .caret { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + 12px); left: -12px; min-width: 580px; background: rgba(12, 18, 25, 0.96); backdrop-filter: blur(20px); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 0.2s, transform 0.25s var(--ease); }
.menu li.open .mega { opacity: 1; transform: none; pointer-events: auto; }
.mega a { display: flex; gap: 12px; padding: 12px; border-radius: 10px; transition: background 0.2s; }
.mega a:hover { background: rgba(255, 255, 255, 0.05); }
.mega .ico { flex: none; width: 34px; height: 34px; border-radius: 9px; background: rgba(25, 227, 177, 0.1); border: 1px solid rgba(25, 227, 177, 0.25); color: var(--brand); display: grid; place-items: center; font: 700 12px var(--mono); }
.mega b { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
.mega span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; background: none; border: 1px solid var(--line-2); color: var(--ink); border-radius: 8px; width: 40px; height: 40px; cursor: pointer; }

/* Buttons */
.btn { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; font: 600 15px var(--sans); border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.04); color: var(--ink); cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.3s, background 0.2s, border-color 0.2s; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.07); }
.btn.primary, .btn.brand { background: var(--brand); color: #03110c; border-color: transparent; }
.btn.primary:hover, .btn.brand:hover { background: #4fecc6; }
.btn.ghost { background: transparent; }
.btn.sm { padding: 8px 16px; font-size: 14px; }
.btn .arr { transition: transform 0.2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.link { color: var(--brand); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.link:hover { text-decoration: underline; }

/* Hero */
.hero { position: relative; padding: 110px 0 40px; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: -20% -10% auto; height: 900px; z-index: -2; background:
  radial-gradient(520px 320px at 50% 18%, rgba(25, 227, 177, 0.18), transparent 70%),
  radial-gradient(600px 380px at 18% 40%, rgba(58, 168, 255, 0.14), transparent 70%),
  radial-gradient(600px 380px at 84% 34%, rgba(58, 168, 255, 0.08), transparent 70%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%); }
@keyframes breathe { from { transform: scale(1) translateY(0); opacity: 0.85; } to { transform: scale(1.08) translateY(20px); opacity: 1; } }
.hero-in { position: relative; text-align: center; max-width: 1000px; margin: 0 auto; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; color: var(--body); background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(8px); transition: border-color 0.2s; }
.pill:hover { border-color: rgba(25, 227, 177, 0.5); }
.pill b { background: var(--grad); color: #03110c; padding: 2px 9px; border-radius: 999px; font-size: 11.5px; white-space: nowrap; flex: none; }
.hero h1 { font-size: clamp(46px, 7.4vw, 104px); line-height: 0.98; margin: 26px 0 26px; letter-spacing: -0.045em; font-weight: 700; }
.hero h1 .line { display: block; }
.hero h1 em { font-style: normal; background: var(--grad); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes sheen { to { background-position: -200% 0; } }
.hero h1 em:has(.w) { background: none; animation: none; }
.hero h1 em .w { background: var(--grad); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
.w { display: inline-block; opacity: 0; transform: translateY(0.2em); animation: wordin 0.6s var(--ease) forwards; animation-delay: calc(var(--i) * 40ms + 80ms); }
@keyframes wordin { to { opacity: 1; transform: none; filter: none; } }
.hero .lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--body); max-width: 720px; margin: 0 auto; }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeup 1s var(--ease) forwards; animation-delay: var(--d, 0.6s); }
@keyframes fadeup { to { opacity: 1; transform: none; } }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.capture { display: flex; gap: 8px; max-width: 500px; margin: 34px auto 0; padding: 6px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); }
.capture input { flex: 1; border: 0; outline: 0; font: 15px var(--sans); padding: 0 16px; background: transparent; color: var(--ink); min-width: 0; }
.capture input::placeholder { color: var(--muted); }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
.hero-trust { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--ink); opacity: 0.88; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; }
.btn.lg { padding: 15px 26px; font-size: 16px; }

/* Split hero with the core scene */
.hero-split { padding: 90px 0 0; min-height: min(900px, calc(100vh - 60px)); display: flex; flex-direction: column; }
.hero-split::before { background: radial-gradient(700px 480px at 70% 45%, rgba(25, 227, 177, 0.16), transparent 70%), radial-gradient(520px 360px at 92% 20%, rgba(58, 168, 255, 0.08), transparent 70%), radial-gradient(520px 360px at 10% 30%, rgba(58, 168, 255, 0.1), transparent 70%); }
.hero-split::after { mask-image: radial-gradient(ellipse 60% 70% at 25% 35%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 70% at 25% 35%, #000 10%, transparent 70%); }
.hero-split > .wrap { flex: 1; display: flex; align-items: center; width: 100%; z-index: 2; pointer-events: none; }
.hero-split .hero-in { text-align: left; margin: 0; max-width: 640px; pointer-events: auto; padding-bottom: 80px; }
.hero-split h1 { font-size: clamp(44px, 5vw, 76px); line-height: 1.02; letter-spacing: -0.045em; font-weight: 600; margin: 24px 0 24px; }
.hero-split .lede { margin: 0; max-width: 560px; font-size: clamp(17px, 1.35vw, 19px); }
.hero-split .hero-cta { justify-content: flex-start; }
.hero-split .hero-note { display: flex; align-items: center; gap: 10px; }
.core-wrap { position: absolute; inset: 0; z-index: 1; }
.core-wrap canvas { position: absolute; inset: 0; width: 100%; height: 100%; mask-image: linear-gradient(90deg, transparent 22%, #000 52%); -webkit-mask-image: linear-gradient(90deg, transparent 22%, #000 52%); }
.core-hud { position: absolute; left: 0; top: 0; transform: translate(-50%, -100%); display: flex; gap: 10px; align-items: center; padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(8, 12, 18, 0.72); backdrop-filter: blur(10px); font: 12px var(--mono); color: var(--ink); white-space: nowrap; pointer-events: none; box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8); transition: border-color 0.3s; will-change: transform; }
.core-hud .v { font-weight: 700; }
.core-hud .v.ALLOW { color: var(--ok); } .core-hud .v.DENY, .core-hud .v.KILL { color: var(--no); } .core-hud .v.MODIFY { color: var(--redact); } .core-hud .v.ESCALATE { color: var(--hold); }
.core-hud .t { color: var(--body); }
.core-hud .r { color: var(--muted); }
.core-hud.hit { border-color: rgba(255, 93, 108, 0.6); }
.core-hud.pop { animation: hudpop 0.45s var(--ease); }
@keyframes hudpop { from { opacity: 0.2; margin-top: 6px; } }
.horizon { position: relative; z-index: 2; height: 1px; margin: 0 auto; width: min(1100px, 86%); background: linear-gradient(90deg, transparent, rgba(25, 227, 177, 0.9), rgba(58, 168, 255, 0.9), transparent); box-shadow: 0 0 30px 2px rgba(25, 227, 177, 0.45); }
.horizon::after { content: ""; position: absolute; left: 50%; top: -60px; width: 60%; height: 120px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(25, 227, 177, 0.25), transparent 70%); filter: blur(10px); pointer-events: none; }
.plain { position: relative; z-index: 2; padding: 30px 0 34px; background: linear-gradient(180deg, rgba(4, 6, 10, 0.4), var(--bg)); }
.plain-grid { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.plain-grid li { display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.plain-grid b { color: var(--ink); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.plain-grid span { font-size: 15px; line-height: 1.55; }
.stage-sec { padding-top: 110px; padding-bottom: 20px; }
.stage-sec .stage { margin-top: 56px; }

/* Bento with live tiles */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.bt { --tint: 25, 227, 177; position: relative; display: flex; flex-direction: column; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(var(--tint), 0.06), rgba(8, 12, 18, 0) 40%), linear-gradient(180deg, #0c1219, #080c12); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.3s; }
.bt::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--tint), 0.9), transparent); z-index: 1; }
.bt:hover { transform: translateY(-4px); border-color: rgba(var(--tint), 0.35); }
.bt.span2 { grid-column: span 2; }
.bt.span3 { grid-column: span 3; }
.bt-vis { position: relative; height: 260px; padding: 22px 22px 0; overflow: hidden; mask-image: linear-gradient(180deg, #000 78%, transparent); -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent); }
.bt-vis.wide { height: 170px; }
.bt-copy { padding: 8px 28px 28px; }
.bt-copy.row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.bt-tag { display: inline-block; font: 600 11px var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: rgb(var(--tint)); margin-bottom: 10px; }
.bt h3 { font-size: 22px; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.02em; }
.bt p { font-size: 14.5px; }
.bt .chip, .bt-files .chip { font-family: var(--sans); }

.bt-files { display: grid; gap: 8px; }
.bf-row { display: grid; grid-template-columns: 54px 1fr auto auto; gap: 12px; align-items: center; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.02); font: 12.5px var(--mono); color: var(--ink); position: relative; overflow: hidden; animation: bfin 0.5s var(--ease); }
.bf-row .verb { color: var(--muted); }
.bf-row .rule { color: var(--muted); font-size: 11px; }
.bf-row .chip { opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s var(--ease); }
.bf-row.done .chip { opacity: 1; transform: none; }
.bf-row::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(25, 227, 177, 0.18), transparent); transform: translateX(-100%); animation: scanx 0.6s ease-out forwards; }
.bf-row.done::after { display: none; }
.bf-row.done.block { border-color: rgba(255, 93, 108, 0.35); background: rgba(255, 93, 108, 0.05); }
.bf-row.done.hold { border-color: rgba(255, 181, 71, 0.3); }
@keyframes bfin { from { opacity: 0; transform: translateY(-12px); } }
@keyframes scanx { to { transform: translateX(100%); } }

.bt-dlp { display: grid; gap: 14px; }
.bt-prompt { min-height: 118px; padding: 16px; border-radius: 14px; border: 1px solid var(--line-2); background: #070b10; font: 13.5px/1.6 var(--mono); color: var(--ink); word-break: break-word; }
.bt-prompt::before { content: attr(data-label); display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.bt-caret { display: inline-block; width: 7px; height: 15px; background: var(--brand); vertical-align: -2px; margin-left: 1px; animation: blink 0.9s steps(1) infinite; }
.bt-prompt .hit { border-radius: 4px; transition: background 0.3s, color 0.3s; }
.bt-prompt .hit.mark { background: rgba(255, 181, 71, 0.2); color: var(--hold); }
.bt-prompt .hit.gone { background: rgba(255, 93, 108, 0.16); color: #ff8e98; text-decoration: line-through; }
.bt-prompt .rep { background: rgba(106, 169, 255, 0.18); color: var(--redact); border-radius: 4px; padding: 0 3px; margin-left: 3px; animation: bfin 0.4s var(--ease); }
.bt-prompt.refused { border-color: rgba(255, 93, 108, 0.45); box-shadow: 0 0 0 3px rgba(255, 93, 108, 0.08); }
.bt-verdict { min-height: 30px; display: flex; gap: 10px; align-items: center; font: 12px var(--mono); color: var(--muted); }

.bt-scan { display: grid; gap: 12px; }
.bs-file { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; border: 1px solid var(--line-2); background: #070b10; animation: bfin 0.5s var(--ease); }
.bs-file .ft { width: 40px; height: 32px; font-size: 9px; }
.bs-file b { color: var(--ink); font-size: 14px; display: block; }
.bs-file small { color: var(--muted); font: 11px var(--mono); }
.bs-bar { height: 4px; border-radius: 99px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.bs-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--violet), var(--brand-2)); box-shadow: 0 0 12px var(--brand-2); transition: width 1.1s linear; }
.bs-checks { display: grid; gap: 6px; font: 12px var(--mono); color: var(--muted); }
.bs-checks span { display: flex; justify-content: space-between; opacity: 0.35; transition: opacity 0.3s; }
.bs-checks span.on { opacity: 1; color: var(--ink); }
.bs-checks em { font-style: normal; }
.bs-checks .y { color: var(--ok); } .bs-checks .n { color: var(--no); }
.bs-stamp { justify-self: start; min-height: 22px; }
.bt-scan.bad .bs-bar i { background: var(--no); box-shadow: 0 0 12px var(--no); }
.bt-scan.held .bs-bar i { background: var(--hold); box-shadow: 0 0 12px var(--hold); }

.bt-kill { position: relative; height: 210px; }
.bt-kill svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.bt-kill .lk { fill: none; stroke: rgba(255, 93, 108, 0.35); stroke-width: 1.4; stroke-dasharray: 4 6; animation: dash 1.2s linear infinite; transition: stroke 0.4s, opacity 0.4s; }
.bt-kill.dead .lk { stroke: rgba(255, 255, 255, 0.08); animation: none; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.pn { position: absolute; transform: translate(-50%, -50%); padding: 6px 11px; border-radius: 9px; border: 1px solid var(--line-2); background: #0b1118; font: 12px var(--mono); color: var(--ink); transition: all 0.4s var(--ease); white-space: nowrap; }
.pn.root { border-color: rgba(255, 93, 108, 0.4); box-shadow: 0 0 24px -4px rgba(255, 93, 108, 0.5); }
.pn.off { color: #5d6772; border-color: rgba(255, 93, 108, 0.5); background: rgba(255, 93, 108, 0.08); text-decoration: line-through; transform: translate(-50%, -50%) scale(0.92); }
.kill-btn { position: absolute; right: 0; top: 0; padding: 6px 12px; border-radius: 8px; font: 600 12px var(--sans); color: #fff; background: #d63a4a; box-shadow: 0 0 0 0 rgba(255, 93, 108, 0.6); }
.bt-kill.press .kill-btn { animation: press 0.5s var(--ease); }
@keyframes press { 40% { transform: scale(0.92); box-shadow: 0 0 0 10px rgba(255, 93, 108, 0); } }
.kill-note { position: absolute; left: 0; top: 4px; font: 11.5px var(--mono); color: var(--no); opacity: 0; transition: opacity 0.4s; }
.bt-kill.dead .kill-note { opacity: 1; }

.bt-budget { display: grid; gap: 12px; }
.bb-head { display: flex; justify-content: space-between; font: 12px var(--mono); color: var(--muted); }
.bb-head b { color: var(--ink); font-weight: 600; }
.bb-bar { height: 10px; border-radius: 99px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.bb-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--brand), var(--hold)); transition: width 0.6s var(--ease); }
.bt-budget.stop .bb-bar { animation: shake 0.4s; }
.bt-budget.stop .bb-bar i { background: var(--no); box-shadow: 0 0 14px var(--no); }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.bb-calls { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.bb-calls li { display: flex; justify-content: space-between; gap: 10px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; font: 12px var(--mono); color: var(--ink); animation: bfin 0.4s var(--ease); }
.bb-calls li.no { border-color: rgba(255, 93, 108, 0.4); color: #ff8e98; background: rgba(255, 93, 108, 0.06); }

.bt-chain { position: relative; height: 140px; }
.bc-track { position: absolute; right: 0; top: 36px; display: flex; gap: 34px; }
.bc-block { position: relative; flex: none; width: 200px; max-width: 200px; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line-2); background: #0a1017; display: grid; gap: 5px; font: 11.5px var(--mono); color: var(--muted); white-space: nowrap; transition: border-color 1.2s, box-shadow 1.2s; }
.bc-block b { color: var(--ink); font-size: 12.5px; }
.bc-block + .bc-block::before { content: ""; position: absolute; left: -35px; top: 50%; width: 34px; height: 1px; background: linear-gradient(90deg, rgba(58, 168, 255, 0.7), rgba(25, 227, 177, 0.7)); box-shadow: 0 0 8px rgba(58, 168, 255, 0.7); }
.bc-block.new { border-color: rgba(58, 168, 255, 0.7); box-shadow: 0 0 30px -6px rgba(58, 168, 255, 0.7); overflow: hidden; animation: grow 0.8s var(--ease); }
@keyframes grow { from { max-width: 0; opacity: 0; padding-left: 0; padding-right: 0; } }
.bc-ok { position: absolute; left: 0; top: 0; font: 600 11.5px var(--sans); color: var(--ok); background: rgba(46, 230, 166, 0.1); border: 1px solid rgba(46, 230, 166, 0.25); border-radius: 7px; padding: 3px 9px; }
.bc-ok.pulse { animation: okp 0.8s var(--ease); }
@keyframes okp { 40% { box-shadow: 0 0 0 6px rgba(46, 230, 166, 0.12); } }

/* Light panel */
section.light { background: #f3f5f7; color: #3c4652; margin: 0 16px; border-radius: 40px; padding: 120px 0; }
section.light h2, section.light h3, section.light b { color: #0b1117; }
section.light .eyebrow { color: #0a9e7c; }
section.light .head p { color: #4b5663; }
section.light .stats { background: #fff; border-color: #e1e6eb; box-shadow: 0 30px 80px -40px rgba(15, 30, 45, 0.25); }
section.light .stat { border-color: #e6eaee; }
section.light .stat b { background: none; color: #0b1117; }
section.light .stat span { color: #4b5663; }
section.light .bcard { background: #fff; border-color: #e1e6eb; color: #3c4652; box-shadow: 0 30px 80px -40px rgba(15, 30, 45, 0.2); }
section.light .bcard.no { background: linear-gradient(180deg, #fff8ec, #fff); border-color: #f3dfbb; }
section.light .bcard li { color: #3c4652; }
section.light + section.light { margin-top: 16px; }
section.light .grad { color: #0a8a6c; }
section.light .link { color: #0a8a6c; }
section.light .dq, section.light .tile { background: #fff; border-color: #e1e6eb; color: #3c4652; box-shadow: 0 30px 80px -44px rgba(15, 30, 45, 0.28); }
section.light .dq:hover, section.light .tile:hover { border-color: #cfd7df; }
section.light .dq p, section.light .tile p { color: #4b5663; }
section.light .dq ul { color: #5a6572; }
section.light .dq-n { color: #0a9e7c; }
section.light .dq li b, section.light li b { color: #0b1117; }
section.light code { background: #eef2f5; border-color: #dbe2e8; color: #0a6e57; }
section.light .dq li::before { background: #0a9e7c; }
section.light .tile li { color: #1c2530; }
section.light .tile li::before { border-color: #0a9e7c; }
section.light .tile .badge { background: rgba(10, 158, 124, 0.08); border-color: rgba(10, 158, 124, 0.25); color: #0a9e7c; }

/* Flow stage */
.stage { position: relative; margin: 64px auto 0; max-width: 1240px; height: 440px; border-radius: 28px; border: 1px solid var(--line); background: radial-gradient(900px 300px at 50% 50%, rgba(25, 227, 177, 0.07), transparent 70%), linear-gradient(180deg, rgba(12, 18, 25, 0.7), rgba(4, 6, 10, 0.4)); overflow: hidden; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 40px 120px -40px rgba(25, 227, 177, 0.25); }
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage-col { position: absolute; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; z-index: 2; pointer-events: none; }
.stage-col.src { left: 22px; }
.stage-col.dst { right: 22px; align-items: flex-end; }
.stage-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(8, 12, 18, 0.8); backdrop-filter: blur(6px); color: var(--ink); font-size: 12.5px; font-weight: 500; white-space: nowrap; }
.stage-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 10px var(--brand-2); }
.stage-col.dst .stage-tag i { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.gate-label { position: absolute; left: 50%; top: 22px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.gate-label b { font: 700 11px var(--mono); letter-spacing: 0.22em; color: var(--brand); text-transform: uppercase; }
.gate-ticker { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 2; min-width: 340px; max-width: 92%; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(8, 12, 18, 0.86); backdrop-filter: blur(10px); display: flex; gap: 12px; align-items: center; font: 12.5px var(--mono); color: var(--ink); white-space: nowrap; overflow: hidden; }
.gate-ticker .v { font-weight: 700; }
.gate-ticker .v.ALLOW { color: var(--ok); } .gate-ticker .v.DENY, .gate-ticker .v.KILL { color: var(--no); } .gate-ticker .v.MODIFY { color: var(--redact); } .gate-ticker .v.ESCALATE, .gate-ticker .v.QUARANTINE { color: var(--hold); }
.gate-ticker .t { color: var(--body); overflow: hidden; text-overflow: ellipsis; }
.gate-ticker .r { margin-left: auto; color: var(--muted); }
.gate-ticker.flash { animation: tick 0.5s var(--ease); }
@keyframes tick { from { transform: translate(-50%, 6px); opacity: 0.2; } }
.legend { display: flex; gap: 22px; justify-content: center; margin-top: 18px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend i { width: 10px; height: 10px; border-radius: 50%; }

/* Marquee */
.works { padding: 70px 0 30px; text-align: center; }
.works p { font-size: 13px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--mono); }
.marquee { position: relative; margin-top: 26px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; max-width: 1100px; margin: 0 auto; padding: 0 28px; }

.chips span { font-weight: 600; color: #7f8b98; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap; transition: color 0.2s; }
.chips span:hover { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Console preview */
.shot { max-width: 1160px; margin: 40px auto 0; perspective: 1800px; }

.app { position: relative; background: #0a1017; border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden; text-align: left; font-size: 13px; color: var(--body); box-shadow: 0 0 0 1px rgba(25, 227, 177, 0.08), 0 60px 160px -30px rgba(25, 227, 177, 0.28), 0 40px 100px rgba(0, 0, 0, 0.6); }
.app::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(25, 227, 177, 0.8), rgba(58, 168, 255, 0.8), transparent); }
.app-top { display: flex; align-items: center; gap: 14px; height: 52px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #0c131b; }
.app-org { display: flex; align-items: center; gap: 8px; color: var(--ink); min-width: 196px; flex: none; white-space: nowrap; }
.app-logo { width: 17px; height: 20px; }
.caret-sm { color: var(--muted); font-size: 11px; }
.demo-tag { font: 600 9.5px var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--hold); border: 1px solid rgba(255, 181, 71, 0.35); border-radius: 5px; padding: 1px 5px; white-space: nowrap; }
.app-search { flex: 1; max-width: 420px; display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: #080d13; }
.live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--brand); font-size: 12px; }
.live i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(25, 227, 177, 0.6); } 70% { box-shadow: 0 0 0 8px rgba(25, 227, 177, 0); } 100% { box-shadow: 0 0 0 0 rgba(25, 227, 177, 0); } }
.avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #03110c; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.app-body { display: grid; grid-template-columns: 212px 1fr; height: 520px; }
.app-nav { border-right: 1px solid var(--line); background: #0b1118; padding: 12px 10px; display: flex; flex-direction: column; gap: 2px; }
.app-nav button, .app-nav-dim { display: flex; align-items: center; gap: 10px; width: 100%; padding: 8px 10px; border: 0; border-radius: 8px; background: none; font: 500 13px var(--sans); color: var(--body); cursor: pointer; text-align: left; transition: background 0.2s, color 0.2s; }
.app-nav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.app-nav button:hover { background: rgba(255, 255, 255, 0.04); color: var(--ink); }
.app-nav button.on { background: rgba(25, 227, 177, 0.08); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(25, 227, 177, 0.22); }
.app-nav button.on svg { color: var(--brand); }
.app-nav small { margin-left: auto; font-size: 11px; color: var(--body); background: rgba(255, 255, 255, 0.06); border-radius: 999px; padding: 0 7px; line-height: 18px; }
.app-nav small:empty { display: none; }
.app-nav small.warn { background: rgba(255, 181, 71, 0.14); color: var(--hold); }
.app-nav-sep { height: 1px; background: var(--line); margin: 10px 4px; }
.app-nav-dim { color: #4f5a66; cursor: default; }
.app-main { min-width: 0; overflow: hidden; }
.view { display: none; padding: 18px 20px; height: 100%; overflow: auto; scrollbar-width: thin; scrollbar-color: #243140 transparent; }
.view.on { display: block; animation: viewin 0.35s var(--ease); }
@keyframes viewin { from { opacity: 0; transform: translateY(6px); } }
.view-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.view-head h4 { font-size: 17px; }
.view-head p { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.filters { display: flex; gap: 2px; background: rgba(255, 255, 255, 0.04); padding: 3px; border-radius: 9px; border: 1px solid var(--line); }
.filters button { border: 0; background: none; font: 500 12px var(--sans); color: var(--muted); padding: 5px 10px; border-radius: 7px; cursor: pointer; }
.filters button.on { background: rgba(255, 255, 255, 0.09); color: var(--ink); }
.counts { display: flex; gap: 22px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; color: var(--muted); flex-wrap: wrap; background: rgba(255, 255, 255, 0.02); }
.counts b { color: var(--ink); font-size: 15px; margin-right: 2px; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.dot.allow { background: var(--ok); box-shadow: 0 0 8px var(--ok); } .dot.redact { background: var(--redact); box-shadow: 0 0 8px var(--redact); } .dot.hold { background: var(--hold); box-shadow: 0 0 8px var(--hold); } .dot.block { background: var(--no); box-shadow: 0 0 8px var(--no); }
.chip { display: inline-flex; align-items: center; gap: 4px; font: 600 11px var(--sans); font-style: normal; padding: 2px 9px; border-radius: 999px; white-space: nowrap; border: 1px solid transparent; }
.chip.allow { background: rgba(46, 230, 166, 0.1); color: var(--ok); border-color: rgba(46, 230, 166, 0.25); }
.chip.redact { background: rgba(106, 169, 255, 0.1); color: var(--redact); border-color: rgba(106, 169, 255, 0.28); }
.chip.hold { background: rgba(255, 181, 71, 0.1); color: var(--hold); border-color: rgba(255, 181, 71, 0.28); }
.chip.block { background: rgba(255, 93, 108, 0.1); color: var(--no); border-color: rgba(255, 93, 108, 0.3); }
.mono { font-family: var(--mono); font-size: 11.5px; }
.split { display: grid; grid-template-columns: 1fr 260px; gap: 12px; align-items: start; }
.table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
#activity { max-height: 346px; overflow: auto; scrollbar-width: thin; scrollbar-color: #243140 transparent; }
.tr { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1.3fr; gap: 10px; align-items: center; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.tr:last-child { border-bottom: 0; }
.tr.th { background: rgba(255, 255, 255, 0.025); font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.tr.act { grid-template-columns: 28px 1fr 110px 84px; cursor: pointer; transition: background 0.15s; }
.tr.act:hover { background: rgba(255, 255, 255, 0.03); }
.tr.act.sel { background: rgba(25, 227, 177, 0.06); box-shadow: inset 3px 0 0 var(--brand); }
.tr.new { animation: rowin 0.6s var(--ease); }
@keyframes rowin { from { opacity: 0; transform: translateY(-8px); background: rgba(25, 227, 177, 0.12); } }
.tr .what { min-width: 0; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr .what small, .tr small { display: block; color: var(--muted); font-size: 11.5px; }
.tr .rule { color: var(--muted); }
.k-ico { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.05); color: var(--body); }
.k-ico svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.k-ico.file { background: rgba(58, 168, 255, 0.12); color: var(--brand-2); } .k-ico.download { background: rgba(58, 168, 255, 0.07); color: var(--violet); } .k-ico.data { background: rgba(255, 181, 71, 0.12); color: var(--hold); } .k-ico.net { background: rgba(46, 230, 166, 0.12); color: var(--ok); }
.detail { border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(255, 255, 255, 0.02); }
.detail .d-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.detail .d-top small { color: var(--muted); }
.detail > b { color: var(--ink); font-size: 14px; display: block; word-break: break-word; }
.detail dl { display: grid; grid-template-columns: 52px 1fr; gap: 6px 10px; margin: 12px 0; font-size: 12.5px; }
.detail dt { color: var(--muted); }
.detail dd { margin: 0; color: var(--ink); }
.ok-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--ok); background: rgba(46, 230, 166, 0.1); border: 1px solid rgba(46, 230, 166, 0.22); border-radius: 6px; padding: 3px 8px; }
.who { display: flex; align-items: center; gap: 9px; min-width: 0; }
.who b { color: var(--ink); }
.tr .who small { display: none; }
.av { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font: 700 11px var(--sans); font-style: normal; color: #fff; flex: none; }
.av.c1 { background: #262c33; } .av.c2 { background: #c8643b; } .av.c3 { background: #0f8f73; } .av.c4 { background: #7a4fd0; } .av.c5 { background: #2f6fd8; } .av.c6 { background: #4b5561; }
.files { grid-template-columns: 1.2fr 1fr; }
.tree { border: 1px solid var(--line); border-radius: 10px; padding: 8px; }
.tree-root { display: flex; align-items: center; gap: 8px; padding: 7px 8px; color: var(--ink); }
.tree-root.out { margin-top: 6px; border-top: 1px dashed var(--line-2); padding-top: 12px; color: var(--muted); }
.tree-root svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.tree-root .chip { margin-left: auto; }
.node { display: flex; align-items: center; gap: 8px; padding: 5px 8px; font: 12px var(--mono); color: var(--body); border-radius: 6px; }
.node.d1 { padding-left: 30px; } .node.d2 { padding-left: 50px; }
.node .chip { margin-left: auto; font-family: var(--sans); }
.node.no { color: #ff8e98; } .node.hold { color: var(--hold); }
.node:hover { background: rgba(255, 255, 255, 0.03); }
.facts { display: grid; gap: 10px; }
.fact { border: 1px solid var(--line); border-radius: 10px; padding: 12px; display: grid; gap: 4px; background: rgba(255, 255, 255, 0.02); }
.fact b { color: var(--ink); }
.fact span { color: var(--muted); font-size: 12.5px; }
.fact code { font: 11px var(--mono); color: var(--brand); }
.tr.dl { grid-template-columns: 1.4fr 1.2fr 0.8fr 1.4fr; }
.file { display: flex; align-items: center; gap: 10px; min-width: 0; }
.file b { color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.ft { font: 700 8.5px var(--sans); font-style: normal; width: 34px; height: 26px; border-radius: 5px; display: grid; place-items: center; color: #fff; flex: none; }
.ft.tgz { background: #4b5b6b; } .ft.doc { background: #2f5fc4; } .ft.ppt { background: #c8643b; } .ft.zip { background: #7a4fd0; }
.dlp { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dlp-card { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: rgba(255, 255, 255, 0.02); }
.dlp-top { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.dlp-top b { color: var(--ink); }
.dlp-card p { font-size: 12.5px; color: var(--ink); }
.dlp-card small { color: var(--muted); font-size: 11.5px; display: block; margin-top: 6px; }
del { background: rgba(255, 93, 108, 0.14); color: #ff8e98; text-decoration: line-through; border-radius: 3px; padding: 0 2px; }
ins { background: rgba(106, 169, 255, 0.16); color: var(--redact); text-decoration: none; border-radius: 3px; padding: 0 3px; margin-left: 3px; }
mark { background: rgba(255, 181, 71, 0.16); color: var(--hold); border-radius: 3px; padding: 0 3px; }
.detectors { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 12px; font-size: 12px; color: var(--muted); }
.detectors em { font-style: normal; border: 1px solid var(--line-2); border-radius: 999px; padding: 2px 9px; color: var(--body); }
.appr { display: grid; gap: 10px; }
.appr-card { display: flex; justify-content: space-between; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(255, 255, 255, 0.02); }
.appr-card b { color: var(--ink); }
.appr-card small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.appr-acts { display: flex; gap: 6px; flex: none; }
.btn-mini { font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 7px; border: 1px solid var(--line-2); color: var(--ink); background: rgba(255, 255, 255, 0.03); white-space: nowrap; }
.btn-mini.go { background: var(--grad); border-color: transparent; color: #03110c; }
.shot-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* Sections */
section { position: relative; padding: 120px 0; }
section.alt { background: linear-gradient(180deg, transparent, rgba(12, 18, 25, 0.6) 20%, rgba(12, 18, 25, 0.6) 80%, transparent); }
section.dark { background: transparent; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 600 12px var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.head { max-width: 820px; }
.head.center { margin: 0 auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head h2 { font-size: clamp(36px, 4.8vw, 64px); line-height: 1.03; margin: 18px 0 18px; letter-spacing: -0.04em; }
.head p { font-size: 19px; }

/* Scroll statement */
.statement { padding: 160px 0; }
.statement p { font-size: clamp(30px, 4.2vw, 58px); line-height: 1.12; letter-spacing: -0.035em; font-weight: 650; color: var(--ink); max-width: 1100px; }
.statement .hl { color: var(--brand); }

/* Sticky flow */
.flow { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.flow-visual { position: sticky; top: 120px; height: 520px; align-self: start; border-radius: 28px; border: 1px solid var(--line); background: radial-gradient(400px 300px at 50% 50%, rgba(25, 227, 177, 0.1), transparent 70%), var(--bg-2); overflow: hidden; display: grid; place-items: center; }
.orbit { position: relative; width: 380px; height: 380px; }
.orbit .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, 0.1); animation: spin 60s linear infinite; }
.orbit .ring.r2 { inset: 60px; border-style: solid; border-color: rgba(25, 227, 177, 0.14); animation-duration: 40s; animation-direction: reverse; }
.orbit .ring.r3 { inset: 120px; border-color: rgba(58, 168, 255, 0.2); animation-duration: 24s; }
.orbit .ring::after { content: ""; position: absolute; top: -4px; left: calc(50% - 4px); width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 14px 3px rgba(25, 227, 177, 0.7); }
.orbit .ring.r2::after { background: var(--brand-2); box-shadow: 0 0 14px 3px rgba(58, 168, 255, 0.7); animation: none; }
.orbit .ring.r3::after { background: var(--violet); box-shadow: 0 0 12px 3px rgba(139, 108, 255, 0.7); width: 6px; height: 6px; top: -3px; left: calc(50% - 3px); }
.orbit .ring.r1 { animation-duration: 18s; }

@keyframes corepulse { 50% { box-shadow: 0 0 120px rgba(25, 227, 177, 0.55); } }
@keyframes spin { to { transform: rotate(360deg); } }
.core { position: absolute; inset: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(25, 227, 177, 0.35), rgba(25, 227, 177, 0.02) 70%); display: grid; place-items: center; box-shadow: 0 0 40px rgba(25, 227, 177, 0.18); }
.core svg { width: 46px; height: 46px; color: var(--ink); }
.node-o { position: absolute; width: 112px; margin: -22px 0 0 -56px; text-align: center; transition: transform 0.5s var(--ease), opacity 0.5s; opacity: 0.35; }
.node-o span { display: inline-block; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(8, 12, 18, 0.9); color: var(--ink); font-size: 13px; font-weight: 600; }
.node-o.on { opacity: 1; transform: scale(1.12); }
.node-o.on span { border-color: rgba(25, 227, 177, 0.7); box-shadow: 0 0 30px rgba(25, 227, 177, 0.4); color: var(--brand); }
.flow-caption { position: absolute; bottom: 22px; left: 22px; right: 22px; font: 12.5px var(--mono); color: var(--muted); text-align: center; }
.flow-steps { display: grid; gap: 0; }
.flow-step { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; opacity: 0.28; transition: opacity 0.5s; }
.flow-step.on { opacity: 1; }
.flow-step .num { font: 600 13px var(--mono); color: var(--brand); letter-spacing: 0.14em; }
.flow-step h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; margin: 12px 0 14px; }
.flow-step p { font-size: 17px; max-width: 480px; }
.flow-step ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.flow-step li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.flow-step li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }

/* Bento and spotlight */
.spot { position: relative; isolation: isolate; }
.vis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.vis-card, .tile { border: 1px solid var(--line); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; background: linear-gradient(180deg, #0c1219, #080c12); transition: transform 0.4s var(--ease), border-color 0.3s; }
.vis-card:hover, .tile:hover { transform: translateY(-4px); border-color: var(--line-2); }
.vis-ico, .tile .badge { width: 44px; height: 44px; border-radius: 12px; background: rgba(25, 227, 177, 0.1); border: 1px solid rgba(25, 227, 177, 0.25); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.vis-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vis-card h3, .tile h3 { font-size: 20px; margin-bottom: 10px; }
.vis-card p, .tile p { font-size: 14.5px; }
.mini { margin-top: auto; padding-top: 20px; display: grid; gap: 6px; }
.mini div { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; font: 12px var(--mono); color: var(--ink); background: rgba(255, 255, 255, 0.02); }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.tile ul { list-style: none; padding: 0; margin: 16px 0 22px; font-size: 15px; }
.tile li { padding: 6px 0 6px 24px; position: relative; color: var(--ink); }
.tile li::before { content: ""; position: absolute; left: 0; top: 13px; width: 12px; height: 7px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }
.tile .link { margin-top: auto; }
.also { margin-top: 36px; text-align: center; font-size: 15px; }
.also a { color: var(--ink); border-bottom: 1px solid var(--line-2); }
section.light .also { color: #4b5663; }
section.light .also a { color: #0b1117; border-color: #cfd7df; }
section.light .also a:hover { border-color: #0a9e7c; }

.deploy-sec { padding-top: 90px; }
.deploy { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.dq { border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px; display: flex; flex-direction: column; background: linear-gradient(180deg, #0c1219, #080c12); transition: transform 0.4s var(--ease), border-color 0.3s; }
.dq:hover { transform: translateY(-4px); border-color: var(--line-2); }
.dq-n { font: 600 12px var(--mono); color: var(--brand); letter-spacing: 0.12em; }
.dq h3 { font-size: 19px; margin: 12px 0 10px; }
.dq p { font-size: 14.5px; }
.dq ul { list-style: none; padding: 0; margin: 14px 0 18px; display: grid; gap: 9px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.dq li { position: relative; padding-left: 16px; }
.dq li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); opacity: 0.7; }
.dq li b { color: var(--ink); font-weight: 600; }
.dq .link { margin-top: auto; font-size: 14px; }

/* Session replay */
.replay { margin-top: 48px; background: linear-gradient(180deg, #0c1219, #080c12); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.replay-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.replay-head small { display: block; color: var(--muted); font-size: 13px; }
.steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; counter-reset: s; }
.steps li { counter-increment: s; border: 1px solid var(--line); border-radius: 14px; padding: 14px; font-size: 14px; color: var(--ink); cursor: pointer; display: grid; gap: 6px; align-content: start; position: relative; background: rgba(255, 255, 255, 0.015); transition: border-color 0.2s, transform 0.3s var(--ease), box-shadow 0.3s; }
.steps li::after { content: counter(s, decimal-leading-zero); position: absolute; top: 12px; right: 14px; font: 11px var(--mono); color: #46515c; }
.steps li .chip { justify-self: start; }
.steps li:hover { transform: translateY(-2px); border-color: var(--line-2); }
.steps li.sel { border-color: rgba(25, 227, 177, 0.6); box-shadow: 0 0 0 3px rgba(25, 227, 177, 0.1), 0 20px 50px -20px rgba(25, 227, 177, 0.5); }
.steps li.playing { border-color: rgba(58, 168, 255, 0.6); }
.step-why { margin-top: 16px; padding: 14px 18px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 12px; font-size: 15px; color: var(--ink); min-height: 52px; }
.step-why .mono { color: var(--brand); margin-right: 10px; font-weight: 600; }

/* Features and product cards */
.feature { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; margin-top: 120px; }
.feature.flip > :first-child { order: 2; }
.feature h3 { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.06; margin: 16px 0 16px; letter-spacing: -0.035em; }
.feature p { font-size: 17px; }
.feature .points { margin-top: 24px; display: grid; gap: 14px; }
.feature .points div { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 15px; }
.feature .points b { color: var(--ink); }
.dotmark { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand); margin-top: 8px; }
.mock, .card-ui { background: linear-gradient(180deg, #0d141c, #090e14); border: 1px solid var(--line-2); border-radius: 20px; padding: 20px; color: var(--ink); box-shadow: 0 50px 120px -40px rgba(25, 227, 177, 0.25), 0 30px 80px rgba(0, 0, 0, 0.5); font-size: 13.5px; position: relative; overflow: hidden; }
.mock::before, .card-ui::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(25, 227, 177, 0.7), transparent); }
.mock pre { margin: 0; font: 12.5px/1.65 var(--mono); color: #c9d3dc; white-space: pre-wrap; }
.mock .k { color: #8fb6ff; } .mock .s { color: var(--ok); } .mock .n { color: var(--no); } .mock .h { color: var(--hold); } .mock .c { color: #56616d; }
.mock-title { display: flex; justify-content: space-between; font: 12px var(--mono); color: var(--muted); margin-bottom: 14px; }
.cu-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.cu-head b { color: var(--ink); font-size: 15px; }
.cu-head small, .cu-head .ok-badge { margin-left: auto; color: var(--muted); }
.cu-head .ok-badge { color: var(--ok); }
.cu-grid { display: grid; grid-template-columns: 120px 1fr; gap: 10px 14px; padding: 16px 0; }
.cu-grid span { color: var(--muted); }
.cu-grid b { color: var(--ink); font-weight: 500; }
.cu-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; flex-wrap: wrap; }
.cu-acts { display: flex; gap: 6px; }
.pep { display: grid; gap: 6px; padding: 14px 0; }
.pep div { display: grid; grid-template-columns: 12px 110px 1fr auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, 0.015); }
.pep b { color: var(--ink); font-weight: 600; font-size: 13px; }
.pep small { color: var(--muted); font-size: 12px; }
.lampx { width: 8px; height: 8px; border-radius: 50%; }
.lampx.ok { background: var(--ok); } .lampx.no { background: var(--no); }
@keyframes blink { 50% { opacity: 0.45; } }
.contain { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; }
.contain em { font-style: normal; border: 1px solid var(--line-2); border-radius: 7px; padding: 4px 10px; color: var(--ink); font-weight: 600; font-size: 12px; }
.chain { display: grid; gap: 6px; padding: 14px 0; position: relative; }
.chain div { display: grid; grid-template-columns: 76px 1fr 90px auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; position: relative; background: rgba(255, 255, 255, 0.015); }
.chain b { font: 600 12px var(--mono); color: var(--ink); }
.chain small { color: var(--muted); }
.chain code { font: 11px var(--mono); color: var(--muted); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; margin-top: 56px; background: linear-gradient(180deg, #0c1219, #080c12); }
.stat { padding: 40px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: clamp(48px, 5vw, 72px); letter-spacing: -0.05em; line-height: 1; margin-bottom: 14px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.stat span { font-size: 14.5px; color: var(--body); }

/* Coverage */
.coverage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.cov { border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: linear-gradient(180deg, #0c1219, #080c12); }
.cov h3 { font-size: 17px; margin-bottom: 14px; }
.cov div { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 14px; padding: 9px 0; border-top: 1px solid var(--line); color: var(--body); }
.cov code { font: 11.5px var(--mono); color: var(--brand); white-space: nowrap; }
.cov .ow { flex: none; align-self: center; margin-left: auto; font: normal 10.5px var(--mono); color: var(--muted); border: 1px solid var(--line-2); border-radius: 5px; padding: 1px 5px; }

/* Architecture */
.arch { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 18px; align-items: stretch; margin-top: 56px; }
.arch-col { border: 1px solid var(--line); border-radius: 20px; padding: 22px; background: linear-gradient(180deg, #0c1219, #080c12); }
.arch-col h4 { font: 600 12px var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.arch-col div { padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; font-size: 14px; color: var(--ink); background: rgba(255, 255, 255, 0.02); }
.arch-core { border-color: rgba(25, 227, 177, 0.35); box-shadow: 0 0 80px -20px rgba(25, 227, 177, 0.35); }
.arch-core h4 { color: var(--brand); }
.arch-core div small { display: block; color: var(--muted); font-size: 12px; }

/* Changelog */
.log { display: grid; gap: 0; margin-top: 40px; border-left: 1px solid var(--line-2); }
.log-item { position: relative; padding: 0 0 40px 32px; }
.log-item::before { content: ""; position: absolute; left: -6px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 14px var(--brand); }
.log-item time { font: 12.5px var(--mono); color: var(--muted); }
.log-item h3 { font-size: 22px; margin: 4px 0 8px; }
.log-item ul { margin: 8px 0 0; padding-left: 18px; }
.log-item li { margin: 5px 0; }
.log-item code, p code, li code { font: 12.5px var(--mono); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); padding: 1px 6px; border-radius: 5px; color: var(--ink); }

/* Boundary */
.boundary { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.bcard { border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: linear-gradient(180deg, #0c1219, #080c12); }
.bcard h3 { font-size: 19px; margin-bottom: 14px; display: flex; gap: 10px; align-items: center; }
.bcard ul { margin: 0; padding-left: 18px; }
.bcard li { margin: 10px 0; }
.bcard li b { color: var(--ink); }
.bcard.no { border-color: rgba(255, 181, 71, 0.22); background: linear-gradient(180deg, rgba(255, 181, 71, 0.05), #080c12); }
.lamp { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand); }
.bcard.no .lamp { background: var(--hold); box-shadow: 0 0 12px var(--hold); }

/* CTA */
.cta-band { position: relative; overflow: hidden; border-radius: 32px; padding: 90px 64px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; color: var(--body); border: 1px solid var(--line-2); background: radial-gradient(600px 300px at 80% 50%, rgba(58, 168, 255, 0.12), transparent 70%), radial-gradient(600px 300px at 10% 100%, rgba(25, 227, 177, 0.22), transparent 70%), #070b10; isolation: isolate; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: 50%; width: 520px; height: 520px; margin-top: -260px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02), 0 0 0 120px rgba(255, 255, 255, 0.015); z-index: -1; }
.cta-band h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.04; margin-bottom: 14px; letter-spacing: -0.04em; }
.cta-band .btns { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* Page hero */
.phero { position: relative; padding: 110px 0 70px; border-bottom: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.phero::before { content: ""; position: absolute; inset: -40% -10% auto; height: 700px; z-index: -1; background: radial-gradient(500px 280px at 20% 40%, rgba(25, 227, 177, 0.16), transparent 70%), radial-gradient(500px 280px at 80% 20%, rgba(58, 168, 255, 0.07), transparent 70%); }
.phero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, #000 20%, transparent 70%); }
.phero h1 { font-size: clamp(42px, 5.6vw, 78px); line-height: 1.0; margin: 18px 0 20px; max-width: 980px; letter-spacing: -0.045em; }
.phero p { font-size: 20px; max-width: 740px; }
.phero .btns { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.crumbs { font: 13px var(--mono); color: var(--muted); }
.crumbs a:hover { color: var(--ink); }

/* Docs */
.docs { display: grid; grid-template-columns: 220px 1fr; gap: 56px; padding: 64px 0 100px; }
.docs > *, .form-wrap > *, .feature > *, .flow > * { min-width: 0; }
.doc td code { overflow-wrap: anywhere; }
.toc { position: sticky; top: 100px; align-self: start; font-size: 14px; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 6px 14px; color: var(--muted); border-left: 1px solid transparent; margin-left: -1px; transition: color 0.2s, border-color 0.2s; }
.toc a:hover { color: var(--ink); border-left-color: var(--brand); }
.doc h2 { font-size: 30px; margin: 56px 0 12px; }
.doc h2:first-child { margin-top: 0; }
.doc p { margin: 10px 0; }
.doc pre { background: #080d13; color: #c9d3dc; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; font: 13px/1.65 var(--mono); overflow: auto; margin: 14px 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.doc th, .doc td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { color: var(--ink); font-weight: 600; background: rgba(255, 255, 255, 0.03); }
.note { border-left: 2px solid var(--brand); background: rgba(25, 227, 177, 0.06); padding: 12px 16px; border-radius: 0 10px 10px 0; margin: 16px 0; color: var(--ink); }

/* Form */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 64px; padding-bottom: 110px; }
.form { border: 1px solid var(--line-2); border-radius: 24px; padding: 32px; background: linear-gradient(180deg, #0c1219, #080c12); box-shadow: 0 40px 120px -40px rgba(25, 227, 177, 0.3); }
.form label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.form input, .form select, .form textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; font: 15px var(--sans); color: var(--ink); background: #070b10; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid rgba(25, 227, 177, 0.4); border-color: var(--brand); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .msg { margin-top: 12px; font-size: 14px; }
.form .msg.ok { color: var(--ok); }
.form .msg.err { color: var(--no); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 80px 0 40px; margin-top: 60px; font-size: 14px; position: relative; overflow: hidden; }
footer::after { content: "PYXGRANT"; position: absolute; left: 50%; bottom: -0.28em; transform: translateX(-50%); font-size: clamp(120px, 20vw, 300px); font-weight: 800; letter-spacing: -0.06em; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05); pointer-events: none; white-space: nowrap; }
.foot { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.foot h4 { font-size: 13px; color: var(--ink); margin-bottom: 14px; }
.foot a { display: block; color: var(--muted); padding: 4px 0; transition: color 0.2s; }
.foot a:hover { color: var(--ink); }
.foot a.logo { display: inline-flex; color: var(--ink); padding: 0; }
.foot p { color: var(--muted); max-width: 300px; margin-top: 14px; }

footer::before { content: ""; position: absolute; top: -1px; left: 50%; width: min(900px, 80%); height: 1px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--brand), #3aa8ff, transparent); box-shadow: 0 0 24px rgba(25, 227, 177, 0.5); }
footer::after { -webkit-text-stroke: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 70%); -webkit-background-clip: text; background-clip: text; }

.fan { position: relative; display: grid; grid-template-columns: 190px minmax(40px, 1fr) 230px minmax(120px, 1.5fr) minmax(330px, 420px); align-items: center; margin-top: 54px; padding: 44px 40px 30px; border-radius: 28px; border: 1px solid var(--line); background: radial-gradient(700px 420px at 42% 45%, rgba(25, 227, 177, 0.08), transparent 70%), linear-gradient(180deg, rgba(14, 19, 27, 0.7), rgba(6, 9, 13, 0.9)); overflow: hidden; }
.fan-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.fan-base { fill: none; stroke: rgba(255, 255, 255, 0.07); stroke-width: 1.2; }
.fan-base.in { stroke: rgba(25, 227, 177, 0.35); stroke-dasharray: 3 6; animation: dash 1.2s linear infinite; }
.fan-hot { fill: none; stroke-width: 2; stroke-dasharray: 5 7; opacity: 0; transition: opacity 0.5s; animation: dash 0.9s linear infinite; }
.fan-hot.allow { stroke: var(--ok); opacity: 0.9; filter: drop-shadow(0 0 5px var(--ok)); }
.fan-hot.redact { stroke: var(--redact); opacity: 0.9; filter: drop-shadow(0 0 5px var(--redact)); }
.fan-hot.hold { stroke: var(--hold); opacity: 0.9; filter: drop-shadow(0 0 5px var(--hold)); }
.fan-hot.no { stroke: var(--no); opacity: 0.55; stroke-dasharray: 2 9; }
.fan-dot { fill: #eafff8; filter: drop-shadow(0 0 6px rgba(25, 227, 177, 0.95)) drop-shadow(0 0 14px rgba(25, 227, 177, 0.6)); }
.fan-dot.allow { fill: #d9fff1; }
.fan-dot.redact { fill: #dfeaff; filter: drop-shadow(0 0 6px var(--redact)) drop-shadow(0 0 14px var(--redact)); }
.fan-dot.hold { fill: #fff1d9; filter: drop-shadow(0 0 6px var(--hold)) drop-shadow(0 0 14px var(--hold)); }
.fan-dot.pulse { animation: fanpulse 0.65s ease-in-out infinite alternate; }
@keyframes fanpulse { to { r: 7; opacity: 0.6; } }
.fan-agents { grid-column: 1; position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.fan-agents li { position: relative; display: grid; gap: 1px; padding: 9px 12px 9px 34px; border-radius: 12px; border: 1px solid var(--line); background: #0b1118; transition: border-color 0.4s, box-shadow 0.4s, background 0.4s; }
.fan-agents i { position: absolute; left: 12px; top: 50%; width: 11px; height: 11px; margin-top: -5.5px; border-radius: 50%; background: rgb(var(--c)); box-shadow: 0 0 10px rgba(var(--c), 0.7); }
.fan-agents b { font: 600 13px var(--sans); color: var(--ink); }
.fan-agents span { font: 11px var(--mono); color: var(--muted); }
.fan-agents li.firing { border-color: rgba(var(--c), 0.65); background: rgba(var(--c), 0.08); box-shadow: 0 0 26px -8px rgba(var(--c), 0.8); }
.fan-log .src { font-style: normal; color: var(--muted); margin-right: 8px; }
.fan-gate { grid-column: 3; position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; padding: 30px 18px; border-radius: 20px; border: 1px solid rgba(25, 227, 177, 0.4); background: linear-gradient(180deg, rgba(25, 227, 177, 0.12), rgba(10, 16, 23, 0.95) 60%); box-shadow: 0 0 60px -12px rgba(25, 227, 177, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08); text-align: center; transition: border-color 0.3s, box-shadow 0.3s; }
.fan-gate::before { content: ""; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--brand); box-shadow: 0 0 18px var(--brand), inset 0 0 10px rgba(25, 227, 177, 0.5); background: radial-gradient(circle, var(--brand) 0 4px, transparent 5px); }
.fan-gate b { font: 700 22px var(--sans); letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fan-gate span { font: 11px var(--mono); color: var(--muted); }
.fan-gate.ok { box-shadow: 0 0 44px -12px rgba(25, 227, 177, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.fan-gate.no { border-color: rgba(255, 93, 108, 0.8); box-shadow: 0 0 44px -12px rgba(255, 93, 108, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.fan-dst { grid-column: 5; position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.fan-dst li { display: grid; grid-template-columns: 8px minmax(0, 1fr) auto 74px; align-items: center; gap: 10px; padding: 7px 10px 7px 12px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); transition: border-color 0.5s, background 0.5s, box-shadow 0.5s; }
.fan-dst li i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); transition: background 0.4s, box-shadow 0.4s; }
.fan-dst li b { font: 600 13.5px var(--sans); color: var(--ink); white-space: nowrap; }
.fan-dst li span { font: 11px var(--mono); color: var(--muted); white-space: nowrap; }
.fan-dst li .chip { justify-self: end; }
.fan-dst li.hit-allow { border-color: rgba(46, 230, 166, 0.5); background: rgba(46, 230, 166, 0.07); box-shadow: 0 0 24px -8px rgba(46, 230, 166, 0.7); }
.fan-dst li.hit-redact { border-color: rgba(106, 169, 255, 0.5); background: rgba(106, 169, 255, 0.07); box-shadow: 0 0 24px -8px rgba(106, 169, 255, 0.7); }
.fan-dst li.hit-hold { border-color: rgba(255, 181, 71, 0.5); background: rgba(255, 181, 71, 0.07); box-shadow: 0 0 24px -8px rgba(255, 181, 71, 0.7); }
.fan-dst li.hit-block { border-color: rgba(255, 93, 108, 0.5); background: rgba(255, 93, 108, 0.07); box-shadow: 0 0 24px -8px rgba(255, 93, 108, 0.7); }
.fan-dst li.hit-allow i { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.fan-dst li.hit-redact i { background: var(--redact); box-shadow: 0 0 10px var(--redact); }
.fan-dst li.hit-hold i { background: var(--hold); box-shadow: 0 0 10px var(--hold); }
.fan-dst li.hit-block i { background: var(--no); box-shadow: 0 0 10px var(--no); }
.fan-foot { grid-column: 1 / -1; position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.fan-tally { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 22px; font: 12px var(--mono); color: var(--muted); }
.fan-tally b { font: 700 20px var(--sans); margin-right: 6px; }
.fan-tally .allow b { color: var(--ok); } .fan-tally .redact b { color: var(--redact); } .fan-tally .hold b { color: var(--hold); } .fan-tally .block b { color: var(--no); }

.fan-hot.sel { stroke: #fff; opacity: 0.85; stroke-dasharray: none; filter: drop-shadow(0 0 6px var(--brand)); }
.fan-dst li { cursor: pointer; }
.fan-dst li:hover { border-color: var(--line-2); background: rgba(255, 255, 255, 0.045); }
.fan-dst li:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.fan-dst li.sel { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 30px -8px rgba(25, 227, 177, 0.7); }
.fan-hint { margin: 0 0 8px; font-size: 12.5px; color: var(--muted); }
.fan-hint::before { content: "↗ "; color: var(--brand); }
.fan-detail { display: none; }
.fan.picked .fan-log, .fan.picked .fan-hint { display: none; }
.fan.picked .fan-detail { display: block; animation: viewin 0.35s var(--ease); }
.fd-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.fd-head b { font: 600 17px var(--sans); color: var(--ink); }
.fd-head span { font: 11.5px var(--mono); color: var(--brand); }
.fd-x { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.04); color: var(--muted); font-size: 16px; line-height: 1; cursor: pointer; }
.fd-x:hover { color: var(--ink); border-color: var(--brand); }
.fd-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.fd-col { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.fd-col h5 { margin: 0 0 8px; font: 600 11px var(--sans); letter-spacing: 0.12em; text-transform: uppercase; }
.fd-col.no { border-color: rgba(255, 93, 108, 0.28); } .fd-col.no h5 { color: var(--no); }
.fd-col.hold { border-color: rgba(255, 181, 71, 0.28); } .fd-col.hold h5 { color: var(--hold); }
.fd-col.mod { border-color: rgba(106, 169, 255, 0.28); } .fd-col.mod h5 { color: var(--redact); }
.fd-col.yes { border-color: rgba(46, 230, 166, 0.28); } .fd-col.yes h5 { color: var(--ok); }
.fd-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.fd-col li { display: grid; gap: 3px; font-size: 13.5px; color: var(--body); }
.fd-col code { justify-self: start; font: 11px var(--mono); color: var(--muted); background: none; border: 0; padding: 0; }
.fd-col p { margin: 0; font-size: 13.5px; color: var(--body); }
.fan-log { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; min-height: 90px; }
.fan-log li { display: grid; grid-template-columns: 64px minmax(0, max-content) max-content 76px max-content; justify-content: start; gap: 14px; align-items: center; font: 12px var(--mono); color: var(--ink); animation: bfin 0.4s var(--ease); }
.fan-log li:nth-child(2) { opacity: 0.6; } .fan-log li:nth-child(3) { opacity: 0.35; }
.fan-log time, .fan-log .to, .fan-log code { color: var(--muted); white-space: nowrap; }
.fan-log span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fan-log .chip { justify-self: start; }

.path-sec { padding-top: 40px; }
.path { position: relative; margin-top: 56px; padding-top: 104px; }
.path-brace { position: absolute; left: 0; height: 30px; border: 1px solid; border-bottom: 0; border-radius: 14px 14px 0 0; display: flex; justify-content: center; pointer-events: none; }
.path-brace span { transform: translateY(-50%); height: fit-content; padding: 0 12px; background: var(--bg); font: 12px var(--mono); white-space: nowrap; }
.path-brace.al { top: 10px; right: 0; border-color: rgba(25, 227, 177, 0.55); box-shadow: 0 -10px 30px -18px rgba(25, 227, 177, 0.8); }
.path-brace.al span { color: var(--brand); }
.path-brace.pf { top: 60px; width: calc((100% - 70px) / 3 + 14px); border-color: rgba(255, 255, 255, 0.2); }
.path-brace.pf span { color: var(--muted); }
.path-body { position: relative; }
.path-track { position: absolute; top: 22px; left: calc((100% - 70px) / 12); right: calc((100% - 70px) / 12); height: 2px; background: rgba(255, 255, 255, 0.08); z-index: 1; }
.path-fill { position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--t, 0)); background: var(--grad); box-shadow: 0 0 14px rgba(25, 227, 177, 0.7); }
.path-dot { position: absolute; top: 50%; left: calc(var(--t, 0) * 100%); width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(25, 227, 177, 0.25), 0 0 20px var(--brand); }
.path-stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.path-stops li { position: relative; display: grid; align-content: start; gap: 8px; padding: 56px 16px 18px; border-radius: 16px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent); text-align: center; transition: border-color 0.5s, background 0.5s, box-shadow 0.5s; }
.path-stops li::before { content: ""; position: absolute; top: 13px; left: 50%; z-index: 2; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; border: 2px solid var(--line-2); background: var(--bg); transition: border-color 0.4s, box-shadow 0.4s, background 0.4s; }
.path-stops em { font: 11px var(--mono); font-style: normal; color: var(--muted); }
.path-stops b { font: 600 17px var(--sans); color: var(--ink); }
.path-stops p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--body); }
.path-stops code { justify-self: center; font: 10.5px var(--mono); color: var(--muted); background: none; border: 0; padding: 0; }
.path-stops li.lit { border-color: rgba(25, 227, 177, 0.35); background: linear-gradient(180deg, rgba(25, 227, 177, 0.07), transparent 70%); }
.path-stops li.lit::before { border-color: var(--brand); background: radial-gradient(circle, var(--brand) 0 3px, #03110c 4px); box-shadow: 0 0 16px var(--brand); }
.path-stops li.lit code { color: var(--brand); }
.path-stops li.adv.lit { box-shadow: 0 20px 60px -30px rgba(25, 227, 177, 0.7); }

.phero.phero-split { padding: 96px 0 84px; }
.phero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.phero.phero-split h1 { font-size: clamp(40px, 4.4vw, 66px); line-height: 1.03; font-weight: 600; }
.phero.phero-split p { font-size: 18px; max-width: 560px; }
.pvis { position: relative; border-radius: 22px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(16, 22, 30, 0.88), rgba(8, 11, 16, 0.94)); box-shadow: 0 40px 120px -40px rgba(25, 227, 177, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05); backdrop-filter: blur(14px); overflow: hidden; min-height: 380px; }
.pvis-bar { position: relative; display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); font: 12px var(--mono); color: var(--muted); }
.pvis-bar::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(25, 227, 177, 0.6), transparent); }
.pvis-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.pvis-bar span { margin-left: 10px; }
.pvis-bar em { margin-left: auto; font-style: normal; display: inline-flex; align-items: center; gap: 7px; color: var(--brand); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; }
.pvis-bar em::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); animation: blink 1.6s infinite; }

.pv-pipe { list-style: none; margin: 0; padding: 22px; display: grid; gap: 10px; counter-reset: st; }
.pv-pipe li { position: relative; counter-increment: st; display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: center; gap: 14px; padding: 13px 16px 13px 48px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); font: 12.5px var(--mono); color: var(--muted); transition: border-color 0.35s, background 0.35s, color 0.35s, box-shadow 0.35s; }
.pv-pipe li::before { content: counter(st); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; border: 1px solid var(--line-2); color: var(--muted); background: #0a1017; transition: all 0.35s; }
.pv-pipe li:not(:last-child)::after { content: ""; position: absolute; left: 24.5px; top: calc(50% + 11px); height: calc(100% - 12px); width: 1px; background: var(--line-2); }
.pv-pipe b { color: var(--ink); font: 600 14px var(--sans); }
.pv-pipe span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-pipe li.on { color: var(--ink); border-color: rgba(25, 227, 177, 0.45); background: rgba(25, 227, 177, 0.06); box-shadow: 0 0 34px -10px rgba(25, 227, 177, 0.6); }
.pv-pipe li.on::before { background: var(--brand); color: #03110c; border-color: transparent; box-shadow: 0 0 14px var(--brand); }
.pv-pipe li.on span { animation: bfin 0.45s var(--ease); }
.pv-pipe li.on.block { border-color: rgba(255, 93, 108, 0.5); background: rgba(255, 93, 108, 0.07); box-shadow: 0 0 34px -10px rgba(255, 93, 108, 0.6); }
.pv-pipe li.on.block::before { background: var(--no); box-shadow: 0 0 14px var(--no); }
.pv-pipe li.on.redact { border-color: rgba(106, 169, 255, 0.5); background: rgba(106, 169, 255, 0.07); box-shadow: 0 0 34px -10px rgba(106, 169, 255, 0.6); }
.pv-pipe li.on.redact::before { background: var(--redact); box-shadow: 0 0 14px var(--redact); }
.pv-pipe li.on.allow::before { background: var(--ok); }
.pv-pipe li.done { box-shadow: none; }

.pv-stream { padding: 18px; display: grid; gap: 8px; align-content: start; mask-image: linear-gradient(180deg, #000 72%, transparent); -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent); }
.ps-row { display: grid; grid-template-columns: 112px minmax(0, 1fr) auto auto; gap: 12px; align-items: center; padding: 11px 14px; border-radius: 11px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); font: 12.5px var(--mono); color: var(--ink); animation: bfin 0.5s var(--ease); transition: border-color 0.4s, background 0.4s; }
.ps-row .team { font: 600 10.5px var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ps-row .act { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-row .rule { color: var(--muted); font-size: 11px; }
.ps-row .chip { opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s var(--ease); }
.ps-row.done .chip { opacity: 1; transform: none; }
.ps-row.done.block { border-color: rgba(255, 93, 108, 0.3); background: rgba(255, 93, 108, 0.05); }
.ps-row.done.hold { border-color: rgba(255, 181, 71, 0.3); background: rgba(255, 181, 71, 0.05); }
.ps-row.done.redact { border-color: rgba(106, 169, 255, 0.3); background: rgba(106, 169, 255, 0.05); }

.pv-term { margin: 0; padding: 22px; min-height: 320px; font: 12.5px/1.8 var(--mono); color: var(--ink); white-space: pre-wrap; word-break: break-all; background: none; border: 0; }
.pt-p { color: var(--brand); }
.pt-k { color: #8fb4ff; }
.pt-v.no { color: var(--no); font-weight: 700; }
.pt-v.mod { color: var(--redact); font-weight: 700; }
.pt-v.dim, .pt-b { color: var(--muted); }
.pv-pad { padding: 26px 22px; }
.pv-chain { height: 190px; margin: 22px; overflow: hidden; }
.pv-note { margin: 0; padding: 0 22px 24px; font-size: 14px; color: var(--muted); }
.fine { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); margin-top: 56px; padding-top: 24px; color: var(--muted); font-size: 13px; position: relative; z-index: 1; padding-bottom: 120px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; filter: none; }

@media (max-width: 1000px) {
  .menu, .nav-cta .hide-sm { display: none; }
  .nav-cta { margin-left: auto; }
  .burger { display: grid; place-items: center; }
  .nav.open .menu { display: flex; flex-direction: column; position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #0a0f15; border: 1px solid var(--line-2); border-radius: 16px; padding: 12px 20px 20px; }
  .hero-split { min-height: 0; padding-top: 70px; }
  .hero-split .hero-in { max-width: none; padding-bottom: 0; }
  .core-wrap { position: relative; inset: auto; height: 460px; margin-top: 10px; }
  .core-wrap canvas { mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bt.span3 { grid-column: span 2; }
  .bt-copy.row { grid-template-columns: 1fr; gap: 8px; }
  .nav.open .mega { position: static; min-width: 0; box-shadow: none; grid-template-columns: 1fr; opacity: 1; transform: none; pointer-events: auto; display: none; }
  .nav.open li.open .mega { display: grid; }
  .tiles, .coverage, .arch, .vis, .deploy, .plain-grid { grid-template-columns: 1fr 1fr; }
  .feature, .feature.flip, .boundary, .cta-band, .form-wrap, .docs, .flow { grid-template-columns: 1fr; }
  .feature.flip > :first-child { order: 0; }
  .flow-visual { position: relative; top: 0; height: 420px; }
  .flow-step { min-height: auto; padding: 40px 0; opacity: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .foot { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 56px 36px; }
  .cta-band .btns { justify-content: flex-start; }
  .toc { position: static; }
  .steps { grid-template-columns: 1fr 1fr; }
  .app-body { grid-template-columns: 1fr; height: auto; }
  .app-nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); scrollbar-width: none; }
  .app-nav button { width: auto; flex: none; }
  .app-nav-sep, .app-nav-dim { display: none; }
  .view { height: auto; max-height: 560px; }
  .split, .files { grid-template-columns: 1fr; }
  .app-search { display: none; }
  .stage { height: 380px; }
  .stage-col .stage-tag:nth-child(n + 4) { display: none; }
}
@media (max-width: 640px) {
  section { padding: 84px 0; }
  .hero { padding-top: 70px; }
  .tiles, .coverage, .arch, .vis, .steps, .dlp, .deploy, .plain-grid { grid-template-columns: 1fr; }
  .capture { flex-direction: column; border-radius: 18px; }
  .capture input { padding: 10px; }
  .stage { height: 320px; border-radius: 20px; }
  .stage-col { display: none; }
  .gate-ticker { min-width: 0; font-size: 11px; }
  .gate-ticker .r { display: none; }
  .tr { grid-template-columns: 1fr 1fr; }
  .tr.th { display: none; }
  .tr.act { grid-template-columns: 28px 1fr auto; }
  .tr.act .rule { display: none; }
  .tr.dl { grid-template-columns: 1fr auto; }
  .tr.dl > :nth-child(2), .tr.dl > :nth-child(3) { display: none; }
  .appr-card { flex-direction: column; align-items: flex-start; }
  .pep div { grid-template-columns: 12px 1fr auto; }
  .pep small { display: none; }
  .chain div { grid-template-columns: 70px 1fr auto; }
  .chain small { display: none; }
  .cu-grid { grid-template-columns: 96px 1fr; }
  .app-org { width: auto; }
  .orbit { transform: scale(0.64); }
  .nav { width: calc(100% - 16px); margin-top: 8px; top: 8px; }
  .core-wrap { height: 360px; }
  .core-hud { font-size: 11px; padding: 6px 10px; }
  .core-hud .r { display: none; }
  .chips.facts span { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .bt.span2, .bt.span3 { grid-column: auto; }
  .bf-row { grid-template-columns: 44px 1fr auto; }
  .bf-row .rule { display: none; }
  section.light { margin: 0 8px; border-radius: 28px; padding: 84px 0; }
  .flow-visual { height: 360px; }
  .foot { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .w, .fade-up { opacity: 1; transform: none; filter: none; }
  .tilt { transform: none; }
  .chips { animation: none; }
}
@media (max-width: 1000px) {
  .fan { grid-template-columns: 150px minmax(24px, 0.5fr) 170px minmax(50px, 1fr) minmax(270px, 1.7fr); padding: 34px 22px 24px; }
  .fan-log li { grid-template-columns: 64px minmax(0, 1fr) 76px 110px; }
  .fan-log .to { display: none; }
}
@media (max-width: 900px) {
  .path { padding-top: 0; }
  .path-brace { position: static; height: auto; border: 0; display: block; margin-bottom: 10px; }
  .path-brace span { transform: none; padding: 0; background: none; font-size: 12px; white-space: normal; }
  .path-stops code { justify-self: start; }
  .path-brace.pf span::before { content: "Steps 01–02 · "; }
  .path-brace.al span::before { content: "Steps 01–06 · "; }
  .path-brace.pf { margin-bottom: 22px; }
  .path-track { top: 22px; bottom: 22px; left: 21px; right: auto; width: 2px; height: auto; }
  .path-fill { transform-origin: top; transform: scaleY(var(--t, 0)); }
  .path-dot { top: calc(var(--t, 0) * 100%); left: 50%; margin: -6px 0 0 -6px; }
  .path-stops { grid-template-columns: 1fr; gap: 10px; }
  .path-stops li { padding: 14px 16px 16px 52px; text-align: left; gap: 5px; }
  .path-stops li::before { top: 16px; left: 21px; margin-left: -8px; }
}
@media (max-width: 760px) {
  .fan { grid-template-columns: 84px minmax(26px, 1fr) minmax(0, 3.4fr); padding: 26px 14px 20px; margin-top: 36px; }
  .fan-agents { grid-column: 1 / -1; grid-row: 1; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
  .fan-agents li { padding: 5px 10px 5px 24px; border-radius: 999px; }
  .fan-agents i { left: 9px; width: 8px; height: 8px; margin-top: -4px; }
  .fan-agents b { font-size: 11.5px; }
  .fan-agents span { display: none; }
  .fan-gate, .fan-dst { grid-row: 2; }
  .fan-gate { grid-column: 1; padding: 18px 6px; border-radius: 16px; }
  .fan-gate::before { width: 24px; height: 24px; }
  .fan-gate b { font-size: 14px; }
  .fan-gate span { display: none; }
  .fan-dst { grid-column: 3; gap: 5px; }
  .fan-dst li { grid-template-columns: 7px minmax(0, 1fr) auto; padding: 6px 8px; }
  .fan-dst li b { font-size: 12.5px; }
  .fan-dst li span { display: none; }
  .fan-foot { grid-template-columns: 1fr; gap: 16px; }
  .fan-log li { grid-template-columns: minmax(0, 1fr) auto; }
  .fan-log time, .fan-log code { display: none; }
}
@media (max-width: 1000px) {
  .phero.phero-split { padding: 70px 0 60px; }
  .phero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pvis { min-height: 0; }
}
@media (max-width: 640px) {
  .pv-pipe { padding: 16px; }
  .pv-pipe li { grid-template-columns: 1fr; gap: 2px; padding-left: 46px; }
  .pv-pipe li:not(:last-child)::after { display: none; }
  .ps-row { grid-template-columns: minmax(0, 1fr) auto; }
  .ps-row .team, .ps-row .rule { display: none; }
  .pv-term { font-size: 11.5px; padding: 16px; min-height: 280px; }
  .pv-chain { margin: 16px; }
}

/* Live verdict */
.try-sec { padding-top: 90px; }
.try { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 36px; align-items: start; }
.try-label { font: 600 12px var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.try-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.try-list button { text-align: left; display: grid; gap: 4px; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); color: var(--body); font: inherit; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.try-list button:hover { border-color: var(--line-2); background: rgba(255, 255, 255, 0.04); }
.try-list button[aria-checked="true"] { border-color: rgba(25, 227, 177, 0.55); background: rgba(25, 227, 177, 0.06); }
.try-list b { color: var(--ink); font-size: 14.5px; font-weight: 600; }
.try-list span { font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.try-edit { margin-top: 18px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.try-edit summary { cursor: pointer; color: var(--ink); font-size: 14px; font-weight: 600; }
.try-first { margin-top: 10px; font-size: 13px; color: var(--muted); }
.try-edit textarea { width: 100%; min-height: 220px; margin-top: 12px; resize: vertical; background: var(--bg-2); color: var(--ink); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px; font: 12.5px/1.5 var(--mono); }
.try-edit-row { display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.try-err { color: var(--no); font-size: 13px; }
.receipt { --tone: var(--muted); position: relative; background: #f5f3ec; color: #2b3138; border-radius: 6px; padding: 26px 26px 22px; font-size: 14px; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8); border-top: 5px solid var(--tone); transition: border-color 0.3s; }
.receipt[data-verdict="ALLOW"] { --tone: #0f9d76; }
.receipt[data-verdict="DENY"], .receipt[data-verdict="KILL"] { --tone: #d93a4a; }
.receipt[data-verdict="MODIFY"] { --tone: #2f6fd6; }
.receipt[data-verdict="ESCALATE"], .receipt[data-verdict="QUARANTINE"] { --tone: #c77a00; }
.receipt-top { display: flex; justify-content: space-between; gap: 12px; font: 600 11.5px var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: #6b737c; }
.receipt-kid { letter-spacing: 0.02em; text-transform: none; font-weight: 500; }
.receipt-verdict { display: flex; align-items: baseline; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.receipt-v { font: 700 40px/1 var(--sans); letter-spacing: -0.03em; color: var(--tone); }
.receipt-rule { font: 600 13px var(--mono); color: #3b434c; }
.receipt-reason { margin-top: 10px; color: #1c2127; font-size: 15.5px; line-height: 1.5; min-height: 46px; }
.receipt-rows { margin: 18px 0 0; padding: 14px 0 0; border-top: 1px dashed #c9c5b9; display: grid; gap: 7px; }
.receipt-rows div { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; }
.receipt-rows dt { color: #7a8189; font-size: 12.5px; }
.receipt-rows dd { margin: 0; font: 12.5px/1.5 var(--mono); color: #1c2127; overflow-wrap: anywhere; }
.receipt-rows [data-row-mod] dd { color: #1f5fc4; }
.receipt-rows div[hidden] { display: none; }
.receipt-check { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed #c9c5b9; }
.receipt-check .btn { color: #1c2127; border-color: #b9b5aa; background: #fff; }
.receipt-check .btn.ghost { background: transparent; }
.receipt-check .btn:disabled { opacity: 0.5; cursor: default; transform: none; }
.receipt-result { flex-basis: 100%; font-size: 13.5px; min-height: 20px; }
.receipt-result.ok { color: #0b7a5c; } .receipt-result.no { color: #b52a39; }
.receipt-raw { margin-top: 10px; }
.receipt-raw summary { cursor: pointer; font-size: 13px; color: #4b535c; }
.receipt-raw pre { max-height: 320px; overflow: auto; margin: 10px 0 0; padding: 12px; background: #ebe8df; border-radius: 6px; font: 11.5px/1.45 var(--mono); color: #1c2127; }
.try-note { max-width: 820px; margin: 28px auto 0; text-align: center; font-size: 13.5px; color: var(--muted); }
@media (max-width: 1000px) {
  .try { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .try-sec { padding-top: 60px; }
  .try { margin-top: 36px; gap: 22px; }
  .try-list { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 72%; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 -28px; padding: 0 28px 6px; scroll-padding: 0 28px; scrollbar-width: none; }
  .try-list::-webkit-scrollbar { display: none; }
  .try-list button { scroll-snap-align: start; align-content: start; }
  .receipt { padding: 22px 18px 18px; }
  .receipt-top { flex-wrap: wrap; }
  .receipt-v { font-size: 32px; }
  .receipt-rows div { grid-template-columns: 84px minmax(0, 1fr); }
}

/* Where to start */
.wedge-sec { margin-top: 90px; }
.wedge { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.wedge .head .btn { margin-top: 10px; }
.wedge-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 4px; }
.wedge-steps li { counter-increment: step; display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 12px; row-gap: 4px; padding: 18px 0; border-top: 1px solid var(--line-2); }
.wedge-steps li::before { content: counter(step, decimal-leading-zero); grid-row: span 2; font: 600 13px var(--mono); color: var(--brand); padding-top: 3px; }
.wedge-steps b { color: var(--ink); font-size: 17px; font-weight: 600; }
.wedge-steps span { font-size: 15px; line-height: 1.55; }
.wedge-steps code { font-size: 12.5px; }
section.light .wedge-steps li { border-color: #dfe5ea; }
section.light .wedge-steps li::before { color: #0a9e7c; }
section.light .wedge-steps span { color: #4b5663; }
.wedge-next { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.wedge-next span { margin-right: 6px; font-size: 15px; }
.wedge-next a { font-size: 14px; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink); transition: border-color 0.2s; }
section.light .wedge-next span { color: #4b5663; }
section.light .wedge-next a { color: #0b1117; border-color: #cfd7df; background: #fff; }
section.light .wedge-next a:hover { border-color: #0a9e7c; }
.pilot-steps { max-width: 820px; margin-top: 40px; }
.pilot-docs { margin-top: 24px; }

/* Coverage matrix */
.mx-wrap { margin-top: 48px; overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, #0c1219, #080c12); }
.mx { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.mx th, .mx td { text-align: left; vertical-align: top; padding: 16px 20px; border-top: 1px solid var(--line); }
.mx thead th { border-top: 0; font: 600 11.5px var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding-top: 18px; padding-bottom: 12px; }
.mx tbody th { color: var(--ink); font-weight: 600; width: 28%; }
.mx td:nth-child(2) { width: 30%; }
.mx td p { margin-top: 6px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.st { display: inline-block; font: 600 11.5px var(--mono); letter-spacing: 0.04em; padding: 3px 9px; border-radius: 999px; border: 1px solid; white-space: nowrap; }
.st.on { color: var(--ok); border-color: rgba(46, 230, 166, 0.4); background: rgba(46, 230, 166, 0.08); }
.st.ask { color: var(--redact); border-color: rgba(106, 169, 255, 0.4); background: rgba(106, 169, 255, 0.08); }
.st.seen { color: #b9c4cf; border-color: var(--line-2); background: rgba(255, 255, 255, 0.04); }
.st.part { color: var(--hold); border-color: rgba(255, 181, 71, 0.4); background: rgba(255, 181, 71, 0.08); }
.st.off { color: var(--no); border-color: rgba(255, 93, 108, 0.4); background: rgba(255, 93, 108, 0.08); }
section.light .mx-wrap { background: #fff; border-color: #e1e6eb; box-shadow: 0 30px 80px -44px rgba(15, 30, 45, 0.28); }
section.light .mx th, section.light .mx td { border-color: #e8ecf0; }
section.light .mx tbody th { color: #0b1117; }
section.light .mx td { color: #3c4652; }
section.light .mx td p, section.light .mx thead th { color: #66717d; }
section.light .st.on { color: #0a7a5f; border-color: #9fdcc8; background: #eaf8f3; }
section.light .st.ask { color: #1f5fc4; border-color: #b7cdf2; background: #eef4fd; }
section.light .st.seen { color: #4b5663; border-color: #d3dae1; background: #f3f5f7; }
section.light .st.part { color: #9a5b00; border-color: #f0d29e; background: #fff6e6; }
section.light .st.off { color: #b52a39; border-color: #f1bcc2; background: #fdf0f1; }
.mx-more { margin-top: 20px; }

/* Evidence */
.ev { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ev-card { border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px; background: linear-gradient(180deg, #0c1219, #080c12); }
.ev-k { font: 600 11.5px var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); }
.ev-card b { display: block; margin: 14px 0 8px; color: var(--ink); font-size: 40px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.ev-card p { font-size: 14.5px; }
.ev-cmd { margin-top: 22px; font-size: 14.5px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ev-stamp { margin-top: 16px; font: 12.5px var(--mono); color: var(--muted); }
.ev-machine { margin-top: 18px; font-size: 13.5px; color: var(--muted); max-width: 900px; }
.ev-table td { font-size: 13.5px; }
.ev-pass { color: var(--ok); font: 600 12.5px var(--mono); }
.ev-fail { color: var(--no); font: 600 12.5px var(--mono); }
section.light .ev-pass { color: #0a7a5f; }
.sig-key { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 14px; }
.sig-key li { display: flex; align-items: center; gap: 10px; }
section.light .sig-key li { color: #4b5663; }

@media (max-width: 1000px) {
  .wedge { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .ev { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .wedge-sec { margin-top: 60px; }
  .mx, .mx tbody, .mx tr, .mx th, .mx td { display: block; width: auto; }
  .mx thead { display: none; }
  .mx tr { padding: 16px 18px; border-top: 1px solid var(--line); }
  .mx tbody tr:first-child { border-top: 0; }
  .mx th, .mx td { padding: 0; border: 0; }
  .mx td { margin-top: 6px; }
  .mx tbody th { width: auto; }
  .mx td:nth-child(2) { width: auto; color: var(--muted); font-size: 13px; }
  section.light .mx tr { border-color: #e8ecf0; }
  .ev-table td:nth-child(2), .ev-table td:nth-child(4) { display: none; }
  .ev-card b { font-size: 34px; }
}
