:root {
  --bg: #090b10;
  --bg-soft: #0e1118;
  --panel: rgba(18, 22, 31, 0.78);
  --panel-solid: #12161f;
  --panel-2: #171c27;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f7f8fb;
  --muted: #a2a9b8;
  --dim: #707888;
  --green: #8cffb0;
  --green-strong: #52ee85;
  --purple: #b59cff;
  --orange: #ffb86b;
  --cyan: #78e8ff;
  --blue: #7aa7ff;
  --pink: #ff95d1;
  --red: #ff7c8d;
  --radius: 24px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 40px));
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(82, 238, 133, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--green); color: #07100a; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 118px 0; }
.section-kicker,
.mock-kicker,
.cap-meta {
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.04em; }
h2 { font-size: clamp(38px, 5vw, 66px); line-height: 1.04; margin-bottom: 22px; }
h3 { font-size: 24px; line-height: 1.2; }
p { color: var(--muted); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.ambient { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.17; }
.ambient-one { width: 440px; height: 440px; background: var(--green); top: 10%; right: -280px; }
.ambient-two { width: 380px; height: 380px; background: var(--purple); top: 52%; left: -260px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.scrolled {
  background: rgba(9, 11, 16, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(20px);
}
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 18px; font-weight: 800; text-decoration: none; letter-spacing: -0.03em; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(140, 255, 176, 0.35); border-radius: 9px; background: rgba(140, 255, 176, 0.06); color: var(--green); }
.brand-mark svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.brand-accent { color: var(--green); }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a, .text-link { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; transition: color 160ms ease; }
.desktop-nav a:hover, .text-link:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: var(--text); padding: 0; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform 180ms ease; }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: currentColor; }
.button-primary { background: var(--green); color: #08110b; box-shadow: 0 14px 34px rgba(82, 238, 133, 0.16); }
.button-primary:hover { background: #a7ffc1; box-shadow: 0 18px 45px rgba(82, 238, 133, 0.23); }
.button-small { min-height: 40px; padding-inline: 16px; border-radius: 10px; }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: var(--text); }
.button-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.055); }
.button-light { background: var(--text); color: #0a0d11; }
.button-transparent { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.055); }

