:root {
  --ink: #080b10;
  --paper: #0b0f15;
  --white: #f4f7fb;
  --blue: #f97316;
  --blue-dark: #c85d0f;
  --acid: #f97316;
  --line: rgba(244, 247, 251, 0.12);
  --muted: #a3afbf;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  top: -50px;
  left: 1rem;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  height: 76px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: absolute;
  z-index: 20;
  width: 100%;
  color: #fff;
}
.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  width: max-content;
}
.brand span {
  color: var(--acid);
}
.brand .brand-dot {
  color: var(--blue);
}
nav {
  display: flex;
  gap: 2.25rem;
}
nav a,
footer a {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
nav a:hover,
footer a:hover {
  color: var(--acid);
}
.site-header > .button {
  justify-self: end;
}
.menu-toggle,.mobile-menu { display: none; }
.menu-toggle { width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(255,255,255,.25); background: #10151d; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease,opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.button {
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--acid);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: #fff;
  border-color: #fff;
}
.button:focus-visible,
a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.button-small {
  min-height: 40px;
  padding: 0.6rem 1rem;
}
.hero {
  min-height: 850px;
  padding: 150px clamp(1.25rem, 7vw, 7rem) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(180px);
  opacity: 0.2;
  right: -250px;
  top: 80px;
}
.court-lines {
  position: absolute;
  inset: 76px 0 0;
  opacity: 0.16;
  background: linear-gradient(
    90deg,
    transparent 49.9%,
    #fff 50%,
    transparent 50.1%
  );
}
.court-lines:before {
  content: "";
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.court-lines span {
  position: absolute;
  inset: 9% 5%;
  border: 1px solid #fff;
}
.hero-copy,
.product-preview {
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.16);
  margin-right: 0.75rem;
}
.hero h1,
.section h2,
.final-cta h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.6rem, 8vw, 8.7rem);
  line-height: 0.78;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 2rem 0 2.25rem;
}
.hero h1 em,
.section h2 em,
.final-cta h2 em {
  font-style: normal;
  color: var(--acid);
}
.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 620px;
  color: #c8d0dc;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}
