@font-face {
  font-family: "Geist";
  src: url("../assets/fonts/geist-sans-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --void-950: #050507;
  --void-900: #0a0b0e;
  --void-850: #101216;
  --void-800: #151820;
  --ink: #f0f4f8;
  --muted: #8a93a4;
  --metal: #9ba3b4;
  --metal-soft: #c2c9d6;
  --cyan: #00e5ff;
  --cyan-soft: #b0f4ff;
  --seal: #ff3d81;
  --seal-soft: #ffd0e0;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.52);
  --max: 1160px;
  --header-h: 68px;
  font-family: "Geist", "Aptos", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  min-width: 320px;
  background: var(--void-950);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--void-950), var(--void-900) 42%, var(--void-950));
  overflow-x: hidden;
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #ffffff;
  background: rgba(0, 229, 255, 0.24);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.46) var(--void-950);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--void-950);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--void-950);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.36), rgba(255, 61, 129, 0.34));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.56), rgba(255, 61, 129, 0.52));
}

a {
  color: inherit;
  text-decoration: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button-icon,
.card-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}

section[tabindex="-1"]:focus {
  outline: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul,
pre {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -96px;
  left: 12px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transform: none;
  padding: 0 16px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  color: var(--cyan-soft);
  background: rgba(5, 5, 7, 0.96);
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: top 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.035);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft), var(--seal));
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.38);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.section-indicator {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 34;
  display: none;
  grid-template-columns: auto minmax(0, 86px);
  gap: 12px;
  align-items: center;
  color: var(--metal);
  pointer-events: auto;
  transform: translateY(-50%);
}

.has-js .section-indicator {
  display: grid;
}

.indicator-track {
  position: relative;
  justify-self: end;
  width: 28px;
  height: 132px;
  pointer-events: auto;
}

.indicator-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.indicator-track span {
  position: absolute;
  top: 0;
  left: 13px;
  width: 1px;
  height: 8.333%;
  background: linear-gradient(180deg, var(--cyan), var(--seal));
  box-shadow:
    0 0 16px rgba(0, 229, 255, 0.32),
    0 0 16px rgba(255, 61, 129, 0.18);
  transition: height 260ms ease;
}

.indicator-track i {
  position: absolute;
  left: 10px;
  top: calc(8.333% - 3px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.78);
  transition: top 260ms ease;
}

.indicator-readout {
  grid-column: 2;
  grid-row: 1;
  min-height: 34px;
  pointer-events: none;
  text-align: right;
}

.indicator-readout.is-changing,
.mobile-section-readout.is-changing {
  animation: readoutSwap 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes readoutSwap {
  0% {
    opacity: 0.25;
    transform: translate3d(0, 7px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.indicator-readout strong {
  display: block;
  color: var(--cyan);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.1;
}

.indicator-readout strong span {
  color: rgba(138, 147, 164, 0.58);
}

.indicator-readout strong [data-indicator-number] {
  color: var(--cyan);
}

.indicator-readout small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 780;
  text-transform: uppercase;
}

.section-indicator ol {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition:
    opacity 100ms ease,
    transform 100ms ease;
}

.section-indicator:hover ol,
.section-indicator.is-indicator-open ol,
.indicator-track:hover ~ ol,
.section-indicator:focus-within ol {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.section-indicator a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-height: 44px;
  padding: 0 4px;
  color: rgba(138, 147, 164, 0.72);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 780;
  line-height: 1;
  pointer-events: auto;
  text-align: right;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.section-indicator a span {
  color: rgba(0, 229, 255, 0.42);
}

.section-indicator a:hover,
.section-indicator a:focus-visible,
.section-indicator a.is-active {
  color: var(--ink);
  transform: translateX(-2px);
}

.section-indicator a.is-active span {
  color: var(--cyan);
}

.mobile-section-readout {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 38;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 999px;
  color: var(--metal-soft);
  background: rgba(5, 5, 7, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.mobile-section-readout strong,
.mobile-section-readout small {
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  line-height: 1;
}

.mobile-section-readout strong {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 780;
}

.mobile-section-readout small {
  color: var(--metal);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-section-readout.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(10, 11, 14, 0.82);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.82);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(0, 229, 255, 0.62);
  background: rgba(0, 229, 255, 0.1);
  box-shadow:
    0 12px 42px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(0, 229, 255, 0.18);
}

.keyboard-help-trigger {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.26);
  border-radius: 50%;
  color: var(--cyan-soft);
  background: rgba(10, 11, 14, 0.82);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.has-js .keyboard-help-trigger {
  display: flex;
}

.keyboard-help-trigger span {
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 1rem;
  font-weight: 900;
}

.keyboard-help-trigger:hover,
.keyboard-help-trigger:focus-visible {
  border-color: rgba(0, 229, 255, 0.62);
  background: rgba(0, 229, 255, 0.1);
  box-shadow:
    0 12px 42px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(0, 229, 255, 0.18);
  transform: translateY(-1px);
}

.release-snapshot-pill {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  right: 24px;
  z-index: 39;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(10, 11, 14, 0.82);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.release-snapshot-pill span {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 229, 255, 0.36);
  border-radius: 4px;
}

.release-snapshot-pill span::before,
.release-snapshot-pill span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.release-snapshot-pill span::before {
  top: 3px;
  width: 2px;
  height: 7px;
}

.release-snapshot-pill span::after {
  bottom: 3px;
  width: 8px;
  height: 2px;
  box-shadow:
    -3px -3px 0 -2px currentColor,
    3px -3px 0 -2px currentColor;
}

.release-snapshot-pill:hover,
.release-snapshot-pill:focus-visible {
  border-color: rgba(0, 229, 255, 0.52);
  color: var(--ink);
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-1px);
}

.keyboard-dialog[hidden] {
  display: none;
}

html.keyboard-dialog-open {
  overflow: hidden;
}

.keyboard-dialog {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.keyboard-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.78);
  backdrop-filter: blur(10px);
}

.keyboard-dialog-panel {
  position: relative;
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.065), transparent 42%),
    rgba(10, 11, 14, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.72);
}

.keyboard-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.keyboard-dialog-head .kicker {
  margin-bottom: 6px;
}

.keyboard-dialog-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
}

