@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/dm-mono-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/dm-mono-latin-500.woff2") format("woff2");
}

:root {
  --ink: #0b0d0c;
  --ink-soft: #151916;
  --surface: #f1eee5;
  --surface-raised: #faf8f1;
  --surface-muted: #dedbd0;
  --text: #121512;
  --text-muted: #62675f;
  --text-on-dark: #f5f2e9;
  --text-on-dark-muted: #aeb5aa;
  --line: rgba(18, 21, 18, 0.16);
  --line-dark: rgba(245, 242, 233, 0.16);
  --brand: #8057f5;
  --brand-soft: #a88cff;
  --brand-strong: #7144e3;
  --brand-deep: #5b35c8;
  --brand-surface: #111019;
  --primary: #d8ff70;
  --primary-strong: #bde846;
  --signal: #79dec9;
  --warning: #f1bd68;
  --danger: #ff806f;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --shell: 82rem;
  --page: clamp(1.15rem, 4vw, 4rem);
  --section: clamp(5rem, 10vw, 9rem);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--ink);
  background: var(--brand-soft);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

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

.shell {
  width: min(calc(100% - (var(--page) * 2)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  color: var(--ink);
  background: var(--primary);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--brand-soft);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - (var(--page) * 2)), var(--shell));
  min-height: 6rem;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 1.8rem;
  height: 1.8rem;
  filter: drop-shadow(0 0.4rem 1rem rgba(128, 87, 245, 0.2));
}

.desktop-nav {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.desktop-nav a {
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text-on-dark);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.55rem;
}

.header-panel-link,
.header-cta {
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-panel-link {
  color: var(--text-on-dark-muted);
}

.header-panel-link:hover {
  color: var(--text-on-dark);
}

.header-cta {
  border: 1px solid var(--line-dark);
}

.header-cta:hover {
  border-color: var(--brand);
  color: var(--text-on-dark);
  background: var(--brand-strong);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 50rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 23%, rgba(128, 87, 245, 0.08), transparent 24rem),
    radial-gradient(circle at 70% 40%, rgba(216, 255, 112, 0.08), transparent 26rem),
    radial-gradient(circle at 92% 75%, rgba(121, 222, 201, 0.07), transparent 26rem),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.18;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  min-height: 50rem;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #50602c;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 5.3vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--brand-soft);
}

.hero-lead {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--primary {
  gap: 0.7rem;
  color: var(--text-on-dark);
  background: var(--brand-strong);
  box-shadow: 0 0 0 rgba(128, 87, 245, 0);
}

.button--primary:hover {
  background: var(--brand);
  box-shadow: 0 0 2rem rgba(128, 87, 245, 0.24);
}

.button--primary svg {
  width: 1rem;
  fill: currentColor;
}

.button--dark {
  color: var(--text-on-dark);
  background: var(--ink);
}

.button--dark:hover {
  background: #222620;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    gap 180ms ease,
    border-color 180ms ease;
}

.text-link:hover {
  gap: 0.8rem;
  border-color: var(--brand-soft);
}

.text-link--light {
  color: var(--text-on-dark);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin: 1.6rem 0 0;
  padding: 0;
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  list-style: none;
}

.trust-line li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-line li::before {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
  isolation: isolate;
}

.hero-product-shot {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 140, 255, 0.32);
  border-radius: var(--radius-lg);
  background: #09090e;
  box-shadow:
    0 3rem 8rem rgba(0, 0, 0, 0.5),
    0 0 5rem rgba(128, 87, 245, 0.12);
}

.hero-product-shot::before {
  position: absolute;
  z-index: -1;
  inset: -4rem;
  border-radius: 50%;
  background: rgba(128, 87, 245, 0.16);
  content: "";
  filter: blur(5rem);
}

.hero-product-shot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(168, 140, 255, 0.18);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.hero-product-shot__bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-dark);
}

.hero-product-shot__bar i {
  width: 0.44rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0.75rem rgba(216, 255, 112, 0.62);
}

.hero-product-shot picture {
  display: block;
  overflow: hidden;
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 52 / 45;
  object-fit: cover;
}

