/* Q9Golf — 2026 marketing shell · LIGHT THEME (returning to original brand palette)
   Crimson + teal + ivory · gold for celebration · green for fairway moments only.
   Built for static hosting, no build step. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,800;1,9..144,500;1,9..144,800&family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* PRIMARY BRAND — sampled from the Q9Golf logo */
  --green:          #107A3F;          /* the logo green, vibrant fairway */
  --green-deep:     #0A5A2E;          /* hover, depth */
  --green-light:    #1E9450;          /* hover bright */
  --green-tint:     #E8F1EC;          /* very pale green wash for backgrounds */
  /* RED ACCENT — the small triangle in the logo, used sparingly */
  --crimson:        #C12026;
  --crimson-deep:   #951820;
  --crimson-light:  #E03A40;
  /* secondaries */
  --teal:           #18BA9B;
  --teal-deep:      #109077;
  /* "gold" tokens kept for legacy CSS but remapped to RED so no yellow appears anywhere */
  --gold:           #C12026;
  --gold-deep:      #951820;
  /* HOLLYWOODBETS sponsor brand */
  --hwb-purple:     #5B2D7E;
  --hwb-purple-deep:#3D1B5C;
  --hwb-purple-light:#7A4A9E;
  --hwb-yellow:     #F5D215;
  --hwb-yellow-deep:#D6B400;
  /* legacy alias kept for older inline styles */
  --fairway:        #107A3F;
  --fairway-light:  #1E9450;
  /* surfaces */
  --bg:             #F8F6F0;          /* ivory base */
  --bg-2:           #FFFFFF;          /* card surface */
  --bg-3:           #ECEBE3;          /* subtle hover/section divider */
  --bg-dark:        #0A1F12;          /* dark surface for accent moments */
  --line:           rgba(20,17,12,0.10);
  --line-strong:    rgba(16,122,63,0.32);
  --ink:            #14110C;
  --text:           #14110C;
  --text-mute:      rgba(20,17,12,0.62);
  --text-quiet:     rgba(20,17,12,0.40);
  --on-dark:        #F8F6F0;
  --on-dark-mute:   rgba(248,246,240,0.70);
  /* utility */
  --success:        #2A8F5C;
  --warn:           #D97706;
  --danger:         #B42318;
  /* radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 9999px;
  /* shadows */
  --tile:  0 4px 18px -8px rgba(20,17,12,0.18);
  --sheet: 0 24px 48px -16px rgba(20,17,12,0.28);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a  { color: var(--crimson); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--crimson-deep); }