.keyboard-close {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.keyboard-close::before,
.keyboard-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 14px;
  height: 2px;
  background: var(--cyan-soft);
}

.keyboard-close::before {
  transform: rotate(45deg);
}

.keyboard-close::after {
  transform: rotate(-45deg);
}

.shortcut-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shortcut-list li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.shortcut-list li:last-child {
  border-bottom: 0;
}

.shortcut-list span {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.shortcut-list kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 6px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.05);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 860;
}

.shortcut-list em {
  color: rgba(138, 147, 164, 0.62);
  font-size: 0.72rem;
  font-style: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.68);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
  min-height: 44px;
}

.brand img {
  width: 148px;
  height: auto;
  filter:
    drop-shadow(0 0 15px rgba(0, 229, 255, 0.18))
    drop-shadow(0 0 12px rgba(255, 61, 129, 0.14));
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  --hero-mesh-x: 0px;
  --hero-mesh-y: 0px;
  --hero-mark-x: 0px;
  --hero-mark-y: 0px;
  --hero-scroll-y: 0px;
  --hero-scroll-bg-y: 0px;
  --hero-scroll-opacity: 1;
  min-height: calc(100svh - 48px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 52px) 24px 48px;
  background: var(--void-950);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.04) brightness(0.9);
  transform: translate3d(var(--hero-bg-x), calc(var(--hero-bg-y) + var(--hero-scroll-bg-y)), 0) scale(1.025);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.78) 42%, rgba(5, 5, 7, 0.2)),
    linear-gradient(0deg, rgba(5, 5, 7, 1), transparent 28%, rgba(5, 5, 7, 0.72));
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.8;
  mask-image: linear-gradient(90deg, black 0%, black 54%, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(0, 229, 255, 0.12), transparent 32%),
    linear-gradient(300deg, rgba(255, 61, 129, 0.12), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  opacity: var(--hero-scroll-opacity);
  transform: translate3d(0, var(--hero-scroll-y), 0);
  transition:
    opacity 180ms linear,
    transform 180ms linear;
  will-change: opacity, transform;
}

.hero-cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(255, 61, 129, 0.06) 36%, transparent 66%);
  filter: blur(20px);
  opacity: 0.22;
  transform: translate3d(calc(50vw - 300px), calc(50vh - 300px), 0);
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

.hero.is-pointer-active .hero-cursor-glow {
  opacity: 0.68;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.badge,
.kicker,
.benchmark-head strong,
.terminal-bar strong,
.section-label,
.creator-line,
.token-row span,
.roadmap-list small {
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 0 14px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.055);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.badge-seal {
  border-color: rgba(255, 61, 129, 0.4);
  color: var(--seal-soft);
  background: rgba(255, 61, 129, 0.1);
}

.badge-muted {
  border-color: var(--line);
  color: var(--metal);
  background: rgba(255, 255, 255, 0.025);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 0 rgba(0, 229, 255, 0.42),
    0 0 18px rgba(0, 229, 255, 0.34);
  animation: pulse-glow 2.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 229, 255, 0.42),
      0 0 18px rgba(0, 229, 255, 0.34);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(0, 229, 255, 0),
      0 0 30px rgba(0, 229, 255, 0.5);
  }
}

.wordmark {
  width: min(100%, 560px);
  margin-bottom: 10px;
  line-height: 1;
}

.wordmark img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(0, 229, 255, 0.25))
    drop-shadow(0 0 24px rgba(255, 61, 129, 0.16))
    drop-shadow(0 18px 52px rgba(0, 0, 0, 0.72));
  transform: translate3d(var(--hero-mark-x), var(--hero-mark-y), 0);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  user-select: none;
}

.creator-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--metal);
  font-size: 0.75rem;
  font-weight: 760;
}