.hero-product-shot figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 4rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(168, 140, 255, 0.18);
}

.hero-product-shot figcaption span {
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-product-shot figcaption strong {
  justify-self: end;
  max-width: 24rem;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: right;
}

.visual-glow {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 15%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(216, 255, 112, 0.08);
  filter: blur(4rem);
}

.route-map {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  width: min(44rem, 110%);
  transform: translate(-50%, -50%);
  fill: none;
  stroke: rgba(245, 242, 233, 0.1);
  stroke-width: 1;
}

.route-map .route {
  stroke: url("#route");
  stroke-width: 2;
  stroke-dasharray: 9 14;
  animation: route-flow 9s linear infinite;
}

.route-map .route--two {
  animation-direction: reverse;
  animation-duration: 12s;
}

.route-node {
  fill: var(--primary);
  stroke: rgba(216, 255, 112, 0.28);
  stroke-width: 14;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 2.4s ease-in-out infinite;
}

.route-node--two {
  animation-delay: -0.8s;
}

.route-node--three {
  fill: var(--signal);
  animation-delay: -1.6s;
}

.control-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 30rem);
  padding: 1.3rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216, 255, 112, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    rgba(12, 15, 13, 0.92);
  box-shadow:
    0 2.5rem 8rem rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.control-card::before {
  position: absolute;
  inset: 0.35rem;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: calc(var(--radius-lg) - 0.35rem);
  content: "";
}

.control-card__top,
.control-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.control-card__top > div {
  display: grid;
  gap: 0.2rem;
}

.micro-label,
.task-copy > span {
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.control-card__top strong {
  font-size: 0.95rem;
}

.live-pill,
.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(216, 255, 112, 0.18);
  border-radius: 999px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.live-pill i,
.demo-status i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.7rem currentColor;
}

.current-task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-dark);
}

.task-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 112, 0.28);
  border-radius: 50%;
}

.task-orbit b {
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.task-orbit span {
  position: absolute;
  inset: 0.35rem;
  border: 1px dashed rgba(216, 255, 112, 0.25);
  border-radius: 50%;
  animation: orbit-spin 8s linear infinite;
}

.task-orbit span:nth-child(2) {
  inset: -0.3rem 1rem;
  border-color: rgba(121, 222, 201, 0.25);
  animation-direction: reverse;
  animation-duration: 5s;
}

.task-orbit span:nth-child(3) {
  inset: 1rem -0.3rem;
  animation-duration: 12s;
}

.task-copy {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.task-copy strong {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-copy small {
  overflow: hidden;
  color: var(--text-on-dark-muted);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-value {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 1.6rem;
}

.progress-track {
  height: 0.25rem;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal), var(--primary));
  box-shadow: 0 0 1rem rgba(216, 255, 112, 0.35);
  transition: width 900ms var(--ease);
}

.queue {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.queue li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.45rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.025);
}

.queue li.is-active {
  border-color: rgba(216, 255, 112, 0.18);
  color: var(--text-on-dark);
  background: rgba(216, 255, 112, 0.055);
}

.queue li > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.queue li > div {
  display: grid;
}

.queue strong {
  font-size: 0.72rem;
}

.queue small {
  color: var(--text-on-dark-muted);
  font-size: 0.61rem;
}

.queue li > i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.queue li.is-active > i {
  background: var(--primary);
  box-shadow: 0 0 0.8rem rgba(216, 255, 112, 0.6);
}

.control-card__footer {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.control-card__footer b {
  color: var(--signal);
  font-weight: 500;
}

.hero-ledger {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.018);
}

.hero-ledger__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-ledger p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.85rem;
  min-height: 6rem;
  margin: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
}

.hero-ledger p:first-child {
  padding-left: 0;
}

.hero-ledger p:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-ledger p span {
  grid-row: 1 / 3;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.hero-ledger strong {
  color: var(--text-on-dark);
}

.section {
  padding-block: var(--section);
}

.attention-section,
.relief-section,
.trial-section,
.faq-section {
  color: var(--text);
  background: var(--surface);
}

.attention-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.section-intro h2,
.section-heading h2,
.product-heading h2,
.games-heading h2,
.console-copy h2,
.trust-copy h2,
.trial-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.1vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}

