/* =========================================
   DISCOVER YOUR STRENGTH — Event Landing Page
   The Strength Initiative × Tom Tom Festival
   Brand Colors:
   TSI:     Teal #065b60, Gold #eeb902
   Tom Tom: Hot pink #F0145A, Electric blue #3333CC,
            Teal #00C4B4, Light pink #F5D6E8, Yellow #F5F500
   ========================================= */

:root {
  /* TSI Brand */
  --tsi-green:       #065b60;
  --tsi-green-light: #0a7a81;
  --tsi-gold:        #eeb902;
  --tsi-gold-light:  #f5cd3a;

  /* Tom Tom Brand */
  --tt-pink:         #F0145A;
  --tt-pink-hover:   #c70f49;
  --tt-blue:         #3333CC;
  --tt-teal:         #00C4B4;
  --tt-light-pink:   #F9EDF2;
  --tt-yellow:       #F5F500;

  /* Surfaces */
  --color-bg:        #FFFFFF;
  --color-bg-alt:    #F9EDF2;   /* Tom Tom light pink — used for alt sections */
  --color-text:      #0d2b2d;
  --color-text-muted:#3a5a5c;
  --color-border:    #E8D8E0;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem   + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem   + 4vw,    5rem);
  --text-hero: clamp(2.8rem,   0.5rem + 6.5vw,  7rem);

  /* Spacing */
  --space-1:  0.25rem; --space-2:  0.5rem;  --space-3:  0.75rem;
  --space-4:  1rem;    --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --radius-sm: 0.375rem; --radius-md: 0.75rem;
  --radius-lg: 1.25rem;  --radius-xl: 2rem; --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.08);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.10);
  --shadow-lg: 0 12px 40px rgba(26,26,46,0.14);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --trans: 200ms var(--ease-out);

  /* Layout */
  --content-narrow: 680px;
  --content-default: 1000px;
  --content-wide: 1200px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.65; min-height: 100dvh; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p { text-wrap: pretty; }

/* UTILITY */
.container { width: 100%; max-width: var(--content-wide); margin: 0 auto; padding: 0 clamp(var(--space-5), 5vw, var(--space-16)); }
.container-narrow { max-width: var(--content-narrow); }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 62ch; line-height: 1.55; }
.lead.centered { max-width: 52ch; }

/* SECTION KICKER */
.section-kicker { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tt-pink); margin-bottom: var(--space-3); display: block; }
.kicker-light { color: rgba(255,255,255,0.65); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-body); font-weight: 600; border-radius: var(--radius-full); transition: all var(--trans); text-align: center; white-space: nowrap; cursor: pointer; border: 2px solid transparent; padding: var(--space-3) var(--space-6); font-size: var(--text-sm); letter-spacing: 0.02em; text-decoration: none; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-xl { padding: clamp(var(--space-4),2vw,var(--space-5)) clamp(var(--space-8),4vw,var(--space-12)); font-size: var(--text-base); }

.btn-primary { background: var(--tt-pink); color: white; border-color: var(--tt-pink); box-shadow: 0 4px 20px rgba(240,20,90,0.3); }
.btn-primary:hover { background: var(--tt-pink-hover); border-color: var(--tt-pink-hover); box-shadow: 0 6px 28px rgba(240,20,90,0.4); transform: translateY(-1px); }

.btn-ghost-white { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); border-color: white; }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-station { margin-top: var(--space-2); align-self: flex-start; }

/* ===========================
   NAVIGATION
   =========================== */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.93); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.site-nav.scrolled { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--content-wide); margin: 0 auto; padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16)); height: 68px; }
.nav-logo { display: flex; align-items: center; gap: var(--space-3); }
.nav-wordmark-link { font-family: var(--font-display); font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1rem); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tsi-green); text-decoration: none; line-height: 1; display: inline-flex; align-items: center; }
.nav-wordmark-link:hover { color: var(--tsi-green-light); }
.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); transition: color var(--trans); }
.nav-links a:hover { color: var(--color-text); }
.nav-cta { background: var(--tt-pink) !important; color: white !important; padding: var(--space-2) var(--space-5); border-radius: var(--radius-full); font-weight: 600 !important; transition: background var(--trans), transform var(--trans) !important; }
.nav-cta:hover { background: var(--tt-pink-hover) !important; transform: translateY(-1px); color: white !important; }
.nav-menu-btn { display: none; padding: var(--space-2); color: var(--color-text); }
.nav-mobile { display: none; flex-direction: column; padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16)) var(--space-6); gap: var(--space-4); border-top: 1px solid var(--color-border); background: white; }
.nav-mobile a { font-size: var(--text-base); font-weight: 500; color: var(--color-text-muted); }
.mobile-cta { background: var(--tt-pink); color: white !important; padding: var(--space-3) var(--space-6); border-radius: var(--radius-full); text-align: center; font-weight: 600 !important; }
@media (max-width: 860px) { .nav-links { display: none; } .nav-menu-btn { display: flex; } .nav-mobile.open { display: flex; } }

