:root {
  --bg: #05070a;
  --paper: #f3efe4;
  --muted: rgba(243, 239, 228, 0.68);
  --line: rgba(243, 239, 228, 0.16);
  --accent: #65f4c7;
  --accent-2: #6ea8ff;
  --ink: #101317;
  --header-height: 72px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.08;
  background-image: radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px), radial-gradient(circle at 70% 60%, #fff 0 1px, transparent 1px);
  background-size: 34px 34px, 47px 47px;
  mix-blend-mode: screen;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(243, 239, 228, 0.1);
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(18px);
}
.brand, nav, .hero-actions, footer { display: flex; align-items: center; }
.brand { gap: 12px; font-weight: 800; letter-spacing: -0.03em; font-size: 18px; }
.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 24px rgba(101, 244, 199, 0.55);
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  top: 5px;
  left: 5px;
}
nav { gap: 26px; font-size: 13px; color: var(--muted); }
nav a:hover { color: var(--paper); }
.header-cta {
  padding: 10px 14px;
  border: 1px solid rgba(101, 244, 199, 0.4);
  border-radius: 999px;
  color: var(--accent);
  font: 600 12px/1 IBM Plex Mono, monospace;
}
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: calc(var(--header-height) + 46px) clamp(20px, 6vw, 88px) 58px;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 32%, rgba(110, 168, 255, 0.23), transparent 33%),
    radial-gradient(circle at 31% 67%, rgba(101, 244, 199, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(243, 239, 228, 0.04), transparent 45%);
}
.eyebrow, .section-label {
  color: var(--accent);
  font: 600 12px/1.4 IBM Plex Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.08em;
}
.hero-subtitle {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}
.hero-actions { gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--paper); color: var(--ink); }
.button.secondary { border: 1px solid var(--line); color: var(--paper); }
.context-map {
  position: relative;
  min-height: min(72vh, 680px);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(243, 239, 228, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 228, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  overflow: hidden;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(101, 244, 199, 0.24);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.orbit-one { width: 72%; height: 72%; left: 14%; top: 14%; }
.orbit-two { width: 48%; height: 48%; left: 28%; top: 25%; animation-direction: reverse; animation-duration: 18s; }
.graph-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.graph-lines path {
  fill: none;
  stroke: rgba(101, 244, 199, 0.55);
  stroke-width: 0.22;
  stroke-dasharray: 3 2;
  animation: dash 5s linear infinite;
}
.node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  max-width: 156px;
  padding: 10px 12px;
  border: 1px solid rgba(243, 239, 228, 0.18);
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  color: var(--paper);
  font: 500 12px/1.2 IBM Plex Mono, monospace;
  box-shadow: 0 0 40px rgba(101, 244, 199, 0.09);
  animation: float 6s ease-in-out infinite;
}
.node-large { padding: 16px 18px; font-size: 14px; color: var(--bg); background: var(--accent); border-color: var(--accent); }
.node-agent { animation-delay: -1s; }
.node-policy { animation-delay: -2s; }
.node-doc { animation-delay: -3s; }
.node-customer { animation-delay: -4s; }
.map-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font: 500 12px/1.2 IBM Plex Mono, monospace;
}
.map-caption strong { color: var(--paper); font-size: 18px; }
.statement {
  padding: clamp(92px, 12vw, 160px) clamp(20px, 10vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement p { max-width: 720px; color: var(--muted); font-size: clamp(18px, 2vw, 24px); line-height: 1.45; }
.statement h2 { max-width: 1060px; margin-bottom: 0; font-size: clamp(40px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.06em; }
.mechanism { padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 88px); }
.section-label { margin-bottom: 34px; }
.mechanism-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.mechanism article {
  padding: 34px 32px 10px 0;
  border-right: 1px solid var(--line);
  min-height: 310px;
}
.mechanism article:last-child { border-right: 0; }
.mechanism span { display: block; margin-bottom: 54px; color: var(--accent-2); font: 600 13px/1 IBM Plex Mono, monospace; }
.mechanism h3 { max-width: 320px; font-size: clamp(24px, 3vw, 38px); line-height: 1; letter-spacing: -0.05em; }
.mechanism p { max-width: 320px; color: var(--muted); line-height: 1.55; }
.workflow {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 88px);
  background: var(--paper);
  color: var(--ink);
}
.workflow .eyebrow { color: #006b54; }
.workflow h2, .access h2 { font-size: clamp(38px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.06em; }
.workflow-copy p:not(.eyebrow) { color: rgba(16, 19, 23, 0.66); line-height: 1.6; font-size: 18px; }
.timeline { border-top: 1px solid rgba(16, 19, 23, 0.18); }
.timeline-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16, 19, 23, 0.18);
}
.timeline-row span { font: 600 12px/1 IBM Plex Mono, monospace; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(16, 19, 23, 0.54); }
.timeline-row p { margin: 0; font-size: clamp(20px, 2vw, 30px); line-height: 1.15; letter-spacing: -0.03em; }
.timeline-row.active p { color: #006b54; }
.access {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 88px);
}
.access-visual {
  border: 1px solid rgba(101, 244, 199, 0.28);
  background: rgba(101, 244, 199, 0.04);
  min-height: 360px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.24);
}
.terminal-bar { height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(243, 239, 228, 0.35); }
pre { margin: 0; padding: clamp(20px, 4vw, 40px); white-space: pre-wrap; color: var(--accent); font: 500 clamp(13px, 1.45vw, 18px)/1.7 IBM Plex Mono, monospace; }
.access-copy ul { padding: 0; margin: 28px 0 34px; list-style: none; }
.access-copy li { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
footer {
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
footer span:first-child { color: var(--paper); font-weight: 800; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -30; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@media (max-width: 980px) {
  nav { display: none; }
  .hero, .workflow, .access { grid-template-columns: 1fr; }
  .context-map { min-height: 520px; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .mechanism article { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; padding-right: 0; }
  .mechanism span { margin-bottom: 28px; }
}
@media (max-width: 640px) {
  :root { --header-height: 64px; }
  .site-header { padding-inline: 16px; }
  .header-cta { display: none; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .hero { padding-inline: 16px; padding-bottom: 40px; }
  .context-map { min-height: 410px; }
  .node { font-size: 10px; max-width: 124px; }
  .statement, .mechanism, .workflow, .access { padding-inline: 16px; }
  .timeline-row { grid-template-columns: 1fr; gap: 10px; }
  footer { flex-direction: column; align-items: flex-start; }
}
