/* ============================================================================
   Gridiron Gold — shared stylesheet (docs/09).
   Black & gold identity (tokens mirror apps/mobile/src/theme.ts, Decision T15).
   Zero external requests: system fonts only, everything self-contained.
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-elev: #141416;
  --bg-card: #101012;
  --border: #26262a;
  --text: #f5f2ea;
  --muted: #9b978c;
  --gold: #d4a017;
  --gold-bright: #f2c14e;
  --gold-deep: #8a6a0f;
  --danger: #e5484d;
  --success: #46a758;
  --tint-gold: rgba(212, 160, 23, 0.16);
  --tint-neutral: rgba(245, 242, 234, 0.08);

  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  /* Condensed display stack (docs/09: dependency-free, no webfont). Uppercase only. */
  --font-display: 'Arial Narrow', Impact, 'Franklin Gothic Medium', 'Roboto Condensed',
    HelveticaNeue-CondensedBold, 'Helvetica Neue', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --container: 1120px;
  --grad-gold: linear-gradient(180deg, #f7d27a 0%, #f2c14e 30%, #d4a017 72%, #a87d12 100%);
  --shadow-card: 0 1px 0 rgba(245, 242, 234, 0.04) inset, 0 12px 32px rgba(0, 0, 0, 0.45);
}

/* ---- Base ---------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

a {
  color: var(--gold-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: #0a0a0b;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Display type helpers */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.gold-grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}

/* ---- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--grad-gold);
  color: #0a0a0b;
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.35);
}

.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 32px rgba(212, 160, 23, 0.5);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(245, 242, 234, 0.03);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ---- Header / nav ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 38, 42, 0.8);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 0;
  position: relative;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.site-nav .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* `.site-nav a` (0,1,1) outranks `.btn-gold` (0,1,0); restore black-on-gold. */
.site-nav .btn-gold,
.site-nav .btn-gold:hover {
  color: #0a0a0b;
}

.site-nav .btn::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---- Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 45% at 72% 30%, rgba(212, 160, 23, 0.17), transparent 65%),
    radial-gradient(ellipse 40% 35% at 12% 85%, rgba(212, 160, 23, 0.07), transparent 70%);
}

.hero-bracket-motif {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 7.6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
}

.hero h1 .line {
  display: block;
}

.hero h1 .line-survive {
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 242, 234, 0.72);
}

.hero-sub {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  margin-bottom: 12px;
}

.hero-sub strong {
  color: var(--text);
}

.hero-sub .stake {
  color: var(--gold-bright);
  font-weight: 700;
  white-space: nowrap;
}

.hero-fineprint {
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0.85;
  margin-bottom: 30px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-badges a {
  display: inline-flex;
  border-radius: 9px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.store-badges a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
}

.store-badges svg {
  height: 52px;
  width: auto;
  display: block;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-strip span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Entrance animation (CSS only) */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 0.07s;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 0.14s;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 0.18s;
  }

  .hero-copy > *:nth-child(5) {
    animation-delay: 0.24s;
  }

  .hero-copy > *:nth-child(6) {
    animation-delay: 0.3s;
  }

  .phone-wrap {
    animation: rise 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Phone mockup ----------------------------------------------------------- */

.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  width: min(310px, 78vw);
  aspect-ratio: 9 / 19.4;
  background: #050506;
  border-radius: 48px;
  padding: 11px;
  border: 1px solid #3a3a40;
  box-shadow:
    inset 0 0 0 2px #17171a,
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 90px rgba(212, 160, 23, 0.22);
  transform: rotate(5deg) rotateY(-7deg);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.phone:hover {
  transform: rotate(2deg) rotateY(-3deg) translateY(-8px);
  box-shadow:
    inset 0 0 0 2px #17171a,
    0 40px 90px rgba(0, 0, 0, 0.7),
    0 0 130px rgba(212, 160, 23, 0.3);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 30% at 50% -5%, rgba(212, 160, 23, 0.14), transparent 70%),
    var(--bg);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.25;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #050506;
  border-radius: 12px;
  z-index: 3;
}

.ps-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}

.ps-header {
  padding: 6px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ps-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
}

.ps-lock {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold-bright);
  background: var(--tint-gold);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.ps-round-tabs {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
}

.ps-round-tabs span {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3.5px 9px;
}

.ps-round-tabs .on {
  color: #0a0a0b;
  background: var(--grad-gold);
  border-color: transparent;
}

.ps-body {
  flex: 1;
  padding: 2px 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  overflow: hidden;
}

.ps-match {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 9px;
}

.ps-match-label {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.ps-team {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 7px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 11px;
}

.ps-team + .ps-team {
  margin-top: 4px;
}

.ps-team.pick {
  background: var(--tint-gold);
  border-color: rgba(212, 160, 23, 0.45);
}

.ps-seed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: var(--tint-neutral);
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 800;
  flex-shrink: 0;
}

.ps-team.pick .ps-seed {
  background: var(--grad-gold);
  color: #0a0a0b;
}

.ps-check {
  margin-left: auto;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
}

