/* ============================================================
   QB COMMAND — daylight game program / drive-down-the-field
   Palette: garnet #782F40 · gold #CEB888 · paper #FAF8F5
            ink #2C1219 · muted #6D5F64 · chalk #F9F5EE
   Type:    Graduate (varsity) · Archivo (voice) · IBM Plex Mono (playbook)

   THESIS: one commanding team color on daylight paper — refuses the
   dark stadium-hype template this category ships.
   OWN-WORLD: FSU garnet + champagne gold on bright paper; Graduate /
   Archivo 900 / Plex Mono; square edges, garnet hairlines, raised
   white cards; garnet owns tracker, chips, CTAs, End Zone, intro.
   STORY: a parent sees a disciplined, professional program, trusts
   it, and books the $50 evaluation.
   FIRST VIEWPORT: light perspective field, garnet stone headline
   drops with dust, garnet CTA + ghost evaluation CTA left, ink
   chalk-play diagram right.
   FORM: brief-pinned by the client (FSU colors, lighter, polished,
   clean) — no concept roll; incumbent composition retained, visual
   world replaced.
   ============================================================ */

:root {
  --garnet: #782F40;
  --garnet-deep: #5C2231;
  --garnet-night: #421622;
  --ink: #2C1219;
  --muted: #6D5F64;
  --paper: #FAF8F5;
  --card: #FFFFFF;
  --gold: #CEB888;
  --gold-ink: #7A6636;
  --chalk: #F9F5EE;
  --line: rgba(120, 47, 64, 0.18);
  --line-soft: rgba(120, 47, 64, 0.10);
  --shadow-rest: 0 1px 2px rgba(44, 18, 25, 0.05), 0 12px 28px -14px rgba(120, 47, 64, 0.28);
  --shadow-lift: 0 2px 4px rgba(44, 18, 25, 0.06), 0 26px 46px -16px rgba(120, 47, 64, 0.38);
  --radius: 16px;
  --radius-sm: 8px;
  --display: "Graduate", "Arial Black", sans-serif;
  --voice: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* anchored sections land below the sticky header */
main [id], #endzone { scroll-margin-top: 5.5rem; }

a, button, input, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: clip;
  background: linear-gradient(180deg, #FAF8F5 0%, #F7F3ED 34%, #FAF8F5 68%, #F6F1EA 100%);
  color: var(--ink);
  font-family: var(--voice);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--garnet);
  outline-offset: 3px;
}
.endzone :focus-visible,
.intro :focus-visible { outline-color: var(--gold); }

/* ---------- living atmosphere ---------- */

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.atmosphere__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.atmosphere__blob--gold {
  width: 55vmax; height: 55vmax;
  top: -18%; left: -12%;
  background: radial-gradient(circle, rgba(206, 184, 136, 0.22), transparent 65%);
}
.atmosphere__blob--maroon {
  width: 65vmax; height: 65vmax;
  bottom: -28%; right: -18%;
  background: radial-gradient(circle, rgba(120, 47, 64, 0.10), transparent 65%);
}
.atmosphere__blob--green {
  width: 50vmax; height: 50vmax;
  top: 28%; left: 52%;
  background: radial-gradient(circle, rgba(206, 184, 136, 0.12), transparent 65%);
}
.atmosphere__dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .atmosphere__blob--gold { animation: drift-a 26s ease-in-out infinite alternate; }
  .atmosphere__blob--maroon { animation: drift-b 34s ease-in-out infinite alternate; }
  .atmosphere__blob--green { animation: drift-c 40s ease-in-out infinite alternate; }
}
@keyframes drift-a { to { transform: translate(9vw, 7vh) scale(1.18); } }
@keyframes drift-b { to { transform: translate(-7vw, -9vh) scale(1.12); } }
@keyframes drift-c { to { transform: translate(-11vw, 6vh) scale(0.9); } }

/* film grain over everything */
.grain {
  position: fixed;
  inset: -60%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: no-preference) {
  .grain { animation: grain-shift 0.9s steps(8) infinite; }
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-4%, 3%); }
  50% { transform: translate(3%, -4%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(4%, 4%); }
}

/* ---------- drive tracker (scroll progress) ---------- */