.creator-line span {
  color: var(--seal-soft);
}

.creator-line .slash {
  color: rgba(255, 255, 255, 0.18);
}

.hero-headline {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 820;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-headline span,
.section h2 span,
.center-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--seal));
  -webkit-background-clip: text;
  background-clip: text;
}

.has-js .hero .badge-row,
.has-js .hero .wordmark,
.has-js .hero .creator-line,
.has-js .hero .hero-headline,
.has-js .hero .lead,
.has-js .hero .hero-actions,
.has-js .hero .principle-list {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .hero.is-booted .badge-row,
.has-js .hero.is-booted .wordmark,
.has-js .hero.is-booted .creator-line,
.has-js .hero.is-booted .hero-headline,
.has-js .hero.is-booted .lead,
.has-js .hero.is-booted .hero-actions,
.has-js .hero.is-booted .principle-list {
  opacity: 1;
  transform: translateY(0);
}

.has-js .hero.is-booted .wordmark { transition-delay: 12ms; }
.has-js .hero.is-booted .creator-line { transition-delay: 24ms; }
.has-js .hero.is-booted .hero-headline { transition-delay: 36ms; }
.has-js .hero.is-booted .lead { transition-delay: 48ms; }
.has-js .hero.is-booted .hero-actions { transition-delay: 60ms; }
.has-js .hero.is-booted .principle-list { transition-delay: 72ms; }

.lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 470;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 36px 0 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button-icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--void-950);
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(255, 255, 255, 0.1);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.14);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(0, 229, 255, 0.42);
  background: rgba(0, 229, 255, 0.065);
}

.live-readout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 8px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.035);
  backdrop-filter: blur(14px);
}

.live-readout strong {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #ffffff, var(--cyan-soft) 52%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.45rem;
  font-weight: 880;
  line-height: 0.92;
}

.live-readout strong .metric-unit {
  margin-left: 2px;
  color: rgba(176, 244, 255, 0.78);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.live-readout strong .metric-value {
  margin-left: 0;
  color: transparent;
  background: linear-gradient(180deg, #ffffff, var(--cyan-soft) 52%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1em;
  font-weight: inherit;
}

.live-readout small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 760;
  text-transform: uppercase;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 82px;
  height: 36px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.waveform span {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--seal));
  opacity: 0.82;
  animation: wave-rise 1.35s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 12px; animation-delay: 0ms; }
.waveform span:nth-child(2) { height: 24px; animation-delay: 90ms; }
.waveform span:nth-child(3) { height: 17px; animation-delay: 180ms; }
.waveform span:nth-child(4) { height: 30px; animation-delay: 270ms; }
.waveform span:nth-child(5) { height: 14px; animation-delay: 360ms; }
.waveform span:nth-child(6) { height: 22px; animation-delay: 450ms; }

@keyframes wave-rise {
  0%,
  100% { transform: scaleY(0.62); opacity: 0.54; }
  50% { transform: scaleY(1); opacity: 1; }
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.18));
}

.card-icon-seal,
.pillar-seal .card-icon,
.trust-card-seal .card-icon {
  color: var(--seal-soft);
  filter: drop-shadow(0 0 12px rgba(255, 61, 129, 0.18));
}

.principle-list li:hover {
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.08);
  transform: translateY(-1px);
}

.principle-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 790;
}

.principle-list span {
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-mesh {
  position: absolute;
  inset: 9% -4vw auto -4vw;
  z-index: -1;
  width: auto;
  height: 64%;
  min-height: 460px;
  pointer-events: none;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 78%, transparent);
  transform: translate3d(var(--hero-mesh-x), var(--hero-mesh-y), 0);
  transition:
    opacity 220ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero.is-pointer-active .hero-mesh {
  opacity: 0.52;
}

.hero-mesh-canvas,
.hero-mesh-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-mesh-canvas {
  opacity: 0;
  transition: opacity 260ms ease;
}

.has-js .hero-mesh-canvas {
  opacity: 1;
}

.has-js .hero-mesh-fallback {
  opacity: 0;
}

.mesh-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.72), rgba(255, 61, 129, 0.46), transparent);
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.22),
    0 0 20px rgba(255, 61, 129, 0.14);
}

.mesh-line-a {
  top: 18%;
  left: 16%;
  width: 70%;
  transform: rotate(20deg);
}

.mesh-line-b {
  top: 48%;
  left: 2%;
  width: 82%;
  transform: rotate(-16deg);
}

.mesh-line-c {
  top: 72%;
  left: 24%;
  width: 66%;
  transform: rotate(12deg);
}

.mesh-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(176, 244, 255, 0.86);
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.2);
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.44),
    0 0 26px rgba(255, 61, 129, 0.22);
}

.mesh-node-a { top: 14%; left: 14%; }
.mesh-node-b { top: 36%; left: 72%; border-color: rgba(255, 208, 224, 0.86); background: rgba(255, 61, 129, 0.2); }
.mesh-node-c { top: 62%; left: 30%; }
.mesh-node-d { top: 82%; left: 86%; border-color: rgba(255, 208, 224, 0.86); background: rgba(255, 61, 129, 0.2); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding-top: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,
  100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(9px); opacity: 1; }
}