.ps-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elev);
  border: 1px dashed rgba(212, 160, 23, 0.4);
  border-radius: 12px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ps-total b {
  font-size: 15px;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.ps-tabbar {
  display: flex;
  border-top: 1px solid var(--border);
  background: rgba(20, 20, 22, 0.9);
  padding: 7px 6px 12px;
}

.ps-tab {
  flex: 1;
  text-align: center;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ps-tab i {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 auto 3px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.5;
}

.ps-tab.on {
  color: var(--gold-bright);
}

.ps-tab.on i {
  opacity: 1;
  background: var(--grad-gold);
}

/* ---- Sections ---------------------------------------------------------------- */

.section {
  padding: 92px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  margin: 14px 0 14px;
}

.section-lede {
  color: var(--muted);
  font-size: 1.06rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 242, 234, 0.028), rgba(245, 242, 234, 0.008));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 44px rgba(212, 160, 23, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.step-card .ghost-num {
  position: absolute;
  right: -12px;
  bottom: -34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11rem;
  line-height: 1;
  color: rgba(212, 160, 23, 0.05);
  pointer-events: none;
  user-select: none;
}

/* Prize */
.prize-section {
  padding: 100px 0;
}

.prize-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 55% at 50% 115%, rgba(212, 160, 23, 0.2), transparent 70%),
    linear-gradient(180deg, #121214, #0c0c0e);
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 28px;
  padding: 72px 32px 64px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 100px rgba(212, 160, 23, 0.08);
}

.prize-card::before,
.prize-card::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.prize-card::before {
  top: 0;
}

.prize-card::after {
  bottom: 0;
  opacity: 0.5;
}

.prize-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 17vw, 13.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin: 26px 0 6px;
  filter: drop-shadow(0 10px 40px rgba(212, 160, 23, 0.28));
}

.prize-amount sup {
  font-size: 0.32em;
  vertical-align: super;
  -webkit-text-stroke: 0;
}

.prize-range {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.prize-note {
  color: var(--muted);
  font-size: 13.5px;
  max-width: 52ch;
  margin: 18px auto 0;
}

.prize-elig {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 26px;
  padding: 12px 26px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.6);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Urgency band */
.urgency {
  background: var(--grad-gold);
  color: #0a0a0b;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(10, 10, 11, 0.05) 0 2px,
    transparent 2px 26px
  );
  pointer-events: none;
}

.urgency .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
}

.urgency h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96;
  max-width: 15em;
}

.urgency p {
  font-weight: 600;
  margin-top: 10px;
  max-width: 46ch;
  color: rgba(10, 10, 11, 0.78);
}

.btn-black {
  background: #0a0a0b;
  color: var(--gold-bright);
  box-shadow: 0 10px 30px rgba(10, 10, 11, 0.35);
  flex-shrink: 0;
}

.btn-black:hover {
  filter: brightness(1.15);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.5);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-more {
  text-align: center;
  margin-top: 30px;
}

/* Download / final CTA */
.download-cta {
  text-align: center;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(212, 160, 23, 0.13), transparent 70%);
  pointer-events: none;
}

.download-cta .store-badges {
  justify-content: center;
  margin-top: 36px;
}

/* ---- Footer -------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: #070708;
  padding: 56px 0 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand img {
  height: 30px;
  width: auto;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 34ch;
  font-size: 13.5px;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 30px;
  color: var(--muted);
  font-size: 12.5px;
}

.footer-legal .disclaimer {
  max-width: 62ch;
}

/* ---- Subpages (legal / support / 404) -------------------------------------------- */

.page-hero {
  position: relative;
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -40% -10% 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(212, 160, 23, 0.1), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 0.95;
  margin-top: 14px;
}

.page-hero .page-sub {
  color: var(--muted);
  margin-top: 14px;
  max-width: 60ch;
}

.prose {
  max-width: 760px;
  /* padding-block only: the shorthand would zero .container's padding-inline
     (legal pages use <div class="container prose">). */
  padding-block: 56px 96px;
}

.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin: 44px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.prose h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.prose h3 {
  font-size: 1.05rem;
  margin: 26px 0 8px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.99rem;
}

.prose p {
  margin: 0 0 14px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose li::marker {
  color: var(--gold);
  font-weight: 700;
}

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

.prose .updated {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.callout {
  background: var(--tint-gold);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 22px 0;
}

.callout p {
  color: var(--text);
  margin: 0;
  font-size: 0.95rem;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step-list li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin: 0;
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  min-width: 38px;
}

/* 404 */
.error-hero {
  min-height: calc(100vh - 72px - 260px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.error-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 50% at 50% 40%, rgba(212, 160, 23, 0.12), transparent 70%);
  pointer-events: none;
}

.error-hero .container {
  width: 100%;
}

.error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 24vw, 15rem);
  line-height: 0.9;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(212, 160, 23, 0.25));
}

.error-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 18px 0 10px;
}

.error-hero p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* ---- Responsive ------------------------------------------------------------------- */

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero {
    padding: 64px 0 80px;
  }

  .hero-sub {
    max-width: 56ch;
  }

  .phone {
    transform: rotate(3deg);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

  .urgency .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(38, 38, 42, 0.6);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .btn {
    margin-top: 16px;
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded='true'] .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .prize-card {
    padding: 52px 20px 46px;
    border-radius: 20px;
  }

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

  .store-badges svg {
    height: 48px;
  }

  .hero-meta-strip {
    gap: 8px 18px;
  }

  /* The eyebrow copy wraps to multiple lines at narrow widths — the flanking
     dashes read oddly around a text block, so drop them. */
  .eyebrow::before,
  .eyebrow::after {
    display: none;
  }
}