.drive-tracker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 7px;
  z-index: 60;
  background: var(--garnet-deep);
}
.drive-tracker__field {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0, transparent calc(10% - 1px),
    rgba(249, 245, 238, 0.55) calc(10% - 1px), rgba(249, 245, 238, 0.55) 10%
  );
}
.drive-tracker__ball {
  position: absolute;
  top: -8px;
  left: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 2px rgba(44, 18, 25, 0.45));
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 7px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem var(--pad);
  background: color-mix(in srgb, #FFFFFF 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
}
.wordmark__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.wordmark__text > span { color: var(--garnet); }

/* nav lives in the hamburger drawer at every screen size */
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 18px 30px -18px rgba(44, 18, 25, 0.35);
  overflow: hidden;
}
.site-header.nav-open .site-nav { display: flex; }
.site-nav a {
  display: block;
  padding: 0.95rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--garnet); background: rgba(120, 47, 64, 0.04); }
/* wider screens: compact panel anchored under the burger */
@media (min-width: 40rem) {
  .site-nav {
    left: auto;
    right: clamp(1.25rem, 4vw, 4rem);
    width: 15rem;
    border: 1px solid var(--line-soft);
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}
.ig-link { display: inline-flex; align-items: center; color: var(--muted); }
.ig-link:hover { color: var(--garnet); }
.ig-link svg { display: block; }
.footer-social { display: flex; justify-content: center; gap: 1.1rem; margin-top: 0.5rem; }

.nav-burger {
  display: block;
  background: none;
  border: 1px solid var(--line);
  padding: 0.62rem 0.6rem 0.52rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin-bottom: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger span:last-child { margin-bottom: 0; }
.nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

/* primary: solid garnet (the commanding color) */
.btn--gold {
  background: var(--garnet);
  color: var(--chalk);
  border-color: var(--garnet);
  box-shadow: 0 8px 18px -10px rgba(120, 47, 64, 0.55);
}
.btn--gold:hover { background: var(--garnet-deep); border-color: var(--garnet-deep); }
/* on garnet fields the primary flips to gold so it still pops */
.endzone .btn--gold {
  background: var(--gold);
  color: #3B2617;
  border-color: var(--gold);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.5);
}
.endzone .btn--gold:hover { background: #DCCA9F; border-color: #DCCA9F; }

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--garnet); color: var(--garnet); }
.endzone .btn--ghost { border-color: rgba(249, 245, 238, 0.4); color: var(--chalk); }
.endzone .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--chalk {
  border-color: var(--chalk);
  color: var(--chalk);
}
.btn--chalk:hover { background: var(--chalk); color: var(--garnet-deep); }

.btn--small { padding: 0.55rem 1.1rem; font-size: 0.75rem; }
.btn--big { padding: 1.05rem 2rem; font-size: 0.95rem; }
.btn--block { display: block; text-align: center; margin-top: auto; }

/* ---------- eyebrow / labels ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.eyebrow__pos {
  font-family: var(--display);
  font-size: 0.72rem;
  color: var(--chalk);
  background: var(--garnet);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}
.eyebrow__pos--gold { background: var(--gold); color: #3B2617; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42rem 26rem at 8% -10%, rgba(206, 184, 136, 0.20), transparent 60%),
    radial-gradient(42rem 26rem at 92% -10%, rgba(206, 184, 136, 0.16), transparent 60%),
    radial-gradient(70rem 22rem at 50% 30%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(60rem 40rem at 50% 120%, rgba(120, 47, 64, 0.07), transparent 65%);
}

/* daylight shafts from the top corners */
.hero__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__beams i {
  position: absolute;
  top: -14%;
  width: 36rem;
  height: 130%;
  filter: blur(16px);
  transform-origin: top center;
}
.hero__beams i:first-child {
  left: -8rem;
  transform: rotate(17deg);
  background: linear-gradient(192deg, rgba(206, 184, 136, 0.20), transparent 52%);
}
.hero__beams i:last-child {
  right: -8rem;
  transform: rotate(-17deg);
  background: linear-gradient(168deg, rgba(206, 184, 136, 0.16), transparent 52%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__beams i:first-child { animation: beam-pulse 9s ease-in-out infinite alternate; }
  .hero__beams i:last-child { animation: beam-pulse 12s ease-in-out 1.5s infinite alternate; }
}
@keyframes beam-pulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* 3D field floor scrolling upfield behind the hero (seamless 5s loop) */
.hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
  -webkit-mask-image: linear-gradient(180deg, transparent 4%, rgba(0,0,0,0.55) 30%, #000 60%);
  mask-image: linear-gradient(180deg, transparent 4%, rgba(0,0,0,0.55) 30%, #000 60%);
}
.hero__field-plane {
  position: absolute;
  left: -18%;
  right: -18%;
  top: 4%;
  bottom: -14%;
  transform: rotateX(56deg);
  transform-origin: 50% 0;
}
.hero__field-plane svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .ffield-track { animation: field-run 60s linear infinite; }
}
@keyframes field-run {
  from { transform: translateY(0); }
  to { transform: translateY(800px); }
}
.ff-side { stroke: rgba(120, 47, 64, 0.26); stroke-width: 3; }
.ff-yard { stroke: rgba(120, 47, 64, 0.22); stroke-width: 3; }
.ff-hash { stroke: rgba(120, 47, 64, 0.15); stroke-width: 3; }
.ff-num text {
  font-family: var(--display);
  fill: rgba(120, 47, 64, 0.18);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
  padding: clamp(4rem, 9vh, 7rem) var(--pad) clamp(3rem, 7vh, 5rem);
  max-width: 78rem;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--voice);
  font-weight: 900;
  font-size: clamp(1.5rem, 7.6vw, 4.9rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 1.4rem 0 1.6rem;
}
/* headline lines carved from garnet stone */
.hero__title span {
  display: block;
  position: relative;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23s)' opacity='0.22'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #8E4155 0%, #71293C 42%, #4A1826 55%, #843C50 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 2px rgba(44, 18, 25, 0.18);
}
.hero__title span.hero__title-gold {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23s)' opacity='0.22'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #C4A96C 0%, #9C8244 45%, #6E5A2E 58%, #B89D63 100%);
}