.section {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 20px);
  padding: 98px 24px;
  background: var(--void-950);
}

.hero + .section {
  padding-top: 10px;
}

.wallpaper-section {
  --wallpaper-pointer-x: 0px;
  --wallpaper-pointer-y: 0px;
  --wallpaper-scroll-y: 0px;
  --wallpaper-scale: 1.075;
  display: flex;
  align-items: center;
  min-height: clamp(680px, 78svh, 920px);
  overflow: hidden;
  padding-top: clamp(112px, 12svh, 164px);
  padding-bottom: clamp(112px, 12svh, 164px);
}

.hero + .wallpaper-section {
  min-height: clamp(640px, 72svh, 860px);
  padding-top: clamp(4px, 1svh, 14px);
}

#trust.wallpaper-section {
  min-height: clamp(980px, 118svh, 1220px);
}

#grounding.wallpaper-section {
  min-height: clamp(700px, 82svh, 900px);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.94), rgba(10, 11, 14, 0.72)),
    var(--void-900);
}

.section-dark::before,
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.has-js .hero + .section [data-reveal] {
  opacity: 1;
  transform: none;
}

#not-ai::after,
#hallucination::after,
#trust::after,
#grounding::after,
#fabric::after,
#dev-trail::after,
#t1-reflex-class::after,
#vraxion-note::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent, black 54%, transparent);
}

#not-ai::after {
  opacity: 0.28;
  background-image: url("./assets/engine-scope-bg.webp");
  background-position: right center;
  mask-image: linear-gradient(90deg, transparent, transparent 24%, black 56%, black);
}

#hallucination::after {
  opacity: 0.28;
  background-image: url("./assets/exact-mode-bg.webp");
  background-position: right center;
  mask-image: linear-gradient(90deg, transparent, transparent 28%, black 58%, black);
}

#trust::after {
  opacity: 0.3;
  background-image: url("./assets/proof-pack-bg.webp");
  background-position: right center;
  mask-image: linear-gradient(90deg, transparent, transparent 25%, black 58%, black);
}

#grounding::after {
  opacity: 0.3;
  background-image: url("./assets/release-claim-bg.webp");
  background-position: right center;
  mask-image: linear-gradient(90deg, transparent, transparent 30%, black 62%, black);
}

#fabric {
  overflow: hidden;
}

#fabric::after {
  opacity: 0.22;
  background-image: url("./assets/fabric-result-bg.webp");
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 0 46%, transparent 82%);
}

#dev-trail::after {
  opacity: 0.34;
  background-image: url("./assets/cli-proof-bg.webp");
  background-position: center bottom;
  mask-image: linear-gradient(90deg, black, black);
}

@media (max-width: 760px) {
  #dev-trail::after {
    opacity: 0.48;
    background-position: 92% bottom;
  }
}

#t1-reflex-class::after {
  background-image: url("./assets/t1-reflex-bg.jpg");
  background-position: right center;
}

#vraxion-note::after {
  opacity: 0.24;
  background-image: url("./assets/vraxion-note-bg.webp");
  background-position: center;
}

.wallpaper-section::after {
  inset: 0;
  background-size: cover;
  transform:
    translate3d(
      var(--wallpaper-pointer-x),
      calc(var(--wallpaper-scroll-y) + var(--wallpaper-pointer-y)),
      0
    )
    scale(var(--wallpaper-scale));
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.shell.narrow {
  width: min(100%, 880px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 820;
}

.section-label span {
  color: rgba(0, 229, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 880;
}

.section-label small {
  color: var(--metal);
  font-size: 0.72rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section h2,
.center-heading h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 850;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading p,
.center-heading p,
.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.center-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.kicker.cyan,
.cyan {
  color: var(--cyan);
}

.kicker.seal,
.seal {
  color: var(--seal);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.card::after,
.benchmark-card::after,
.terminal-panel::after,
.mode-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.64), rgba(255, 61, 129, 0.58), transparent);
  opacity: 0.82;
}

.pillar-grid,
.trust-grid,
.info-grid,
.founder-grid {
  display: grid;
  gap: 16px;
}

.pillar-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar {
  min-height: 230px;
  padding: 26px;
}

.pillar-seal,
.trust-card-seal,
.info-card-seal {
  border-color: rgba(255, 61, 129, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 61, 129, 0.065), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.pillar h3,
.trust-card h3,
.info-card h3,
.mode-panel h3,
.roadmap-list h3,
.boundary-band h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.16;
}

.pillar p,
.trust-card p,
.info-card p,
.mode-panel p,
.roadmap-list p,
.boundary-band p,
.statement-panel p,
.faq-list p,
.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.small-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--metal);
  font-size: 0.95rem;
}

.small-proof span {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 229, 255, 0.54);
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
}