/* ===========================
   HERO
   =========================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; padding-top: 68px; overflow: hidden; background: var(--tt-light-pink); }
.hero-image-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,91,96,0.88) 0%, rgba(6,91,96,0.7) 55%, rgba(6,91,96,0.35) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--content-wide); margin: 0 auto; padding: clamp(var(--space-12), 8vw, var(--space-24)) clamp(var(--space-5), 5vw, var(--space-16)); color: white; }

/* Tom Tom Partner Badge */
.tomtom-badge { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); margin-bottom: var(--space-8); }
.tomtom-badge-img { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; display: block; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); }
.event-info-pill { background: var(--tt-pink); color: white; font-weight: 700; font-size: var(--text-sm); padding: var(--space-2) var(--space-5); border-radius: var(--radius-full); letter-spacing: 0.02em; white-space: nowrap; }

.hero-title { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 900; line-height: 1.0; color: white; margin-bottom: var(--space-4); max-width: 14ch; }
.hero-title em { font-style: italic; color: var(--tt-pink); display: block; }
.hero-sub { font-size: var(--text-lg); font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: var(--space-4); max-width: 52ch; }
.hero-desc { font-size: var(--text-base); color: rgba(255,255,255,0.75); max-width: 55ch; margin-bottom: var(--space-8); line-height: 1.7; }
.hero-includes { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); align-items: flex-start; }
/* Gold prize callout on dark hero — solid gold bg with dark text for legibility */
.hero-prize-callout { display: flex; align-items: center; gap: var(--space-2); background: var(--tsi-gold); border: 1px solid var(--tsi-gold); border-radius: var(--radius-md); padding: var(--space-3) var(--space-4); font-size: var(--text-sm); font-weight: 700; color: #0d2b2d; align-self: flex-start; }
.hero-entry-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); backdrop-filter: blur(8px); }
.entry-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: var(--space-3); }
.entry-list { display: flex; flex-direction: column; gap: var(--space-2); }
.entry-list li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.9); max-width: none; }
.check { color: var(--tt-teal); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-scroll-hint { position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; opacity: 0.5; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===========================
   RAFFLE TEASER
   =========================== */
.raffle-teaser { padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; background: var(--tt-light-pink); }
.raffle-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-12), 5vw, var(--space-20)); align-items: center; }
.raffle-teaser-text h2 { font-size: var(--text-2xl); color: var(--color-text); margin-bottom: var(--space-4); }
.raffle-teaser-text .lead { margin-bottom: var(--space-6); }
.teaser-stats { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-8); }
.stat-chip { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-3) var(--space-5); display: flex; flex-direction: column; gap: var(--space-1); box-shadow: var(--shadow-sm); }
/* Stat numbers: was tt-pink which clashed on the blue Tom Tom section bg — use tsi-green for better contrast */
.stat-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--tsi-green); line-height: 1; }
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 500; }
.raffle-teaser-image { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.raffle-teaser-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3; }
.grand-prize-badge { position: absolute; bottom: calc(-1 * var(--space-5)); left: var(--space-6); background: var(--tsi-green); color: white; border-radius: var(--radius-lg); padding: var(--space-3) var(--space-5); display: flex; align-items: center; gap: var(--space-3); box-shadow: var(--shadow-md); }
.badge-label { font-size: var(--text-xs); color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.badge-val { font-size: var(--text-sm); font-weight: 600; color: white; }
@media (max-width: 768px) { .raffle-teaser-inner { grid-template-columns: 1fr; } .raffle-teaser-image { order: -1; margin-bottom: var(--space-8); } }

/* ===========================
   STATIONS INTRO
   =========================== */
.stations-intro { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0 clamp(var(--space-10), 5vw, var(--space-16)); background: white; }
.stations-intro h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.stations-intro .lead { margin-bottom: var(--space-12); }
.station-flow { display: flex; align-items: center; justify-content: center; gap: var(--space-2); flex-wrap: wrap; }
.flow-step { display: flex; align-items: center; gap: var(--space-3); }
.flow-num { width: 48px; height: 48px; border-radius: 50%; background: var(--tt-pink); color: white; font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-step p { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); max-width: none; }
.flow-line { width: clamp(30px, 5vw, 80px); height: 2px; background: linear-gradient(90deg, var(--tt-pink) 0%, var(--color-border) 100%); flex-shrink: 0; }

/* ===========================
   STATION CARDS
   =========================== */
.station-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; overflow: hidden; }
.station-dark { background: var(--tsi-green); }
.station-light { background: white; }
.station-flip .station-image-wrap { order: 2; }
.station-flip .station-content { order: 1; }
.station-image-wrap { position: relative; overflow: hidden; }
.station-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.station-card:hover .station-image-wrap img { transform: scale(1.04); }
.station-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,91,96,0.55) 0%, transparent 100%); pointer-events: none; }
.station-overlay-light { background: linear-gradient(to left, rgba(255,255,255,0.3) 0%, transparent 60%); }
.station-content { padding: clamp(var(--space-10), 5vw, var(--space-16)); display: flex; flex-direction: column; justify-content: center; gap: var(--space-4); }