.hero { min-height: 860px; padding-top: 170px; padding-bottom: 100px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 62px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 25px; color: #c8cfda; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(140,255,176,.5); animation: pulse 2.1s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(140,255,176,0); } 100% { box-shadow: 0 0 0 0 rgba(140,255,176,0); } }
.hero h1 { max-width: 650px; margin-bottom: 27px; font-size: clamp(56px, 7.4vw, 96px); line-height: 0.96; font-weight: 700; }
.gradient-text { color: var(--green); background: linear-gradient(100deg, var(--green), #d4ff90 50%, var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lede { max-width: 640px; margin-bottom: 34px; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-size: 12px; }
.hero-proof span { color: var(--dim); font-size: 11px; }

.hero-visual { position: relative; min-width: 0; }
.visual-glow { position: absolute; inset: 14% 8% 12%; background: radial-gradient(circle, rgba(82,238,133,.24), transparent 60%); filter: blur(60px); }
.window-card { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 19px; background: #0d1118; box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05); transform: perspective(1200px) rotateY(-3.2deg) rotateX(1.2deg); transform-origin: center; }
.window-topbar { height: 45px; padding: 0 13px; border-bottom: 1px solid var(--line); background: #111620; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-family: var(--mono); font-size: 9px; color: var(--dim); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #323a49; }
.window-title { text-align: center; }
.status-chip { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.status-chip span { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.window-body { display: grid; grid-template-columns: 48px 1fr; min-height: 484px; }
.mock-sidebar { padding: 13px 0; border-right: 1px solid var(--line); background: #0b0e14; display: flex; flex-direction: column; align-items: center; gap: 17px; }
.mini-logo { width: 25px; height: 25px; border-radius: 7px; display: grid; place-items: center; background: var(--green); color: #061008; font-weight: 800; font-size: 11px; }
.side-icon { width: 18px; height: 18px; border-radius: 5px; border: 1px solid #303746; background: #171c25; }
.side-icon.active { background: rgba(140,255,176,.14); border-color: rgba(140,255,176,.4); box-shadow: inset 3px 0 var(--green); }
.side-spacer { flex: 1; }
.side-icon.round { border-radius: 50%; }
.mock-main { min-width: 0; padding: 23px; }
.campaign-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.campaign-head h2 { margin: 2px 0 0; font-size: 25px; }
.mock-kicker { font-size: 7px; }
.campaign-score { text-align: right; display: grid; }
.campaign-score span { color: var(--dim); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.campaign-score strong { color: var(--green); font-family: var(--mono); font-size: 22px; }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--line); }
.metric-strip div { padding: 11px; background: #111620; display: grid; gap: 2px; }
.metric-strip span { color: var(--dim); font-size: 7px; text-transform: uppercase; letter-spacing: .07em; }
.metric-strip strong { font-family: var(--mono); font-size: 10px; }
.success-text { color: var(--green) !important; }
.mock-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; }
.panel { min-width: 0; min-height: 177px; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: #10151d; }
.panel-head { height: 37px; padding: 0 12px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 8px; }
.live-badge { color: var(--green); font-family: var(--mono); font-size: 7px; }
.agent-log { padding: 10px 12px; display: grid; gap: 9px; }
.log-row { display: grid; grid-template-columns: 21px 1fr; gap: 8px; align-items: start; opacity: .54; }
.log-row.active { opacity: 1; }
.log-time { width: 19px; height: 19px; border-radius: 6px; background: #1a202b; display: grid; place-items: center; color: var(--dim); font-family: var(--mono); font-size: 7px; }
.log-row.active .log-time { background: rgba(140,255,176,.12); color: var(--green); }
.log-row p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.55; }
.log-row p b { color: var(--text); }
.chart-wrap { position: relative; height: 137px; padding: 14px 12px 0; }
.chart-wrap svg { width: 100%; height: 105px; overflow: visible; }
.grid-line { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.area-line { fill: url(#chartFill); }
.plot-line { fill: none; stroke: var(--green); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 4px rgba(140,255,176,.3)); }
.plot-dot { fill: var(--green); stroke: #0f151d; stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; color: var(--dim); font-size: 7px; }
.trial-table { margin-top: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; }
.trial-row { display: grid; grid-template-columns: .6fr 1.35fr 1fr .7fr; align-items: center; min-height: 32px; padding: 0 11px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.trial-row:last-child { border-bottom: 0; }
.trial-row.header { color: var(--dim); text-transform: uppercase; font-size: 6.5px; letter-spacing: .08em; background: #111620; }
.trial-row.highlighted { background: rgba(140,255,176,.035); color: #dce4dd; }
.pill { width: fit-content; padding: 2px 7px; border-radius: 20px; font-family: var(--mono); font-size: 6px; text-transform: uppercase; }
.pill.good { color: var(--green); background: rgba(140,255,176,.1); }
.pill.neutral { color: var(--cyan); background: rgba(120,232,255,.09); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 174px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(18,22,31,.86); backdrop-filter: blur(16px); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 10px; }
.floating-card small { color: var(--dim); font-size: 8px; }
.floating-left { left: -34px; bottom: 46px; }
.floating-right { right: -28px; top: 78px; }
.float-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: rgba(140,255,176,.11); color: var(--green); }
.float-icon.sparkle { background: rgba(181,156,255,.11); color: var(--purple); }

.integration-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.integration-band .shell { min-height: 128px; display: grid; align-items: center; grid-template-columns: auto 1fr; gap: 50px; }
.integration-band p { margin: 0; color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.logo-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 22px; color: #a9b1c0; font-weight: 700; font-size: 13px; opacity: .72; }

.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.split-heading h2 { max-width: 820px; margin-top: 13px; margin-bottom: 0; font-size: clamp(38px, 5.3vw, 68px); }
.split-heading h2 em { color: var(--green); font-style: normal; }
.split-heading > p { margin: 0; font-size: 16px; line-height: 1.8; }
.comparison-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; }
.comparison-card { min-height: 465px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.comparison-card.muted { background: linear-gradient(145deg, #11151d, #0d1016); }
.comparison-card.bright { background: radial-gradient(circle at 100% 0%, rgba(140,255,176,.11), transparent 38%), linear-gradient(145deg, #151b23, #0f131a); border-color: rgba(140,255,176,.17); }
.card-label { margin-bottom: 44px; color: var(--dim); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.comparison-card h3 { max-width: 510px; margin-bottom: 30px; font-size: 30px; }
.tracker-screen { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #0b0e13; }
.tracker-row { display: grid; grid-template-columns: 1fr 1.4fr; padding: 15px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; }
.tracker-row:last-child { border-bottom: 0; }
.tracker-row span { color: var(--dim); }
.tracker-row b { color: #bfc6d2; font-weight: 400; }
.error-text { color: var(--red) !important; }
.forensic-list { display: grid; gap: 16px; }
.forensic-list > div { display: grid; grid-template-columns: 41px 1fr; gap: 15px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.022); }
.forensic-list .number { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; background: rgba(140,255,176,.1); color: var(--green); font-family: var(--mono); font-size: 10px; }
.forensic-list p { margin: 0; font-size: 13px; }
.forensic-list b { color: var(--text); }

.workflow-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.014), transparent); }
.center-heading { max-width: 850px; margin-bottom: 62px; text-align: center; }
.center-heading h2 { margin-top: 13px; }
.center-heading p { max-width: 680px; margin: 0 auto; font-size: 17px; }
.workflow-layout { display: grid; grid-template-columns: 330px 1fr; gap: 18px; }
.workflow-tabs { display: grid; gap: 8px; }
.workflow-tab { width: 100%; padding: 15px 17px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; border: 1px solid transparent; border-radius: 14px; background: transparent; color: var(--muted); text-align: left; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, color 160ms ease; }
.workflow-tab > span { font-family: var(--mono); font-size: 10px; color: var(--dim); }
.workflow-tab div { display: grid; }
.workflow-tab b { color: #c6ccd7; font-size: 13px; }
.workflow-tab small { color: var(--dim); font-size: 11px; }
.workflow-tab.active { border-color: rgba(140,255,176,.18); background: rgba(140,255,176,.055); color: var(--text); }
.workflow-tab.active > span, .workflow-tab.active b { color: var(--green); }
.workflow-stage { overflow: hidden; min-height: 480px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: radial-gradient(circle at 100% 0%, rgba(140,255,176,.09), transparent 36%), #10141b; }
.stage-topbar { height: 52px; padding: 0 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: var(--dim); font-family: var(--mono); font-size: 9px; }
.stage-topbar div { display: flex; align-items: center; gap: 8px; }
.stage-light { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.stage-content { min-height: 428px; padding: 48px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 45px; align-items: center; }
.stage-number { color: rgba(140,255,176,.18); font-size: 78px; font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.stage-copy h3 { max-width: 420px; margin: -8px 0 18px; font-size: 35px; }
.stage-copy p { font-size: 14px; }
.stage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.stage-tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-family: var(--mono); font-size: 8px; }
.stage-code { overflow: hidden; padding: 18px 0; border: 1px solid var(--line); border-radius: 14px; background: #090c11; font-family: var(--mono); font-size: 11px; }
.code-line { display: grid; grid-template-columns: 34px 1fr; min-height: 31px; align-items: center; }
.code-line:hover { background: rgba(255,255,255,.025); }
.line-no { color: #3e4653; text-align: center; user-select: none; }
.code-line code { color: #c4ccd9; }
.code-line i { color: var(--cyan); font-style: normal; }
.code-line em { color: var(--orange); font-style: normal; }
.code-line strong { color: var(--purple); font-weight: 400; }

.capabilities-section { padding-bottom: 80px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability-card { position: relative; min-height: 330px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(24,29,40,.72), rgba(13,16,23,.88)); transition: transform 200ms ease, border-color 200ms ease, background 200ms ease; }
.capability-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.17); background: linear-gradient(145deg, rgba(28,34,46,.88), rgba(13,16,23,.95)); }
.capability-card.feature-card { grid-column: span 2; }
.cap-icon { width: 42px; height: 42px; margin-bottom: 55px; display: grid; place-items: center; border-radius: 12px; font-size: 20px; }
.cap-green { color: var(--green); background: rgba(140,255,176,.1); }
.cap-purple { color: var(--purple); background: rgba(181,156,255,.1); }
.cap-orange { color: var(--orange); background: rgba(255,184,107,.1); }
.cap-blue { color: var(--blue); background: rgba(122,167,255,.1); }
.cap-cyan { color: var(--cyan); background: rgba(120,232,255,.1); }
.cap-pink { color: var(--pink); background: rgba(255,149,209,.1); }
.cap-meta { margin-bottom: 12px; color: var(--dim); }
.capability-card h3 { max-width: 440px; margin-bottom: 14px; }
.capability-card p { margin-bottom: 0; font-size: 13px; }
.mini-forensic { position: absolute; top: 27px; right: 27px; width: 285px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #0c0f15; }
.mini-forensic div { padding: 11px 13px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 8px; }
.mini-forensic div:last-child { border-bottom: 0; }
.mini-forensic span { color: var(--dim); }
.mini-forensic b { color: #cfd5df; font-weight: 400; text-align: right; }

.campaign-card { padding: 65px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; overflow: hidden; border: 1px solid rgba(140,255,176,.16); border-radius: 30px; background: radial-gradient(circle at 80% 15%, rgba(140,255,176,.12), transparent 31%), linear-gradient(145deg, #151b22, #0e1218); }
.campaign-copy h2 { margin-top: 12px; font-size: clamp(40px, 4.5vw, 60px); }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 27px; color: #c7ced9; font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.contract-editor { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 17px; background: #090c11; box-shadow: 0 22px 60px rgba(0,0,0,.32); }
.editor-bar { height: 43px; padding: 0 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: var(--dim); font-family: var(--mono); font-size: 9px; }
.editor-bar span:last-child { color: var(--green); }
.contract-editor pre { margin: 0; padding: 25px; overflow: auto; font-family: var(--mono); font-size: 11px; line-height: 1.8; color: #b9c0cb; }
.yaml-key { color: var(--cyan); }
.yaml-value { color: var(--orange); }

.architecture-section { background: linear-gradient(180deg, rgba(255,255,255,.012), transparent); }
.architecture-board { padding: 50px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 50% 50%, rgba(140,255,176,.05), transparent 35%), #0d1016; }
.architecture-row { display: grid; gap: 12px; }
.sources-row { grid-template-columns: repeat(3, 1fr); }
.services-row { grid-template-columns: repeat(4, 1fr); }
.arch-node { min-height: 82px; padding: 16px; display: grid; align-content: center; border: 1px solid var(--line); border-radius: 14px; background: #131821; text-align: center; }
.arch-node span { font-size: 13px; font-weight: 700; }
.arch-node small { color: var(--dim); font-size: 10px; }
.arch-node.accent { border-color: rgba(181,156,255,.15); background: rgba(181,156,255,.045); }
.flow-arrow, .bidirectional-arrow { height: 72px; display: grid; place-items: center; position: relative; color: var(--dim); font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.flow-arrow::before, .bidirectional-arrow::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 50%; width: 1px; background: linear-gradient(var(--line), var(--green), var(--line)); }
.flow-arrow span, .bidirectional-arrow span { position: relative; z-index: 1; padding: 5px 9px; background: #0d1016; }
.bidirectional-arrow::after { content: "↕"; position: absolute; color: var(--green); font-size: 16px; }
.architecture-core { padding: 28px; border: 1px solid rgba(140,255,176,.22); border-radius: 20px; background: linear-gradient(145deg, rgba(140,255,176,.075), rgba(255,255,255,.018)); box-shadow: inset 0 1px rgba(255,255,255,.04); }
.core-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.brand-mark.mini { font-family: var(--sans); font-weight: 800; }
.core-head div { display: grid; }
.core-head b { font-size: 17px; }
.core-head small { color: var(--dim); font-size: 10px; }
.core-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.core-grid div { min-height: 88px; padding: 14px; display: grid; align-content: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(9,12,17,.65); }
.core-grid b { color: #dce2eb; font-size: 12px; }
.core-grid small { color: var(--dim); font-size: 9px; }

.code-section { padding-top: 80px; }
.code-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.code-copy h2 { margin-top: 13px; font-size: clamp(40px, 4.8vw, 62px); }
.install-note { margin-top: 28px; display: grid; gap: 2px; }
.install-note span { color: var(--green); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.install-note small { color: var(--dim); }
.code-window { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 20px; background: #090c11; box-shadow: var(--shadow); }
.code-tabs { height: 51px; padding: 0 12px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 4px; background: #10141b; }
.code-tab, .copy-button { border: 0; background: transparent; color: var(--dim); cursor: pointer; }
.code-tab { height: 31px; padding: 0 12px; border-radius: 8px; font-size: 10px; }
.code-tab.active { background: rgba(255,255,255,.055); color: var(--text); }
.copy-button { margin-left: auto; padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--mono); font-size: 9px; }
.code-block { display: none; min-height: 390px; margin: 0; padding: 32px; overflow: auto; font-family: var(--mono); font-size: 12px; line-height: 1.9; color: #c5ccd7; }
.code-block.active { display: block; }
.token-key { color: var(--purple); }
.token-string { color: var(--orange); }
.token-comment { color: #586272; }

.safety-section { padding-bottom: 90px; }
.safety-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.safety-copy { position: sticky; top: 130px; }
.safety-copy h2 { margin-top: 13px; font-size: clamp(42px, 5vw, 65px); }
.inline-arrow { display: inline-flex; gap: 10px; margin-top: 16px; color: var(--text); font-weight: 700; font-size: 13px; text-decoration: none; }
.inline-arrow span { color: var(--green); transition: transform 160ms ease; }
.inline-arrow:hover span { transform: translateX(4px); }
.guardrail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.guardrail-grid > div { min-height: 215px; padding: 25px; display: grid; align-content: end; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, #151a23, #10131a); }
.guardrail-grid span { align-self: start; color: var(--green); font-family: var(--mono); font-size: 10px; }
.guardrail-grid b { margin-bottom: 7px; font-size: 18px; }
.guardrail-grid small { color: var(--muted); line-height: 1.55; }

.build-section { padding-top: 85px; background: linear-gradient(180deg, transparent, rgba(140,255,176,.025)); }
.build-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); }
.build-stats div { min-height: 150px; padding: 28px; display: grid; align-content: center; background: #11151c; text-align: center; }
.build-stats strong { color: var(--green); font-size: 28px; letter-spacing: -.04em; }
.build-stats span { color: var(--dim); font-size: 11px; }

.cta-section { padding-top: 80px; }
.cta-card { position: relative; min-height: 500px; overflow: hidden; display: grid; place-items: center; border: 1px solid rgba(140,255,176,.26); border-radius: 32px; background: radial-gradient(circle at 50% 40%, rgba(140,255,176,.16), transparent 36%), linear-gradient(145deg, #16221a, #0d1111); text-align: center; }
.cta-content { position: relative; z-index: 3; max-width: 820px; padding: 60px 30px; }
.cta-content h2 { font-size: clamp(44px, 6vw, 74px); }
.cta-content p { max-width: 630px; margin: 0 auto 30px; font-size: 17px; }
.centered { justify-content: center; }
.cta-orbit { position: absolute; border: 1px solid rgba(140,255,176,.13); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; animation: orbit 20s linear infinite; }
.orbit-two { width: 920px; height: 360px; transform: rotate(-18deg); animation: orbitAlt 24s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitAlt { to { transform: rotate(342deg); } }
.edit-note { display: block; margin-top: 20px; color: rgba(255,255,255,.4); font-size: 10px; }
.edit-note code { font-family: var(--mono); }

.site-footer { padding: 45px 0 25px; border-top: 1px solid var(--line); background: #080a0e; }
.footer-grid { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 44px; }
.footer-brand { margin-bottom: 13px; }
.footer-grid p { margin: 0; font-size: 12px; }
.footer-links { display: flex; gap: 80px; }
.footer-links > div { display: grid; align-content: start; gap: 8px; }
.footer-links b { margin-bottom: 5px; font-size: 11px; }
.footer-links a { color: var(--dim); font-size: 11px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 21px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #58606e; font-family: var(--mono); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 860px; }
  .window-card { transform: none; }
  .floating-left { left: 20px; }
  .floating-right { right: 20px; }
  .integration-band .shell { grid-template-columns: 1fr; gap: 20px; padding-block: 30px; }
  .logo-row { justify-content: flex-start; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-heading > p { max-width: 720px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign-card { gap: 45px; padding: 50px; }
  .services-row, .core-grid { grid-template-columns: repeat(2, 1fr); }
  .code-layout { gap: 45px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 680px); }
  .section { padding: 85px 0; }
  .desktop-only { display: none !important; }
  .menu-toggle { display: block; }
  .site-header.menu-open .menu-toggle span:first-child { transform: translateY(3.3px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3.3px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 78px 0 auto; padding: 25px var(--shell); border-bottom: 1px solid var(--line); background: rgba(9,11,16,.98); backdrop-filter: blur(20px); display: grid; gap: 5px; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease; }
  .site-header.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; text-decoration: none; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero h1 { font-size: clamp(52px, 13vw, 76px); }
  .hero-lede { font-size: 16px; }
  .hero-proof { gap: 18px 30px; }
  .floating-card { display: none; }
  .mock-grid { grid-template-columns: 1fr; }
  .chart-panel { display: none; }
  .window-body { min-height: 520px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-card { min-height: auto; }
  .workflow-layout { grid-template-columns: 1fr; }
  .workflow-tabs { grid-template-columns: repeat(5, minmax(105px, 1fr)); overflow-x: auto; padding-bottom: 4px; }
  .workflow-tab { grid-template-columns: 1fr; min-width: 120px; }
  .workflow-tab small { display: none; }
  .stage-content { grid-template-columns: 1fr; padding: 36px 28px; }
  .stage-code { min-height: 190px; }
  .capability-card.feature-card { grid-column: span 2; }
  .campaign-card, .code-layout, .safety-grid { grid-template-columns: 1fr; }
  .campaign-card { padding: 38px 26px; }
  .architecture-board { padding: 25px; }
  .sources-row { grid-template-columns: 1fr; }
  .services-row, .core-grid { grid-template-columns: 1fr 1fr; }
  .safety-copy { position: static; }
  .build-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav-shell { height: 68px; }
  .mobile-menu { inset-block-start: 68px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: 51px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .window-body { grid-template-columns: 35px 1fr; min-height: 470px; }
  .mock-sidebar { gap: 13px; }
  .mock-main { padding: 14px; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .campaign-head h2 { font-size: 20px; }
  .trial-row { grid-template-columns: .55fr 1.5fr .7fr; }
  .trial-row span:nth-child(3) { display: none; }
  .integration-band p { line-height: 1.5; }
  .comparison-card { padding: 23px; }
  .comparison-card h3 { font-size: 25px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card.feature-card { grid-column: auto; padding-top: 27px; }
  .mini-forensic { position: static; width: 100%; margin-top: 25px; }
  .cap-icon { margin-bottom: 34px; }
  .workflow-stage { min-height: 530px; }
  .stage-copy h3 { font-size: 28px; }
  .stage-code { font-size: 9px; }
  .architecture-board { padding: 18px; }
  .services-row, .core-grid { grid-template-columns: 1fr; }
  .code-block { padding: 22px 18px; font-size: 10px; }
  .guardrail-grid { grid-template-columns: 1fr; }
  .build-stats { grid-template-columns: 1fr; }
  .cta-card { min-height: 560px; }
  .button-transparent { background: rgba(0,0,0,.14); }
  .footer-grid { display: grid; }
  .footer-links { gap: 48px; }
  .footer-bottom { display: grid; gap: 8px; }
}

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