.mode-card,
.benchmark-card,
.terminal-panel,
.statement-panel,
.boundary-band,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.055), transparent 42%),
    linear-gradient(315deg, rgba(255, 61, 129, 0.055), transparent 46%),
    rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.mode-card {
  padding: 24px;
}

.mode-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--metal);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.mode-card-top strong {
  display: block;
  margin-top: 4px;
  color: var(--cyan-soft);
  font-weight: 820;
}

.mode-state-icon {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.06);
}

.mode-state-icon::before,
.mode-state-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--cyan);
  border-radius: 3px;
}

.mode-state-icon::after {
  top: 8px;
  right: 13px;
  bottom: auto;
  left: 13px;
  height: 8px;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.mode-card[data-mode="imagination"] .mode-state-icon {
  border-color: rgba(255, 61, 129, 0.44);
  background: rgba(255, 61, 129, 0.08);
}

.mode-card[data-mode="imagination"] .mode-state-icon::before {
  inset: 10px;
  border-color: var(--seal);
  border-radius: 50%;
  box-shadow:
    0 -8px 0 -5px var(--seal),
    0 8px 0 -5px var(--seal),
    -8px 0 0 -5px var(--seal),
    8px 0 0 -5px var(--seal);
}

.mode-card[data-mode="imagination"] .mode-state-icon::after {
  display: none;
}

.mode-switch {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 72px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.22), rgba(0, 229, 255, 0.06)),
    rgba(5, 5, 7, 0.58);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.has-js .mode-switch {
  display: block;
}

.mode-switch span {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.34);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms ease,
    box-shadow 180ms ease;
}

.mode-card[data-mode="imagination"] .mode-switch {
  border-color: rgba(255, 61, 129, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 61, 129, 0.22), rgba(255, 61, 129, 0.06)),
    rgba(5, 5, 7, 0.58);
}

.mode-card[data-mode="imagination"] .mode-switch span {
  background: var(--seal);
  box-shadow: 0 0 18px rgba(255, 61, 129, 0.34);
  transform: translateX(30px);
}

.toggle-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.58);
}

.toggle-visual span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.toggle-visual span:first-child {
  color: var(--void-950);
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
}

.mode-card[data-mode="imagination"] .toggle-visual span:first-child {
  color: var(--muted);
  background: transparent;
}

.mode-card[data-mode="imagination"] .toggle-visual span:last-child {
  color: var(--void-950);
  background: linear-gradient(135deg, var(--seal-soft), var(--seal));
}

.mode-panels {
  position: relative;
  min-height: 0;
}

.mode-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.42);
}

.has-js .mode-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.has-js .mode-panel.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mode-panel small {
  display: block;
  color: var(--cyan);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mode-panel[data-mode-panel="imagination"] small {
  color: var(--seal);
}

.mode-panel code,
.mode-panel > span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.045);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1.45;
}

.mode-panel[data-mode-panel="imagination"] code,
.mode-panel[data-mode-panel="imagination"] > span {
  border-color: rgba(255, 61, 129, 0.18);
  color: var(--seal-soft);
  background: rgba(255, 61, 129, 0.045);
}

.trust-card {
  min-height: 350px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.trust-card p {
  margin: 12px 0 0;
}

.trust-card dl {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trust-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.trust-card dt {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.trust-card dd {
  margin: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
}

.benchmark-card {
  width: min(100%, 700px);
  margin: 36px auto 0;
  padding: 28px;
}

.benchmark-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.benchmark-head strong {
  color: var(--metal);
  font-size: 0.72rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 70px;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.bar-row span,
.bar-row strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.bar-row strong {
  color: var(--cyan-soft);
  text-align: right;
}

.bar-row div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fast {
  width: 18%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.24);
}

.bar-slow {
  width: 100%;
  background: linear-gradient(90deg, var(--seal), var(--seal-soft));
  box-shadow: 0 0 20px rgba(255, 61, 129, 0.22);
}

.has-js .benchmark-card:not(.is-visible) .bar-row i {
  width: 0;
}

.speedup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.04);
}

.speedup-row span {
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.speedup-row strong {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--seal));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  line-height: 1;
}

.benchmark-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.benchmark-card p a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cyan-soft);
  font-weight: 760;
  vertical-align: middle;
}

.statement-panel {
  margin-top: 32px;
  padding: 28px;
  text-align: left;
}

.statement-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.26rem;
  font-weight: 820;
}

.manifesto {
  padding: 72px 24px;
}

.manifesto-inner {
  display: flex;
  justify-content: center;
}

.manifesto-panel {
  position: relative;
  width: min(100%, 760px);
  min-height: 360px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.055), transparent 42%),
    linear-gradient(315deg, rgba(255, 61, 129, 0.05), transparent 44%),
    rgba(5, 5, 7, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.manifesto-panel::before,
.manifesto-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.manifesto-panel::before {
  z-index: 0;
  background: url("./assets/constraints-founder-bg.webp") center / cover no-repeat;
  opacity: 0.88;
  transform: scale(1.015);
}

.manifesto-panel::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 36% 46%, rgba(5, 5, 7, 0.3), rgba(5, 5, 7, 0.12) 48%, rgba(5, 5, 7, 0.04) 72%),
    linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 46%),
    linear-gradient(315deg, rgba(255, 61, 129, 0.05), transparent 48%);
}