.station-num-badge { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(240,20,90,0.2); border: 1px solid rgba(240,20,90,0.5); border-radius: var(--radius-full); padding: var(--space-1) var(--space-4); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tt-pink); align-self: flex-start; }
.station-num-badge-dark { background: rgba(240,20,90,0.08); border-color: rgba(240,20,90,0.3); }

.station-kicker { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.station-kicker-dark { color: var(--color-text-muted); }

.station-title { font-family: var(--font-display); font-size: var(--text-2xl); color: white; line-height: 1.1; }
.station-title-dark { color: var(--color-text); }

.station-desc { font-size: var(--text-base); color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: var(--space-1); }
.station-desc-dark { color: var(--color-text-muted); }

/* Stat highlight box */
.station-stat-highlight { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); }
.stat-highlight-dark { background: rgba(240,20,90,0.06); border-color: rgba(240,20,90,0.2); }

/* Grip strength stat row */
.stat-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
.stat-arrow-down { font-size: var(--text-xl); color: var(--tt-teal); font-weight: 900; line-height: 1; }
.stat-arrow-up { font-size: var(--text-xl); color: var(--tt-pink); font-weight: 900; line-height: 1; }
.stat-text { font-size: var(--text-sm); color: rgba(255,255,255,0.85); font-weight: 600; }
.stat-equals-inline { font-size: var(--text-sm); color: rgba(255,255,255,0.4); font-weight: 400; }

/* Squat highlight */
.stat-highlight-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tt-pink); margin-bottom: var(--space-2); }
.stat-highlight-body { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); font-weight: 700; line-height: 1.3; margin-bottom: var(--space-3); }
.stat-challenge-note { font-size: var(--text-sm); color: var(--color-text-muted); font-style: italic; }

/* Photo booth */
.stat-big-quote { font-family: var(--font-display); font-size: var(--text-xl); color: white; font-weight: 700; font-style: italic; }