/* dust cloud at each line's base */
.hero__title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.06em;
  width: 112%;
  height: 0.6em;
  transform: translate(-50%, 0);
  background:
    radial-gradient(35% 60% at 18% 70%, rgba(122, 102, 54, 0.30), transparent 70%),
    radial-gradient(30% 55% at 50% 58%, rgba(122, 102, 54, 0.24), transparent 70%),
    radial-gradient(35% 60% at 82% 70%, rgba(122, 102, 54, 0.30), transparent 70%);
  filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__title span {
    animation: boulder-drop 0.55s cubic-bezier(0.5, 0, 0.9, 0.4) backwards;
  }
  .hero__title span:nth-child(1) { animation-delay: 0.1s; }
  .hero__title span:nth-child(2) { animation-delay: 0.42s; }
  .hero__title span:nth-child(3) { animation-delay: 0.74s; }
  .hero__title span::after {
    animation: dust-puff 0.65s ease-out forwards;
  }
  .hero__title span:nth-child(1)::after { animation-delay: 0.38s; }
  .hero__title span:nth-child(2)::after { animation-delay: 0.7s; }
  .hero__title span:nth-child(3)::after { animation-delay: 1.02s; }
  .hero__copy { animation: impact-shake 1.5s linear; }
  /* hold everything until the intro finishes */
  .js:not(.intro-complete) .hero__title span,
  .js:not(.intro-complete) .hero__title span::after,
  .js:not(.intro-complete) .hero__copy { animation: none; }
}
@keyframes boulder-drop {
  0% { opacity: 0; transform: translateY(-1.4em); }
  52% { opacity: 1; transform: translateY(0); }
  68% { transform: translateY(0) scale(1.015, 0.93); }
  84% { transform: translateY(-0.045em) scale(0.998, 1.012); }
  100% { opacity: 1; transform: none; }
}
@keyframes dust-puff {
  0% { opacity: 0; transform: translate(-50%, 0) scale(0.35, 0.45); }
  14% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%, -14px) scale(1.75, 1.05); }
}
@keyframes impact-shake {
  0%, 24%, 46%, 68%, 100% { transform: translate(0, 0); }
  26% { transform: translate(-2px, 2px); }
  29% { transform: translate(2px, -1px); }
  48% { transform: translate(-3px, 2px); }
  51% { transform: translate(2px, -2px); }
  70% { transform: translate(-3px, 3px); }
  73% { transform: translate(3px, -2px); }
  76% { transform: translate(-1px, 1px); }
}

