:root {
  --bg: #08070c;
  --bg-soft: #0f0d16;
  --panel: rgba(18, 15, 27, 0.82);
  --panel-solid: #12101a;
  --text: #f8f7fb;
  --muted: #aaa5b8;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --lime: #c8ff3d;
  --violet: #8e5cff;
  --violet-bright: #a985ff;
  --pink: #ff4fc8;
  --display: "Syne", "Arial Black", sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --radius: 22px;
  --shell: min(1240px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) var(--bg);
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 7%, rgba(142, 92, 255, 0.15), transparent 27rem),
    radial-gradient(circle at 10% 55%, rgba(200, 255, 61, 0.06), transparent 30rem),
    var(--bg);
  font-family: var(--body);
  line-height: 1.55;
}

body::selection { color: var(--bg); background: var(--lime); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  color: var(--bg);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

.ambient, .grid-field, .noise {
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.ambient {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.17;
}

.ambient-one {
  top: -16rem;
  right: -10rem;
  background: var(--violet);
  animation: ambient-drift 13s ease-in-out infinite alternate;
}

.ambient-two {
  top: 48rem;
  left: -22rem;
  background: var(--lime);
  animation: ambient-drift 17s ease-in-out infinite alternate-reverse;
}

.grid-field {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.noise {
  inset: 0;
  opacity: 0.18;
  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='.34'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  width: var(--shell);
  min-height: 104px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--bg);
  background: var(--lime);
  box-shadow: 0 0 30px rgba(200, 255, 61, 0.16);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-copy { display: grid; gap: 0.05rem; }
.brand-copy strong { font-family: var(--display); font-size: 0.92rem; letter-spacing: 0.12em; }

.brand-copy small, .section-kicker, .eyebrow, .stat-topline,
.ledger-card span, .glaze-card span, .closing > span, .frame-label,
.frame-readout, .live-pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-copy small { color: var(--muted); font-size: 0.58rem; }

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: #d8d4df;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

nav a { position: relative; padding: 0.5rem 0; }
nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--lime);
  content: "";
  transition: transform 260ms var(--ease);
}

nav a:hover::after, nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.live-pill {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #d7d3df;
  background: rgba(255, 255, 255, 0.035);
}

.live-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero {
  display: grid;
  width: var(--shell);
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 8rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  width: min(100%, 680px);
  margin: 0 0 1.7rem;
  justify-content: space-between;
  gap: 1rem;
  color: var(--lime);
}
.eyebrow-code { color: var(--muted); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, blockquote { font-family: var(--display); }
h1 { margin-bottom: 1.8rem; line-height: 0.86; }

.title-quiet {
  display: block;
  margin-bottom: 0.8rem;
  color: #d5d1dc;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.2;
}

.title-right { margin: 1rem 0 0; padding-right: 0.3rem; text-align: right; }
.title-loud {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(4.2rem, 9vw, 8.3rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  text-shadow: 0 0 40px rgba(142, 92, 255, 0.2);
}

.title-loud::before, .title-loud::after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  content: attr(data-text);
  pointer-events: none;
  opacity: 0;
}
.title-loud::before { color: var(--lime); transform: translateX(2px); }
.title-loud::after { color: var(--pink); transform: translateX(-2px); }
.title-loud:hover::before, .title-loud:hover::after { animation: glitch 650ms steps(2, end) both; }

.hero-lede {
  max-width: 640px;
  margin-bottom: 2rem;
  color: #bab5c5;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}
.hero-lede strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; margin-bottom: 2.6rem; flex-wrap: wrap; gap: 0.9rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), color 220ms ease,
    background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--bg); background: var(--lime); box-shadow: 0 12px 35px rgba(200, 255, 61, 0.12); }
.button-primary:hover { box-shadow: 0 16px 45px rgba(200, 255, 61, 0.25); }
.button-ghost { color: var(--text); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.025); }
.button-ghost:hover { border-color: var(--violet-bright); background: rgba(142, 92, 255, 0.1); }

.hero-proof {
  display: flex;
  width: min(100%, 600px);
  padding-top: 1.5rem;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
}
.proof-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(200, 255, 61, 0.1);
  font-family: var(--display);
  font-weight: 800;
}
.hero-proof > div:nth-child(2) { display: grid; margin-right: auto; }
.hero-proof span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.12em; }
.hero-proof strong { font-size: 0.9rem; font-weight: 500; }
.proof-bars { display: flex; gap: 4px; }
.proof-bars i {
  width: 5px;
  height: 24px;
  transform: skewX(-14deg);
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 255, 61, 0.4);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.visual-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  aspect-ratio: 0.82;
  padding: 1.35rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(142, 92, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42), inset 0 0 70px rgba(142, 92, 255, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 120ms ease-out;
}