/* Chips */
.station-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-2); }
.chip { display: inline-flex; align-items: center; padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; }
.chip-check { background: rgba(0,196,180,0.15); color: var(--tt-teal); border: 1px solid rgba(0,196,180,0.3); }
.chip-time { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
/* Gold chip on dark teal: use solid gold bg with dark text for strong contrast */
.chip-raffle { background: var(--tsi-gold); color: #0d2b2d; border: 1px solid var(--tsi-gold); font-weight: 700; }
.chip-dark.chip-check { background: rgba(0,196,180,0.08); }
.chip-dark.chip-time { background: rgba(26,26,46,0.06); color: var(--color-text-muted); }
.chip-dark.chip-raffle { background: var(--tsi-gold); color: #0d2b2d; border: 1px solid var(--tsi-gold); font-weight: 700; }

@media (max-width: 768px) {
  .station-card { grid-template-columns: 1fr; min-height: auto; }
  .station-card .station-image-wrap { height: 280px; order: 0 !important; }
  .station-card .station-content { order: 1 !important; }
  .station-overlay { background: linear-gradient(to bottom, rgba(6,91,96,0.5) 0%, transparent 50%) !important; }
}

/* ===========================
   FULL RAFFLE
   =========================== */
.raffle-full { position: relative; background: var(--tsi-green); padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; overflow: hidden; }
.raffle-full-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.raffle-bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.raffle-bg-orb-1 { width: 500px; height: 500px; background: var(--tt-pink); top: -150px; left: -100px; }
.raffle-bg-orb-2 { width: 400px; height: 400px; background: var(--tt-teal); bottom: -100px; right: -80px; }
.light-heading { color: white; }
.light-lead { color: rgba(255,255,255,0.65); }
.raffle-full h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.raffle-full .lead { margin-bottom: var(--space-12); }

.raffle-prizes-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-6); margin-bottom: var(--space-16); }
.prize-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4); transition: background var(--trans), border-color var(--trans), transform var(--trans); min-height: 420px; }
.prize-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.prize-card-grand { background: linear-gradient(135deg, rgba(240,20,90,0.18) 0%, rgba(0,196,180,0.1) 100%); border-color: rgba(240,20,90,0.35); }
.prize-grand-badge { display: inline-flex; align-items: center; gap: var(--space-2); background: var(--tsi-gold); border: 1px solid var(--tsi-gold); border-radius: var(--radius-full); padding: var(--space-1) var(--space-3); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0d2b2d; align-self: flex-start; }
/* Gold tags on dark raffle bg — solid gold bg, dark text */
.prize-value-tag { display: inline-flex; align-self: flex-start; padding: var(--space-1) var(--space-3); background: var(--tsi-gold); border: 1px solid var(--tsi-gold); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 700; color: #0d2b2d; letter-spacing: 0.06em; }
.prize-value-label { font-size: var(--text-sm); font-weight: 700; color: var(--tsi-gold); }
.prize-card h3 { font-family: var(--font-display); font-size: var(--text-lg); color: white; line-height: 1.2; }
.prize-courtesy { font-size: var(--text-xs); color: rgba(255,255,255,0.5); font-weight: 500; }
.prize-courtesy a { color: var(--tt-teal); text-decoration: underline; text-underline-offset: 2px; }
.prize-courtesy a:hover { color: white; }
.prize-details { display: flex; flex-direction: column; gap: var(--space-2); }
.prize-details li { font-size: var(--text-sm); color: rgba(255,255,255,0.65); padding-left: var(--space-4); position: relative; line-height: 1.55; max-width: none; }
.prize-details li a { color: var(--tt-teal); }
.prize-details li::before { content: '—'; position: absolute; left: 0; color: var(--tt-pink); font-weight: 700; }
.prize-photo { width: 100%; border-radius: var(--radius-md); margin-top: var(--space-2); object-fit: cover; aspect-ratio: 16/9; }
.prize-thumb { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-md); margin-top: auto; padding-top: var(--space-4); display: block; }

@media (max-width: 900px) { .raffle-prizes-grid { grid-template-columns: 1fr 1fr; } .prize-card-grand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .raffle-prizes-grid { grid-template-columns: 1fr; } }

/* Ticket Tiers */
.ticket-section { margin-bottom: var(--space-16); }
.ticket-section-header { text-align: center; margin-bottom: var(--space-8); }
.ticket-section-header h3 { font-size: var(--text-xl); color: white; margin-bottom: var(--space-2); }
.ticket-section-header p { font-size: var(--text-base); color: rgba(255,255,255,0.6); }
.ticket-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); max-width: 700px; margin: 0 auto; }
.ticket-tier { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: var(--space-8); text-align: center; transition: all var(--trans); position: relative; }
.ticket-tier:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }
.ticket-tier-featured { background: linear-gradient(135deg, rgba(240,20,90,0.25), rgba(238,185,2,0.15)); border-color: rgba(240,20,90,0.45); }
.ticket-best-value { position: absolute; top: calc(-1 * var(--space-3)); left: 50%; transform: translateX(-50%); background: var(--tt-pink); color: white; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; padding: var(--space-1) var(--space-3); border-radius: var(--radius-full); white-space: nowrap; }
.ticket-count { font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: var(--space-2); }
.ticket-price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; color: white; margin-bottom: var(--space-2); }
.ticket-note { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }
@media (max-width: 600px) { .ticket-tiers { grid-template-columns: 1fr; } }

/* How It Works */
.how-it-works { margin-bottom: var(--space-12); text-align: center; }
.how-it-works h3 { font-size: var(--text-xl); color: white; margin-bottom: var(--space-8); }
.how-steps { display: flex; align-items: flex-start; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }
.how-step { max-width: 200px; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; }
.how-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--tt-pink); color: white; font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-step p { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: 1.5; }
.how-arrow { font-size: var(--text-xl); color: rgba(255,255,255,0.2); margin-top: var(--space-5); flex-shrink: 0; }
.raffle-cta-wrap { display: flex; justify-content: center; }

/* ===========================
   MISSION
   =========================== */