.attention-copy {
  padding-top: 2.9rem;
}

.attention-copy > p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.75;
}

.attention-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.attention-metric > span {
  color: #536723;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.attention-metric p {
  max-width: 20rem;
  margin: 0;
  color: var(--text-muted);
}

.attention-metric strong {
  color: var(--text);
}

.decision-section,
.console-section,
.trust-section {
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr);
  gap: 1.2rem 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 13ch;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--text-on-dark-muted);
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.decision-card {
  position: relative;
  min-height: 25rem;
  padding: 2rem clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid var(--line-dark);
}

.decision-card:first-child {
  padding-left: 0;
}

.decision-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.decision-card__number {
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.decision-card svg {
  width: 3.4rem;
  margin: 4rem 0 2.4rem;
  fill: none;
  stroke: var(--brand-soft);
  stroke-width: 1.3;
}

.decision-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.decision-card p {
  margin: 1rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
}

.product-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 6.5rem) 0;
  border-top: 1px solid rgba(168, 140, 255, 0.16);
  border-bottom: 1px solid rgba(168, 140, 255, 0.16);
  background:
    radial-gradient(circle at 78% 18%, rgba(128, 87, 245, 0.14), transparent 30rem),
    var(--brand-surface);
}

.product-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(168, 140, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 140, 255, 0.08) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.18;
}

.product-section > .shell {
  position: relative;
}

.eyebrow--brand {
  color: var(--brand-soft);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: 2.5rem;
}

.product-heading > .eyebrow {
  align-self: start;
  margin-top: 0.7rem;
}

.product-heading > div {
  display: grid;
  gap: 1.4rem;
}

.product-heading h2 {
  max-width: 12ch;
}

.product-heading > div > p {
  max-width: 43rem;
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 1.02rem;
}

.product-capture {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 140, 255, 0.3);
  border-radius: var(--radius-lg);
  background: #0e0f14;
  box-shadow:
    0 3rem 8rem rgba(0, 0, 0, 0.36),
    0 0 4rem rgba(128, 87, 245, 0.08);
}

.product-capture__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-capture__bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-on-dark);
}

.product-capture__bar i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0.8rem rgba(216, 255, 112, 0.55);
}

.product-capture picture {
  display: block;
  overflow: hidden;
  background: #171319;
}