.manifesto-panel > * {
  position: relative;
  z-index: 2;
}

.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.corner-tl { top: 14px; left: 14px; border-top: 1px solid rgba(0, 229, 255, 0.46); border-left: 1px solid rgba(0, 229, 255, 0.46); }
.corner-tr { top: 14px; right: 14px; border-top: 1px solid rgba(0, 229, 255, 0.46); border-right: 1px solid rgba(0, 229, 255, 0.46); }
.corner-bl { bottom: 14px; left: 14px; border-bottom: 1px solid rgba(255, 61, 129, 0.46); border-left: 1px solid rgba(255, 61, 129, 0.46); }
.corner-br { right: 14px; bottom: 14px; border-right: 1px solid rgba(255, 61, 129, 0.46); border-bottom: 1px solid rgba(255, 61, 129, 0.46); }

.manifesto-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--metal);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.manifesto-line {
  min-height: 1.55em;
  margin: 0;
  color: var(--ink);
  font-size: 1.52rem;
  font-weight: 760;
  line-height: 1.55;
  text-shadow: 0 18px 32px rgba(0, 0, 0, 0.72), 0 0 18px rgba(0, 229, 255, 0.12);
}

.manifesto-line.muted {
  color: var(--muted);
}

.manifesto-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  background: var(--cyan);
  vertical-align: -0.15em;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

.manifesto-signature {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--seal-soft);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.manifesto-signature span {
  color: rgba(255, 255, 255, 0.24);
}

.has-js .manifesto-signature {
  opacity: 0;
  transform: translateY(6px);
}

.has-js [data-manifesto].is-complete .manifesto-signature {
  opacity: 1;
  transform: translateY(0);
}

.fabric-flow-panel {
  position: relative;
  min-height: 220px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 229, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 48%, rgba(255, 61, 129, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.022);
}

.fabric-flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.4;
}

.fabric-flow-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.fabric-flow-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--metal);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.fabric-flow-caption strong {
  color: var(--cyan-soft);
  font-weight: 820;
}

.fabric-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fabric-diagram article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.78);
}

.fabric-diagram small {
  display: block;
  margin-bottom: 30px;
  color: var(--cyan);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 840;
}

.fabric-diagram article:nth-child(2) small {
  color: var(--seal);
}

.fabric-diagram h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.fabric-diagram p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 28px;
  padding-left: 28px;
  color: var(--metal);
  font-size: 0.96rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 229, 255, 0.62);
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.18);
}

.terminal-panel {
  background:
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.04) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(4, 10, 12, 0.96), rgba(1, 3, 5, 0.94));
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.terminal-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.28);
}

.terminal-bar span:nth-child(2) {
  background: var(--seal);
  box-shadow: 0 0 14px rgba(255, 61, 129, 0.24);
}

.terminal-bar span:nth-child(3) {
  background: #f5c15f;
  box-shadow: 0 0 14px rgba(245, 193, 95, 0.2);
}

.terminal-bar strong {
  margin-left: 6px;
  color: var(--metal);
  font-size: 0.66rem;
}

.terminal-bar em {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.055);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.terminal-panel pre {
  height: 340px;
  margin: 0;
  padding: 28px;
  overflow-x: auto;
  overflow-y: auto;
  color: var(--cyan-soft);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.75;
}

.terminal-cursor {
  display: inline-block;
  color: var(--cyan);
  animation: caret-blink 0.9s steps(1) infinite;
}

.terminal-line {
  display: block;
  min-height: 1.75em;
  white-space: pre-wrap;
}

.terminal-line[data-line-type="prompt"] {
  color: var(--ink);
}

.terminal-line[data-line-type="output"] {
  color: var(--cyan-soft);
}

.terminal-line[data-line-type="ok"] {
  color: #9dffcb;
}

.terminal-line[data-line-type="warn"] {
  color: var(--seal-soft);
}

.terminal-line[data-line-type="trace"] {
  color: var(--metal);
}

.terminal-line[data-line-type="query"] {
  color: #f5c15f;
}

.terminal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.32);
}

.terminal-actions span,
.terminal-actions button {
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 780;
}

.terminal-actions span {
  color: var(--metal);
  text-transform: uppercase;
}

.terminal-actions button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.045);
  cursor: pointer;
  line-height: 1.1;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.terminal-actions button:hover,
.terminal-actions button:focus-visible,
.terminal-actions button.is-copied {
  border-color: rgba(0, 229, 255, 0.48);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
}

.terminal-actions button.is-copy-failed {
  border-color: rgba(255, 61, 129, 0.5);
  color: var(--seal-soft);
  background: rgba(255, 61, 129, 0.1);
}

.terminal-note {
  margin: 0;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--metal);
  background: rgba(5, 5, 7, 0.32);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  line-height: 1.55;
}