.hero__sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.125rem;
}
.hero__sub strong { color: var(--ink); }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* marker-ink play diagram — cycles all six plays with 3D fly-ins */
.hero__play { justify-self: center; width: min(100%, 24rem); }
@media (prefers-reduced-motion: no-preference) {
  .hero__play { animation: play-float 8s ease-in-out infinite alternate; }
}
@keyframes play-float {
  from { transform: translateY(6px); }
  to { transform: translateY(-8px); }
}
.hero__playcall {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.hero__playstage {
  position: relative;
  aspect-ratio: 360 / 420;
  perspective: 1000px;
}
.hero-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-height: 100%;
  display: none;
}
.hero-play.is-active { display: block; }
/* fly in from a different corner of space each play */
@media (prefers-reduced-motion: no-preference) {
  .hero-play.is-active {
    animation: play-fly-in 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
  }
  .js:not(.intro-complete) .hero-play.is-active { animation: none; }
}
.hero-play.fly-0 { --fx: 38deg; --fy: 0deg; --tx: 0; --ty: -18%; }
.hero-play.fly-1 { --fx: 8deg; --fy: -52deg; --tx: 26%; --ty: 0; }
.hero-play.fly-2 { --fx: -30deg; --fy: 12deg; --tx: 0; --ty: 20%; }
.hero-play.fly-3 { --fx: 10deg; --fy: 48deg; --tx: -26%; --ty: 0; }
@keyframes play-fly-in {
  from {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, -18%)) translateZ(-460px)
      rotateX(var(--fx, 38deg)) rotateY(var(--fy, 0deg));
  }
  to { opacity: 1; transform: none; }
}
.routes { width: 100%; height: auto; }

/* cloned intro plays, recolored for the light hero ground */
.hero__playstage .ilos { stroke: rgba(44, 18, 25, 0.30); }
.hero__playstage .io circle { stroke: rgba(44, 18, 25, 0.42); }
.hero__playstage .ir { stroke: rgba(44, 18, 25, 0.72); }
.hero__playstage .ir.ig { stroke: var(--garnet); }
.hero__playstage .ix { stroke: rgba(120, 47, 64, 0.55); }
.hero__playstage .ipass { stroke: var(--gold-ink); }
.hero__playstage .icatch { fill: var(--gold-ink); }
@media (prefers-reduced-motion: no-preference) {
  .hero__playstage .hero-play.is-active .io circle {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: pop-in 0.22s ease-out forwards;
    animation-delay: calc(0.5s + var(--i, 0) * 0.05s);
  }
  .hero__playstage .hero-play.is-active .ir {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: draw 0.55s ease-out forwards;
    animation-delay: calc(0.68s + var(--i, 0) * 0.1s);
  }
  .hero__playstage .hero-play.is-active .ix {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: x-pop 0.24s ease-out forwards;
    animation-delay: calc(0.95s + var(--i, 0) * 0.07s);
  }
  .hero__playstage .hero-play.is-active .ipass {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 0.32s ease-in forwards;
    animation-delay: 1.45s;
  }
  .hero__playstage .hero-play.is-active .icatch {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: catch-pulse 0.3s ease-out forwards;
    animation-delay: 1.72s;
  }
}

.chalk, .route, .tip {
  stroke: rgba(44, 18, 25, 0.72);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.chalk--los { stroke: rgba(44, 18, 25, 0.30); stroke-dasharray: 7 7; }
.chalk-o circle { stroke: rgba(44, 18, 25, 0.42); stroke-width: 2; fill: none; }
.qb-mark {
  font-family: var(--display);
  font-size: 22px;
  fill: var(--garnet);
}
.play-note {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  fill: var(--muted);
}
.route.r3 { stroke: var(--garnet); }
.tip.t3 { stroke: var(--garnet); }

@media (prefers-reduced-motion: no-preference) {
  .route {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw 1.1s ease-out forwards;
  }
  .route.r1 { animation-delay: 0.2s; }
  .route.r2 { animation-delay: 0.45s; }
  .route.r3 { animation-delay: 0.7s; }
  .route.r4 { animation-delay: 0.95s; }
  .route.r5 { animation-delay: 1.2s; }
  .tip { opacity: 0; animation: tip-in 0.25s ease-out forwards; }
  .tip.t1 { animation-delay: 1.15s; }
  .tip.t2 { animation-delay: 1.4s; }
  .tip.t3 { animation-delay: 1.65s; }
  .tip.t4 { animation-delay: 1.9s; }
  .tip.t5 { animation-delay: 2.15s; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes tip-in { to { opacity: 1; } }

/* hero routes wait for the intro to finish: no animation until then,
   so it starts fresh the moment body gets .intro-complete */
@media (prefers-reduced-motion: no-preference) {
  .js:not(.intro-complete) .route,
  .js:not(.intro-complete) .tip { animation: none; }
}

/* pillar ticker strip */
.hero__ticker {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.ticker__track {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
}
.hero__ticker i { color: var(--gold-ink); font-style: normal; font-size: 0.6rem; }
@media (prefers-reduced-motion: no-preference) {
  .ticker__track { animation: ticker 36s linear infinite; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.1rem)); }
}

/* ---------- yard-line section dividers ---------- */

.section {
  padding: 0 var(--pad) clamp(4rem, 9vh, 7rem);
  max-width: 78rem;
  margin: 0 auto;
}

.yardline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(3rem, 7vh, 5rem) 0 clamp(2.5rem, 5vh, 3.5rem);
}
.yardline::before {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--line);
}
.yardline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.yardline__pos {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--garnet);
  border: 1px solid var(--garnet);
  padding: 0.3rem 0.7rem;
  background: var(--card);
  border-radius: var(--radius-sm);
}
.yardline__label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.yardline--red .yardline__pos {
  color: var(--chalk);
  background: var(--garnet);
  border-color: var(--garnet);
}