/* ---------- Typography ---------- */
.display, h1.display, .h1-display {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.94;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-optical-sizing: auto;
}
.serif-italic { font-family: 'Fraunces', serif; font-style: italic; font-weight: 800; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.eyebrow .dot { display:inline-block; width:6px; height:6px; border-radius:50%; background: var(--crimson); margin-right: 8px; vertical-align: middle; transform: translateY(-1px); }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ---------- Header / nav ---------- */
.q9-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 14px 0;
  background: rgba(248,246,240,0.78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.q9-nav.scrolled {
  background: rgba(248,246,240,0.92);
  border-bottom: 1px solid var(--line);
}
.q9-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 28px;
}
.q9-logo { display:flex; align-items:center; gap: 10px; }
.q9-logo img { height: 44px; width: auto; transition: transform .2s ease; }
.q9-logo:hover img { transform: scale(1.04); }
@media (max-width: 880px) { .q9-logo img { height: 36px; } }
.q9-nav-links { display: flex; gap: 2px; margin-left: 16px; flex-wrap: nowrap; }
.q9-nav-links a { color: var(--text-mute); padding: 8px 11px; border-radius: var(--r-pill); font-weight: 500; font-size: 13px; letter-spacing: 0.01em; white-space: nowrap; }
@media (max-width: 1180px) {
  .q9-nav-links a { padding: 7px 9px; font-size: 12px; }
}
.q9-nav-links a:hover { color: var(--ink); background: rgba(20,17,12,0.05); }
.q9-nav-links a.active { color: var(--ink); }
.q9-nav-cta { margin-left: auto; display: flex; gap: 8px; align-items: center; }

@media (max-width: 880px) {
  .q9-nav-inner { padding: 0 18px; gap: 12px; }
  .q9-nav-links { display: none; }
  .q9-logo { font-size: 18px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font: 600 14px/1 'Inter', sans-serif;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary,
.btn-gold {  /* class kept for legacy markup; PRIMARY is now green like the logo */
  background: var(--green);
  color: var(--on-dark);
  box-shadow: 0 4px 12px -4px rgba(16,122,63,0.40);
}
.btn-primary:hover,
.btn-gold:hover { background: var(--green-deep); color: var(--on-dark); box-shadow: 0 6px 18px -4px rgba(16,122,63,0.50); }
/* RED variant — used for accent / "now" CTAs (matches the red triangle in the logo) */
.btn-red { background: var(--crimson); color: var(--on-dark); box-shadow: 0 4px 12px -4px rgba(193,32,38,0.35); }
.btn-red:hover { background: var(--crimson-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(20,17,12,0.18); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-deep); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Layout helpers ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
@media (max-width: 880px) { .section { padding: 64px 0; } .container { padding: 0 18px; } }

/* ---------- Hero with carousel ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  border-bottom: 4px solid var(--crimson);
}
.hero > .container { position: relative; z-index: 3; }
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 80px 0 96px; }
}
@media (max-width: 480px) {
  .hero { padding: 64px 0 92px; }
}

/* Carousel slides ---------------------------------------- */
.hero-carousel {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-carousel .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
}
.hero-carousel .slide.active { opacity: 1; }
.hero-carousel .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}
/* tinted overlay so text always pops — left dark for headline legibility, right open */
.hero-carousel::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10,17,12,0.78) 0%, rgba(10,17,12,0.45) 40%, rgba(10,17,12,0.10) 70%, rgba(10,17,12,0) 100%),
    linear-gradient(180deg, rgba(10,17,12,0) 60%, rgba(10,17,12,0.40) 100%);
  z-index: 2;
}

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 32px; height: 4px;
  background: rgba(248,246,240,0.3);
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.hero-dot.active { background: var(--gold); width: 56px; }
.hero-dot:hover { background: rgba(248,246,240,0.55); }

.hero-bg { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero-grid--single { grid-template-columns: 1fr; max-width: 880px; }
.hero-grid--single .hero-sub { max-width: 720px; }
.hero-grid--single .hero-title { font-size: clamp(46px, 8.4vw, 108px); }

/* hero rotating copy — text slides in/out in sync with image carousel */
.hero-copy { position: relative; min-height: clamp(220px, 28vw, 360px); }
.hero-copy-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.hero-copy-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-copy-slide .hero-title { margin-top: 0; }
@media (max-width: 980px) { .hero-copy { min-height: 280px; } }
@media (max-width: 480px) { .hero-copy { min-height: 220px; } }

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
  color: var(--on-dark);
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
/* Italic emphasis is the readability problem — switch to Manrope italic (clean sans) so "League." and "overseas." actually read at huge sizes. The character now comes from color, not curlicues. */
.hero-title em {
  color: var(--gold);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.hero-sub { font-size: 18px; line-height: 1.55; color: rgba(248,246,240,0.85); max-width: 580px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow .dot { background: var(--gold); }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* hero side card — live leaderboard pulse */
.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sheet);
}
.hero-card-head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-head h4 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; margin: 0; color: var(--ink); }
.live-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(193,32,38,0.08);
  border: 1px solid rgba(193,32,38,0.25);
  border-radius: var(--r-pill);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--crimson);
}
.live-pulse::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--crimson); box-shadow: 0 0 0 0 rgba(193,32,38,0.6); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(193,32,38,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(193,32,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,32,38,0); }
}

