:root {
  --orange: #FE4E09;
  --orange-soft: rgba(254, 78, 9, 0.14);
  --orange-border: rgba(254, 78, 9, 0.35);
  --green: #00D6A3;
  --green-soft: rgba(0, 214, 163, 0.16);
  --green-border: rgba(0, 214, 163, 0.35);
  --black: #0A0A0A;
  --black-2: #121214;
  --black-3: #18181C;
  --offwhite: #F4F1ED;
  --muted: rgba(244, 241, 237, 0.62);
  --muted-2: rgba(244, 241, 237, 0.40);
  --line: rgba(244, 241, 237, 0.08);
  --line-2: rgba(244, 241, 237, 0.14);
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-pro: 0 30px 80px -30px rgba(254, 78, 9, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── Background atmosphere ───────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(254, 78, 9, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(254, 78, 9, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 50%, transparent 90%);
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.bg-orb--1 {
  width: 520px; height: 520px;
  background: var(--orange);
  top: -120px; left: -160px;
}
.bg-orb--2 {
  width: 480px; height: 480px;
  background: #6018d7;
  bottom: -180px; right: -160px;
  animation-delay: -9s;
  opacity: 0.22;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

/* Floating decorative darts */
.floating-dart {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  animation: floatRotate 14s ease-in-out infinite;
}
.floating-dart--1 {
  width: 64px; height: 64px;
  top: 18%; right: 6%;
  animation-delay: -4s;
}
.floating-dart--2 {
  width: 48px; height: 48px;
  bottom: 22%; left: 5%;
  animation-delay: -8s;
}
@keyframes floatRotate {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(15deg); }
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.nav.is-scrolled {
  padding: 12px 32px;
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.82);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--orange);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 14px var(--orange); }
  50% { box-shadow: 0 0 22px var(--orange); }
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--offwhite); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 12px 36px -10px var(--orange);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px var(--orange); }
.btn--primary svg { transition: transform 0.2s ease; }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  background: transparent;
  color: var(--offwhite);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(244, 241, 237, 0.05); border-color: rgba(244, 241, 237, 0.25); }
.btn--block { display: flex; width: 100%; }

/* ── Eyebrow ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulseDot 2s ease-in-out infinite;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px 32px 90px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__title .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 4px;
  opacity: 0.4;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--offwhite);
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--offwhite), rgba(244, 241, 237, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Hero visual: animated dartboard ─────────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
}
.board-stage {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}
.board {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(254, 78, 9, 0.35));
  animation: boardSpin 60s linear infinite;
}
@keyframes boardSpin {
  to { transform: rotate(360deg); }
}
.board-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: pulseOut 3s ease-out infinite;
}
.board-pulse--2 { animation-delay: 1.5s; }
@keyframes pulseOut {
  0% { transform: scale(0.55); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Flying darts */
.dart {
  position: absolute;
  width: 44px; height: 44px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.6));
}
.dart--1 {
  top: 18%; left: 38%;
  transform: rotate(-12deg);
  animation: dartThrow 4.5s ease-out infinite;
}
.dart--2 {
  top: 30%; left: 55%;
  transform: rotate(8deg);
  width: 36px; height: 36px;
  animation: dartThrow 4.5s ease-out infinite 1.5s;
}
.dart--3 {
  top: 48%; left: 46%;
  transform: rotate(-4deg);
  width: 38px; height: 38px;
  animation: dartThrow 4.5s ease-out infinite 3s;
}
@keyframes dartThrow {
  0% {
    transform: translate(-280px, 220px) rotate(35deg) scale(0.6);
    opacity: 0;
  }
  35% { opacity: 1; }
  65% {
    transform: translate(0, 0) rotate(-10deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(-10deg) scale(1);
    opacity: 1;
  }
}

/* Coaching feedback card on hero */
.coaching-card {
  position: absolute;
  bottom: -14px;
  left: -32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid var(--green-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px -10px rgba(0, 214, 163, 0.25);
  min-width: 280px;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.coaching-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.coaching-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--offwhite);
  letter-spacing: 0.2px;
}
.coaching-card__body {
  font-size: 11.5px;
  color: var(--muted);
  height: 16px;
  overflow: hidden;
  position: relative;
}
.ticker {
  display: block;
  animation: ticker 9s ease-in-out infinite;
}
.ticker span {
  display: block;
  height: 16px;
}
@keyframes ticker {
  0%, 18% { transform: translateY(0); }
  22%, 40% { transform: translateY(-16px); }
  44%, 62% { transform: translateY(-32px); }
  66%, 84% { transform: translateY(-48px); }
  88%, 100% { transform: translateY(0); }
}
.coaching-card__score {
  margin-left: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--green);
  letter-spacing: -0.01em;
}
.coaching-card__score small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* Stat chip floating on hero */
.stat-chip {
  position: absolute;
  top: 6%;
  right: -10px;
  padding: 12px 16px;
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid var(--orange-border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -10px rgba(254, 78, 9, 0.3);
  animation: cardFloat 5s ease-in-out infinite 1s;
}
.stat-chip__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.stat-chip__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--offwhite);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Logo strip / trust band ─────────────────────────────────────────── */
.logo-strip {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.logo-strip__item {
  color: var(--muted);
  font-weight: 600;
}
.logo-strip__sep { color: var(--orange); }

/* ── Sections ────────────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 32px;
}
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(244, 241, 237, 0.02), transparent);
  max-width: none;
}
.section--alt > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section--alt .section__head { padding: 0 32px; }
.section--alt .steps { padding: 0 32px; }

.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.section__sub {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Features ────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--orange-border);
}
.feature__viz {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, rgba(254, 78, 9, 0.10), rgba(254, 78, 9, 0.02));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.feature__viz svg { max-height: 100%; width: 100%; }
.feature__body { padding: 22px 24px 26px; }
.feature__icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 10px;
  margin-bottom: 14px;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
}
.feature p { color: var(--muted); font-size: 14.5px; }

/* ── Steps ───────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  position: relative;
}
.step {
  padding: 36px 28px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--orange-border);
}
.step__visual {
  width: 60px;
  height: 80px;
  margin-bottom: 18px;
  opacity: 0.85;
}
.step__num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 42px;
  color: var(--orange);
  opacity: 0.4;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
}
.step p { color: var(--muted); font-size: 15px; }

/* ── Live coaching demo strip ─────────────────────────────────────── */
.demo-strip {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  overflow: hidden;
}
.demo-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.demo-strip__track {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  white-space: nowrap;
  animation: scrollLeft 32s linear infinite;
  width: max-content;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.demo-strip__tag {
  padding: 14px 24px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--offwhite);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.demo-strip__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}
.plan {
  padding: 36px 30px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.plan--pro {
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 78, 9, 0.22), transparent 60%),
    var(--black-2);
  border-color: var(--orange-border);
  box-shadow: var(--shadow-pro);
}
.plan__ribbon {
  position: absolute;
  top: -12px; right: 24px;
  padding: 6px 12px;
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 24px -6px var(--orange);
}
.plan__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.plan__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.plan__period {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}
.plan__list { margin-bottom: 24px; }
.plan__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--offwhite);
  position: relative;
  padding-left: 24px;
}
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.plan__list--check li::before {
  content: '';
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.plan__list li:last-child { border-bottom: none; }
.plan__fine {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 14px;
  text-align: center;
}

/* ── CTA ─────────────────────────────────────────────────────────────── */
.section--cta { text-align: center; }
.cta { max-width: 680px; margin: 0 auto; }
.cta h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta p { color: var(--muted); font-size: 18px; margin-bottom: 36px; }
.cta__badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--offwhite);
  color: var(--black);
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}
.store-badge svg { width: 28px; height: 28px; }
.store-badge div { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge small { font-size: 10px; font-weight: 600; opacity: 0.7; letter-spacing: 0.3px; }
.store-badge span { font-family: var(--display); font-weight: 700; font-size: 17px; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(244, 241, 237, 0.3); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 40px 32px 50px;
  background: rgba(10, 10, 10, 0.6);
}
.footer__row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 6px;
}
.footer__legal {
  color: var(--muted-2);
  font-size: 13px;
}
.footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.footer__links a { transition: color 0.2s ease; }
.footer__links a:hover { color: var(--offwhite); }