.section-title {
  font-family: var(--voice);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.section-sub {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 1rem;
}

/* ---------- coach ---------- */

.coach {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.coach__photo {
  position: relative;
}
.coach__rotator {
  position: relative;
  clip-path: polygon(0 4%, 92% 0, 100% 96%, 8% 100%);
}
.coach__rotator img {
  filter: saturate(0.95) contrast(1.03);
}
.coach__rotator img + img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.coach__rotator img { transition: opacity 0.8s ease; }
.coach__rotator img:not(.is-active) { opacity: 0; }
.coach__rotator img.is-active { opacity: 1; }
.coach__photo::after {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold);
  clip-path: polygon(0 4%, 92% 0, 100% 96%, 8% 100%);
  pointer-events: none;
}
.coach__caption {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.2rem;
}

.coach__lede {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.4rem 0 1.8rem;
  max-width: 32rem;
}

.cred-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}
.cred-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}
.cred-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold-ink);
  font-size: 0.75rem;
}
.cred-list strong { color: var(--ink); }

.coach__quote {
  margin-top: 2rem;
  padding: 1.3rem 1.6rem;
  background: var(--garnet);
  color: var(--chalk);
  font-style: italic;
  max-width: 34rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
}

/* ---------- pillars ---------- */

.system__head { margin-bottom: 2.8rem; }

.pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  align-items: start;
}
/* raised tap-to-expand tiles: compact at rest, tap reveals the text */
.pillar {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar:hover,
.pillar.is-open {
  z-index: 1;
  border-color: rgba(120, 47, 64, 0.45);
  box-shadow: var(--shadow-lift);
}
@media (prefers-reduced-motion: no-preference) {
  .pillar:hover { transform: translateY(-6px); }
}
.pillar__h { margin: 0; }
.pillar__toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.05rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.pillar__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--gold-ink);
}
.pillar__name {
  font-family: var(--voice);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pillar__num {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--garnet);
  margin-left: auto;
}
/* plus that folds into a minus when open */
.pillar__plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.pillar__plus::before,
.pillar__plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--garnet);
  transition: transform 0.25s ease;
}
.pillar__plus::after { transform: rotate(90deg); }
.pillar.is-open .pillar__plus::after { transform: rotate(0deg); }
.pillar__body {
  display: grid;
  grid-template-rows: 0fr;
}
@media (prefers-reduced-motion: no-preference) {
  .pillar__body { transition: grid-template-rows 0.3s ease; }
}
.pillar.is-open .pillar__body { grid-template-rows: 1fr; }
body:not(.js) .pillar__body { grid-template-rows: 1fr; }
.pillar__body > div { overflow: hidden; }
.pillar__body p {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0 1.1rem 1.2rem;
}

/* ---------- pricing ---------- */

.section--redzone {
  position: relative;
}

.pricing__head { margin-bottom: 2.5rem; }