.info-grid,
.founder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-height: 260px;
  padding: 28px;
}

.info-card .kicker {
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.35rem;
}

.token-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.token-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 6px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 780;
}

.info-card-seal .token-row span {
  border-color: rgba(255, 61, 129, 0.2);
  color: var(--seal-soft);
  background: rgba(255, 61, 129, 0.05);
}

.boundary-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 28px;
}

.boundary-band > div {
  max-width: 740px;
}

.boundary-band .button {
  flex: 0 0 auto;
}

.roadmap-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 114px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.roadmap-list li > span {
  color: rgba(0, 229, 255, 0.62);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 1.75rem;
  font-weight: 880;
}

.roadmap-list li:nth-child(3) > span {
  color: rgba(255, 61, 129, 0.62);
}

.roadmap-list h3 {
  margin-bottom: 4px;
}

.roadmap-list small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(0, 229, 255, 0.045);
  font-size: 0.66rem;
  font-weight: 800;
}

.roadmap-list li:nth-child(3) small {
  border-color: rgba(255, 61, 129, 0.24);
  color: var(--seal-soft);
  background: rgba(255, 61, 129, 0.05);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(0, 229, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.faq-item button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 74px;
  padding: 20px 58px 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.faq-item button > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--metal);
  background: rgba(255, 255, 255, 0.03);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 820;
  text-transform: uppercase;
}

.faq-item button::before,
.faq-item button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  background: var(--cyan);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.faq-item button::after {
  transform: rotate(90deg);
}

.faq-item.is-open button::after,
.faq-item button[aria-expanded="true"]::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .faq-panel {
  grid-template-rows: 0fr;
}

.has-js .faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > p {
  min-height: 0;
  padding: 0 24px;
  padding-bottom: 24px;
}

.has-js .faq-panel > p {
  overflow: hidden;
  padding-bottom: 0;
}

.has-js .faq-item.is-open .faq-panel > p {
  padding-bottom: 24px;
}

.get-notified {
  padding-bottom: 112px;
}

.notify-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.notify-note {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--metal);
  font-family: "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  line-height: 1.6;
}

.artifact-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px auto 0;
  text-align: left;
}

.artifact-status div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent 48%),
    rgba(255, 255, 255, 0.022);
}

.artifact-status div:last-child {
  background:
    linear-gradient(135deg, rgba(255, 61, 129, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.022);
}

.artifact-status strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 820;
}