.mission { display: grid; grid-template-columns: 1fr 1fr; min-height: 550px; background: white; }
.mission-image-side { overflow: hidden; }
.mission-image-side img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.mission-content-side { padding: clamp(var(--space-12), 6vw, var(--space-20)); display: flex; flex-direction: column; justify-content: center; gap: var(--space-5); }
.mission-content-side h2 { font-size: var(--text-2xl); color: var(--color-text); }
.mission-content-side p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.7; }
.mission-divider { height: 1px; background: var(--color-border); margin: var(--space-2) 0; }
.mission-org { display: flex; gap: var(--space-4); align-items: flex-start; }
.mission-org-logo { flex-shrink: 0; }
.mission-logo-img-wrap { background: var(--tsi-green); border-radius: var(--radius-md); padding: 10px 14px; display: flex; align-items: center; }
.mission-logo-img { height: 56px; width: auto; object-fit: contain; display: block; max-width: 180px; }
/* New circle logo */
.mission-logo-link { display: block; text-decoration: none; transition: opacity var(--trans); }
.mission-logo-link:hover { opacity: 0.88; }
.mission-logo-circle-img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; display: block; box-shadow: var(--shadow-md); }
.mission-org h4 { font-family: var(--font-display); font-size: var(--text-base); color: var(--color-text); margin-bottom: var(--space-2); font-weight: 700; }
.mission-org p { font-size: var(--text-sm); color: var(--color-text-muted); }
.mission-impact { font-size: var(--text-base); color: var(--color-text-muted); }
.mission-impact strong { color: var(--tt-pink); font-weight: 600; }
@media (max-width: 768px) { .mission { grid-template-columns: 1fr; } .mission-image-side { height: 300px; } }

/* ===========================
   SPONSORS
   =========================== */
.sponsors { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0; background: var(--tt-light-pink); }
.sponsors h2 { font-size: var(--text-2xl); color: var(--color-text); margin-bottom: var(--space-5); }
.sponsors .lead { margin-bottom: var(--space-12); }
.sponsors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.sponsor-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; transition: all var(--trans); box-shadow: var(--shadow-sm); text-decoration: none; }
.sponsor-card:hover { border-color: var(--tt-pink); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sponsor-logo { max-height: 60px; width: auto; max-width: 160px; object-fit: contain; }
.sponsor-text-logo { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 900; color: var(--tsi-green); line-height: 1.1; letter-spacing: 0.02em; }
.sponsor-text-logo span { font-weight: 400; font-size: var(--text-base); }
.sponsor-text-logo-sm { font-size: var(--text-base); }
.sponsor-name { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.sponsor-desc { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; max-width: 22ch; }

/* MetaFitRx — white card, filter logo to black so it shows on white bg */
.sponsor-logo-metafitrx { max-height: 56px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(0); }

/* Seen Nutrition — white bg with brand styling */
.seen-logo-wrap { display: flex; align-items: baseline; gap: 4px; }
.seen-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-style: italic; font-weight: 700; color: #1a1a1a; letter-spacing: -0.02em; line-height: 1; }
.seen-logo-sparkle { font-size: 0.85rem; color: #1a1a1a; opacity: 0.5; position: relative; top: -6px; }
@media (max-width: 768px) { .sponsors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sponsors-grid { grid-template-columns: 1fr; } }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta { position: relative; background: var(--tsi-green); padding: clamp(var(--space-20), 10vw, var(--space-32)) 0; overflow: hidden; text-align: center; }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.final-cta-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.2; }
.final-cta-orb-1 { width: 600px; height: 600px; background: var(--tt-pink); top: -200px; right: -100px; }
.final-cta-orb-2 { width: 400px; height: 400px; background: var(--tt-teal); bottom: -150px; left: -50px; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta-title { font-size: var(--text-3xl); color: white; margin-bottom: var(--space-5); }
.final-cta .lead { margin-bottom: var(--space-10); }
.final-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.final-event-note { font-size: var(--text-sm); color: rgba(255,255,255,0.55); letter-spacing: 0.05em; font-weight: 500; max-width: none; }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: #13111E; padding: clamp(var(--space-8), 4vw, var(--space-12)) 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: white; }
.footer-logo-link { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity var(--trans); }
.footer-logo-link:hover { opacity: 1; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; display: block; max-width: 220px; }
.footer-copy { font-size: var(--text-sm); color: rgba(255,255,255,0.4); max-width: 50ch; }
.footer-copy a { color: var(--tt-teal); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal { font-size: var(--text-xs); color: rgba(255,255,255,0.2); max-width: none; }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
