:root {
  --bg: #07070b;
  --bg-soft: #0d0d14;
  --surface: #11111a;
  --surface-2: #171722;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --text: #f7f7fb;
  --muted: #aaaabd;
  --purple: #8b5cf6;
  --purple-strong: #7c3aed;
  --purple-dark: #4c1d95;
  --cyan: #22d3ee;
  --green: #34d399;
  --yellow: #fbbf24;
  --orange: #fb923c;
  --red: #f87171;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header: 82px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--bg); font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(139,92,246,.45); color: white; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: clip; }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10000; padding: 12px 18px; background: white; color: black; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7vw, 6.5rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.35rem, 5vw, 4.4rem); margin-bottom: 24px; max-width: 1000px; }
h3 { font-size: 1.25rem; }
h1 span, h2 span { color: var(--purple); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #c4b5fd; font-size: .79rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-heading { max-width: 850px; margin-bottom: 58px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child, .section-intro { color: var(--muted); font-size: 1.08rem; max-width: 760px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--purple-strong)); color: white; font-size: .95rem; font-weight: 800; box-shadow: 0 14px 40px rgba(124,58,237,.3); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(124,58,237,.42); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.button-ghost { background: rgba(255,255,255,.035); border-color: var(--line-strong); box-shadow: none; }
.button-ghost:hover { border-color: rgba(139,92,246,.65); background: rgba(139,92,246,.09); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .85rem; }
.text-link { color: #d8b4fe; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header); z-index: 1000; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(7,7,11,.82); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: .19em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .59rem; letter-spacing: .05em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { color: #d5d5df; font-size: .86rem; font-weight: 700; }
.main-nav > a:not(.button):hover { color: white; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: white; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: 830px; padding-top: calc(var(--header) + 90px); display: flex; align-items: center; background: radial-gradient(circle at 70% 42%, rgba(124,58,237,.18), transparent 33%), radial-gradient(circle at 15% 18%, rgba(34,211,238,.06), transparent 26%); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black 20%, transparent 90%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 720px; color: #c5c5d1; font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(52,211,153,.11); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0; }
.event-meta { display: flex; flex-wrap: wrap; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.event-meta > div { display: flex; align-items: center; gap: 12px; }
.event-meta span:last-child { display: flex; flex-direction: column; }
.event-meta strong { font-size: .88rem; }
.event-meta small { color: var(--muted); font-size: .76rem; }
.meta-icon { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 9px; color: #c4b5fd; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.2), transparent 64%); filter: blur(5px); }
.hero-owl { position: relative; z-index: 2; width: min(78%, 430px); filter: drop-shadow(0 30px 55px rgba(0,0,0,.5)); }
.orbit { position: absolute; border: 1px solid rgba(139,92,246,.28); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; animation: orbit-spin 28s linear infinite; }
.orbit-two { width: 520px; height: 520px; border-style: dashed; opacity: .55; animation: orbit-spin 38s linear reverse infinite; }
.orbit::after { content: ""; position: absolute; top: 12%; left: 14%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.product-node { position: absolute; z-index: 4; width: 225px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(13,13,20,.82); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.product-node strong, .product-node small { display: block; }
.product-node strong { margin: 5px 0 4px; }
.product-node small { color: var(--muted); font-size: .72rem; }
.node-label { color: #c4b5fd; font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.node-vanguard { top: 10%; right: -3%; }
.node-aegis { bottom: 8%; left: -3%; }
.connection-line { position: absolute; inset: 50% auto auto 50%; width: 64%; height: 1px; background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent); transform: translate(-50%,-50%) rotate(-35deg); opacity: .5; }
.connection-line span { position: absolute; width: 8px; height: 8px; top: -4px; border-radius: 50%; background: white; box-shadow: 0 0 16px var(--cyan); animation: line-travel 4s ease-in-out infinite; }
@keyframes line-travel { 0%,100% { left: 0; opacity: 0; } 20%,80% { opacity: 1; } 50% { left: calc(100% - 8px); } }
.visual-caption { position: absolute; bottom: 0; right: 0; color: #777789; font-size: .68rem; }

.signal-strip { border-block: 1px solid var(--line); background: #0a0a10; overflow: hidden; }
.signal-flow { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #b8b8c7; font-size: .68rem; font-weight: 900; letter-spacing: .11em; white-space: nowrap; }
.signal-flow i { color: var(--purple); font-style: normal; font-size: 1.15rem; }

.problem-section { background: linear-gradient(to bottom, var(--bg), #0a0a11); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.problem-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: transform .25s ease, border-color .25s ease; }
.problem-card:hover { transform: translateY(-5px); border-color: rgba(139,92,246,.42); }
.problem-card > span { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 50px; border: 1px solid var(--line); border-radius: 50%; color: #c4b5fd; font-size: .75rem; font-weight: 800; }
.problem-card p { color: var(--muted); font-size: .91rem; }

.integration-section { background: radial-gradient(circle at center, rgba(124,58,237,.08), transparent 42%), #09090f; }
.integration-grid { display: grid; grid-template-columns: 1fr 190px 1fr; gap: 24px; align-items: stretch; }
.solution-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(17,17,26,.86); box-shadow: var(--shadow); }
.solution-card h3 { margin: 48px 0 16px; font-size: 2rem; }
.solution-card > p { color: var(--muted); }
.solution-top { display: flex; align-items: center; justify-content: space-between; }
.solution-code { color: #777789; font-size: .7rem; letter-spacing: .13em; }
.status-pill { padding: 6px 10px; border: 1px solid rgba(139,92,246,.35); border-radius: 999px; color: #c4b5fd; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.check-list { margin: 26px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 25px; border-bottom: 1px solid rgba(255,255,255,.06); color: #d4d4df; font-size: .9rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 7px; height: 7px; border: 2px solid var(--purple); border-radius: 50%; }
.integration-core { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #c4b5fd; font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.integration-core small { color: #777789; font-weight: 600; letter-spacing: 0; line-height: 1.4; }
.core-ring { width: 118px; height: 118px; margin: 20px 0; padding: 18px; border: 1px dashed rgba(139,92,246,.5); border-radius: 50%; animation: orbit-spin 18s linear infinite; }
.core-ring div { width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #a78bfa, #4c1d95); box-shadow: 0 0 45px rgba(124,58,237,.55); }

.product-section { background: #08080d; }
.product-alt { background: #0b0b12; }
.product-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.product-layout.reverse .product-copy { order: 2; }
.product-layout.reverse .dashboard-shell { order: 1; }
.product-copy .button { margin-top: 22px; }
.feature-list { margin-top: 38px; }
.feature-list article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-list article > span { color: #a78bfa; font-size: .72rem; font-weight: 900; }
.feature-list h3 { margin-bottom: 8px; font-size: 1rem; letter-spacing: -.01em; }
.feature-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.dashboard-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: #0a0a11; box-shadow: 0 35px 100px rgba(0,0,0,.55); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.product-layout.reverse .dashboard-shell { transform: perspective(1200px) rotateY(2deg) rotateX(1deg); }
.dashboard-chrome { min-height: 48px; padding: 0 15px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); color: #8d8da0; font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots i { width: 7px; height: 7px; border-radius: 50%; background: #474757; }
.demo-badge { margin-left: auto; padding: 4px 7px; border: 1px solid rgba(34,211,238,.22); border-radius: 4px; color: #67e8f9; font-size: .52rem; }
.dashboard-body { min-height: 520px; display: grid; grid-template-columns: 66px 1fr; }
.dash-sidebar { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 18px; border-right: 1px solid var(--line); background: #09090f; }
.dash-sidebar img { width: 34px; height: 34px; object-fit: contain; margin-bottom: 10px; }
.dash-sidebar i { width: 20px; height: 20px; border: 1px solid #3b3b4b; border-radius: 5px; }
.dash-sidebar i.active { border-color: var(--purple); background: rgba(139,92,246,.18); box-shadow: inset 0 0 0 4px #09090f; }
.dash-content { padding: 24px; min-width: 0; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-head div { display: flex; flex-direction: column; }
.dash-head small { color: #8b5cf6; font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.dash-head strong { margin-top: 5px; font-size: .95rem; }
.dash-head > span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 5px; color: #8d8da0; font-size: .55rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row > div { min-height: 78px; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: #111119; }
.metric-row small, .metric-row strong { display: block; }
.metric-row small { color: #7c7c8f; font-size: .54rem; }
.metric-row strong { margin-top: 14px; color: #e8e8ef; font-size: .74rem; }
.chart-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; margin: 10px 0; }
.chart-card, .table-card, .progress-card { padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: #111119; }
.chart-card > span, .table-card > span, .progress-card > span { color: #a7a7b6; font-size: .6rem; font-weight: 800; }
.line-chart { height: 105px; padding-top: 16px; }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.line-chart polyline { fill: none; stroke: #8b5cf6; stroke-width: 3; filter: drop-shadow(0 0 8px rgba(139,92,246,.45)); }
.donut { width: 75px; height: 75px; margin: 12px auto 8px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--purple) 0 42%, var(--cyan) 42% 67%, #343445 67%); position: relative; }
.donut::after { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #111119; }
.donut b { z-index: 1; font-size: .65rem; }
.legend { display: flex; justify-content: center; gap: 6px; color: #737386; font-size: .46rem; }
.legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }
.legend i:nth-of-type(2) { background: var(--cyan); }
.legend i:nth-of-type(3) { background: #343445; }
.table-row { display: grid; grid-template-columns: 8px 1fr auto; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.055); }
.table-row:last-child { border: 0; }
.table-row b { font-size: .58rem; font-weight: 700; }
.table-row small { color: #777789; font-size: .5rem; }
.sev { width: 7px; height: 7px; border-radius: 50%; }
.sev.high { background: var(--red); box-shadow: 0 0 8px rgba(248,113,113,.55); }
.sev.medium { background: var(--yellow); }
.sev.low { background: var(--green); }
.kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 10px 0; }
.kanban > div { min-height: 210px; padding: 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: #0d0d14; }
.kanban > div > span { color: #777789; font-size: .5rem; font-weight: 900; letter-spacing: .08em; }
.kanban article { margin-top: 10px; padding: 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; background: #15151e; }
.kanban article .sev { display: block; margin-bottom: 8px; }
.kanban article b, .kanban article small { display: block; }
.kanban article b { font-size: .56rem; }
.kanban article small { margin-top: 4px; color: #747486; font-size: .48rem; }
.progress { height: 6px; margin: 13px 0 7px; border-radius: 999px; background: #292936; overflow: hidden; }
.progress i { display: block; width: 76%; height: 100%; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.progress-card small { color: #727283; font-size: .48rem; }

.process-section { background: radial-gradient(circle at 50% 40%, rgba(124,58,237,.08), transparent 38%), #07070b; }
.process-flow { display: grid; grid-template-columns: repeat(6,1fr); margin: 0; padding: 0; list-style: none; }
.process-flow li { position: relative; padding: 28px 20px; border-top: 1px solid var(--line); }
.process-flow li::after { content: ""; position: absolute; top: -4px; right: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 13px rgba(139,92,246,.7); }
.process-flow li:last-child::after { display: none; }
.process-flow li > span { display: block; margin-bottom: 42px; color: #a78bfa; font-size: .68rem; font-weight: 900; }
.process-flow h3 { font-size: 1rem; }
.process-flow p { margin: 0; color: var(--muted); font-size: .82rem; }

.case-section { background: #0a0a10; }
.case-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.case-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }
.case-outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.case-outcomes article { min-height: 210px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.case-outcomes article > span { display: grid; place-items: center; width: 31px; height: 31px; margin-bottom: 35px; border-radius: 50%; background: rgba(52,211,153,.1); color: var(--green); }
.case-outcomes p { color: var(--muted); font-size: .86rem; }

.governance-section { background: #07070b; }
.governance-panel { padding: 58px; border: 1px solid rgba(139,92,246,.2); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(76,29,149,.16), rgba(17,17,26,.7)); }
.governance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 45px; }
.governance-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: rgba(7,7,11,.42); }
.governance-grid strong { color: #a78bfa; font-size: .68rem; }
.governance-grid h3 { margin: 30px 0 10px; font-size: 1rem; }
.governance-grid p { color: var(--muted); font-size: .82rem; }
.legal-note { margin: 34px 0 0; padding-top: 25px; border-top: 1px solid var(--line); color: #9292a5; font-size: .8rem; }

.demo-section { background: linear-gradient(180deg,#09090f,#0d0b14); }
.demo-layout { display: grid; grid-template-columns: 1fr .48fr; gap: 70px; align-items: center; }
.demo-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; max-width: 720px; }
.demo-benefits { margin: 35px 0; padding: 0; list-style: none; }
.demo-benefits li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line); color: #d5d5df; }
.demo-benefits li span { color: #a78bfa; font-size: .7rem; font-weight: 900; }
.event-card { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.event-card div { padding: 18px; border-right: 1px solid var(--line); }
.event-card div:last-child { border-right: 0; }
.event-card small, .event-card strong { display: block; }
.event-card small { color: #7e7e90; font-size: .58rem; font-weight: 900; letter-spacing: .1em; }
.event-card strong { margin-top: 8px; font-size: .8rem; }
.qr-card { padding: 36px; text-align: center; border: 1px solid rgba(139,92,246,.25); border-radius: var(--radius-lg); background: rgba(17,17,26,.75); box-shadow: var(--shadow); }
.qr-card img { width: 220px; padding: 12px; border-radius: 15px; background: white; }
.qr-card strong { display: block; margin-top: 24px; }
.qr-card p { margin: 8px 0; color: var(--muted); font-size: .88rem; }
.qr-card small { color: #777789; font-size: .64rem; }

.form-section { background: radial-gradient(circle at 18% 20%, rgba(124,58,237,.14), transparent 30%), #08080d; }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.form-copy { position: sticky; top: 120px; }
.form-copy > p:not(.eyebrow) { color: var(--muted); }
.privacy-points { display: grid; gap: 10px; margin-top: 28px; color: #b8b8c7; font-size: .83rem; }
.privacy-points span::first-letter { color: var(--green); }
.lead-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(17,17,26,.88); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { position: relative; }
.field-full { grid-column: 1 / -1; }
.field label, fieldset legend { display: block; margin-bottom: 8px; color: #e9e9f1; font-size: .78rem; font-weight: 800; }
.field label small { color: #777789; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #323241; border-radius: 10px; background: #0c0c13; color: white; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { resize: vertical; min-height: 115px; padding: 13px 14px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #4c4c60; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(248,113,113,.09); }
.field-error { display: block; min-height: 18px; margin-top: 5px; color: #fca5a5; font-size: .68rem; }
fieldset { margin: 0; padding: 0; border: 0; }
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-group label { margin: 0; }
.radio-group input { position: absolute; opacity: 0; pointer-events: none; }
.radio-group span { display: flex; align-items: center; min-height: 48px; padding: 0 13px; border: 1px solid #323241; border-radius: 10px; background: #0c0c13; color: #bdbdcc; font-size: .77rem; cursor: pointer; }
.radio-group input:checked + span { border-color: var(--purple); background: rgba(139,92,246,.1); color: white; }
.radio-group input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 3px; }
.char-count { position: absolute; right: 10px; bottom: -16px; color: #69697a; font-size: .62rem; }
.consent label { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; line-height: 1.45; }
.consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--purple); }
.consent a { color: #c4b5fd; text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 22px; margin: 22px 0 10px; color: #d5d5df; font-size: .82rem; }
.form-status.is-error { color: #fca5a5; }
.form-status.is-success { color: #6ee7b7; }
.button-submit { width: 100%; justify-content: space-between; }
.button-submit:disabled { opacity: .6; cursor: wait; }
.form-footnote { margin: 13px 0 0; color: #707082; font-size: .68rem; text-align: center; }

.faq-section { background: #0a0a10; }
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 120px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding: 24px 0; color: #ededf3; font-size: 1rem; font-weight: 800; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--purple); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 44px 24px 0; color: var(--muted); font-size: .92rem; }

.final-cta { padding: 70px 0; background: linear-gradient(120deg, #161025, #0b0b12 55%, #101b21); border-block: 1px solid var(--line); }
.final-cta-inner { display: grid; grid-template-columns: 120px 1fr auto; gap: 32px; align-items: center; }
.final-cta h2 { margin-bottom: 8px; font-size: clamp(2rem,4vw,3.2rem); }
.final-cta p:last-child { margin: 0; color: var(--muted); }

.site-footer { padding: 60px 0 26px; background: #060609; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 45px; }
.footer-brand > p { max-width: 360px; margin-top: 20px; color: var(--muted); font-size: .84rem; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-main > div > strong { margin-bottom: 8px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main > div > a { color: #9898aa; font-size: .8rem; }
.footer-main > div > a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: #666677; font-size: .66rem; }
.footer-bottom p { margin: 0; }

.utility-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at center, rgba(124,58,237,.17), transparent 40%), var(--bg); }
.utility-card { max-width: 650px; padding: 55px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.utility-card img { object-fit: contain; }
.utility-card h1 { font-size: clamp(2.3rem,6vw,4rem); }
.utility-card > p:not(.eyebrow) { color: var(--muted); }
.utility-card .eyebrow { justify-content: center; }
.protocol { display: inline-block; padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; }
.policy-page { background: #08080d; }
.policy-header { padding: 18px 0; border-bottom: 1px solid var(--line); }
.policy-content { max-width: 850px; padding-top: 80px; padding-bottom: 100px; }
.policy-content h1 { font-size: clamp(2.8rem,7vw,5rem); }
.policy-content h2 { margin-top: 45px; font-size: 1.35rem; }
.policy-content p { color: #b8b8c7; }
.policy-content .updated { color: #747486; }
.policy-content a:not(.button) { color: #c4b5fd; text-decoration: underline; }
.policy-content .button { margin-top: 35px; text-decoration: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 540px; max-width: 700px; width: 100%; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .integration-grid { grid-template-columns: 1fr 110px 1fr; }
  .product-layout, .case-layout, .demo-layout, .form-layout, .faq-layout { grid-template-columns: 1fr; }
  .product-layout.reverse .product-copy, .product-layout.reverse .dashboard-shell { order: initial; }
  .product-copy { max-width: 800px; }
  .dashboard-shell { max-width: 850px; width: 100%; margin: 0 auto; transform: none; }
  .product-layout.reverse .dashboard-shell { transform: none; }
  .process-flow { grid-template-columns: repeat(3,1fr); }
  .process-flow li:nth-child(3)::after { display: none; }
  .governance-grid { grid-template-columns: 1fr 1fr; }
  .form-copy, .faq-layout .section-heading { position: static; }
  .form-copy { max-width: 800px; }
  .final-cta-inner { grid-template-columns: 90px 1fr; }
  .final-cta-inner > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --header: 72px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: var(--header) 0 auto; display: grid; gap: 0; padding: 15px; border-bottom: 1px solid var(--line); background: rgba(8,8,13,.98); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav .button { margin-top: 10px; }
  .brand-copy small { display: none; }
  .hero { padding-top: calc(var(--header) + 65px); }
  .hero-layout { gap: 30px; }
  .hero-visual { min-height: 470px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 400px; height: 400px; }
  .product-node { width: 200px; padding: 14px; }
  .node-vanguard { right: 0; }
  .node-aegis { left: 0; }
  .signal-flow { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .signal-flow::-webkit-scrollbar { display: none; }
  .integration-grid { grid-template-columns: 1fr; }
  .integration-core { min-height: 150px; }
  .core-ring { width: 90px; height: 90px; margin: 14px; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-flow li:nth-child(3)::after { display: block; }
  .process-flow li:nth-child(even)::after { display: none; }
  .case-outcomes { grid-template-columns: 1fr 1fr; }
  .governance-panel { padding: 35px; }
  .event-card { grid-template-columns: 1fr; }
  .event-card div { border-right: 0; border-bottom: 1px solid var(--line); }
  .event-card div:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .event-meta { flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 410px; }
  .hero-owl { width: 70%; }
  .orbit-one { width: 270px; height: 270px; }
  .orbit-two { width: 330px; height: 330px; }
  .product-node { width: 172px; }
  .product-node strong { font-size: .8rem; }
  .product-node small { font-size: .58rem; }
  .node-vanguard { top: 4%; }
  .node-aegis { bottom: 4%; }
  .visual-caption { font-size: .55rem; }
  .problem-grid, .case-outcomes, .governance-grid, .form-grid, .radio-group { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .problem-card > span { margin-bottom: 30px; }
  .solution-card { padding: 28px; }
  .dashboard-shell { border-radius: 12px; }
  .dashboard-chrome > span:nth-child(2) { display: none; }
  .dashboard-body { grid-template-columns: 42px 1fr; min-height: 460px; }
  .dash-sidebar { gap: 20px; }
  .dash-sidebar img { width: 26px; height: 26px; }
  .dash-sidebar i { width: 15px; height: 15px; }
  .dash-content { padding: 14px 10px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row > div { min-height: 58px; }
  .metric-row strong { margin-top: 7px; }
  .chart-grid { grid-template-columns: 1fr; }
  .chart-grid .chart-card:nth-child(2) { display: none; }
  .kanban { grid-template-columns: 1fr 1fr; }
  .kanban > div:nth-child(3) { display: none; }
  .table-row small { display: none; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow li::after { display: none!important; }
  .process-flow li > span { margin-bottom: 20px; }
  .governance-panel { padding: 27px 22px; }
  .qr-card { padding: 28px 20px; }
  .lead-form { padding: 27px 20px; }
  .field-full { grid-column: auto; }
  .char-count { bottom: -16px; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-inner img { margin: 0 auto; }
  .final-cta-inner > .button { grid-column: auto; justify-self: stretch; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .utility-card { padding: 38px 24px; }
}

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