.artifact-status span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--void-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 30px 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-inner img {
  width: 118px;
  height: auto;
  opacity: 0.78;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-inner a:not(:first-child) {
  padding: 0 10px;
  border-radius: 8px;
}

.footer-inner a:last-child {
  color: var(--cyan-soft);
}

@media (max-width: 1360px) {
  .section-indicator,
  .has-js .section-indicator {
    display: none;
  }

  .has-js .mobile-section-readout {
    display: flex;
    right: auto;
    left: 82px;
  }
}

@media (max-width: 1020px) {
  .has-js .mobile-section-readout {
    left: 72px;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-mesh {
    inset: 8% -24px auto -24px;
    width: auto;
    height: 54%;
    min-height: 360px;
    opacity: 0.24;
    mask-image: linear-gradient(90deg, transparent, black 30%, black 88%, transparent);
  }

  .pillar-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pillar,
  .trust-card {
    min-height: 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fabric-diagram {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 761px) and (max-height: 820px) {
  .hero {
    padding: calc(var(--header-h) + 44px) 24px 46px;
  }

  .badge-row {
    margin-bottom: 18px;
  }

  .wordmark {
    width: min(100%, 500px);
  }

  .creator-line {
    margin-bottom: 18px;
  }

  .hero-headline {
    margin-bottom: 16px;
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions {
    margin: 28px 0 30px;
  }

  .principle-list li {
    min-height: 74px;
    padding: 12px;
  }

  .card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    gap: 12px;
    padding: 0 16px;
  }

  .back-to-top {
    display: none;
  }

  .has-js .mobile-section-readout,
  .mobile-section-readout {
    right: 16px;
    bottom: 16px;
    left: auto;
    min-height: 40px;
    padding: 0 12px;
  }

  .brand {
    min-width: 112px;
  }

  .brand img {
    width: 112px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    min-height: 44px;
    font-size: 0.82rem;
  }

  .nav a:nth-child(2),
  .nav a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 40px) 16px 54px;
  }

  .hero-background img {
    object-position: 62% center;
    opacity: 0.44;
  }

  .hero-background::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.72) 62%, rgba(5, 5, 7, 0.24)),
      linear-gradient(0deg, rgba(5, 5, 7, 1), transparent 28%, rgba(5, 5, 7, 0.8));
  }

  .hero::before {
    background-size: 36px 36px;
    opacity: 0.52;
    mask-image: linear-gradient(180deg, black, transparent 92%);
  }

  .hero-mesh {
    top: 8%;
    right: -18%;
    left: 18%;
    width: auto;
    height: 42%;
    min-height: 280px;
    opacity: 0.22;
  }

  .hero-cursor-glow {
    width: 460px;
    height: 460px;
    opacity: 0.16;
    transform: translate3d(calc(50vw - 230px), 80px, 0);
  }

  .badge-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .badge {
    min-height: 29px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .wordmark {
    width: min(100%, 430px);
  }

  .creator-line {
    margin-bottom: 16px;
    font-size: 0.68rem;
  }

  .hero-headline {
    max-width: 520px;
    font-size: 1.92rem;
  }

  .lead {
    max-width: 520px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 10px;
    margin: 22px 0 22px;
  }

  .button,
  .live-readout {
    width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
  }

  .live-readout {
    justify-content: flex-start;
    min-height: 50px;
  }

  .principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
  }

  .principle-list li {
    min-height: 64px;
    padding: 12px;
  }

  .section {
    padding: 74px 16px;
  }

  .section h2,
  .center-heading h2 {
    font-size: 2.15rem;
  }

  .section-heading,
  .center-heading {
    margin-bottom: 30px;
  }

  .section-heading p,
  .center-heading p,
  .section-copy {
    font-size: 1rem;
  }

  .pillar,
  .trust-card,
  .info-card,
  .mode-card,
  .benchmark-card,
  .statement-panel,
  .boundary-band {
    padding: 20px;
  }

  .info-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .mode-panels {
    min-height: 0;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bar-row strong {
    text-align: left;
  }

  .manifesto-panel {
    min-height: 330px;
    padding: 28px 24px;
  }

  .manifesto-line {
    font-size: 1.12rem;
  }

  .fabric-flow-panel {
    min-height: 190px;
  }

  .fabric-diagram article {
    padding: 18px;
  }

  .terminal-panel pre {
    height: 300px;
    padding: 20px;
    font-size: 0.78rem;
  }

  .terminal-bar em {
    display: none;
  }

  .terminal-actions {
    align-items: stretch;
  }

  .terminal-actions span {
    flex: 1 0 100%;
  }

  .terminal-actions button {
    min-height: 44px;
  }

  .faq-item button {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-right: 54px;
  }

  .keyboard-help-trigger,
  .has-js .keyboard-help-trigger {
    display: none;
  }

  .release-snapshot-pill {
    display: none;
  }

  .keyboard-dialog {
    padding: 16px;
  }

  .shortcut-list li {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 13px 16px;
  }

  .shortcut-list span {
    flex: 1 0 100%;
  }

  .boundary-band {
    align-items: stretch;
    flex-direction: column;
  }

  .roadmap-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 0;
    padding: 18px;
  }

  .roadmap-list small {
    grid-column: 2;
    justify-self: start;
  }

  .footer-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .artifact-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0 12px;
  }

  .brand {
    min-width: 102px;
  }

  .brand img {
    width: 102px;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .nav a:nth-child(4) {
    display: none;
  }

  .hero {
    padding: calc(var(--header-h) + 34px) 14px 44px;
  }

  .hero-headline {
    font-size: 1.7rem;
  }

  .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .principle-list li {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    align-content: center;
    min-height: 56px;
    padding: 10px;
    column-gap: 8px;
  }

  .principle-list .card-icon {
    grid-row: span 2;
    width: 18px;
    height: 18px;
    margin-bottom: 0;
  }

  .principle-list strong {
    margin-bottom: 0;
    font-size: 0.78rem;
  }

  .principle-list span {
    font-size: 0.56rem;
  }

  .waveform {
    width: 68px;
  }

  .section h2,
  .center-heading h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: calc(var(--header-h) + 24px) 14px 34px;
  }

  .wordmark {
    width: min(100%, 300px);
  }

  .creator-line {
    margin-bottom: 12px;
  }

  .hero-headline {
    margin-bottom: 14px;
    font-size: 1.55rem;
    line-height: 1.05;
  }

  .lead {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 8px;
    margin: 16px 0 0;
  }

  .live-readout,
  .principle-list,
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .hero {
    padding: calc(var(--header-h) + 16px) 14px 28px;
  }

  .badge-row {
    margin-bottom: 10px;
  }

  .wordmark {
    width: min(100%, 260px);
  }

  .creator-line {
    margin-bottom: 9px;
  }

  .hero-headline {
    font-size: 1.45rem;
    line-height: 1.06;
  }

  .lead {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .hero-actions {
    gap: 8px;
    margin: 14px 0 0;
  }

  .live-readout,
  .principle-list,
  .scroll-cue {
    display: none;
  }

  .mobile-section-readout {
    right: 16px;
    bottom: 16px;
    left: auto;
  }

  .mobile-section-readout small {
    display: none;
  }
}

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .has-js .hero .badge-row,
  .has-js .hero .wordmark,
  .has-js .hero .creator-line,
  .has-js .hero .hero-headline,
  .has-js .hero .lead,
  .has-js .hero .hero-actions,
  .has-js .hero .principle-list {
    opacity: 1;
    transform: none;
  }
}