.visual-frame::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 5px, rgba(255, 255, 255, 0.02) 6px);
  content: "";
  pointer-events: none;
}

.frame-corners::before, .frame-corners::after {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-color: var(--lime);
  border-style: solid;
  content: "";
}

.frame-corners::before {
  top: 14px;
  left: 14px;
  border-width: 2px 0 0 2px;
  border-radius: 10px 0 0;
}

.frame-corners::after {
  right: 14px;
  bottom: 14px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 10px;
}

.frame-label {
  position: absolute;
  z-index: 3;
  top: 1.35rem;
  right: 1.35rem;
  left: 1.35rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.orbit-system {
  position: relative;
  display: grid;
  width: min(78%, 360px);
  aspect-ratio: 1;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(200, 255, 61, 0.15);
  border-radius: inherit;
  content: "";
}

.orbit-outer { inset: 0; animation: spin 18s linear infinite; }
.orbit-inner { inset: 16%; animation: spin 11s linear infinite reverse; }

.orbit-node {
  position: absolute;
  display: grid;
  min-width: 38px;
  min-height: 38px;
  padding: 0.4rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--lime);
  background: var(--panel-solid);
  box-shadow: 0 0 24px rgba(200, 255, 61, 0.14);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
}

.node-one { top: 7%; right: 9%; }
.node-two { bottom: 4%; left: 18%; }
.node-three { top: 45%; right: -20px; }

.core-glow {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(55px);
  opacity: 0.38;
  animation: core-breathe 2.8s ease-in-out infinite;
}

.core-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 43%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 7, 12, 0.78);
  box-shadow: inset 0 0 30px rgba(142, 92, 255, 0.25), 0 0 60px rgba(142, 92, 255, 0.18);
}

.core-mark span {
  margin-bottom: -1.4rem;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.core-mark small {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}

.scan-line {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 18px var(--lime);
  animation: scan 3.6s linear infinite;
}

.frame-readout {
  position: absolute;
  z-index: 3;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--muted);
}

.frame-readout strong { color: var(--text); font-family: var(--display); font-size: 0.85rem; }

.float-tag {
  position: absolute;
  z-index: 6;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: rgba(8, 7, 12, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.tag-one { top: 18%; left: -8%; color: var(--lime); animation: tag-float 4s ease-in-out infinite; }
.tag-two { right: -9%; bottom: 24%; animation: tag-float 5s ease-in-out 700ms infinite; }
.tag-three { bottom: 7%; left: -4%; color: var(--violet-bright); animation: tag-float 4.5s ease-in-out 1.1s infinite; }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--lime);
  color: var(--bg);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.85rem 0;
  align-items: center;
  gap: 1.4rem;
  animation: marquee 22s linear infinite;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.ticker-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--bg); }

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading, .ledger-intro {
  display: grid;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  column-gap: clamp(2rem, 6vw, 7rem);
}

.section-kicker { grid-column: 1 / -1; margin-bottom: 1rem; color: var(--lime); }

.section-heading h2, .ledger-intro h2, .aura-copy h2, .closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p:last-child, .ledger-intro > p:last-child {
  margin: 0;
  align-self: end;
  color: var(--muted);
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 1rem;
}

.stat-card, .ledger-card, .glaze-card, .aura-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.stat-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 330px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 150ms ease-out, border-color 240ms ease, background 240ms ease;
}

.stat-card:hover { border-color: rgba(200, 255, 61, 0.36); background: rgba(23, 20, 32, 0.9); }
.stat-feature {
  background: radial-gradient(circle at 78% 22%, rgba(200, 255, 61, 0.13), transparent 13rem), var(--panel);
}

.stat-topline { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); }
.status-dot { color: var(--lime); }
.stat-number {
  display: block;
  margin: 1.5rem 0 -0.5rem;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 10rem);
  letter-spacing: -0.09em;
  line-height: 0.9;
  text-shadow: 0 0 45px rgba(200, 255, 61, 0.16);
}

.stat-card h3 { margin-bottom: 0.8rem; font-size: 1.4rem; }
.stat-card p { margin: 0; color: var(--muted); }
.stat-feature p { max-width: 48ch; }
.stat-progress { height: 4px; margin-top: 2rem; overflow: hidden; background: rgba(255, 255, 255, 0.08); }
.stat-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--lime), var(--violet));
}
.stat-feature.is-visible .stat-progress span { transform: scaleX(1); transition: transform 1.4s 250ms var(--ease); }