.lb-row {
  display: grid;
  grid-template-columns: 28px 1fr 80px 60px;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition: background .2s ease;
}
.lb-row:hover { background: rgba(193,32,38,0.03); }
.lb-row:last-child { border-bottom: 0; }
.lb-rank { font-family: 'Fraunces', serif; font-weight: 800; font-size: 16px; color: var(--text-mute); }
.lb-rank.top { color: var(--crimson); }
.lb-name { font-weight: 500; color: var(--ink); }
.lb-meta { font-size: 11px; color: var(--text-quiet); display: block; margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.lb-club { color: var(--text-mute); font-size: 12px; }
.lb-pts  { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 14px; text-align: right; color: var(--ink); }

/* ---------- Section header ---------- */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--ink);
}
.section-head h2 em { color: var(--crimson); font-style: italic; }
.section-head p { font-size: 17px; color: var(--text-mute); max-width: 580px; }

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento .tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.bento .tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--tile);
}
.bento .tile h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; margin: 12px 0 10px; line-height: 1.1; color: var(--ink); }
.bento .tile p  { color: var(--text-mute); font-size: 14px; line-height: 1.55; }
.bento .tile .big {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento .col-4 { grid-column: span 4; }
.bento .col-5 { grid-column: span 5; }
.bento .col-6 { grid-column: span 6; }
.bento .col-7 { grid-column: span 7; }
.bento .col-8 { grid-column: span 8; }
.bento .col-12 { grid-column: span 12; }
.bento .row-2 { grid-row: span 2; }
@media (max-width: 880px) {
  .bento .col-5, .bento .col-6, .bento .col-7, .bento .col-8 { grid-column: span 12; }
  .bento .col-4 { grid-column: span 6; }
}
@media (max-width: 520px) { .bento .col-4 { grid-column: span 12; } }

/* an inverted dark tile (used for accent moments) */
.bento .tile.dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2520 100%);
  border-color: rgba(248,246,240,0.1);
  color: var(--on-dark);
}
.bento .tile.dark h3 { color: var(--on-dark); }
.bento .tile.dark p  { color: var(--on-dark-mute); }
.bento .tile.dark .eyebrow { color: var(--gold); }
.bento .tile.dark .eyebrow .dot { background: var(--gold); }
.bento .tile.dark .big {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Pyramid (about/league pages) ---------- */
.pyramid {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.pyramid-step {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--crimson);
  border-radius: var(--r-md);
  background: var(--bg-2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pyramid-step:hover { transform: translateX(4px); border-color: var(--line-strong); box-shadow: var(--tile); }
.pyramid-step .num { font-family: 'Fraunces', serif; font-weight: 800; font-size: 32px; color: var(--crimson); line-height: 1; }
.pyramid-step .title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; margin: 0; color: var(--ink); }
.pyramid-step .desc { font-size: 13px; color: var(--text-mute); margin: 4px 0 0; }
.pyramid-step .count { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 13px; color: var(--crimson); padding: 6px 12px; background: rgba(193,32,38,0.08); border: 1px solid rgba(193,32,38,0.18); border-radius: var(--r-pill); white-space: nowrap; }

/* progression: club → zone → national → worlds */
.pyramid-step:nth-child(1) { border-left-color: var(--fairway); }
.pyramid-step:nth-child(1) .num   { color: var(--fairway); }
.pyramid-step:nth-child(1) .count { color: var(--fairway); background: rgba(14,75,42,0.08); border-color: rgba(14,75,42,0.20); }

.pyramid-step:nth-child(2) { border-left-color: var(--teal); }
.pyramid-step:nth-child(2) .num   { color: var(--teal-deep); }
.pyramid-step:nth-child(2) .count { color: var(--teal-deep); background: rgba(24,186,155,0.08); border-color: rgba(24,186,155,0.22); }

.pyramid-step:nth-child(3) { border-left-color: var(--crimson); }
.pyramid-step:nth-child(3) .num   { color: var(--crimson); }
/* .count keeps default crimson */

.pyramid-step:nth-child(4) { border-left-color: var(--gold); }
.pyramid-step:nth-child(4) .num   { color: var(--gold-deep); }
.pyramid-step:nth-child(4) .count { color: var(--ink); background: var(--gold); border-color: transparent; }

/* ---------- Division badges (kept distinct, multi-color sport-league feel) ---------- */
.div-badge {
  display: inline-flex; align-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 16px;
  justify-content: center;
}
.div-A { background: linear-gradient(135deg, var(--fairway-light), var(--fairway)); color: var(--on-dark); }   /* fairway — top division */
.div-B { background: linear-gradient(135deg, var(--teal), var(--teal-deep));        color: var(--on-dark); }   /* teal */
.div-C { background: linear-gradient(135deg, var(--gold), var(--gold-deep));        color: var(--ink); }       /* gold — qualifier line color */
.div-D { background: linear-gradient(135deg, #E8893F, #B16224);                     color: var(--on-dark); }   /* orange */
.div-E { background: linear-gradient(135deg, var(--crimson-light), var(--crimson)); color: var(--on-dark); }   /* crimson */
.div-F { background: linear-gradient(135deg, #7A1F2E, #4D0F1B);                     color: var(--on-dark); }   /* deep maroon */

/* ---------- Course cards ---------- */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.course-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  background: var(--bg-2);
}
.course-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--sheet); }
.course-card img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; transition: transform .4s ease; }
.course-card:hover img { transform: scale(1.05); }
.course-card .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(20,17,12,0.5) 50%, rgba(20,17,12,0.95));
  color: var(--on-dark);
}
.course-card h4 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; margin: 0 0 4px; line-height: 1.1; color: var(--on-dark); }
.course-card .zone { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  overflow: hidden;
}
.price-card.featured {
  border-color: var(--crimson);
  box-shadow: 0 0 0 1px rgba(193,32,38,0.12), var(--tile);
}
.price-card.featured::after {
  content: 'Most popular';
  position: absolute; top: 18px; right: 18px;
  font: 700 10px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--crimson);
  color: var(--on-dark);
  border-radius: var(--r-pill);
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 18px;
  color: var(--ink);
}
.price-amount sup { font-size: 28px; vertical-align: top; margin-right: 4px; color: var(--crimson); }
.price-amount sub { font-size: 16px; color: var(--text-mute); font-family: 'Inter'; font-weight: 500; vertical-align: baseline; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: '+'; font-size: 24px; color: var(--crimson); width: 24px; text-align: center; transition: transform .2s ease; }
.faq-item[open] summary::before { transform: rotate(45deg); }
.faq-item p { color: var(--text-mute); margin: 14px 0 0 40px; }