.product-capture img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-capture figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 0.9rem 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.product-capture figcaption span {
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-capture figcaption p {
  justify-self: end;
  max-width: 43rem;
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  text-align: right;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-facts article {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1.4rem clamp(1rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line-dark);
}

.product-facts article:first-child {
  padding-left: 0;
}

.product-facts article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-facts article > span {
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.product-facts h3 {
  margin: 0;
  font-size: 0.95rem;
}

.product-facts p {
  margin: 0.4rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.76rem;
}

.product-tour-nav {
  position: sticky;
  z-index: 8;
  top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(168, 140, 255, 0.24);
  border-radius: 999px;
  background: rgba(13, 13, 18, 0.88);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(1rem);
}

.product-tour-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border-right: 1px solid rgba(168, 140, 255, 0.18);
  color: var(--text-on-dark-muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.product-tour-nav a:last-child {
  border-right: 0;
}

.product-tour-nav a:hover {
  color: var(--text-on-dark);
  background: rgba(128, 87, 245, 0.13);
}

.product-tour-nav span {
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.product-tour {
  display: grid;
}

.product-chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-width: 0;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(168, 140, 255, 0.18);
  scroll-margin-top: 5rem;
}

.product-chapter:first-child {
  border-top: 0;
}

.product-chapter::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: 52%;
  width: min(32rem, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(128, 87, 245, 0.1);
  content: "";
  filter: blur(5rem);
  opacity: 0.7;
  transform: translateX(-50%);
}

.product-chapter--reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
}

.product-chapter--reverse .product-chapter__copy {
  order: 2;
}

.product-chapter--reverse .product-shot {
  order: 1;
}

.product-chapter__copy {
  position: relative;
  z-index: 2;
}

.product-chapter__number {
  margin: 0 0 1.1rem;
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.product-chapter h3 {
  max-width: 9.5ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.product-chapter__copy > p:not(.product-chapter__number, .product-chapter__note) {
  max-width: 33rem;
  margin: 1.25rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-points {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 0.6rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  font-size: 0.8rem;
}

.product-points span {
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand-soft);
  box-shadow: 0 0 0.8rem rgba(168, 140, 255, 0.48);
}

.product-chapter__note {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1.65;
}

.panel-access {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(168, 140, 255, 0.34);
  border-radius: 999px;
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease;
}

.panel-access:hover {
  border-color: var(--brand-soft);
  background: rgba(128, 87, 245, 0.13);
  transform: translateY(-2px);
}

.panel-access span {
  color: var(--brand-soft);
}

.product-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 140, 255, 0.28);
  border-radius: var(--radius-lg);
  background: #09090e;
  box-shadow:
    0 2.8rem 7rem rgba(0, 0, 0, 0.4),
    0 0 4rem rgba(128, 87, 245, 0.08);
  transition:
    transform 500ms var(--ease),
    border-color 300ms ease,
    box-shadow 500ms var(--ease);
}

.product-shot:hover {
  border-color: rgba(168, 140, 255, 0.52);
  box-shadow:
    0 3.2rem 8rem rgba(0, 0, 0, 0.48),
    0 0 5rem rgba(128, 87, 245, 0.15);
  transform: translateY(-0.35rem);
}

.product-shot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(168, 140, 255, 0.18);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.product-shot__top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-dark);
}

.product-shot__top i {
  width: 0.44rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0.75rem rgba(216, 255, 112, 0.62);
}

.product-shot picture {
  display: block;
  overflow: hidden;
  background: #09090e;
}

.product-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 52 / 45;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.product-shot:hover img {
  transform: scale(1.012);
}

.product-shot--remote img {
  aspect-ratio: 8 / 7;
}

.product-shot figcaption {
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(168, 140, 255, 0.18);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

.remote-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: 1px solid rgba(168, 140, 255, 0.16);
  background:
    radial-gradient(circle at 18% 42%, rgba(121, 222, 201, 0.08), transparent 28rem),
    radial-gradient(circle at 82% 34%, rgba(128, 87, 245, 0.14), transparent 30rem),
    var(--ink);
}

.remote-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(168, 140, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 140, 255, 0.06) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  opacity: 0.16;
}

.remote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.remote-copy {
  position: relative;
  z-index: 2;
  order: 2;
}

.remote-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.remote-copy > p:not(.eyebrow, .product-chapter__note) {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.remote-copy .product-points {
  max-width: 35rem;
}

.games-section {
  color: var(--text);
  background: var(--surface);
}

.games-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: 3rem;
}

.games-heading h2 {
  max-width: 13ch;
}

.games-heading > p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
}

.games-column {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.game-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  transition:
    transform 320ms var(--ease),
    border-color 220ms ease;
}

.game-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(91, 53, 200, 0.42);
}

.game-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.game-card:hover .game-card__media img {
  transform: scale(1.035);
}

.game-card__caption {
  display: grid;
  align-content: end;
  gap: 0.45rem;
  min-height: 7rem;
  padding: 1.25rem 1.4rem;
}

.game-card__caption span {
  color: var(--brand-deep);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.game-card__caption h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.game-card--featured {
  border-color: rgba(91, 53, 200, 0.55);
}

.game-card--featured .game-card__caption {
  color: var(--text-on-dark);
  background: var(--brand-deep);
}

.game-card--featured .game-card__caption span {
  color: #d8ccff;
}

.games-legal {
  max-width: 58rem;
  margin: 1.4rem 0 0 auto;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  line-height: 1.7;
  text-align: right;
}

.console-section {
  border-top: 1px solid var(--line-dark);
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.console-copy h2 {
  max-width: 10ch;
}

.console-copy > p:not(.eyebrow) {
  max-width: 32rem;
  color: var(--text-on-dark-muted);
}

.feature-list {
  display: grid;
  margin: 2.3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.83rem;
}

.feature-list span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.console-demo {
  overflow: hidden;
  border: 1px solid rgba(216, 255, 112, 0.24);
  border-radius: var(--radius-lg);
  background: #101310;
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.4);
}

.demo-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 3.5rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.window-controls {
  display: flex;
  gap: 0.35rem;
}

.window-controls i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--line-dark);
}