.stat-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 4.5rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--violet-bright);
  font-size: 1.4rem;
}

.stat-word {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
}

.ledger { border-top: 1px solid var(--line); }
.ledger-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ledger-card {
  position: relative;
  min-height: 230px;
  padding: 1.35rem;
  overflow: hidden;
  background: var(--bg-soft);
  transition: color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.ledger-card::after {
  position: absolute;
  right: -24px;
  bottom: -36px;
  color: rgba(255, 255, 255, 0.035);
  content: "OG";
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 800;
  transition: color 260ms ease, transform 260ms var(--ease);
}

.ledger-card:hover {
  z-index: 2;
  color: var(--bg);
  background: var(--lime);
  transform: translateY(-8px);
}

.ledger-card:hover::after {
  color: rgba(8, 7, 12, 0.09);
  transform: rotate(-8deg) scale(1.08);
}

.ledger-card span { display: block; margin-bottom: 5rem; color: var(--violet-bright); }
.ledger-card:hover span { color: rgba(8, 7, 12, 0.58); }
.ledger-card strong, .ledger-card small { position: relative; z-index: 1; display: block; }
.ledger-card strong { margin-bottom: 0.45rem; font-family: var(--display); font-size: 1.1rem; }
.ledger-card small { color: var(--muted); font-size: 0.8rem; }
.ledger-card:hover small { color: rgba(8, 7, 12, 0.72); }
.ledger-card-final { color: var(--bg); background: var(--violet-bright); }
.ledger-card-final span, .ledger-card-final small { color: rgba(8, 7, 12, 0.7); }

.glaze {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.glaze-quote { position: relative; }
.quote-mark {
  display: block;
  height: 4rem;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.65;
}

blockquote {
  margin: 0 0 1.3rem;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

blockquote em { color: var(--violet-bright); font-style: normal; }
.glaze-quote p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glaze-stack { display: grid; gap: 0.8rem; }
.glaze-card {
  padding: 1.5rem;
  border-radius: 16px;
  transition: transform 260ms var(--ease), border-color 260ms ease;
}
.glaze-card:nth-child(2) { transform: translateX(-2rem); }
.glaze-card:hover { border-color: rgba(142, 92, 255, 0.45); transform: translateX(-0.7rem); }
.glaze-card:nth-child(2):hover { transform: translateX(-2.7rem); }
.glaze-card span { display: block; margin-bottom: 1.6rem; color: var(--lime); }
.glaze-card h3 { margin-bottom: 0.45rem; font-size: 1.3rem; }
.glaze-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.aura { border-top: 1px solid var(--line); }
.aura-panel {
  display: grid;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(370px, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: 30px;
  background: radial-gradient(circle at 90% 20%, rgba(142, 92, 255, 0.16), transparent 27rem), var(--panel);
}

.aura-copy h2 { margin-bottom: 1.3rem; }
.aura-copy > p:not(.section-kicker) { margin-bottom: 2rem; color: var(--muted); }

.scanner {
  position: relative;
  min-height: 390px;
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(4, 4, 8, 0.74);
  box-shadow: inset 0 0 60px rgba(142, 92, 255, 0.06);
}

.scanner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.06) 48%, transparent 60%);
  transform: translateX(-100%);
  content: "";
  pointer-events: none;
}

.scanner.is-scanning::after { animation: scanner-sweep 900ms ease-out 2; }
.scanner-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

#scan-status { color: var(--lime); }
.scanner-value {
  position: relative;
  z-index: 2;
  display: flex;
  margin: 3rem 0 1.4rem;
  align-items: baseline;
  gap: 0.7rem;
}

.scanner-value strong {
  font-family: var(--display);
  font-size: clamp(5.5rem, 12vw, 9rem);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.scanner-value span { color: var(--muted); font-family: var(--mono); font-size: 0.8rem; }
.scanner-meter {
  position: relative;
  z-index: 2;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.scanner-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  box-shadow: 0 0 18px var(--lime);
  transition: width 1.4s var(--ease);
}

#scan-verdict {
  position: relative;
  z-index: 2;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.scanner-grid {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  opacity: 0.24;
}

.scanner-grid i {
  height: 18px;
  background: linear-gradient(to top, var(--violet), transparent);
  transform-origin: bottom;
  animation: equalize 1.1s ease-in-out infinite alternate;
}
.scanner-grid i:nth-child(2n) { animation-delay: 180ms; }
.scanner-grid i:nth-child(3n) { animation-delay: 360ms; }

.closing {
  display: grid;
  min-height: 72vh;
  place-items: center;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing > span { margin-bottom: -3rem; color: var(--lime); }
.closing h2 { max-width: 1000px; margin: 0; font-size: clamp(3.2rem, 8vw, 8rem); }

footer {
  display: grid;
  width: var(--shell);
  min-height: 160px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
}

footer p { margin: 0; }
.legal { justify-self: end; max-width: 300px; text-align: right; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: 80ms; }
.hero .reveal:nth-child(3) { transition-delay: 150ms; }
.hero .reveal:nth-child(4) { transition-delay: 220ms; }
.hero .reveal:nth-child(5) { transition-delay: 290ms; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes core-breathe {
  0%, 100% { transform: scale(0.86); opacity: 0.28; }
  50% { transform: scale(1.1); opacity: 0.46; }
}
@keyframes scan {
  0% { top: 9%; opacity: 0; }
  12%, 88% { opacity: 0.72; }
  100% { top: 91%; opacity: 0; }
}
@keyframes tag-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes ambient-drift { to { transform: translate3d(4rem, 3rem, 0) scale(1.14); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scanner-sweep { to { transform: translateX(100%); } }
@keyframes equalize { from { transform: scaleY(0.18); } to { transform: scaleY(1); } }
@keyframes glitch {
  0% { opacity: 0; clip-path: inset(10% 0 72%); }
  18% { opacity: 0.85; clip-path: inset(65% 0 12%); }
  36% { opacity: 0.55; clip-path: inset(35% 0 42%); }
  55% { opacity: 0.8; clip-path: inset(78% 0 5%); }
  75% { opacity: 0.4; clip-path: inset(15% 0 68%); }
  100% { opacity: 0; clip-path: inset(0); }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 3rem;
  }
  .title-loud { font-size: clamp(4rem, 8.5vw, 6rem); }
  .stat-grid { grid-template-columns: 1.2fr 0.8fr; }
  .stat-grid .stat-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }
  .stat-grid .stat-card:last-child .stat-icon { margin-bottom: 2.5rem; }
  .ledger-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ledger-card-final { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { min-height: 88px; }
  .live-pill { font-size: 0.55rem; }
  .hero {
    min-height: auto;
    padding-top: 4.2rem;
    grid-template-columns: 1fr;
  }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(92%, 500px); }
  .tag-one { left: -5%; }
  .tag-two { right: -5%; }
  .section-heading, .ledger-intro { grid-template-columns: 1fr; }
  .section-heading h2, .ledger-intro h2 { margin-bottom: 1.5rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid .stat-card:last-child { grid-column: auto; }
  .glaze, .aura-panel { grid-template-columns: 1fr; }
  .glaze-card:nth-child(2), .glaze-card:nth-child(2):hover { transform: none; }
  .glaze-card:hover { transform: translateY(-4px); }
  footer {
    padding: 2.2rem 0;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .legal { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .live-pill { padding-inline: 0.6rem; }
  .hero { padding-top: 3.2rem; }
  .eyebrow-code { display: none; }
  .title-loud { font-size: clamp(3.6rem, 20vw, 5.4rem); }
  .title-right { text-align: left; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-wrap: wrap; }
  .proof-bars { width: 100%; margin-left: 3.3rem; }
  .visual-frame { border-radius: 22px; }
  .float-tag { font-size: 0.5rem; }
  .tag-one { top: 14%; left: -3%; }
  .tag-two { right: -3%; bottom: 21%; }
  .tag-three { left: -2%; }
  .frame-label, .frame-readout { font-size: 0.48rem; }
  .frame-readout strong { font-size: 0.66rem; }
  .stat-grid { gap: 0.75rem; }
  .stat-card { min-height: 290px; }
  .stat-topline { flex-direction: column; }
  .ledger-grid { grid-template-columns: 1fr; }
  .ledger-card-final { grid-column: auto; }
  .ledger-card { min-height: 190px; }
  .ledger-card span { margin-bottom: 3.5rem; }
  .aura-panel { padding: 1rem; border-radius: 22px; }
  .aura-copy { padding: 1rem 0.3rem 0; }
  .aura-copy .button { width: 100%; }
  .scanner { min-height: 340px; }
  .scanner-head { gap: 1rem; font-size: 0.52rem; }
  .closing > span { margin-bottom: -1rem; }
}

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