/* ---------- Wizard (register) ---------- */
.wizard {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sheet);
}
.wiz-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.wiz-progress .seg {
  height: 4px; flex: 1;
  background: rgba(20,17,12,0.08);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.wiz-progress .seg.done::after,
.wiz-progress .seg.current::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson-deep) 100%);
}
.wiz-progress .seg.current::after {
  animation: fill 600ms cubic-bezier(.2,0,.2,1) forwards;
  transform-origin: left;
}
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.wiz-step-num { font: 700 11px/1 'Inter'; letter-spacing: 0.24em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; }
.wiz h2 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 32px; margin: 0 0 8px; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.wiz p.lede { color: var(--text-mute); font-size: 15px; margin: 0 0 28px; }

.field { display: block; margin-bottom: 18px; }
.field-label { display: block; font: 700 11px/1 'Inter'; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; }
.field-input,
.field-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font: 500 15px/1.4 'Inter';
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: var(--crimson);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(193,32,38,0.12);
}
.field-help { font-size: 12px; color: var(--text-quiet); margin-top: 6px; }
.field-success { font-size: 12px; color: var(--success); margin-top: 6px; font-weight: 500; }

.club-pick { display: grid; gap: 10px; }
.club-tile {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.club-tile:hover { border-color: var(--line-strong); }
.club-tile.selected {
  border-color: var(--crimson);
  background: rgba(193,32,38,0.04);
  box-shadow: 0 0 0 2px rgba(193,32,38,0.08);
}
.club-tile img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--r-sm); }
.club-tile .name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; margin: 0; color: var(--ink); }
.club-tile .zone { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }
.club-tile .check { display: none; width: 22px; height: 22px; border-radius: 50%; background: var(--crimson); color: white; align-items: center; justify-content: center; font-weight: 800; }
.club-tile.selected .check { display: flex; }

.wiz-nav { display: flex; gap: 10px; margin-top: 28px; }
.wiz-nav .btn { flex: 1; justify-content: center; }

