:root {
  --ink: #15171c;
  --ink-soft: #23262e;
  --night: #090d15;
  --night-raised: #111725;
  --paper: #f3f0e8;
  --paper-deep: #e7e1d5;
  --white: #fffdf7;
  --muted: #6d6b68;
  --night-muted: #a8afbe;
  --brass: #d5a14a;
  --brass-bright: #efbd65;
  --signal: #82a9e7;
  --line: rgba(21, 23, 28, .15);
  --night-line: rgba(255, 255, 255, .14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 4px; }
.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;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(80% 70% at 50% 34%, rgba(86, 105, 143, .42) 0%, rgba(35, 45, 66, .34) 42%, transparent 76%),
    linear-gradient(145deg, #101725 0%, #090d15 46%, #11131a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.site-header {
  position: relative;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 3vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.wordmark {
  width: fit-content;
  color: #f0eee7;
  font: 500 17px/1 var(--serif);
  letter-spacing: .06em;
}
.wordmark span { color: var(--brass); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: #c9ced8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.header-action {
  justify-self: end;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #f5f2e9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}
.header-action:hover { border-color: var(--brass); color: var(--brass-bright); text-decoration: none; }
.stage-kicker {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 14px 20px 0;
  color: #b8becb;
  font: 600 11px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.stage-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px var(--signal);
}
.stage {
  position: relative;
  z-index: 2;
  flex: 1 1 440px;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px;
}

/* The live score and the recognizable device shells are retained from the original showcase. */
.tv { display: none; position: relative; width: 100%; height: 100%; }
.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.led { display: none; }
#strip {
  position: absolute;
  top: 50%;
  left: 0;
  height: min(94%, 620px, calc(94vw * 1087 / 840));
  display: flex;
  gap: 3px;
  transform: translateY(-50%);
  transition: none;
  will-change: transform;
}
#strip.glide { transition: transform .28s cubic-bezier(.45, .05, .35, 1); }
.page {
  position: relative;
  flex: none;
  height: 100%;
  aspect-ratio: 840 / 1087;
  overflow: hidden;
  background: white;
}
.page img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: left top; }
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 0 solid var(--brass);
  transition: border-width .12s ease;
}
.page.active::after { border-width: 4px; }
.mac, .players { display: none; }