.window-controls i:first-child {
  background: var(--danger);
}

.window-controls i:nth-child(2) {
  background: var(--warning);
}

.window-controls i:nth-child(3) {
  background: var(--signal);
}

.demo-status {
  justify-self: end;
  padding: 0;
  border: 0;
}

.demo-body {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  min-height: 31rem;
}

.demo-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-right: 1px solid var(--line-dark);
}

.demo-body aside b {
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border: 1px solid rgba(216, 255, 112, 0.28);
  border-radius: 0.7rem;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.demo-body aside i {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.3rem;
}

.demo-body aside i.is-current {
  border-color: var(--primary);
  background: rgba(216, 255, 112, 0.18);
}

.demo-content {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.demo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-title > div {
  display: grid;
}

.demo-title span,
.demo-progress__copy span,
.demo-queue span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.demo-title strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.demo-title button {
  min-width: 5.4rem;
  min-height: 2.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.demo-title button:hover {
  border-color: var(--primary);
}

.demo-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
}

.demo-progress__ring {
  display: grid;
  place-items: center;
  width: clamp(8rem, 13vw, 10rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #101310 62%, transparent 64%),
    conic-gradient(var(--primary) calc(var(--value) * 1%), rgba(255, 255, 255, 0.08) 0);
  transition: background 500ms ease;
}

.demo-progress__ring span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.demo-progress__ring strong {
  font-size: 1.7rem;
}

.demo-progress__copy {
  display: grid;
  gap: 0.45rem;
}

.demo-progress__copy strong {
  font-size: 1.05rem;
}

.demo-progress__copy small {
  max-width: 23rem;
  color: var(--text-on-dark-muted);
}

.demo-queue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.demo-queue > div {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line-dark);
}

.demo-queue > div:first-child {
  padding-left: 0;
}

.demo-queue > div:last-child {
  border-right: 0;
}

.demo-queue strong,
.demo-queue small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-queue strong {
  font-size: 0.72rem;
}

.demo-queue small {
  color: var(--text-on-dark-muted);
  font-size: 0.62rem;
}

.demo-disclaimer {
  margin: 0;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.53rem;
}

.section-heading--center {
  display: block;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.relief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.relief-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
}

.relief-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
  align-items: center;
  gap: 3rem;
  min-height: 30rem;
  color: var(--text-on-dark);
  background: var(--ink-soft);
}

.relief-card--wide > div:first-child {
  max-width: 29rem;
}

.card-kicker {
  color: #5c6d35;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.relief-card--wide .card-kicker {
  color: var(--primary);
}

.relief-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 3.3vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.relief-card p {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.relief-card--wide p {
  color: var(--text-on-dark-muted);
}

.queue-visual {
  display: grid;
  gap: 0.7rem;
}

.queue-visual span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem 1.3rem;
  transform: translateX(calc(var(--order) * 1.2rem));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.025);
}

.queue-visual span:first-child {
  border-color: rgba(216, 255, 112, 0.28);
  color: var(--text-on-dark);
}

.queue-visual i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary);
}

.queue-visual b {
  font-family: var(--font-mono);
}

.signal-visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.45rem;
  height: 8rem;
  margin: 3rem 0;
}

.signal-visual i {
  width: 1.3rem;
  height: 35%;
  border-radius: 99px;
  background: #8aa444;
  animation: signal-wave 1.6s ease-in-out infinite alternate;
}

.signal-visual i:nth-child(2) {
  height: 62%;
  animation-delay: -0.4s;
}

.signal-visual i:nth-child(3) {
  height: 90%;
  animation-delay: -0.8s;
}

.signal-visual b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7rem;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(84, 104, 35, 0.18);
  border-radius: 50%;
}

.relief-card--accent {
  color: var(--ink);
  background: var(--primary);
}