/* ── Reveal animation ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Legal pages (privacy / terms) ───────────────────────────────────── */
.legal-layout {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 32px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  font-size: 14px;
}
.legal-toc__label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.legal-toc__list { display: flex; flex-direction: column; gap: 4px; }
.legal-toc__list a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
  border-left: 2px solid transparent;
}
.legal-toc__list a:hover,
.legal-toc__list a.is-active {
  color: var(--offwhite);
  background: rgba(244, 241, 237, 0.03);
  border-left-color: var(--orange);
}

.legal {
  max-width: 760px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.legal__back:hover { color: var(--offwhite); }

.legal h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.legal .updated {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 6px 14px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: 999px;
}

.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--offwhite);
  display: flex;
  align-items: center;
  gap: 14px;
  scroll-margin-top: 120px;
}
.legal h2 .legal__h2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  flex-shrink: 0;
}
.legal h2 .legal__h2-icon svg { width: 20px; height: 20px; }
.legal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--offwhite);
}
.legal p {
  color: rgba(244, 241, 237, 0.80);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal ul { margin: 8px 0 18px 18px; }
.legal ul li {
  list-style: disc;
  color: rgba(244, 241, 237, 0.80);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal a { color: var(--orange); }
.legal a:hover { text-decoration: underline; }
.legal hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.legal strong { color: var(--offwhite); }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  background: var(--black-2);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* Highlight callout */
.legal .callout {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--orange-soft), rgba(254, 78, 9, 0.04));
  border: 1px solid var(--orange-border);
  border-left-width: 3px;
  border-radius: 14px;
  margin: 22px 0;
}
.legal .callout--green {
  background: linear-gradient(135deg, var(--green-soft), rgba(0, 214, 163, 0.04));
  border-color: var(--green-border);
}
.legal .callout__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal .callout--green .callout__icon { background: var(--green); }
.legal .callout__icon svg { width: 16px; height: 16px; }
.legal .callout__title {
  font-weight: 800;
  color: var(--offwhite);
  margin-bottom: 4px;
}
.legal .callout p { margin: 0; color: rgba(244, 241, 237, 0.85); font-size: 14.5px; line-height: 1.6; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-toc {
    position: static;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    background: rgba(18, 18, 20, 0.5);
  }
}
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 22px 60px;
    gap: 48px;
    text-align: center;
  }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; flex-wrap: wrap; gap: 28px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__visual { min-height: auto; }
  .board-stage { width: 340px; }
  .coaching-card { left: 50%; transform: translateX(-50%); bottom: -40px; }
  .stat-chip { top: -10px; right: 20px; }
  .nav { padding: 14px 18px; }
  .nav.is-scrolled { padding: 10px 18px; }
  .nav__links { display: none; }
  .section { padding: 70px 22px; }
  .section--alt .section__head, .section--alt .steps { padding: 0 22px; }
  .footer { padding: 32px 22px; }
  .floating-dart { display: none; }
}
@media (max-width: 480px) {
  .board-stage { width: 280px; }
  .hero__title { font-size: 44px; }
  .coaching-card { min-width: 240px; padding: 10px 14px; }
  .stat-chip { padding: 10px 12px; }
  .stat-chip__value { font-size: 18px; }
}