.mobile-devices {
  position: relative;
  width: min(94vw, 820px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.mobile-device-row {
  width: 100%;
  height: min(49vw, 430px);
  max-height: calc(100% - 58px);
  min-height: 0;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 26px);
}
.hero-device {
  position: relative;
  margin: 0;
  background: linear-gradient(145deg, #242832, #08090d 62%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 76px -28px rgba(0,0,0,.9), 0 0 90px rgba(126,158,214,.13);
}
.hero-device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.hero-device img { width: 100%; height: 100%; display: block; }
.device-reference { position: absolute; inset: 0; object-fit: cover; }
.live-score {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 1px;
  overflow: hidden;
  background: #d7d7d7;
}
.live-score img {
  flex: none;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  background: #fff;
}
.tablet-live-score {
  inset: 6.1% 0 0;
  flex-direction: row;
  align-items: flex-start;
}
.phone-live-score {
  inset: 10.2% 0 0;
  flex-direction: column;
  align-items: stretch;
  gap: 1px;
  background: #10131a;
}
.phone-live-score img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}
.device-live-title, .device-live-count {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  background: rgba(181,181,181,.98);
  font: 600 11px/1.15 var(--sans);
}
.device-live-title { text-overflow: ellipsis; }
.hero-tablet .device-live-title { top: 1.2%; left: 4.2%; width: 34%; padding: 1px 3px; font-size: clamp(6px, 1.1vw, 13px); }
.hero-tablet .device-live-count { top: 1.2%; right: 15.8%; width: 7%; padding: 1px 2px; text-align: center; font-size: clamp(5px, .9vw, 11px); }
.hero-phone .device-live-title { top: 2.3%; left: 16%; width: 27%; padding: 1px 2px; font-size: clamp(5px, 1.2vw, 10px); }
.hero-phone .device-live-count { top: 2.3%; left: 44%; width: 14%; padding: 1px; text-align: center; font-size: clamp(5px, 1.1vw, 9px); }
.hero-phone {
  height: min(96%, 410px);
  width: auto;
  aspect-ratio: 1284 / 2778;
  border-radius: 32px;
  padding: 7px;
  z-index: 2;
}
.hero-phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  width: 34%;
  height: 14px;
  transform: translateX(-50%);
  background: #050609;
  border-radius: 999px;
}
.hero-phone .hero-device-screen { border-radius: 25px; }
.hero-tablet {
  display: block;
  height: 100%;
  width: auto;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  padding: 9px;
}
.hero-tablet::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translateX(-50%);
  background: #424856;
  border-radius: 50%;
}
.hero-tablet .hero-device-screen { border-radius: 18px; }
.mobile-demo-controls {
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(8,10,15,.78);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.mobile-demo-controls button {
  min-width: 32px;
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f1eee6;
  cursor: pointer;
  font: 600 13px/1 var(--sans);
}
.mobile-demo-controls button:hover { border-color: var(--brass); color: var(--brass-bright); }
.mobile-page-status { min-width: 86px; color: #d7dae2; text-align: center; font: 11px/1.15 var(--mono); }
.mobile-page-status b { display: block; color: var(--signal); font-size: 9px; letter-spacing: .14em; }

.turn-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 76px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(8,10,15,.76);
  color: #f4f1e9;
  cursor: pointer;
  opacity: .4;
  font: 34px/1 var(--sans);
  transition: opacity .15s ease, background .15s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.turn-control:hover, .turn-control:focus-visible { opacity: 1; background: rgba(8,10,15,.94); }
.turn-control.previous { left: 12px; }
.turn-control.next { right: 12px; }
.page-status {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #d7dae2;
  background: rgba(8,10,15,.78);
  font: 11px/1.2 var(--mono);
  pointer-events: none;
}
.hud {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(8,10,15,.82);
  color: #f4f1e9;
  opacity: 0;
  transform: translateY(4px);
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.hud.show { opacity: 1; transform: none; }
.hint {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: none;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #9ba4b5;
  font: 11px/1 var(--mono);
  letter-spacing: .04em;
}
.hint kbd { color: #d8dce4; }
@keyframes nudge { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.hint .pulse { animation: nudge 2.6s ease-in-out infinite; }
.demo-pause {
  position: absolute;
  z-index: 8;
  right: clamp(18px, 3vw, 48px);
  bottom: 0;
  min-height: 32px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(8,10,15,.62);
  color: #b9c0cd;
  cursor: pointer;
  font: 600 11px/1 var(--sans);
}

.hero-bottom {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  padding: 24px clamp(22px, 4vw, 64px) clamp(30px, 4vw, 54px);
}
.eyebrow {
  margin: 0 0 14px;
  color: #8b6224;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--brass-bright); }
.hero-title h1 {
  max-width: 880px;
  margin: 0;
  color: #f5f1e8;
  font: 400 clamp(39px, 5vw, 74px)/.96 var(--serif);
  letter-spacing: -.045em;
}
.hero-title h1 em { color: var(--brass-bright); font-style: normal; }
.hero-pitch { padding-bottom: 4px; }
.hero-pitch > p {
  max-width: 48ch;
  margin: 0 0 22px;
  color: #c2c8d3;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}
.button-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button-solid { background: var(--brass); color: #17110a; }
.button-solid:hover { background: var(--brass-bright); }
.button-ghost { border-color: rgba(255,255,255,.22); color: #f2efe7; }
.button-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }
.hero-note {
  display: block;
  margin-top: 14px;
  color: #848e9f;
  font-size: 11px;
  line-height: 1.45;
}

/* Editorial sections */
.section { padding: clamp(88px, 10vw, 148px) clamp(22px, 4vw, 60px); }
.section-shell { width: min(1180px, 100%); margin: 0 auto; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 92px);
}
.section-heading h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font: 400 clamp(42px, 5.5vw, 72px)/.99 var(--serif);
  letter-spacing: -.045em;
}
.section-intro {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}
.how-section { background: var(--paper); }
.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}
.steps li {
  min-height: 260px;
  padding: 28px clamp(18px, 2.8vw, 36px) 12px;
  border-right: 1px solid var(--line);
}
.steps li:first-child { padding-left: 0; }
.steps li:last-child { border-right: 0; padding-right: 0; }
.step-number { display: block; margin-bottom: 58px; color: #9e7a40; font: 700 12px/1 var(--mono); }
.steps h3 { margin: 0 0 10px; font: 500 clamp(24px, 2.4vw, 31px)/1.1 var(--serif); letter-spacing: -.025em; }
.steps p { max-width: 31ch; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.roles-section { position: relative; overflow: hidden; background: var(--night); color: var(--white); }
.roles-section::before {
  content: "";
  position: absolute;
  top: -420px;
  right: -280px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(213,161,74,.13);
  border-radius: 50%;
}
.roles-section .section-shell { position: relative; z-index: 1; }
.section-heading-dark h2 { color: #f4f0e8; }
.section-heading-dark .section-intro { color: #aab1bf; }
.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.role-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--night-line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}
.role-host { background: linear-gradient(145deg, rgba(213,161,74,.11), rgba(255,255,255,.025) 58%); }
.role-topline { display: flex; align-items: center; justify-content: space-between; color: #9fa7b6; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.role-topline b { padding: 5px 9px; border-radius: 999px; background: rgba(213,161,74,.14); color: var(--brass-bright); font: 800 10px/1 var(--mono); }
.role-player .role-topline b { background: rgba(130,169,231,.14); color: #a8c8f7; }
.role-card h3 { margin: 60px 0 18px; color: #f4f0e8; font: 400 clamp(32px, 4vw, 48px)/1.05 var(--serif); letter-spacing: -.035em; }
.role-card > p { max-width: 46ch; margin: 0; color: #b7becb; font-size: 16px; }
.role-card ul { margin: 34px 0 48px; padding: 0; list-style: none; }
.role-card li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid rgba(255,255,255,.09); color: #d2d6de; font-size: 14px; }
.role-card li::before { content: ""; position: absolute; left: 0; top: 21px; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.role-player li::before { background: var(--signal); }
.role-footer { margin-top: auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; align-items: center; color: #8f98a8; font-size: 12px; }
.role-footer a { color: var(--brass-bright); font-weight: 700; }

.product-section { background: #f7f4ed; }
.performance-frame {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(21,23,28,.18);
  border-radius: 22px;
  background: #0a0e16;
  box-shadow: 0 38px 90px -52px rgba(20, 23, 31, .65);
}
.performance-frame img { width: 100%; height: auto; display: block; border-radius: 13px; }
.performance-frame figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 12px 8px 3px; color: #9ca4b2; font-size: 11px; }
.performance-frame figcaption span { color: var(--brass-bright); font: 800 10px/1.4 var(--mono); letter-spacing: .1em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-top: 1px solid var(--line); }
.feature-grid article { padding: 30px clamp(18px, 2.8vw, 38px) 18px; border-right: 1px solid var(--line); }
.feature-grid article:first-child { padding-left: 0; }
.feature-grid article:last-child { padding-right: 0; border-right: 0; }
.feature-mark { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; margin-bottom: 38px; border: 1px solid #c9af7f; border-radius: 50%; color: #8c6227; font: 700 15px/1 var(--serif); }
.feature-grid h3 { margin: 0 0 10px; font: 500 clamp(23px, 2.2vw, 29px)/1.1 var(--serif); letter-spacing: -.025em; }
.feature-grid p { max-width: 32ch; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.presenter-story {
  margin-top: clamp(84px, 10vw, 138px);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  padding-top: clamp(58px, 8vw, 90px);
  border-top: 1px solid var(--line);
}
.presenter-copy h3 { max-width: 12ch; margin: 0 0 24px; font: 400 clamp(35px, 4.5vw, 58px)/1.02 var(--serif); letter-spacing: -.04em; }
.presenter-copy > p:last-child { max-width: 42ch; margin: 0; color: var(--muted); }
.presenter-story figure { margin: 0; padding: 8px; border-radius: 18px; background: #0a0e16; box-shadow: 0 30px 70px -45px rgba(13,17,24,.75); transform: rotate(.6deg); }
.presenter-story img { width: 100%; height: auto; display: block; border-radius: 11px; }

.truth-section { padding: 0 clamp(22px, 4vw, 60px) clamp(88px, 10vw, 148px); background: #f7f4ed; }
.truth-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #242a36;
  border-radius: 22px;
  background: var(--night-raised);
  color: var(--white);
}
.truth-grid > div { min-height: 220px; padding: 34px clamp(22px, 3vw, 38px); border-right: 1px solid rgba(255,255,255,.1); }
.truth-grid > div:last-child { border-right: 0; }
.truth-grid span { display: block; margin-bottom: 52px; color: var(--brass); font: 700 11px/1 var(--mono); }
.truth-grid strong { display: block; margin-bottom: 8px; font: 500 25px/1.1 var(--serif); }
.truth-grid p { max-width: 31ch; margin: 0; color: #9fa7b6; font-size: 13px; line-height: 1.55; }

.access-section { background: var(--paper); }
.access-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) clamp(24px, 7vw, 96px);
  text-align: center;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(84,103,144,.36), transparent 65%),
    var(--night);
  box-shadow: 0 40px 90px -60px rgba(12,16,24,.8);
}
.access-card h2 { max-width: 900px; margin: 0 auto 30px; color: #f4f0e8; font: 400 clamp(43px, 6.5vw, 78px)/.98 var(--serif); letter-spacing: -.05em; }
.access-card > p:not(.eyebrow) { max-width: 62ch; margin: 0 auto 34px; color: #afb6c4; font-size: clamp(16px, 1.45vw, 19px); }
.button-row-center { justify-content: center; }
.access-note { display: block; margin-top: 22px; color: #7f899a; font-size: 11px; }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px 44px;
  align-items: center;
  padding: 34px clamp(22px, 4vw, 60px) 42px;
  border-top: 1px solid var(--line);
  color: #716f6b;
  font-size: 12px;
}
.footer-wordmark { color: var(--ink); }
footer p { margin: 0; }
footer nav { display: flex; gap: 22px; }
footer nav a:hover { color: #7e561d; }
footer small { grid-column: 2 / -1; color: #99958d; font-size: 10px; }

@media (min-width: 700px) {
  .hint { display: block; }
}

/* Keep the complete four-screen showcase present at every viewport width. */
.mobile-devices { display: none; }
  .tv {
    display: block;
    width: min(90vw, clamp(667px, 54vw, 960px));
    height: auto;
    aspect-ratio: auto;
    padding: clamp(9px, 1vw, 14px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: linear-gradient(180deg, #17191f 0%, #07080b 62%, #101218 100%);
    box-shadow: 0 38px 90px -25px rgba(0,0,0,.9), 0 0 140px rgba(128,158,213,.16), inset 0 1px 0 rgba(255,255,255,.12);
  }
  .tv > .screen { height: auto; aspect-ratio: 16 / 9; }
  .screen { border-radius: 9px; }
  .screen::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 33%, transparent 47%);
  }
  #strip { height: 100%; }
  .led {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 4px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 7px var(--signal);
  }
  .players {
    display: flex;
    position: absolute;
    z-index: 5;
    left: clamp(14px, 4.5vw, 72px);
    bottom: 8px;
    align-items: flex-end;
    gap: 12px;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.65));
  }
  .pad, .phone { background: #101218; border: 1px solid rgba(255,255,255,.14); }
  .pad { width: clamp(108px, 9.5vw, 148px); aspect-ratio: 3 / 4; padding: 7px; border-radius: 12px; }
  .phone { width: clamp(48px, 4.3vw, 66px); aspect-ratio: 9 / 19.5; padding: 4px; border-radius: 13px; }
  .pad-screen, .phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 6px; background: #000; }
  .phone-screen { border-radius: 10px; }
  .pad-screen img { width: 100%; height: auto; display: block; object-fit: contain; object-position: center top; }
  .phone-screen { display: flex; flex-direction: column; align-items: stretch; }
  .phone-screen img { flex: none; width: 100%; height: auto; display: block; object-fit: contain; object-position: center top; }
  .mac {
    display: block;
    position: absolute;
    z-index: 5;
    right: clamp(14px, 4.5vw, 72px);
    bottom: 8px;
    width: clamp(168px, 15.5vw, 228px);
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.65));
  }
  .mac-screen { aspect-ratio: 16 / 10; padding: 5px; border: 1px solid rgba(255,255,255,.14); border-bottom: none; border-radius: 9px 9px 0 0; background: #0b0c10; }
  .console { width: 100%; height: 100%; display: flex; gap: 2px; overflow: hidden; }
  .console-thumb { position: relative; flex: 0 0 auto; height: 100%; aspect-ratio: 840 / 1087; overflow: hidden; border-radius: 2px; background: #0b0c10; }
  .console-thumb::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 0 solid var(--brass); }
  .console-thumb.is-active::after { border-width: 2px; }
  .console-thumb img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center top; }
.mac-base { width: 112%; height: 7px; margin-left: -6%; border-radius: 2px 2px 7px 7px; background: linear-gradient(180deg, #767d8d 0%, #4a505e 55%, #2c313c 100%); }

@media (max-width: 999px) {
  .hero { min-height: 0; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .stage { flex: none; height: min(52vw, 430px); min-height: 300px; margin: 6px 0 24px; }
  .players { left: clamp(6px, 2vw, 18px); gap: clamp(5px, 1vw, 10px); }
  .pad { width: clamp(58px, 13vw, 108px); padding: 4px; border-radius: 9px; }
  .phone { width: clamp(28px, 5.5vw, 48px); padding: 3px; border-radius: 10px; }
  .mac { right: clamp(6px, 2vw, 18px); width: clamp(94px, 21vw, 168px); }
  .demo-pause { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .hero-pitch { max-width: 700px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .section-intro { max-width: 58ch; }
}

@media (max-width: 760px) {
  .section { padding-top: 86px; padding-bottom: 86px; }
  .site-header { min-height: 64px; }
  .header-action { padding: 8px 12px; }
  .stage-kicker { margin-top: 12px; }
  .hero-title h1 { font-size: clamp(40px, 11.5vw, 62px); }
  .steps, .role-grid, .feature-grid, .truth-grid, .presenter-story { grid-template-columns: 1fr; }
  .steps { border-top: 0; }
  .steps li, .steps li:first-child, .steps li:last-child { min-height: 0; padding: 26px 0 34px; border-top: 1px solid var(--line); border-right: 0; }
  .step-number { margin-bottom: 34px; }
  .role-card { min-height: 500px; }
  .feature-grid article, .feature-grid article:first-child, .feature-grid article:last-child { padding: 30px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid article:last-child { border-bottom: 0; }
  .feature-mark { margin-bottom: 24px; }
  .presenter-story { gap: 42px; }
  .presenter-copy h3 { max-width: 16ch; }
  .presenter-story figure { transform: none; }
  .truth-grid > div { min-height: 200px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .truth-grid > div:last-child { border-bottom: 0; }
  .truth-grid span { margin-bottom: 38px; }
  .performance-frame figcaption { display: block; }
  .performance-frame figcaption span { display: block; margin-bottom: 4px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer small { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wordmark { font-size: 15px; }
  .header-action { font-size: 11px; }
  .stage { height: 330px; min-height: 330px; }
  .turn-control { width: 34px; height: 54px; border-radius: 9px; font-size: 25px; }
  .turn-control.previous { left: 6px; }
  .turn-control.next { right: 6px; }
  .page-status { right: 8px; bottom: 8px; padding: 4px 7px; font-size: 9px; }
  .hud { left: 8px; bottom: 8px; max-width: calc(100% - 70px); padding: 5px 8px; font-size: 10px; }
  .mobile-device-row { height: min(49vw, 260px); }
  .hero-bottom { padding-top: 10px; }
  .hero-pitch > p { font-size: 16px; }
  .button-row { align-items: stretch; }
  .button { flex: 1 1 auto; }
  .role-card h3 { margin-top: 48px; }
  .role-footer { align-items: flex-start; flex-direction: column; }
  .access-card { border-radius: 22px; }
  .access-note { line-height: 1.55; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #strip.glide { transition: none; }
  .hint .pulse { animation: none; }
  .button:hover { transform: none; }
}