.toggle {
  display: inline-flex;
  margin-top: 1.8rem;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.toggle__btn {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.toggle__btn.is-active {
  background: var(--garnet);
  color: var(--chalk);
}
.toggle__btn:not(.is-active):hover { color: var(--ink); }

.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.tiers[hidden] { display: none; }

.tier {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 1.5rem 1.3rem;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tier:hover {
  border-color: rgba(120, 47, 64, 0.4);
  box-shadow: var(--shadow-lift);
}
@media (prefers-reduced-motion: no-preference) {
  .tier:hover { transform: translateY(-5px); }
}
.tier--popular {
  border-color: var(--garnet);
  background: linear-gradient(180deg, rgba(120, 47, 64, 0.06), transparent 45%), var(--card);
}

.tier__flag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3B2617;
  background: var(--gold);
  align-self: flex-start;
  padding: 0.18rem 0.5rem;
  margin-bottom: 0.9rem;
  border-radius: 6px;
}
.tier__flag--value {
  background: var(--card);
  color: var(--garnet);
  border: 1px solid var(--garnet);
}
.tier__flag--mvp { background: var(--garnet); color: var(--chalk); }

.tier__name {
  font-family: var(--voice);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.tier__price {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--garnet);
  margin: 0.7rem 0 1rem;
  line-height: 1;
}
.tier__price span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.tier ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  flex: 1;
}
.tier ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 2px;
  background: var(--gold-ink);
}

/* ---------- getting started (inside the red zone) ---------- */

.rz-start {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding-top: clamp(2.5rem, 5vh, 3.5rem);
  border-top: 1px dashed var(--line);
}

.rz-start__title {
  font-family: var(--voice);
  font-weight: 900;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.start__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.downs {
  list-style: none;
  display: grid;
  gap: 1.6rem;
  margin-top: 2.2rem;
}
.downs li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.downs__marker {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--garnet);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0.5rem 0.6rem;
  min-width: 3.2rem;
  text-align: center;
  border-radius: var(--radius-sm);
}
.downs h3 {
  font-family: var(--voice);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.downs p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.where {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
}
.where__title {
  font-family: var(--voice);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.05rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.where__block { padding-top: 1.3rem; }
.where__block + .where__block {
  margin-top: 1.3rem;
  border-top: 1px dashed var(--line-soft);
}
.where__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.where__place {
  font-family: var(--voice);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.where__town {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

/* ---------- end zone ---------- */

.endzone {
  position: relative;
  background: var(--garnet-night);
  border-top: 4px solid var(--gold);
  overflow: hidden;
}
.endzone__paint {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, rgba(249, 245, 238, 0.035) 0 22px, transparent 22px 44px),
    radial-gradient(50rem 30rem at 50% -20%, rgba(120, 47, 64, 0.9), transparent 70%);
  pointer-events: none;
}
.endzone__inner {
  position: relative;
  max-width: 78rem;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) var(--pad);
  text-align: center;
}
.eyebrow--light { justify-content: center; color: rgba(249, 245, 238, 0.75); }

.endzone__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1;
  margin: 1.6rem 0 1.2rem;
  color: var(--chalk);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}
.endzone__sub {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(249, 245, 238, 0.82);
}
/* lead capture form */
.lead {
  max-width: 48rem;
  margin: 2.6rem auto 0;
  text-align: left;
}
.lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1rem;
}
.lead__field span {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.75);
  margin-bottom: 0.45rem;
}
.lead input,
.lead select {
  width: 100%;
  background: rgba(26, 8, 13, 0.4);
  border: 1px solid rgba(249, 245, 238, 0.3);
  color: var(--chalk);
  font-family: var(--voice);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}
.lead input::placeholder { color: rgba(249, 245, 238, 0.42); }
.lead input:focus,
.lead select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.lead select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CEB888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.lead select option { background: var(--garnet-night); color: var(--chalk); }
.lead input.is-invalid,
.lead-modal input.is-invalid { border-color: #E2574B; box-shadow: 0 0 0 1px #E2574B; }
.lead__submit {
  display: block;
  margin: 1.4rem auto 0;
}
.lead__note {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.62);
  text-align: center;
  margin-top: 1.1rem;
}
.lead__success { margin-top: 2.6rem; }
.lead__success-title {
  font-family: var(--voice);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--gold);
}
.lead__success-copy {
  color: rgba(249, 245, 238, 0.85);
  margin-top: 0.6rem;
}
.endzone__alt {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(249, 245, 238, 0.75);
}
.endzone__alt a { color: var(--chalk); }
.endzone__alt a:hover { color: var(--gold); }