/* ---------- Footer ---------- */
.q9-footer {
  border-top: 1px solid var(--line);
  margin-top: 96px;
  padding: 64px 0 32px;
  color: var(--text-mute);
  font-size: 14px;
  background: var(--bg);
}
.q9-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .q9-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.q9-footer h5 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 15px; color: var(--ink); margin: 0 0 14px; }
.q9-footer ul { list-style: none; padding: 0; margin: 0; }
.q9-footer li { margin-bottom: 8px; }
.q9-footer a { color: var(--text-mute); }
.q9-footer a:hover { color: var(--crimson); }
.q9-foot-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-quiet); }
@media (max-width: 700px) { .q9-foot-bar { flex-direction: column; gap: 12px; } }

/* ---------- Banner (top — matches legacy red strip) ---------- */
.q9-banner {
  background: var(--crimson);
  color: var(--on-dark);
  padding: 9px 0;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.q9-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.q9-banner a {
  color: var(--on-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: color .15s ease;
}
.q9-banner a:hover { color: var(--gold); }
.q9-banner .sep { opacity: 0.55; }
@media (max-width: 880px) { .q9-banner-inner { padding: 0 18px; } }

/* ---------- Page wrapper for content pages ---------- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(193,32,38,0.06) 0%, transparent 60%);
  z-index: -1;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 14px 0 18px;
  color: var(--ink);
}
.page-hero h1 em { color: var(--crimson); font-style: italic; }
.page-hero .lede { font-size: 19px; color: var(--text-mute); max-width: 680px; }

/* prose blocks for marketing content */
.prose { max-width: 760px; }
.prose p { margin: 0 0 18px; line-height: 1.7; color: var(--text-mute); font-size: 16px; }
.prose h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 26px; margin: 36px 0 14px; color: var(--ink); letter-spacing: -0.01em; }
.prose ul { margin: 0 0 18px; padding-left: 20px; color: var(--text-mute); }
.prose ul li { margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--ink); font-weight: 600; }

/* tables */
.q9-table { width: 100%; border-collapse: collapse; }
.q9-table th { font-family: 'Inter'; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); text-align: left; padding: 14px 16px; border-bottom: 2px solid var(--line); }
.q9-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); }
.q9-table tr:hover td { background: rgba(193,32,38,0.03); }

/* selection */
::selection { background: var(--crimson); color: white; }

/* ---------- Hollywoodbets sponsor strip + accents ---------- */
.hwb-strip {
  background: linear-gradient(90deg, var(--hwb-purple-deep) 0%, var(--hwb-purple) 50%, var(--hwb-purple-deep) 100%);
  color: white;
  padding: 8px 0;
}
.hwb-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hwb-strip .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hwb-yellow);
}
.hwb-strip .sep { color: rgba(255,255,255,0.35); }
.hwb-strip img { height: 28px; width: auto; }
@media (max-width: 880px) {
  .hwb-strip-inner { padding: 0 18px; gap: 10px; }
  .hwb-strip .label { font-size: 9px; letter-spacing: 0.24em; }
  .hwb-strip img { height: 22px; }
}

.hwb-sponsor-block {
  background: linear-gradient(135deg, var(--hwb-purple-deep) 0%, var(--hwb-purple) 60%, var(--hwb-purple-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hwb-sponsor-block::before,
.hwb-sponsor-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,210,21,0.25);
  pointer-events: none;
}
.hwb-sponsor-block::before { top:-80px; right:-80px; width: 280px; height: 280px; }
.hwb-sponsor-block::after  { bottom:-60px; left:-60px; width: 220px; height: 220px; border-color: rgba(255,255,255,0.10); }
.hwb-sponsor-block .label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hwb-yellow);
  margin-bottom: 16px;
}
.hwb-sponsor-block h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: white;
}
.hwb-sponsor-block h2 em {
  font-style: italic;
  color: var(--hwb-yellow);
}
.hwb-sponsor-block p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 28px;
}
.hwb-sponsor-block img.hwb-logo {
  height: 120px; width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.hwb-sponsor-block .btn-yellow {
  background: var(--hwb-yellow);
  color: var(--hwb-purple-deep);
  font-weight: 700;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.3);
}
.hwb-sponsor-block .btn-yellow:hover { background: white; color: var(--hwb-purple-deep); }

