@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg: #07080c;
  --surface: rgba(255, 255, 255, .03);
  --surface-2: rgba(255, 255, 255, .05);
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --text: #f4f5f8;
  --soft: #b4b8c5;
  --muted: #7d8294;
  --violet: #8b6cff;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --ok: #34d399;
  --warn: #fbbf24;
  --bad: #fb7185;
  --grad: linear-gradient(100deg, #a58bff 0%, #6aa8ff 45%, #22d3ee 100%);
  --sans: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
p, ul { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: rgba(139, 108, 255, .4); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 10px; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dim { color: var(--muted); }

/* ---------- background ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora i { position: absolute; border-radius: 50%; opacity: .55; animation: float 22s ease-in-out infinite alternate; will-change: transform; }
.aurora i:nth-child(1) { width: 720px; height: 520px; left: -8%; top: -18%; background: radial-gradient(closest-side, #4c2fd6, transparent); }
.aurora i:nth-child(2) { width: 620px; height: 480px; right: -12%; top: -8%; background: radial-gradient(closest-side, #0e7490, transparent); animation-delay: -7s; opacity: .45; }
.aurora i:nth-child(3) { width: 520px; height: 420px; left: 35%; top: 30%; background: radial-gradient(closest-side, #6d28d9, transparent); opacity: .18; animation-delay: -14s; }
@keyframes float { to { transform: translate3d(8%, 12%, 0) scale(1.15); } }
.noise { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, transparent 0, var(--bg) 900px); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 14px 0 auto; z-index: 50; pointer-events: none; }
.nav__inner { pointer-events: auto; width: min(1180px, 100% - 24px); margin-inline: auto; display: flex; align-items: center; gap: 28px; padding: 8px 8px 8px 18px; border-radius: 999px; border: 1px solid transparent; transition: background .4s, border-color .4s, backdrop-filter .4s; }
.nav.is-scrolled .nav__inner { background: rgba(12, 13, 20, .7); border-color: var(--line); backdrop-filter: blur(20px) saturate(1.6); -webkit-backdrop-filter: blur(20px) saturate(1.6); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand--sm { font-size: 15px; }
.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; color: var(--soft); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--text); background: var(--surface-2); }
.burger { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(12, 13, 20, .6); position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.8px; background: var(--text); transition: transform .3s var(--ease); }
.burger span:first-child { top: 17px; } .burger span:last-child { top: 23px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 26px; border-radius: 999px; font-weight: 600; font-size: 15.5px; white-space: nowrap; border: 1px solid transparent; transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s; }
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--light { background: var(--text); color: #0b0c12; }
.btn--light:hover { background: #fff; transform: translateY(-1px); }
.btn--grad { color: #0b0c12; background: linear-gradient(100deg, #b7a3ff, #7cc3ff 50%, #5ee7f7); box-shadow: 0 10px 40px -10px rgba(120, 140, 255, .7), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(120, 160, 255, .9), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn--glass { background: var(--surface-2); border-color: var(--line-2); }
.btn--glass:hover { background: rgba(255, 255, 255, .09); transform: translateY(-2px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--soft); padding: 6px 14px 6px 10px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--cyan); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal { transition: none; animation: rise 1.1s var(--ease) both; animation-delay: calc(var(--d, 0s) + .1s); }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ---------- hero ---------- */
.hero { padding: 150px 0 60px; }
.hero__head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 5px 14px 5px 5px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); font-size: 14px; color: var(--soft); transition: border-color .3s, background .3s; }
.badge:hover { border-color: rgba(139, 108, 255, .6); background: rgba(139, 108, 255, .08); }
.badge__new { padding: 3px 10px; border-radius: 999px; background: var(--grad); color: #0b0c12; font-weight: 600; font-size: 12.5px; }
.hero h1 { font-size: clamp(96px, 20vw, 240px); font-weight: 700; letter-spacing: -.06em; line-height: .9; margin: 28px 0 8px; }
.hero h1 .grad { background-size: 200% 100%; animation: sheen 8s ease-in-out infinite alternate; }
@keyframes sheen { to { background-position: 100% 0; } }
.tagline { font-size: clamp(22px, 3vw, 36px); font-weight: 600; letter-spacing: -.03em; margin-bottom: 22px; }
.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--soft); max-width: 640px; line-height: 1.55; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }

/* ---------- demo ---------- */
.demo { position: relative; margin-top: 80px; border-radius: 30px; padding: 1px; }
.demo::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: conic-gradient(from var(--a), transparent 0 55%, rgba(139, 108, 255, .9) 70%, rgba(34, 211, 238, .9) 80%, transparent 92%), var(--line-2); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin 6s linear infinite; }
@keyframes spin { to { --a: 360deg; } }
.demo__glow { position: absolute; inset: 10% 8% -6%; background: radial-gradient(closest-side, rgba(110, 90, 255, .45), transparent); z-index: -1; transition: background .6s; }
.demo[data-d="BLOCK"] .demo__glow { background: radial-gradient(closest-side, rgba(251, 113, 133, .4), transparent); }
.demo[data-d="ALLOW"] .demo__glow { background: radial-gradient(closest-side, rgba(52, 211, 153, .35), transparent); }
.demo[data-d="REVIEW"] .demo__glow { background: radial-gradient(closest-side, rgba(251, 191, 36, .32), transparent); }
.demo__card { position: relative; border-radius: 29px; background: linear-gradient(180deg, #13141f, #0b0c13); overflow: hidden; }
.demo__bar { display: flex; align-items: center; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.demo__dots { display: flex; gap: 7px; } .demo__dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.demo__title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ok); flex: none; }
.live__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

.demo__body { display: grid; grid-template-columns: 1fr 340px; min-height: 440px; }
.chat { padding: 28px; display: flex; flex-direction: column; gap: 16px; justify-content: flex-end; max-height: 520px; overflow-y: auto; scrollbar-width: thin; }
.msg { display: flex; gap: 12px; align-items: flex-end; animation: pop .6s var(--ease); max-width: 88%; }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.97); } }
.msg--user { align-self: flex-end; flex-direction: row-reverse; }
.avatar { flex: none; width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-size: 11px; font-weight: 700; background: var(--grad); color: #0b0c12; }
.msg--user .avatar { background: rgba(255, 255, 255, .1); color: var(--soft); }
.bubble { padding: 13px 17px; border-radius: 18px 18px 18px 6px; background: var(--surface-2); border: 1px solid var(--line); font-size: 15.5px; line-height: 1.5; color: #e2e4ea; }
.msg--user .bubble { border-radius: 18px 18px 6px 18px; background: linear-gradient(135deg, rgba(139, 108, 255, .28), rgba(34, 211, 238, .16)); border-color: rgba(139, 108, 255, .35); position: relative; overflow: hidden; }
.msg--user.is-scanning .bubble::after { content: ""; position: absolute; top: 0; bottom: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent); animation: scan 1s linear infinite; }
@keyframes scan { from { left: -40%; } to { left: 100%; } }
.msg__status { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: .01em; }
.msg--bot.is-guard .bubble { border-color: var(--c); background: color-mix(in srgb, var(--c) 8%, transparent); }
.msg--bot.is-guard .avatar { background: var(--c); }
.typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; transform: none; } 30% { opacity: 1; transform: translateY(-3px); } }