.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.25rem;
}
.access-note {
  color: #7f8a9b;
  font-size: 0.76rem;
  margin-top: 1.2rem;
}
.product-preview {
  background: #10151d;
  color: var(--white);
  border: 1px solid #303b4d;
  box-shadow: 20px 22px 0 rgba(249, 115, 22, 0.8);
  transform: rotate(1.5deg);
}
.preview-topbar,
.preview-footer {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--line);
}
.status {
  color: var(--blue);
}
.status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
  margin-right: 0.4rem;
}
.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.matchup > div {
  display: flex;
  flex-direction: column;
}
.team-home {
  text-align: right;
}
.team-code {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 0.9;
}
.matchup small {
  color: var(--muted);
}
.versus {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
}
.model-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--blue);
  color: #111318;
}
.model-line div {
  display: flex;
  flex-direction: column;
}
.model-line small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}
.model-line strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
}
.confidence {
  text-align: right;
}
.confidence span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111318;
  line-height: 1;
}
.signal {
  padding: 1.25rem 1.5rem;
}
.signal span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.signal p {
  font-size: 0.82rem;
  margin: 0.4rem 0;
}
.preview-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}
.prop-player { padding: 1.4rem 1.5rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; border-bottom: 1px solid var(--line); }
.prop-path { padding: .7rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; border-bottom: 1px solid var(--line); background: #080b10; color: var(--muted); font: 700 .54rem "Barlow Condensed",sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.prop-path span { white-space: nowrap; }
.prop-path b { color: var(--acid); margin-right: .25rem; }
.prop-path i { color: #46546a; font-style: normal; }
.prop-avatar { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: #111318; font: 700 1rem "Barlow Condensed",sans-serif; }
.prop-player>div { display: flex; flex-direction: column; }
.prop-player small { color: var(--muted); font: 700 .58rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.prop-player strong { font: 700 1.75rem/1 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.prop-player p { margin: .25rem 0 0; color: var(--muted); font-size: .7rem; }
.prop-stat { padding: .45rem .65rem; border: 1px solid rgba(249,115,22,.45); color: var(--acid); font: 700 .62rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.prop-projection { padding: 1.4rem 1.5rem; display: flex; justify-content: space-between; align-items: center; background: var(--acid); color: #111318; }
.prop-projection>div:first-child { display: flex; flex-direction: column; }
.prop-projection small { font: 700 .58rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.prop-projection strong { font: 700 3.8rem/.85 "Barlow Condensed",sans-serif; }
.prop-projection>div:first-child span { margin-top: .35rem; font-size: .65rem; }
.prop-projection .confidence span { color: #111318; }
.prop-lines { border-bottom: 1px solid var(--line); }
.prop-lines>div { padding: .65rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--line); font-size: .72rem; }
.prop-lines>div:last-child { border-bottom: 0; }
.prop-lines .prop-lines-head { color: var(--muted); font: 700 .52rem "Barlow Condensed",sans-serif; letter-spacing: .1em; }
.prop-lines strong { font: 700 1rem "Barlow Condensed",sans-serif; }
.prop-lines b { color: var(--acid); font: 700 .65rem "Barlow Condensed",sans-serif; letter-spacing: .08em; }
.prop-lines .prop-positive { color: var(--acid); font-weight: 700; }
.user-prop-line { padding: 1rem 1.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; align-items: end; border-bottom: 1px solid var(--line); }
.user-prop-line>div { display: flex; flex-direction: column; }
.user-prop-line small { margin-bottom: .25rem; color: var(--muted); font: 700 .52rem "Barlow Condensed",sans-serif; letter-spacing: .1em; }
.user-prop-line strong { font: 700 1.25rem "Barlow Condensed",sans-serif; text-transform: uppercase; }
.user-prop-line strong em { color: var(--muted); font-size: .65rem; font-style: normal; }
.user-prop-line .prop-positive { color: var(--acid); }
.user-prop-line>b { grid-column: 1/-1; padding: .55rem .7rem; background: rgba(249,115,22,.1); border-left: 2px solid var(--acid); color: var(--acid); font: 700 .62rem "Barlow Condensed",sans-serif; letter-spacing: .1em; }
.signal-bar {
  padding: 1.05rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: var(--acid);
  color: #111318;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  overflow: hidden;
}
.signal-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111318;
}
.section {
  padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 7rem);
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr 1.25fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 5rem;
}
.section-intro h2 {
  font-size: clamp(4rem, 7vw, 7.3rem);
  margin: 0;
}
.section-intro > p:last-child {
  color: var(--muted);
  margin: 0;
}
.section-number {
  align-self: start;
  color: var(--blue);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  min-height: 380px;
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.feature-wide {
  grid-column: span 2;
  min-height: 330px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem;
}
.feature-index {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--blue);
  font-weight: 700;
}
.feature h3,
.steps h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.feature p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}
.mini-chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: auto;
}
.mini-chart span {
  flex: 1;
  background: var(--blue);
  min-width: 10px;
}
.stat-pill {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.stat-pill span,
.stat-pill small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.stat-pill strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--blue);
}
.stat-pill small {
  grid-column: 2;
}
.benchmark-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.benchmark-list span {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
}
.benchmark-list b {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.benchmark-list .best {
  color: var(--blue);
  font-weight: 700;
}
.feature-dark {
  background: #151b24;
  color: #fff;
}
.feature-dark p {
  color: var(--muted);
}
.ring {
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 12px solid var(--blue);
  border-right-color: var(--acid);
  font-family: "Barlow Condensed", sans-serif;
}
.ring strong {
  font-size: 4rem;
}
.ring span {
  font-size: 1.3rem;
}
.how {
  background: #10151d;
}
.steps {
  list-style: none;
  margin: 0 0 0 34%;
  padding: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--blue);
}
.steps p {
  color: var(--muted);
  margin: 0;
  max-width: 650px;
}
.principles {
  background: #151b24;
  color: #fff;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8rem;
  align-items: end;
}
.principles blockquote {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 0.87;
  text-transform: uppercase;
  margin: 0;
}
.principles em {
  font-style: normal;
  color: var(--acid);
}
.principle-list p {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
  font-weight: 600;
}
.principle-list span {
  color: var(--acid);
  font-family: "Barlow Condensed", sans-serif;
  margin-right: 1.5rem;
}
.final-cta {
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.final-cta h2 {
  font-size: clamp(4.2rem, 8vw, 8rem);
  margin: 2rem 0;
}
.final-cta > p:not(.eyebrow) {
  color: #aeb8c8;
  margin: 0 auto 2rem;
}
.button-light {
  background: var(--acid);
  color: var(--ink);
}
footer {
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 2fr auto auto;
  gap: 2rem;
  align-items: center;
  background: #05070a;
  color: #9ba5b4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
footer .brand {
  color: #fff;
}
footer p,
footer small {
  font-size: 0.7rem;
  margin: 0;
}
footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    background: rgba(8,11,16,.96);
    backdrop-filter: blur(12px);
  }
  .site-header nav {
    display: none;
  }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-menu { position: absolute; top: 76px; left: 0; right: 0; z-index: 30; padding: 1rem clamp(1.25rem,5vw,3rem) 2rem; display: flex; flex-direction: column; background: #080b10; border-top: 1px solid #202938; border-bottom: 1px solid #303b4d; box-shadow: 0 24px 50px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none; transition: opacity .2s ease,transform .2s ease,visibility .2s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .mobile-menu a { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid #202938; color: var(--white); font: 700 1.2rem "Barlow Condensed",sans-serif; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
  .mobile-menu a.active { color: var(--acid); }
  .mobile-menu .mobile-menu-cta { min-height: 50px; justify-content: center; margin-top: 1rem; border: 1px solid var(--acid); background: var(--acid); color: #111318; }
  body.menu-open { overflow: hidden; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 135px;
  }
  .product-preview {
    max-width: 600px;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .feature-wide {
    grid-template-columns: 50px 1fr;
  }
  .feature-wide .mini-chart {
    grid-column: 2;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .steps {
    margin-left: 0;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  footer p {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 68px;
    padding: 0 1rem;
  }
  .mobile-menu { top: 68px; }
  .site-header .button {
    font-size: 0.65rem;
  }
  .hero {
    min-height: auto;
    padding: 125px 1.25rem 80px;
  }
  .hero h1 {
    font-size: 4.6rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }
  .product-preview {
    box-shadow: 10px 12px 0 var(--blue);
    margin-right: 10px;
  }
  .team-code {
    font-size: 3.1rem;
  }
  .prop-player { grid-template-columns: auto 1fr; }
  .prop-path { overflow-x: auto; justify-content: flex-start; }
  .prop-stat { grid-column: 1/-1; text-align: center; }
  .prop-projection strong { font-size: 3rem; }
  .prop-lines>div { padding-left: 1rem; padding-right: 1rem; }
  .user-prop-line { grid-template-columns: 1fr 1fr; }
  .section {
    padding: 5rem 1.25rem;
  }
  .section-intro {
    margin-bottom: 3rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature-wide {
    grid-column: auto;
    min-height: 340px;
  }
  .feature-wide {
    display: flex;
  }
  .mini-chart {
    width: 100%;
  }
  .steps li {
    grid-template-columns: 45px 1fr;
  }
  .signal-bar {
    justify-content: flex-start;
  }
  .principles {
    gap: 3rem;
  }
  .final-cta h2 {
    font-size: 4.2rem;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer p,
  footer small {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Long-form product pages */
.page-header { position: absolute; }
.page-header nav .active { color: var(--acid); }
.page-hero { min-height: 760px; padding: 160px clamp(1.25rem, 7vw, 7rem) 100px; display: grid; grid-template-columns: 2fr 1fr; gap: clamp(3rem, 10vw, 10rem); align-items: end; background: var(--ink); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(249,115,22,.22); border-radius: 50%; right: -180px; top: 40px; box-shadow: 0 0 100px rgba(249,115,22,.08); }
.page-hero-copy,.page-hero-stat { position: relative; z-index: 1; }
.page-hero h1 { margin: 2rem 0; font-family: "Barlow Condensed",sans-serif; font-size: clamp(4.8rem,9vw,9.5rem); line-height: .8; letter-spacing: -.035em; text-transform: uppercase; }
.page-hero h1 em { color: var(--acid); font-style: normal; }
.page-hero-copy>p:last-child { max-width: 740px; color: var(--muted); font-size: 1.15rem; }
.page-hero-copy>.page-hero-lede { max-width:740px; color:var(--muted); font-size:1.15rem; }
.process-hero .page-hero-copy>.access-note { max-width:740px; margin:1.25rem 0 0; padding-left:1rem; border-left:2px solid var(--acid); color:#7f8a9b; font-size:.76rem; }
.page-hero-stat { padding: 2rem; border-left: 2px solid var(--blue); background: #10151d; }
.page-hero-stat span { color: var(--acid); font: 700 6rem/.8 "Barlow Condensed",sans-serif; }
.page-hero-stat p { margin: 1.25rem 0 0; color: var(--muted); }
.product-page-hero { grid-template-areas:"notice notice" "copy stat"; column-gap:clamp(3rem,8vw,8rem); row-gap:2rem; }
.product-page-hero>.access-note { grid-area:notice; align-self:end; margin:0; position:relative; z-index:1; }
.product-page-hero>.page-hero-copy { grid-area:copy; }
.product-page-hero>.page-hero-stat { grid-area:stat; }
.detail-section { padding: clamp(6rem,10vw,10rem) clamp(1.25rem,7vw,7rem); display: grid; grid-template-columns: minmax(170px,1fr) 3fr; gap: clamp(2rem,7vw,8rem); border-top: 1px solid var(--line); }
.detail-section-raised { background: #10151d; }
.detail-kicker { display: flex; gap: 1rem; color: var(--acid); font: 700 .75rem "Barlow Condensed",sans-serif; letter-spacing: .15em; }
.detail-kicker span { color: var(--muted); }
.detail-kicker p { margin: 0; }
.detail-content h2,.standards h2 { margin: 0 0 2rem; font: 700 clamp(3.5rem,6vw,7rem)/.85 "Barlow Condensed",sans-serif; letter-spacing: -.025em; text-transform: uppercase; }
.detail-lede { max-width: 820px; margin: 0 0 4rem; color: var(--muted); font-size: 1.15rem; }
.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-grid article { min-height: 220px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-grid h3,.split-copy h3,.roadmap-list h3,.model-cards h3,.explanation-list h3,.standards-grid h3 { margin: 0 0 .75rem; font: 700 1.75rem/1 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.detail-grid p,.split-copy p,.roadmap-list p,.model-cards p,.explanation-list p,.standards-grid p { color: var(--muted); margin: 0; }
.metric-row,.process-map { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.metric-row span { flex: 1 1 160px; padding: 1.3rem 1rem; background: var(--ink); color: var(--acid); font: 700 .75rem "Barlow Condensed",sans-serif; letter-spacing: .1em; text-align: center; }
.split-copy { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; margin-top: 4rem; }
.comparison-demo { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.comparison-demo>div { min-height: 240px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.comparison-demo>div:last-child { border: 0; }
.comparison-demo small { color: var(--muted); letter-spacing: .12em; }
.comparison-demo strong { color: var(--white); font: 700 5rem/.9 "Barlow Condensed",sans-serif; }
.comparison-demo span { color: var(--muted); }
.comparison-demo .comparison-best { background: var(--blue); color: #111318; }
.comparison-demo .comparison-best small,.comparison-demo .comparison-best strong,.comparison-demo .comparison-best span { color: #111318; }
.detail-note { margin: 2rem 0 0; padding-left: 1rem; border-left: 2px solid var(--blue); color: var(--muted); font-size: .8rem; }
.roadmap-list,.explanation-list { list-style: none; margin: 4rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.roadmap-list li,.explanation-list li { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.roadmap-list li>span,.explanation-list li>span { color: var(--acid); font: 700 .8rem "Barlow Condensed",sans-serif; }
.process-map { padding: 1.25rem; justify-content: center; align-items: center; gap: 1.4rem; background: var(--acid); color: #111318; border: 0; font: 700 .8rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.process-map i { font-style: normal; }
.signal-stack { border-top: 1px solid var(--line); }
.signal-stack div { padding: 1.5rem 0; display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--line); }
.signal-stack span { color: var(--acid); font: 700 .75rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.signal-stack b { font-weight: 500; }
.model-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.model-cards article { padding: 2rem; background: var(--paper); }
.model-cards span { display: block; margin-bottom: 3rem; color: var(--acid); font: 700 4rem/.8 "Barlow Condensed",sans-serif; }
.evaluation-cycle { padding: 2rem; display: flex; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); color: var(--acid); font: 700 1rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.standards { background: var(--blue); color: #111318; }
.standards .section-number { color: #111318; }
.standards h2 em { color: var(--white); font-style: normal; }
.standards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; margin-top: 4rem; }
.standards-grid p { color: #3a210f; }
.center-actions { display: flex; justify-content: center; align-items: center; gap: 2rem; }

/* Standalone marketing legal pages */
.legal-header { position: absolute; }
.legal-page { width: min(calc(100% - 40px),1000px); margin: 0 auto; padding: 160px 0 100px; }
.legal-title { padding-bottom: 4rem; border-bottom: 1px solid var(--line); }
.legal-title h1 { margin: 1rem 0; font: 700 clamp(4rem,8vw,8rem)/.85 "Barlow Condensed",sans-serif; text-transform: uppercase; letter-spacing: -.03em; }
.legal-title>p:not(.section-number) { max-width: 700px; color: var(--muted); font-size: 1.1rem; }
.legal-title>div { margin-top: 2rem; display: flex; gap: 1.5rem; color: var(--muted); font-size: .75rem; }
.legal-title>div span { color: var(--acid); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.legal-document { padding: 2rem 0 4rem; }
.legal-document section { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.legal-document h2 { margin: 0 0 1rem; font: 700 2rem "Barlow Condensed",sans-serif; text-transform: uppercase; }
.legal-document p,.legal-document li { color: var(--muted); line-height: 1.75; }
.legal-document p { max-width: 820px; }
.legal-document li+li { margin-top: .65rem; }
.legal-document strong { color: var(--white); }
.legal-back { min-height: 44px; display: inline-flex; align-items: center; color: var(--acid); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }

/* Product walkthrough screenshots */
.walkthrough-section { padding: clamp(6rem,10vw,10rem) clamp(1.25rem,7vw,7rem); background: #080b10; border-top: 1px solid var(--line); }
.walkthrough-alt { background: #10151d; }
.walkthrough-intro { max-width: 920px; margin-bottom: clamp(5rem,8vw,8rem); }
.walkthrough-intro h2 { margin: 1.5rem 0 2rem; font: 700 clamp(4rem,7vw,7.5rem)/.83 "Barlow Condensed",sans-serif; text-transform: uppercase; letter-spacing: -.03em; }
.walkthrough-intro h2 em { color: var(--acid); font-style: normal; }
.walkthrough-intro>p:last-child { color: var(--muted); max-width: 720px; font-size: 1.1rem; }
.visual-steps { display: flex; flex-direction: column; gap: clamp(7rem,12vw,13rem); }
.visual-step { display: grid; grid-template-columns: minmax(230px,.65fr) minmax(540px,1.35fr); gap: clamp(3rem,7vw,8rem); align-items: center; }
.visual-step-reverse .visual-copy { order: 2; }
.visual-step-reverse .app-shot { order: 1; }
.visual-copy>span { color: var(--acid); font: 700 .75rem "Barlow Condensed",sans-serif; letter-spacing: .15em; }
.visual-copy h3 { margin: 1rem 0; font: 700 clamp(2.6rem,4vw,4.5rem)/.9 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.visual-copy p { color: var(--muted); }
.app-shot { border: 1px solid #303b4d; background: #0b1017; box-shadow: 18px 18px 0 rgba(249,115,22,.28); overflow: hidden; }
.shot-bar { min-height: 48px; padding: .8rem 1rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; background: #080b10; border-bottom: 1px solid #202938; font: 700 .65rem "Barlow Condensed",sans-serif; letter-spacing: .11em; }
.shot-bar b { font-size: 1rem; }
.shot-bar b span { color: var(--acid); }
.shot-bar small { color: var(--muted); }
.shot-bar i { justify-self: end; color: var(--acid); font-style: normal; }
.shot-body { padding: clamp(1rem,3vw,2rem); }
.choice-heading { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.choice-heading small { color: var(--acid); font: 700 .58rem "Barlow Condensed",sans-serif; letter-spacing: .13em; }
.choice-heading strong { margin-top: .35rem; font: 700 2rem "Barlow Condensed",sans-serif; text-transform: uppercase; }
.league-options { display: grid; grid-template-columns: 1fr; gap: 1px; margin-bottom: 1rem; background: #202938; border: 1px solid #202938; }
.league-options>div { min-height: 150px; padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; background: #10151d; }
.league-options>div.active { background: rgba(249,115,22,.09); box-shadow: inset 0 0 0 2px var(--acid); }
.league-options span { color: var(--white); font: 700 3rem/.9 "Barlow Condensed",sans-serif; }
.league-options small { color: var(--muted); font-size: .62rem; }
.league-options b { margin-top: 1rem; color: var(--acid); font: 700 .58rem "Barlow Condensed",sans-serif; letter-spacing: .1em; }
.shot-title { display: flex; justify-content: space-between; align-items: end; margin-bottom: 1.5rem; }
.shot-title small,.field-label,.result-head small,.range-line span,.key-read small,.game-result small,.prediction-grid small { color: var(--muted); font: 700 .62rem "Barlow Condensed",sans-serif; letter-spacing: .13em; }
.shot-title strong { font: 700 2.2rem "Barlow Condensed",sans-serif; }
.shot-title em { color: var(--muted); font: 500 .8rem Inter,sans-serif; }
.shot-search { padding: .8rem 1rem; display: flex; justify-content: space-between; border: 1px solid #303b4d; color: var(--muted); font-size: .8rem; }
.player-list { margin: 1rem 0; border-top: 1px solid #202938; }
.player-list>div,.selected-player { min-height: 68px; padding: .75rem; display: flex; align-items: center; gap: .8rem; border-bottom: 1px solid #202938; }
.player-list .selected-player { background: rgba(249,115,22,.08); border-left: 2px solid var(--acid); }
.player-list div div { display: flex; flex-direction: column; }
.player-list small { color: var(--muted); font-size: .65rem; }
.player-list i { margin-left: auto; color: var(--acid); font: 700 .6rem "Barlow Condensed",sans-serif; font-style: normal; letter-spacing: .1em; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--acid); color: #111318; font: 700 .75rem "Barlow Condensed",sans-serif; }
.muted-avatar { background: #202938; color: var(--muted); }
.app-shot button { width: 100%; padding: .9rem; border: 0; background: var(--acid); color: #111318; font: 700 .7rem Inter,sans-serif; letter-spacing: .08em; cursor: default; }
.profile-strip { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.large-avatar { width: 58px; height: 58px; font-size: 1rem; }
.profile-strip div { display: flex; flex-direction: column; }
.profile-strip small,.profile-strip p { color: var(--muted); font-size: .65rem; margin: 0; }
.profile-strip strong { font: 700 1.65rem "Barlow Condensed",sans-serif; }
.stat-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: .65rem 0 1.25rem; background: #202938; border: 1px solid #202938; }
.stat-selector span { padding: .75rem .4rem; background: #10151d; color: var(--muted); text-align: center; font: 700 .62rem "Barlow Condensed",sans-serif; }
.stat-selector .active { background: var(--acid); color: #111318; }
.context-row,.prediction-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-bottom: 1rem; background: #202938; }
.context-row div,.prediction-grid div { padding: 1rem; display: flex; flex-direction: column; background: #080b10; }
.context-row small { color: var(--muted); font-size: .55rem; }
.context-row b,.prediction-grid b { color: var(--white); font: 700 1.25rem "Barlow Condensed",sans-serif; }
.result-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid #202938; }
.result-head>div:first-child { display: flex; flex-direction: column; }
.result-head strong { color: var(--acid); font: 700 4.8rem/.85 "Barlow Condensed",sans-serif; }
.result-head p { margin: 0; color: var(--muted); font-size: .7rem; }
.score-ring { width: 92px; height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid #303b4d; border-top-color: var(--acid); border-right-color: var(--acid); border-radius: 50%; }
.score-ring b { font: 700 2rem/1 "Barlow Condensed",sans-serif; }
.score-ring small { font-size: .45rem; }
.range-line { padding: 1rem 0; display: flex; justify-content: space-between; }
.range-line b { font: 700 1rem "Barlow Condensed",sans-serif; }
.line-table { border: 1px solid #202938; }
.line-table>div { padding: .65rem; display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid #202938; font-size: .7rem; }
.line-table>div:first-child { color: var(--muted); font-size: .55rem; }
.line-table>div:last-child { border: 0; }
.line-table .positive,.line-table strong { color: var(--acid); }
.mock-line-label { min-height: 150px; margin: 1rem 0; padding: 1.2rem; display: grid; grid-template-columns: 1fr auto; align-items: end; border: 2px solid var(--acid); background: rgba(249,115,22,.06); }
.mock-line-label span { grid-column: 1/-1; align-self: start; color: var(--muted); font: 700 .6rem "Barlow Condensed",sans-serif; letter-spacing: .12em; }
.mock-line-label strong { color: var(--white); font: 700 5rem/.8 "Barlow Condensed",sans-serif; }
.mock-line-label small { color: var(--acid); font: 700 .7rem "Barlow Condensed",sans-serif; letter-spacing: .1em; }
.line-entry-note { margin-bottom: 1rem; padding: .75rem; display: flex; align-items: center; gap: .8rem; background: #10151d; border-left: 2px solid var(--acid); }
.line-entry-note>span { color: var(--acid); font: 700 .55rem "Barlow Condensed",sans-serif; letter-spacing: .08em; }
.line-entry-note p { margin: 0; display: flex; flex-direction: column; }
.line-entry-note b { font-size: .72rem; }
.line-entry-note small { color: var(--muted); font-size: .6rem; }
.key-read { margin-top: 1rem; padding: 1rem; border-left: 2px solid var(--acid); background: #10151d; }
.key-read p { margin: .4rem 0 0; font-size: .7rem; color: var(--muted); }
.team-picker { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.5rem 0 2rem; }
.team-picker>div { display: flex; flex-direction: column; align-items: center; }
.team-picker small { color: var(--muted); font-size: .55rem; letter-spacing: .12em; }
.team-picker strong { color: var(--white); font: 700 4.5rem/.9 "Barlow Condensed",sans-serif; }
.team-picker span { color: var(--muted); font-size: .7rem; }
.team-picker em { color: var(--acid); font: 700 .7rem Inter,sans-serif; font-style: normal; }
.game-context { padding: .8rem; display: flex; justify-content: space-between; margin-bottom: 1rem; border: 1px solid #202938; color: var(--muted); font-size: .65rem; }
.analysis-list>div { min-height: 62px; padding: .7rem; display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: .8rem; border-bottom: 1px solid #202938; color: var(--muted); }
.analysis-list>div>span { font: 700 .65rem "Barlow Condensed",sans-serif; }
.analysis-list p { margin: 0; display: flex; flex-direction: column; }
.analysis-list b { color: var(--white); font-size: .75rem; }
.analysis-list small { font-size: .58rem; }
.analysis-list i { font: 700 .55rem "Barlow Condensed",sans-serif; font-style: normal; letter-spacing: .1em; }
.analysis-list .complete i { color: var(--acid); }
.analysis-list .active-row { background: rgba(249,115,22,.08); border-left: 2px solid var(--acid); }
.analysis-list .active-row i { color: var(--acid); }
.game-result { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; text-align: center; }
.game-result>div { display: flex; flex-direction: column; }
.game-result strong { font: 700 3.5rem/.9 "Barlow Condensed",sans-serif; }
.game-result>div>b { color: var(--muted); font: 700 1.5rem "Barlow Condensed",sans-serif; }
.game-result .win-block { padding: 1.2rem; background: var(--acid); color: #111318; }
.game-result .win-block small,.game-result .win-block span { color: #111318; font-size: .55rem; }
.game-result .win-block strong { font-size: 4.5rem; }
.prediction-grid { margin-top: 1rem; }

/* Launch countdown */
.launch-countdown { width:min(100%,620px); margin-top:1.65rem; padding:1rem 1.15rem; display:flex; align-items:center; justify-content:space-between; gap:1.5rem; border:1px solid var(--line); background:rgba(16,21,29,.82); }
.launch-countdown>p { margin:0; color:var(--muted); font:700 .68rem "Barlow Condensed",sans-serif; letter-spacing:.1em; text-transform:uppercase; }
.launch-countdown>p strong { display:block; color:var(--white); font-size:.82rem; }
.countdown-grid { display:flex; align-items:flex-start; gap:.65rem; }
.countdown-grid span { min-width:38px; display:flex; flex-direction:column; text-align:center; }
.countdown-grid b { color:var(--acid); font:700 1.65rem/.9 "Barlow Condensed",sans-serif; font-variant-numeric:tabular-nums; }
.countdown-grid small { margin-top:.25rem; color:var(--muted); font:700 .48rem "Barlow Condensed",sans-serif; letter-spacing:.1em; text-transform:uppercase; }
.countdown-grid i { color:#46546a; font:700 1.3rem/1 "Barlow Condensed",sans-serif; font-style:normal; }

@media (max-width: 900px) {
  .page-hero,.detail-section { grid-template-columns: 1fr; }
  .product-page-hero { grid-template-areas:"notice" "copy" "stat"; row-gap:2rem; }
  .page-hero { min-height: auto; padding-top: 150px; }
  .page-hero-stat { max-width: 480px; }
  .split-copy,.model-cards,.standards-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visual-step { grid-template-columns: 1fr; }
  .visual-copy,.visual-step-reverse .visual-copy { order: 1; }
  .app-shot,.visual-step-reverse .app-shot { order: 2; }
}
@media (max-width: 600px) {
  .launch-countdown { align-items:flex-start; flex-direction:column; gap:1rem; }
  .countdown-grid { width:100%; justify-content:space-between; gap:.25rem; }
  .page-hero { padding: 125px 1.25rem 70px; }
  .page-hero h1 { font-size: 4.6rem; }
  .detail-section { padding: 5rem 1.25rem; }
  .detail-grid,.comparison-demo { grid-template-columns: 1fr; }
  .comparison-demo>div { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-stack div { grid-template-columns: 1fr; gap: .5rem; }
  .process-map { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .evaluation-cycle { overflow-x: auto; }
  .center-actions { flex-direction: column; }
  .legal-page { width: min(calc(100% - 28px),1000px); padding-top: 125px; }
  .legal-title h1 { font-size: 4rem; }
  .legal-title>div { flex-direction: column; gap: .35rem; }
  .app-shot { box-shadow: 8px 8px 0 rgba(249,115,22,.28); }
  .shot-bar { grid-template-columns: 1fr auto; }
  .shot-bar small { display: none; }
  .stat-selector { grid-template-columns: repeat(2,1fr); }
  .game-result .win-block { padding: .8rem .35rem; }
  .game-result strong { font-size: 2.4rem; }
  .game-result .win-block strong { font-size: 3.2rem; }
}
/* Hero preview mirrors the player-prop workspace. */
.hero { grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap:clamp(2rem,4vw,4rem); padding-inline:clamp(1.25rem,4vw,5rem); }
.app-prop-preview { width:100%; max-width:760px; margin:0; border:1px solid #30343b; background:#10151c; box-shadow:0 24px 70px #0005; transform:none; }
.app-prop-layout { display:grid; grid-template-columns:minmax(0,2.35fr) minmax(0,1fr); align-items:start; gap:10px; }
.app-prop-form { min-width:0; background:#0c1016; border-right:1px solid #30343b; }
.app-prop-heading { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; padding:18px 16px; border-bottom:1px solid #30343b; background:#0a0f14; }
.app-prop-heading h2 { margin:0 0 4px; font:400 24px/1.15 Inter,Arial,sans-serif; letter-spacing:-1px; }
.app-prop-heading p,.app-step-content>p,.app-prop-output p { margin:0; color:#9baac0; font-size:10px; line-height:1.6; }
.app-league-badge { flex-shrink:0; padding:5px 7px; background:#ff7611; color:#090d12; font:700 8px/1.4 'Barlow Condensed',sans-serif; letter-spacing:1px; }
.app-prop-step { display:grid; grid-template-columns:30px minmax(0,1fr); gap:12px; padding:20px 16px; border-bottom:1px solid #30343b; }
.app-step-number { color:#ff7611; font:700 29px/1 'Barlow Condensed',sans-serif; letter-spacing:-1px; }
.app-step-content { min-width:0; }
.app-step-content h3 { margin:0 0 5px; font-size:11px; line-height:1.3; text-transform:uppercase; }
.app-example-field { min-width:0; margin-top:12px; }
.app-example-field>span { display:block; margin-bottom:5px; color:#b6c4d8; font-size:9px; font-weight:600; }
.app-field-value { min-height:36px; padding:10px 8px; display:flex; align-items:center; border:1px solid #303e50; border-radius:5px; background:#0a0f14; color:#f4f7fb; font-size:10px; font-weight:600; line-height:1.4; }
.app-matchup { display:grid; grid-template-columns:minmax(0,1fr) 23px minmax(0,1fr); gap:5px; align-items:end; }
.app-versus { display:flex; align-items:center; justify-content:center; align-self:end; width:23px; height:23px; margin-bottom:7px; border-radius:50%; background:#ff7611; color:#080b10; font:700 8px 'Barlow Condensed',sans-serif; }
.app-step-content .app-field-help { margin-top:5px; font-size:8px; }
.app-selected-player { display:flex; align-items:center; gap:9px; padding:8px; min-height:46px; border:1px solid #754421; border-radius:5px; background:#211a16; }
.app-selected-player img { flex-shrink:0; object-fit:cover; border:1px solid #303e50; border-radius:50%; background:#0a0f14; }
.app-selected-player strong { display:block; font-size:10px; }
.app-selected-player small { display:block; margin-top:2px; color:#9baac0; font-size:8px; }
.app-selected-player>span { margin-left:auto; color:#9baac0; font-size:14px; }
.app-stat-fields { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.app-prop-action { padding:20px 16px 14px; background:#0a0f14; }
.app-prop-action a { display:flex; min-height:44px; align-items:center; justify-content:center; gap:12px; background:#ff7611; color:#080b10; text-decoration:none; text-transform:uppercase; font-size:10px; font-weight:700; letter-spacing:1px; transition:background .2s; }
.app-prop-action a:hover { background:#ff963f; }
.app-prop-action a:focus-visible { outline:2px solid white; outline-offset:3px; }
.app-prop-output { padding:18px 12px; background:linear-gradient(145deg,#221b19,#0c1016 35%); border-left:1px solid #30343b; border-bottom:1px solid #30343b; }
.app-prop-output .app-output-eyebrow { margin-bottom:8px; color:#ff7611; font-size:8px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; }
.app-prop-output h2 { margin:0 0 8px; font:400 24px/1.05 Inter,Arial,sans-serif; letter-spacing:-1px; }
.app-prop-output ul { margin:16px 0; padding:0; list-style:none; }
.app-prop-output li { display:flex; gap:10px; padding:12px 0; border-top:1px solid #273242; }
.app-prop-output li>span { flex-shrink:0; color:#ff7611; font-size:14px; }
.app-prop-output strong { display:block; font-size:9px; line-height:1.4; }
.app-prop-output li p { margin-top:3px; font-size:9px; }
.app-prop-output .app-output-note { padding:9px; border:1px solid #273242; border-radius:5px; font-size:8px; }
.app-example-caption { padding:9px 16px; border-top:1px solid #30343b; color:#9baac0; font-size:9px; letter-spacing:.05em; text-align:right; }
@media(min-width:901px) and (max-width:1150px) { .hero { grid-template-columns:1fr; } .hero h1 { font-size:6rem; } }
@media(max-width:900px) { .hero { grid-template-columns:1fr; } .app-prop-preview { max-width:760px; } }
@media(max-width:600px) { .app-prop-layout { grid-template-columns:1fr; gap:0; } .app-prop-form { border-right:0; } .app-prop-heading { padding:20px 16px; } .app-prop-step { padding:20px 14px; gap:10px; } .app-prop-output { border-left:0; padding:20px; } .app-prop-output h2 { max-width:230px; } .app-prop-output ul { margin-bottom:14px; } .app-prop-output strong { font-size:12px; } .app-prop-output li p,.app-prop-output p { font-size:11px; } .app-prop-output .app-output-note { font-size:10px; } .app-field-value { min-height:42px; font-size:11px; } .app-prop-heading p,.app-step-content>p { font-size:11px; } .app-example-field>span { font-size:10px; } .app-selected-player strong { font-size:12px; } .app-selected-player small { font-size:10px; } .app-step-content .app-field-help { font-size:9px; } }

/* Clear explanations and readable sample data. */
[id] { scroll-margin-top: 2rem; }
.reveal { opacity: 1; transform: none; }
.hero-help { max-width: 580px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.hero-help strong { color: var(--white); }
.hero-help a,.text-link,.reading-links a { text-underline-offset: 4px; }
.text-link { display: inline-block; margin-top: 1.5rem; color: var(--acid); font-weight: 600; }
.feature-wide { grid-template-columns: 45px minmax(0,1fr); }
.feature-wide>.text-link { grid-column: 2; margin: 0; }
.feature .example-note { margin-top: 1rem; font-size: .875rem; }
.app-prop-preview>.example-note { margin: 0; padding: 12px 16px; color: var(--muted); font-size: .875rem; border-top: 1px solid var(--line); }
.app-prop-heading p,.app-step-content>p,.app-prop-output p,.app-prop-output li p { font-size: .8125rem; line-height: 1.65; }
.app-step-content h3,.app-prop-output strong { font-size: .875rem; line-height: 1.4; }
.app-example-field>span,.app-selected-player small,.app-step-content .app-field-help,.app-prop-output .app-output-note { font-size: .75rem; line-height: 1.6; }
.app-field-value,.app-selected-player strong { font-size: .8125rem; }
.app-example-caption { font-size: .8125rem; text-align: left; }
.app-prop-output h2 { font-size: 1.5rem; line-height: 1.15; }
.app-prop-layout { grid-template-columns: minmax(0,2fr) minmax(0,1fr); }
.app-prop-action a { font-size: .8125rem; letter-spacing: .02em; text-align: center; padding: .75rem; }
.stat-pill { margin-top: 1.5rem; }
.stat-pill small,.stat-pill span { font-size: .8rem; letter-spacing: .03em; }
.benchmark-list span { flex-wrap: wrap; gap: .5rem; }
.benchmark-list b { font-size: .75rem; }
.detail-content,.page-hero-copy,.page-hero-stat { min-width: 0; }
.detail-content h2 { font-size: clamp(2.8rem,5vw,5rem); line-height: 1; overflow-wrap: break-word; }
.detail-note { font-size: .9375rem; line-height: 1.75; }
.reading-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.reading-links a { padding: .75rem 1rem; border: 1px solid var(--line); font-size: .9375rem; }
.sample-panel { margin-top: 2rem; padding: clamp(1rem,3vw,2rem); border: 1px solid var(--line); background: var(--ink); }
.sample-label { margin: 0 0 1.25rem; color: var(--acid); font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.number-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; margin: 0; }
.number-grid dt { font-size: .9375rem; color: var(--muted); }
.number-grid dd { margin: .75rem 0 0; color: var(--white); font: 700 3.2rem/1.1 'Barlow Condensed',sans-serif; }
.number-grid small { display: block; margin-top: .5rem; color: var(--muted); font: 400 .9rem/1.5 Inter,sans-serif; }
.sample-panel>p:last-child { margin: 1.5rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--line); line-height: 1.75; color: var(--muted); }
.sample-panel strong { color: var(--white); }
.term-list { border-top: 1px solid var(--line); }
.term-list details { border-bottom: 1px solid var(--line); }
.term-list summary,.method-details summary { cursor: pointer; padding: 1.25rem .25rem; font-size: 1.05rem; font-weight: 600; }
.term-list p,.method-details p { color: var(--muted); max-width: 76ch; line-height: 1.8; margin: 0 0 1.5rem; }
.method-details { margin-top: 2.5rem; padding: 0 1.25rem; border: 1px solid var(--line); }
.legal-contents { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin: 2rem 0; padding: 1.25rem; border: 1px solid var(--line); }
.legal-contents strong { flex-basis: 100%; }
.legal-contents a { font-size: .9375rem; text-transform: none; letter-spacing: normal; text-decoration: underline; text-underline-offset: 3px; line-height: 1.7; padding-block: .25rem; }
:where(a,button,summary):focus-visible { outline: 2px solid var(--white); outline-offset: 5px; }
@media (max-width: 1100px) {
  .number-grid { gap: 1rem; }
  .comparison-demo>div { padding: 1.25rem; }
}
@media (max-width: 600px) {
  .app-prop-layout,.number-grid { grid-template-columns: 1fr; }
  .number-grid>div+div { padding-top: 1rem; border-top: 1px solid var(--line); }
  .number-grid dd { font-size: 2.7rem; }
  .feature-wide { grid-template-columns: 1fr; }
  .feature-wide>.text-link { grid-column: 1; }
  .hero h1,.page-hero h1 { font-size: clamp(3.25rem,13vw,4.6rem); line-height: .95; }
  .section-intro h2,.final-cta h2 { font-size: clamp(2.8rem,11vw,4.2rem); line-height: 1; }
  .comparison-demo strong { font-size: 4rem; }
  .app-matchup { grid-template-columns: 1fr; }
  .app-versus { margin: 6px auto 0; }
}
/* Give the four feature summaries equal space and keep footer text readable. */
.feature-wide { grid-column: auto; display: flex; flex-direction: column; gap: 1rem; }
.feature-wide>.text-link { margin-top: auto; }
.section-intro h2 { font-size: clamp(3rem,5vw,5.5rem); line-height: 1; }
footer { grid-template-columns: auto minmax(220px,1fr) auto; gap: 1.5rem 3rem; }
footer p { max-width: 65ch; font-size: .875rem; }
footer small { grid-column: 3; grid-row: 1; font-size: .8rem; }
footer div { grid-column: 1 / -1; grid-row: 2; }
@media (max-width: 600px) {
  footer { grid-template-columns: 1fr; }
  footer p,footer small,footer div { grid-column: 1; grid-row: auto; }
}