/* utilities */
.text-mute { color: var(--text-mute); }
.text-gold { color: var(--gold); }
.text-crimson { color: var(--crimson); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-8 { margin-top: 32px; }
.gap-2 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* intro section — old-site About copy, sits directly under the hero */
.intro { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .intro-grid { grid-template-columns: 1fr; gap: 32px; } }
.intro-head .eyebrow { color: var(--fairway); }
.intro-head .eyebrow .dot { background: var(--fairway); }
.intro-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  color: var(--ink);
}
.intro-head h2 em {
  color: var(--fairway);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-weight: 800;
}
.intro-body p { font-size: 16px; line-height: 1.65; color: var(--text-mute); margin: 0 0 16px; }
.intro-body p.lede { font-size: 19px; line-height: 1.5; color: var(--ink); font-weight: 500; margin-bottom: 22px; }
.intro-sub {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 28px 0 12px;
}
.intro-points {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  counter-reset: introstep;
}
.intro-points li {
  position: relative;
  padding: 8px 0 14px 44px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  border-bottom: 1px solid var(--line);
  counter-increment: introstep;
}
.intro-points li:last-child { border-bottom: 0; }
.intro-points li::before {
  content: counter(introstep, decimal-leading-zero);
  position: absolute;
  left: 0; top: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.intro-points li strong { color: var(--ink); }
.intro-promo {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, rgba(14,75,42,0.06) 0%, rgba(232,194,74,0.10) 100%);
  border: 1px solid var(--line);
}
.intro-promo .eyebrow { color: var(--gold); }
.intro-promo .eyebrow .dot { background: var(--gold); }
.intro-promo h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0 12px;
  color: var(--ink);
}
.intro-promo p { color: var(--text-mute); margin: 0 0 18px; }

/* mid-page story slider — image-backed rotating panels with copy + CTA */
.story-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  min-height: 520px;
  isolation: isolate;
}
@media (max-width: 720px) { .story-slider { min-height: 460px; } }
@media (max-width: 480px) { .story-slider { min-height: 440px; } }
.story-slider .story-bg { position: absolute; inset: 0; z-index: 0; }
.story-slider .story-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: saturate(1.02) contrast(1.05);
}
.story-slider .story-bg img.active { opacity: 1; }
.story-slider::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,17,12,0.82) 0%, rgba(10,17,12,0.55) 45%, rgba(10,17,12,0.15) 80%, rgba(10,17,12,0) 100%),
    linear-gradient(180deg, rgba(10,17,12,0) 55%, rgba(10,17,12,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.story-slider .story-stage {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  max-width: 760px;
  min-height: 520px;
  display: flex;
  align-items: center;
}
@media (max-width: 720px) { .story-slider .story-stage { padding: 56px 28px; min-height: 580px; } }
.story-slide {
  position: absolute;
  inset: 80px 64px auto 64px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
  color: var(--on-dark);
}
@media (max-width: 720px) { .story-slide { inset: 56px 28px auto 28px; } }
.story-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.story-slide .eyebrow { color: var(--gold); }
.story-slide .eyebrow .dot { background: var(--gold); }
.story-slide h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: var(--on-dark);
}
.story-slide h2 em {
  color: var(--gold);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-weight: 800;
}
.story-slide p { font-size: 17px; line-height: 1.55; color: rgba(248,246,240,0.85); max-width: 580px; margin: 0 0 28px; }
.story-dots { position: absolute; bottom: 28px; left: 64px; display: flex; gap: 10px; z-index: 4; }
@media (max-width: 720px) { .story-dots { left: 28px; bottom: 22px; } }
.story-dot {
  width: 32px; height: 4px;
  background: rgba(248,246,240,0.3);
  border: 0; cursor: pointer;
  border-radius: 2px; padding: 0;
  transition: background .25s ease, width .25s ease;
}
.story-dot.active { background: var(--gold); width: 56px; }
.story-dot:hover { background: rgba(248,246,240,0.55); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