.inspector { position: relative; border-left: 1px solid var(--line); padding: 26px; background: rgba(255, 255, 255, .015); display: flex; flex-direction: column; }
.inspector__label { font-size: 12.5px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.inspector__idle { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: var(--muted); font-size: 14px; }
.inspector__run { display: none; flex-direction: column; gap: 20px; margin-top: 22px; animation: pop .6s var(--ease); }
.inspector:not([data-state="idle"]) .inspector__idle { display: none; }
.inspector:not([data-state="idle"]) .inspector__run { display: flex; }
.radar { position: relative; width: 120px; height: 120px; }
.radar i { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(139, 108, 255, .35); animation: ripple 3s var(--ease) infinite; }
.radar i:nth-child(2) { animation-delay: 1s; } .radar i:nth-child(3) { animation-delay: 2s; }
.radar span { position: absolute; inset: 44px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 30px rgba(110, 140, 255, .7); }
@keyframes ripple { from { transform: scale(.35); opacity: 1; } to { transform: scale(1); opacity: 0; } }

.ring { position: relative; width: 150px; height: 150px; align-self: center; --c: var(--violet); }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.ring__track { stroke: rgba(255, 255, 255, .07); }
.ring__val { stroke: var(--c); stroke-dasharray: 0 100; transition: stroke-dasharray 1.2s var(--ease), stroke .5s; filter: drop-shadow(0 0 8px var(--c)); }
.ring.is-loading svg { animation: rot 1s linear infinite; }
.ring.is-loading .ring__val { stroke-dasharray: 22 78; transition: none; }
@keyframes rot { to { transform: rotate(270deg); } }
.ring__center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring__center b { font-size: 40px; font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.ring__center span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

.verdict { text-align: center; }
.verdict__badge { display: inline-block; padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: 15px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--soft); transition: all .4s; }
.verdict__cat { margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.inspector[data-d] .verdict__badge { color: var(--c); border-color: color-mix(in srgb, var(--c) 50%, transparent); background: color-mix(in srgb, var(--c) 12%, transparent); box-shadow: 0 0 30px -8px var(--c); }
.inspector[data-d="ALLOW"], .msg[data-d="ALLOW"] { --c: var(--ok); }
.inspector[data-d="REVIEW"], .msg[data-d="REVIEW"] { --c: var(--warn); }
.inspector[data-d="BLOCK"], .msg[data-d="BLOCK"] { --c: var(--bad); }
.inspector[data-d] .ring { --c: inherit; }

.checks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); transition: color .3s; }
.checks li i { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line-2); flex: none; position: relative; transition: all .3s; }
.checks li.is-run i { border-color: var(--violet); border-top-color: transparent; animation: rot2 .7s linear infinite; }
@keyframes rot2 { to { transform: rotate(360deg); } }
.checks li.is-ok { color: var(--soft); }
.checks li.is-ok i { border-color: var(--ok); background: var(--ok); }
.checks li.is-hit { color: var(--text); }
.checks li.is-hit i { border-color: var(--bad); background: var(--bad); }
.checks li.is-ok i::after, .checks li.is-hit i::after { content: ""; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #0b0c12; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checks li.is-hit i::after { left: 7px; top: 3px; width: 0; height: 8px; border-width: 0 2px 0 0; transform: none; }
.reason { font-size: 13.5px; color: var(--soft); line-height: 1.5; padding: 14px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); opacity: 0; transition: opacity .5s; }
.reason.is-shown { opacity: 1; }