.relief-card--accent .card-kicker {
  color: #3b461d;
}

.relief-card--accent p {
  color: #3b421f;
}

.big-word {
  margin-block: auto;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.trust-strip {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0e100f;
}

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

.trust-strip p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  min-height: 6.5rem;
  margin: 0;
  padding: 1.4rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
}

.trust-strip p:first-child {
  padding-left: 0;
}

.trust-strip p:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip p span {
  grid-row: 1 / 3;
  color: var(--brand-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.trust-strip p strong {
  color: var(--text-on-dark);
}

.trust-section {
  border-top: 1px solid var(--line-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.trust-copy h2 {
  max-width: 10ch;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.7rem 0;
  color: var(--text-on-dark-muted);
}

.trust-facts {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.trust-facts article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.trust-facts article > span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.trust-facts h3 {
  margin: 0;
  font-size: 1.05rem;
}

.trust-facts p {
  margin: 0.45rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
}

.trial-section {
  padding-block: 0 clamp(4.5rem, 8vw, 7rem);
}

.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--primary);
}

.trial-copy h2 {
  max-width: 11ch;
}

.trial-copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: #39401f;
}

.trial-action {
  display: grid;
  gap: 1rem;
}

.trial-action > p {
  display: flex;
  align-items: end;
  gap: 1rem;
  margin: 0;
}

.trial-action > p strong {
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.trial-action > p span {
  max-width: 7rem;
  color: #3b421f;
  font-size: 0.8rem;
}

.trial-action small {
  color: #424a24;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.faq-section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 1.2rem;
  aspect-ratio: 1;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.5rem 0 1.5rem;
  color: var(--text-muted);
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 14vw, 13rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(128, 87, 245, 0.12), transparent 20rem),
    radial-gradient(circle at center, rgba(216, 255, 112, 0.1), transparent 28rem),
    var(--ink);
}

.closing-content {
  display: grid;
  justify-items: center;
}

.closing-content p {
  margin: 1.8rem 0 0;
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-content h2 {
  margin: 0.4rem 0 2.2rem;
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.closing-mark {
  position: relative;
  width: 8rem;
  aspect-ratio: 1;
}

.closing-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 140, 255, 0.42);
  transform: rotate(30deg);
  animation: closing-orbit 12s linear infinite;
}

.closing-mark span:nth-child(2) {
  inset: 1.1rem;
  border-color: rgba(121, 222, 201, 0.35);
  animation-direction: reverse;
  animation-duration: 8s;
}

.closing-mark span:nth-child(3) {
  inset: 2.3rem;
  background: var(--brand);
  animation: none;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 3rem;
}

.brand--footer {
  grid-row: 1 / 3;
}

.footer-grid > p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
}

.footer-grid nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.footer-grid nav a:hover {
  color: var(--brand-soft);
}

.footer-grid small {
  grid-column: 2 / -1;
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes route-flow {
  to { stroke-dashoffset: -92; }
}

@keyframes node-pulse {
  0%, 100% { transform: scale(0.72); opacity: 0.65; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes signal-wave {
  to { transform: scaleY(0.55); opacity: 0.6; }
}

@keyframes closing-orbit {
  to { transform: rotate(390deg); }
}

@media (max-width: 70rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    place-content: center;
    gap: 0.35rem;
    width: 2.8rem;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 5.3rem;
    right: 0;
    display: grid;
    width: min(22rem, calc(100vw - (var(--page) * 2)));
    padding: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: #111411;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a:not(.button) {
    min-height: 3rem;
    padding: 0.7rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-nav .mobile-nav__panel {
    margin-top: 0.8rem;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--text-on-dark);
    font-weight: 800;
    text-align: center;
  }

  .mobile-nav .button {
    margin-top: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 9rem;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero-visual {
    min-height: 36rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .product-heading,
  .games-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-chapter,
  .product-chapter--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-chapter__copy {
    max-width: 43rem;
  }

  .product-chapter--reverse .product-chapter__copy,
  .product-chapter--reverse .product-shot {
    order: initial;
  }

  .remote-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .remote-copy {
    order: 1;
    max-width: 43rem;
  }

  .remote-layout > .product-shot {
    order: 2;
  }

  .product-heading > .eyebrow {
    margin-top: 0;
  }

  .product-heading > div,
  .games-heading > div {
    max-width: 48rem;
  }

  .games-heading > p {
    max-width: 40rem;
  }

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

  .section-heading > p:last-child {
    max-width: 38rem;
  }

  .decision-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-card:nth-child(2) {
    border-right: 0;
  }

  .decision-card:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .decision-card:nth-child(3) {
    padding-left: 0;
  }

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

  .console-copy,
  .trust-copy {
    max-width: 42rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --section: clamp(4.5rem, 18vw, 6.5rem);
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12vw, 5.2rem);
  }

  .hero-ledger__grid,
  .trust-strip__grid,
  .attention-grid,
  .relief-grid,
  .relief-card--wide,
  .trial-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-facts {
    grid-template-columns: 1fr;
  }

  .product-tour-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: var(--radius-md);
    backdrop-filter: none;
  }

  .product-tour-nav a {
    padding-inline: 0.45rem;
  }

  .product-chapter {
    scroll-margin-top: 1rem;
  }

  .product-facts article,
  .product-facts article:first-child,
  .product-facts article:last-child {
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .product-facts article:last-child {
    border-bottom: 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-legal {
    margin-left: 0;
    text-align: left;
  }

  .hero-ledger p {
    min-height: 4.5rem;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-strip p,
  .trust-strip p:first-child,
  .trust-strip p:last-child {
    min-height: 4.5rem;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .hero-ledger p:last-child {
    border-bottom: 0;
  }

  .attention-copy {
    padding-top: 0;
  }

  .decision-card {
    min-height: 22rem;
  }

  .relief-card--wide {
    gap: 2rem;
  }

  .queue-visual span {
    transform: none;
  }

  .faq-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand--footer,
  .footer-grid small {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 38rem) {
  .site-header {
    min-height: 5rem;
  }

  .hero-grid {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .button {
    width: 100%;
  }

  .trust-line {
    display: grid;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-product-shot {
    border-radius: var(--radius-md);
  }

  .hero-product-shot__bar span:last-child {
    display: none;
  }

  .hero-product-shot figcaption {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .hero-product-shot figcaption strong {
    justify-self: start;
    text-align: left;
  }

  .control-card {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .control-card__top,
  .control-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .current-task {
    grid-template-columns: auto 1fr;
  }

  .progress-value {
    grid-column: 2;
    font-size: 1.25rem;
  }

  .task-copy small,
  .control-card__footer span:last-child {
    display: none;
  }

  .section-intro h2,
  .section-heading h2,
  .product-heading h2,
  .games-heading h2,
  .console-copy h2,
  .trust-copy h2,
  .trial-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .decision-flow {
    grid-template-columns: 1fr;
  }

  .product-capture {
    border-radius: var(--radius-md);
  }

  .product-chapter {
    padding-block: 3.75rem;
  }

  .product-chapter h3 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .product-shot {
    border-radius: var(--radius-md);
  }

  .product-shot__top span:last-child {
    display: none;
  }

  .product-shot figcaption {
    line-height: 1.5;
  }

  .product-capture__bar span:last-child {
    display: none;
  }

  .product-capture img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
  }

  .product-capture figcaption {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .product-capture figcaption p {
    justify-self: start;
    text-align: left;
  }

  .game-card__caption {
    min-height: 6rem;
  }

  .decision-card,
  .decision-card:first-child,
  .decision-card:nth-child(3),
  .decision-card:last-child {
    min-height: auto;
    padding: 1.7rem 0 2.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .decision-card svg {
    margin: 2.5rem 0 1.5rem;
  }

  .demo-toolbar {
    grid-template-columns: 1fr auto;
  }

  .demo-toolbar > span:nth-child(2) {
    display: none;
  }

  .demo-body {
    grid-template-columns: 1fr;
  }

  .demo-body aside {
    display: none;
  }

  .demo-content {
    padding: 1.2rem;
  }

  .demo-title {
    align-items: flex-start;
  }

  .demo-progress {
    grid-template-columns: 1fr;
  }

  .demo-progress__ring {
    width: 7.5rem;
  }

  .demo-queue {
    grid-template-columns: 1fr;
  }

  .demo-queue > div,
  .demo-queue > div:first-child {
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .demo-queue > div:last-child {
    border-bottom: 0;
  }

  .relief-card {
    min-height: 24rem;
    border-radius: var(--radius-md);
  }

  .relief-card--wide {
    min-height: auto;
  }

  .big-word {
    font-size: 4.5rem;
  }

  .trust-grid {
    gap: 3rem;
  }

  .trial-card {
    gap: 3rem;
    border-radius: var(--radius-md);
  }

  .trial-action > p {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-content h2 {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}

@media (min-width: 120rem) {
  :root {
    --shell: 124rem;
    --page: clamp(5rem, 6vw, 12rem);
    --section: clamp(8rem, 8vw, 12rem);
  }

  body {
    font-size: 1.08rem;
  }

  .site-header {
    min-height: 7.25rem;
  }

  .brand {
    gap: 0.85rem;
    font-size: 1.2rem;
  }

  .brand img {
    width: 2.1rem;
    height: 2.1rem;
  }

  .desktop-nav {
    gap: clamp(2rem, 2.2vw, 3.4rem);
  }

  .desktop-nav a {
    font-size: 0.86rem;
  }

  .header-panel-link,
  .header-cta {
    padding: 0.84rem 1.35rem;
    font-size: 0.86rem;
  }

  .hero,
  .hero-grid {
    min-height: 68rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(48rem, 1.12fr);
    gap: clamp(6rem, 7vw, 11rem);
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .hero::before {
    background-size: 7rem 7rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(5.5rem, 4.2vw, 7rem);
  }

  .hero-lead {
    max-width: 46rem;
    font-size: 1.28rem;
  }

  .button {
    min-height: 3.8rem;
    padding-inline: 1.7rem;
    font-size: 0.9rem;
  }

  .trust-line {
    font-size: 0.67rem;
  }

  .product-heading {
    grid-template-columns: minmax(19rem, 0.58fr) minmax(0, 1.42fr);
    gap: 7rem;
  }

  .product-heading h2 {
    font-size: clamp(5rem, 4.2vw, 6.4rem);
  }

  .product-heading > div > p {
    max-width: 50rem;
    font-size: 1.16rem;
  }

  .product-tour-nav a {
    min-height: 5.4rem;
    font-size: 0.84rem;
  }

  .product-chapter,
  .product-chapter--reverse {
    gap: clamp(6rem, 7vw, 11rem);
    padding-block: clamp(5rem, 6vw, 8rem);
  }

  .product-chapter {
    grid-template-columns: minmax(24rem, 0.72fr) minmax(0, 1.28fr);
  }

  .product-chapter--reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(24rem, 0.72fr);
  }

  .product-chapter h3 {
    font-size: clamp(4.8rem, 3.6vw, 5.8rem);
  }

  .remote-layout {
    grid-template-columns: minmax(0, 1.28fr) minmax(24rem, 0.72fr);
    gap: clamp(6rem, 7vw, 11rem);
  }

  .remote-copy h2 {
    font-size: clamp(4.8rem, 3.6vw, 5.8rem);
  }

  .remote-copy > p:not(.eyebrow, .product-chapter__note) {
    max-width: 39rem;
    font-size: 1.08rem;
  }

  .product-chapter__copy > p:not(.product-chapter__number, .product-chapter__note) {
    max-width: 39rem;
    font-size: 1.08rem;
  }

  .product-points li {
    min-height: 3.6rem;
    font-size: 0.88rem;
  }

  .product-chapter__note {
    font-size: 0.72rem;
  }

  .panel-access {
    min-height: 3.6rem;
    padding-inline: 1.4rem;
    font-size: 0.86rem;
  }

  .trust-strip__grid p,
  .faq-list,
  .trial-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(34rem, 1.3fr);
    gap: 12rem;
  }

  .trial-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(24rem, 0.65fr);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    transform: none !important;
  }
}