.endzone__loc {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.62);
  margin-top: 2rem;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 2.2rem var(--pad);
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.site-footer__mark {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--garnet);
}
.site-footer__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- opening cinematic: the install ---------- */

.intro { display: none; }
.js .intro {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    radial-gradient(40rem 24rem at 12% -8%, rgba(249, 245, 238, 0.07), transparent 60%),
    radial-gradient(40rem 24rem at 88% -8%, rgba(249, 245, 238, 0.06), transparent 60%),
    linear-gradient(180deg, #351019 0%, #421622 55%, #2E0E17 100%);
  transition: opacity 0.6s ease;
}
.intro.is-done { opacity: 0; pointer-events: none; }
body.intro-lock { overflow: hidden; }

.intro__corner {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.55);
}

.intro__skip {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(249, 245, 238, 0.3);
  color: rgba(249, 245, 238, 0.68);
  padding: 0.55rem 1rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.intro__skip:hover { color: var(--gold); border-color: var(--gold); }

.intro__stage {
  position: relative;
  width: min(78vw, 25rem);
  perspective: 1000px;
}
.intro__stage svg { width: 100%; height: auto; display: block; }

.intro__play { display: none; }
.intro__play.is-active { display: block; }
/* each installed play flies in from a different corner of space */
@media (prefers-reduced-motion: no-preference) {
  .intro__play.is-active { animation: play-fly-in 0.55s cubic-bezier(0.19, 1, 0.22, 1) both; }
}
.intro__play:nth-child(1) { --fx: 38deg; --fy: 0deg; --tx: 0; --ty: -18%; }
.intro__play:nth-child(2) { --fx: 8deg; --fy: -52deg; --tx: 26%; --ty: 0; }
.intro__play:nth-child(3) { --fx: -30deg; --fy: 12deg; --tx: 0; --ty: 20%; }
.intro__play:nth-child(4) { --fx: 10deg; --fy: 48deg; --tx: -26%; --ty: 0; }
.intro__play:nth-child(5) { --fx: 30deg; --fy: -30deg; --tx: -20%; --ty: -14%; }

.intro__playname {
  position: absolute;
  left: 0;
  top: -2.6rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(249, 245, 238, 0.62);
}
.intro__playname::after {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 1em;
  vertical-align: text-bottom;
  margin-left: 0.3em;
  background: var(--gold);
  animation: cursor-blink 0.7s steps(1) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

/* play internals (on the garnet intro field) */
.ilos { stroke: rgba(249, 245, 238, 0.35); stroke-width: 2.5; stroke-dasharray: 7 7; }
.io circle { stroke: rgba(249, 245, 238, 0.5); stroke-width: 2; fill: none; }
.intro .qb-mark { fill: var(--gold); }
.ir {
  stroke: rgba(249, 245, 238, 0.85);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ir.ig { stroke: var(--gold); }
.ix { stroke: #DE8CA0; stroke-width: 3; stroke-linecap: round; opacity: 0.9; }
.ipass { stroke: var(--gold); stroke-width: 1.6; opacity: 0.75; }
.icatch { fill: var(--gold); }

.intro__play.is-active .io circle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop-in 0.22s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.05s);
}
.intro__play.is-active .ir {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw 0.55s ease-out forwards;
  animation-delay: calc(0.18s + var(--i, 0) * 0.1s);
}
.intro__play.is-active .ix {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: x-pop 0.24s ease-out forwards;
  animation-delay: calc(0.45s + var(--i, 0) * 0.07s);
}
.intro__play.is-active .ipass {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 0.32s ease-in forwards;
  animation-delay: 0.95s;
}
.intro__play.is-active .icatch {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: catch-pulse 0.3s ease-out forwards;
  animation-delay: 1.22s;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes x-pop {
  from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  to { opacity: 0.9; transform: scale(1) rotate(0); }
}
@keyframes catch-pulse {
  0% { opacity: 0; transform: scale(0.4); }
  60% { opacity: 1; transform: scale(1.6); }
  100% { opacity: 1; transform: scale(1); }
}

/* animated logo finale */
.intro__video {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  padding: 1.5rem;
}
.intro__video.is-active { display: grid; }
.intro__video video {
  width: min(80vw, 30rem);
  border-radius: var(--radius);
  display: block;
}
/* the intro ground dims to the video's own black while it plays */
.js .intro { transition: opacity 0.6s ease, background 0.6s ease; }
.intro.is-video { background: #140D0A; }

/* title card */
.intro__card {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  place-content: center;
  text-align: center;
  padding: 0 1.5rem;
}
.intro__card.is-active { display: grid; }

.intro__card-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: card-up 0.4s ease-out 0.1s forwards;
}
.intro__card-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  text-transform: uppercase;
  color: var(--chalk);
  line-height: 1.1;
  margin: 0.6rem 0;
  opacity: 0;
  animation: card-slam 0.45s cubic-bezier(0.2, 1.4, 0.4, 1) 0.3s forwards;
}
.intro__card-title span { color: var(--gold); }
.intro__card-tag {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.68);
  opacity: 0;
  animation: card-up 0.4s ease-out 0.65s forwards;
}
@keyframes card-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes card-slam {
  from { opacity: 0; transform: scale(1.35); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .js .intro { display: none; }
}

/* ---------- lead capture modal ---------- */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lead-modal[hidden] { display: none; }
body.modal-lock { overflow: hidden; }

.lead-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(44, 18, 25, 0.55);
  backdrop-filter: blur(3px);
}
.lead-modal__card {
  position: relative;
  width: min(92vw, 26rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--garnet);
  padding: 2rem 1.8rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(44, 18, 25, 0.1), 0 30px 60px -20px rgba(44, 18, 25, 0.4);
}
@media (prefers-reduced-motion: no-preference) {
  .lead-modal__card { animation: modal-in 0.28s ease-out; }
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.lead-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem;
}
.lead-modal__close:hover { color: var(--garnet); }
.lead-modal__eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--garnet);
}
.lead-modal__title {
  font-family: var(--voice);
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0.6rem 0 0.7rem;
}
.lead-modal__copy {
  font-size: 0.95rem;
  color: var(--muted);
}
.lead-modal__form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.lead-modal input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--voice);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}
.lead-modal input::placeholder { color: rgba(44, 18, 25, 0.62); }
.lead-modal input:focus {
  outline: none;
  border-color: var(--garnet);
  box-shadow: 0 0 0 1px var(--garnet);
}
.lead-modal__dismiss {
  display: block;
  margin: 1rem auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.lead-modal__dismiss:hover { color: var(--ink); }

/* ---------- responsive ---------- */

/* tablet (≤960px): compact nav, single-column layouts, lighter effects */
@media (max-width: 60rem) {
  .site-header { gap: 1.2rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__play { width: min(100%, 19rem); justify-self: center; }
  .coach { grid-template-columns: 1fr; }
  .coach__photo { max-width: 17rem; margin: 0 auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:last-child { grid-column: 1 / -1; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .start__grid { grid-template-columns: 1fr; }
  /* big blurred layers are expensive on handheld GPUs */
  .atmosphere__blob { filter: blur(48px); }
  .atmosphere__blob--green { display: none; }
}

/* large phones / small tablets (≤768px) */
@media (max-width: 48rem) {
  .lead__row { grid-template-columns: 1fr; }
  .lead__submit { width: 100%; }
}

/* phones (≤640px): compact header; drawer already global */
@media (max-width: 40rem) {
  .site-header { gap: 0.7rem; padding: 0.7rem 1rem; }
  .wordmark { font-size: 0.95rem; gap: 0.45rem; }
  .wordmark__logo { width: 43px; height: 43px; border-radius: 11px; }
  /* the logo badge carries the brand on phones; the text would wrap the CTA */
  .wordmark__text { display: none; }
  .site-header .btn--small { padding: 0.5rem 0.7rem; font-size: 0.65rem; }
  .header-social { gap: 0.6rem; }
  /* keep the coach photo a modest inset on phones — it shouldn't own the screen */
  .coach__photo { max-width: 11.5rem; margin: 0; }
  .coach__photo::after { inset: -9px 9px 9px -9px; }
  .coach__caption { margin-top: 0.9rem; font-size: 0.68rem; }
  .pillars { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .yardline__label { letter-spacing: 0.08em; }
}

/* short landscape phones: keep the intro play on screen */
@media (max-height: 32rem) {
  .intro__stage { width: min(52vh, 20rem); }
  .intro__playname { top: -2.2rem; font-size: 0.7rem; }
}

/* touch devices: hover states become press states */
@media (hover: none) {
  .pillar:active,
  .tier:active {
    border-color: rgba(120, 47, 64, 0.45);
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
  }
  .btn:hover { transform: none; }
}