.demo__foot { border-top: 1px solid var(--line); padding: 18px 22px 16px; }
.suggest { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 14px; scrollbar-width: none; }
.suggest::-webkit-scrollbar { display: none; }
.suggest button { flex: none; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 13.5px; color: var(--soft); transition: all .25s var(--ease); }
.suggest button:hover { border-color: rgba(139, 108, 255, .55); color: var(--text); background: rgba(139, 108, 255, .1); transform: translateY(-1px); }
.prompt { position: relative; display: flex; align-items: flex-end; gap: 10px; padding: 8px 8px 8px 20px; border-radius: 22px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line-2); transition: border-color .3s, box-shadow .3s; }
.prompt:focus-within { border-color: rgba(139, 108, 255, .6); box-shadow: 0 0 0 5px rgba(139, 108, 255, .12); }
.prompt textarea { flex: 1; border: 0; background: transparent; color: var(--text); font: 16px/1.5 var(--sans); padding: 10px 0; resize: none; outline: none; max-height: 140px; }
.prompt__ph { position: absolute; left: 20px; top: 18px; right: 70px; color: var(--muted); font-size: 16px; line-height: 1.5; pointer-events: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prompt__ph::after { content: ""; display: inline-block; width: 1.5px; height: 1.1em; background: var(--muted); margin-left: 2px; vertical-align: -3px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.prompt.has-text .prompt__ph { display: none; }
.prompt__send { flex: none; width: 44px; height: 44px; border-radius: 14px; border: 0; background: var(--grad); color: #0b0c12; display: grid; place-items: center; transition: transform .25s var(--ease), opacity .25s; }
.prompt__send:hover { transform: scale(1.06); }
.prompt__send:disabled { opacity: .4; cursor: default; transform: none; }
.demo__note { margin-top: 10px; font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---------- marquee ---------- */
.marquee { padding: 30px 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee span { display: flex; align-items: center; gap: 44px; padding-right: 44px; font-size: clamp(20px, 2.6vw, 30px); font-weight: 500; letter-spacing: -.02em; color: rgba(255, 255, 255, .28); white-space: nowrap; }
.marquee span::after { content: "✦"; font-size: .6em; color: var(--violet); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- statement ---------- */
.statement { padding: 120px 0; }
.statement__text { font-size: clamp(28px, 4.2vw, 54px); font-weight: 500; line-height: 1.18; letter-spacing: -.035em; max-width: 1060px; }
.statement__text .w { color: rgba(255, 255, 255, .14); transition: color .35s; }
.statement__text .w.is-on { color: var(--text); }
.statement__text .w.is-on.hl { color: #b7a3ff; }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.head { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 56px; max-width: 860px; }
.section h2, .why h2 { font-size: clamp(36px, 5vw, 64px); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; padding: 28px; border-radius: 26px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; transition: border-color .4s, background .4s, transform .5s var(--ease); }
.step:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-4px); }
.step__n { font: 500 13px var(--mono); color: var(--violet); margin-top: 10px; }
.step h3 { font-size: 26px; }
.step p { color: var(--soft); font-size: 15.5px; }
.step__visual { position: relative; height: 170px; border-radius: 18px; background: rgba(0, 0, 0, .25); border: 1px solid var(--line); overflow: hidden; }
.step__visual--plug { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: repeat(3, 1fr); align-items: center; padding: 20px; column-gap: 0; }
.chipx { grid-column: 1; font: 500 12px var(--mono); padding: 6px 10px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--soft); z-index: 1; }
.step__visual--plug svg { grid-column: 2; grid-row: 1 / 4; width: 100%; height: 100%; }
.step__visual--plug path { fill: none; stroke: rgba(139, 108, 255, .6); stroke-width: 1.5; stroke-dasharray: 4 6; animation: flow 1.2s linear infinite; vector-effect: non-scaling-stroke; }
@keyframes flow { to { stroke-dashoffset: -20; } }
.core { grid-column: 3; grid-row: 2; width: 46px; height: 46px; border-radius: 14px; background: var(--grad); box-shadow: 0 0 40px rgba(110, 140, 255, .7); }
.scanlines { position: absolute; inset: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.scanlines i { height: 12px; width: var(--w); border-radius: 6px; background: rgba(255, 255, 255, .08); }
.scanlines i.hot { background: rgba(251, 113, 133, .35); box-shadow: 0 0 20px rgba(251, 113, 133, .3); }
.beam { position: absolute; left: 0; right: 0; height: 60px; top: -60px; background: linear-gradient(180deg, transparent, rgba(34, 211, 238, .25), transparent); border-bottom: 1px solid rgba(34, 211, 238, .8); animation: beam 3s var(--ease) infinite; }
@keyframes beam { to { top: 100%; } }
.step__visual--verdict { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; }
.vpill { font-size: 13.5px; font-weight: 600; padding: 7px 16px; border-radius: 999px; border: 1px solid; opacity: .35; animation: cycle 4.5s infinite; }
.vpill--ok { color: var(--ok); } .vpill--rev { color: var(--warn); animation-delay: 1.5s; } .vpill--bad { color: var(--bad); animation-delay: 3s; }
@keyframes cycle { 0%, 30% { opacity: 1; box-shadow: 0 0 24px -4px currentColor; transform: scale(1.06); } 36%, 100% { opacity: .35; box-shadow: none; transform: none; } }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tile { position: relative; border-radius: 28px; background: var(--surface); border: 1px solid var(--line); padding: 32px; overflow: hidden; transition: border-color .4s; }
.tile:hover { border-color: var(--line-2); }
.tile--chat, .tile--mon { grid-column: span 3; display: flex; flex-direction: column; gap: 30px; }
.tile--chat { background: radial-gradient(120% 90% at 100% 100%, rgba(139, 108, 255, .2), transparent 60%), var(--surface); }
.tile--mon { background: radial-gradient(120% 90% at 0% 100%, rgba(34, 211, 238, .15), transparent 60%), var(--surface); }
.tile--sm { grid-column: span 2; display: flex; flex-direction: column; gap: 12px; }
.tile__text { display: flex; flex-direction: column; gap: 14px; }
.tile h3 { font-size: 28px; }
.tile h4 { font-size: 20px; letter-spacing: -.02em; }
.tile p { color: var(--soft); font-size: 15.5px; }
.tag { align-self: flex-start; font-size: 13px; font-weight: 500; padding: 5px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--soft); }
.icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 6px; }
.icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--violet { color: #b7a3ff; background: rgba(139, 108, 255, .15); }
.icon--cyan { color: var(--cyan); background: rgba(34, 211, 238, .12); }
.icon--green { color: var(--ok); background: rgba(52, 211, 153, .12); }

.mini-chat { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 20px; background: rgba(0, 0, 0, .3); border: 1px solid var(--line); }
.mc { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 14px; }
.mc--user { align-self: flex-end; background: rgba(139, 108, 255, .22); border: 1px solid rgba(139, 108, 255, .35); }
.mc--sys { align-self: center; display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--bad); padding: 5px 12px; border-radius: 999px; background: rgba(251, 113, 133, .1); }
.mc--bot { background: var(--surface-2); border: 1px solid var(--line); color: var(--soft); }
.dotc { width: 7px; height: 7px; border-radius: 50%; }
.dotc--bad { background: var(--bad); box-shadow: 0 0 10px var(--bad); }

.logs { margin-top: auto; height: 210px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; overflow: hidden; padding: 16px; border-radius: 20px; background: rgba(0, 0, 0, .3); border: 1px solid var(--line); mask-image: linear-gradient(transparent, #000 35%); -webkit-mask-image: linear-gradient(transparent, #000 35%); }
.log { display: flex; align-items: center; gap: 12px; font: 12.5px var(--mono); color: var(--soft); padding: 9px 12px; border-radius: 10px; background: var(--surface); animation: pop .6s var(--ease); }
.log span:first-of-type { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log b { font-weight: 500; font-size: 11px; padding: 3px 8px; border-radius: 6px; flex: none; }
.log .s-ok { color: var(--ok); background: rgba(52, 211, 153, .1); }
.log .s-warn { color: var(--warn); background: rgba(251, 191, 36, .1); }
.log .s-bad { color: var(--bad); background: rgba(251, 113, 133, .12); }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why__left { position: sticky; top: 120px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.why__list { list-style: none; padding: 0; display: flex; flex-direction: column; }
.why__list li { padding: 28px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.why__list li:last-child { border-bottom: 1px solid var(--line); }
.why__list b { font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.why__list span { color: var(--soft); }

/* ---------- roadmap ---------- */
.road { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.road__col { padding: 30px; border-radius: 26px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; gap: 16px; }
.road__col.is-now { border-color: rgba(139, 108, 255, .45); background: radial-gradient(100% 80% at 50% 0%, rgba(139, 108, 255, .18), transparent 70%), var(--surface); }
.road__tag { align-self: flex-start; font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--soft); }
.is-now .road__tag { background: var(--grad); color: #0b0c12; border-color: transparent; }
.road h3 { font-size: 28px; }
.road ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.road li { position: relative; padding-left: 20px; color: var(--soft); font-size: 15.5px; }
.road li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--muted); }
.is-now li::before { border: 0; background: var(--grad); }

/* ---------- cta ---------- */
.cta { padding: 60px 0 120px; }
.cta__card { position: relative; overflow: hidden; text-align: center; padding: 100px 28px; border-radius: 36px; border: 1px solid var(--line-2); background: rgba(14, 15, 24, .7); display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta__orb { position: absolute; width: 700px; height: 700px; left: 50%; top: 40%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(109, 40, 217, .6), rgba(14, 165, 233, .25) 60%, transparent); opacity: .7; z-index: -1; }
.cta h2 { font-size: clamp(36px, 5.6vw, 72px); max-width: 900px; }
.cta .hero__actions { margin-top: 12px; }

.contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; max-width: 860px; margin-top: 18px; }
.contact { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 22px; border-radius: 22px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); text-align: left; transition: transform .35s var(--ease), border-color .3s, background .3s; }
.contact:hover { transform: translateY(-4px); border-color: rgba(139, 108, 255, .55); background: rgba(139, 108, 255, .08); }
.contact__icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 12px; }
.contact__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__label { font-size: 13px; color: var(--muted); }
.contact__value { font-size: 17px; font-weight: 600; letter-spacing: -.01em; word-break: break-all; }
@media (max-width: 720px) { .contacts { grid-template-columns: 1fr; } }
.contacts--one { grid-template-columns: 1fr; max-width: 420px; }
.contacts--one .contact { align-items: center; text-align: center; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); font-size: 14px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer .brand { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .demo__body { grid-template-columns: 1fr; }
  .inspector { border-left: 0; border-top: 1px solid var(--line); }
  .inspector__idle { padding: 12px 0; flex-direction: row; }
  .radar { width: 60px; height: 60px; } .radar span { inset: 22px; }
  .inspector__run { display: none; }
  .inspector:not([data-state="idle"]) .inspector__run { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px 24px; }
  .inspector .ring { width: 120px; height: 120px; grid-row: span 2; }
  .inspector .verdict { text-align: left; }
  .inspector .reason { grid-column: 1 / -1; }
  .steps, .road { grid-template-columns: 1fr; }
  .tile--chat, .tile--mon { grid-column: span 6; }
  .tile--sm { grid-column: span 6; }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .why__left { position: static; }
}
@media (max-width: 820px) {
  .nav__links { position: fixed; top: 76px; left: 12px; right: 12px; flex-direction: column; padding: 10px; border-radius: 22px; background: rgba(14, 15, 24, .96); border: 1px solid var(--line-2); backdrop-filter: blur(20px); opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; transition: all .3s var(--ease); }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px 16px; font-size: 16px; }
  .burger { display: block; }
  .nav__cta { margin-left: auto; }
  .nav .nav__inner { background: rgba(12, 13, 20, .7); border-color: var(--line); backdrop-filter: blur(20px); }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .burger { margin-left: auto; }
  .hero { padding-top: 120px; }
  .hero__actions { flex-direction: column; align-self: stretch; }
  .demo { margin-top: 56px; border-radius: 24px; }
  .demo__card { border-radius: 23px; }
  .chat { padding: 18px; }
  .msg { max-width: 100%; }
  .bubble { font-size: 15px; }
  .inspector { padding: 18px; }
  .inspector:not([data-state="idle"]) .inspector__run { grid-template-columns: 1fr; justify-items: center; }
  .inspector .ring { grid-row: auto; }
  .inspector .verdict { text-align: center; }
  .demo__foot { padding: 14px; }
  .prompt__ph { font-size: 15px; }
  .section { padding: 80px 0; }
  .statement { padding: 80px 0; }
  .tile, .step, .road__col { padding: 22px; }
  .cta__card { padding: 64px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .statement__text .w { color: var(--text); }
}
