/* MSC Mystery Cards Funnel - Brand System
   Colors:
     Near black: #0B1120
     Gold:       #C8A84E
     White:      #FFFFFF
     Urgency:    #C8312E (countdown only)
   Type:
     Display:    Bebas Neue
     Body:       Barlow
   Voice rule: no em or en dashes anywhere.
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --c-ink: #0B1120;
  --c-ink-2: #1a2333;
  --c-gold: #C8A84E;
  --c-gold-dark: #a88a3a;
  --c-white: #FFFFFF;
  --c-cream: #FAF7EE;
  --c-urgency: #C8312E;
  --c-muted: #6b7280;
  --c-border: #e5e7eb;
  --c-success: #16a34a;
  --shadow-sm: 0 2px 6px rgba(11,17,32,0.08);
  --shadow-md: 0 6px 20px rgba(11,17,32,0.12);
  --shadow-lg: 0 18px 40px rgba(11,17,32,0.18);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--c-ink);
}

h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 30px); }

p { margin: 0 0 1em; }

a { color: var(--c-gold-dark); text-decoration: underline; }
a:hover { color: var(--c-ink); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-header strong { color: var(--c-gold); }

/* HERO */
.hero {
  background: linear-gradient(180deg, #0B1120 0%, #1a2333 100%);
  color: var(--c-white);
  padding: 48px 0 32px;
  text-align: center;
}
.hero h1 { color: var(--c-white); }
.hero h1 .hl { color: var(--c-gold); }
.hero .sub {
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto 24px;
  opacity: 0.92;
}
.hero-img {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* CTA */
.btn {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-ink);
  border: 0;
  border-radius: var(--radius);
  padding: 18px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.06s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); color: var(--c-ink); }
.btn:active { transform: translateY(1px); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-lg { font-size: 28px; padding: 22px 36px; }

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  margin: 16px 0 0;
  opacity: 0.92;
}
.trust-strip span::before { content: "\2713  "; color: var(--c-gold); }

/* COUNTDOWN */
.countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--c-urgency);
  color: var(--c-white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 20px auto 0;
  box-shadow: var(--shadow-sm);
}
.countdown .lbl { font-size: 13px; font-family: 'Barlow', sans-serif; font-weight: 700; opacity: 0.9; }
.countdown.expired { background: var(--c-ink-2); }

/* TIER CARDS */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.tier {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.tier:hover { transform: translateY(-2px); border-color: var(--c-gold); }
.tier.is-selected { border-color: var(--c-gold); background: #fffdf5; }
.tier-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; }
.tier-pack { font-size: 17px; margin: 4px 0 10px; color: var(--c-muted); }
.tier-bonus { color: var(--c-success); font-weight: 700; margin-bottom: 10px; }
.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--c-ink);
}
.tier-strike { color: var(--c-muted); text-decoration: line-through; font-size: 18px; margin-left: 6px; }
.tier-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--c-urgency);
  color: var(--c-white);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* SECTIONS */
section { padding: 56px 0; }
section.alt { background: var(--c-white); }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title small { display: block; color: var(--c-gold-dark); font-family: 'Barlow', sans-serif; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }

/* BONUS STACKER */
.stacker {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-white);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
}
.stacker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 17px;
}
.stacker-row:last-child { border-bottom: 0; }
.stacker-row .val { font-weight: 700; color: var(--c-ink); }
.stacker-row .free { color: var(--c-success); font-weight: 700; }
.stacker-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
}
.stacker-total .price { color: var(--c-gold-dark); }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step { background: var(--c-white); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); }
.step-num { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--c-gold); color: var(--c-ink); font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 10px; }

/* GUARANTEE */
.guarantee {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}
.guarantee-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--c-ink) center/cover;
  border: 4px solid var(--c-gold);
}
.guarantee-signature { font-family: 'Caveat', 'Bebas Neue', cursive; font-size: 28px; color: var(--c-ink); margin-top: 8px; }
@media (max-width: 560px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee-photo { margin: 0 auto; }
}

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { font-weight: 700; cursor: pointer; font-size: 17px; }
.faq details[open] { border-color: var(--c-gold); }

/* CHECKOUT (sticky desktop, drawer mobile) */
.layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
}
@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; }
}
.checkout-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 20px;
}
.checkout-card h3 { text-align: center; }
.checkout-card .order-sum {
  background: var(--c-cream);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 15px;
}
.field { display: block; margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--c-muted); }
.field input, .field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}
.field input:focus, .field select:focus { outline: 2px solid var(--c-gold); outline-offset: 1px; border-color: var(--c-gold); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.toggle-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffdf5;
  border: 1px solid var(--c-gold);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.toggle-row input { margin-top: 4px; }
.toggle-row strong { display: block; }
.toggle-row .meta { font-size: 13px; color: var(--c-muted); }

#card-container { padding: 8px 0 4px; min-height: 64px; }
.sub-disclosure {
  display: none;
  background: var(--c-ink);
  color: var(--c-white);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.sub-disclosure.active { display: block; }
.sub-disclosure a { color: var(--c-gold); }

.error-msg { color: var(--c-urgency); font-weight: 700; font-size: 14px; margin-top: 8px; min-height: 1em; }

/* BADGES */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
.badge svg { width: 16px; height: 16px; }

/* RECENT BUYER TICKER */
.ticker {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: var(--c-ink);
  color: var(--c-white);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  max-width: 300px;
  z-index: 30;
  display: none;
}
.ticker.active { display: block; }
.ticker .name { color: var(--c-gold); font-weight: 700; }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-ink);
  padding: 12px;
  z-index: 20;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.2);
}
@media (max-width: 960px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
}

/* FOOTER */
.site-footer {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 36px 0 24px;
  text-align: center;
  font-size: 14px;
}
.site-footer a { color: var(--c-gold); margin: 0 10px; }
.site-footer .addr { opacity: 0.7; margin-top: 14px; font-size: 13px; }

/* UTIL */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================================================
   v2: unified landing page (sport dropdown, photo grid, upsells)
   =========================================================== */

/* SPORT PICKER */
.sport-picker {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--c-gold);
  border-radius: 14px;
  padding: 8px 14px;
  margin: 14px auto 0;
}
.sport-picker label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  margin-right: 10px;
}
.sport-picker select {
  background: var(--c-ink);
  color: var(--c-white);
  border: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.sport-picker select option { background: var(--c-ink); color: var(--c-white); }

/* TIER CARDS - upgraded with photo support and badges */
.tier-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f3f4f6 center/cover no-repeat;
  border-radius: 8px;
  margin: 0 0 12px;
  overflow: hidden;
  position: relative;
}
.tier-photo::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.tier .save-bubble {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-success);
  color: var(--c-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

/* SPORT GALLERY (photo strip near top) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.gallery .gphoto {
  aspect-ratio: 4 / 3;
  background: var(--c-ink-2) center/cover no-repeat;
  border-radius: 10px;
  border: 2px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.gallery .gphoto .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11,17,32,0.85) 100%);
  color: var(--c-gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 20px 14px 10px;
}

/* HERO IMAGE */
.hero-img-block {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background: var(--c-ink-2) center/cover no-repeat;
  border-radius: 14px;
  margin: 18px auto 0;
  border: 2px solid rgba(200, 168, 78, 0.4);
}

/* UPSELL CARD (in checkout) */
.upsell-card {
  position: relative;
  background: linear-gradient(135deg, #fffdf5 0%, #fffaf0 100%);
  border: 2px solid var(--c-gold);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.upsell-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.upsell-card .upsell-flag {
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--c-urgency);
  color: var(--c-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
}
.upsell-card .upsell-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--c-ink); letter-spacing: 0.02em; }
.upsell-card .upsell-meta { font-size: 13px; color: var(--c-muted); margin-top: 2px; }
.upsell-card .upsell-strike { text-decoration: line-through; color: var(--c-muted); margin-right: 6px; font-size: 12px; }
.upsell-card .upsell-price { color: var(--c-gold-dark); font-weight: 700; }

/* FUN: confetti dots in section backgrounds */
section.fun {
  position: relative;
  overflow: hidden;
}
section.fun::before,
section.fun::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
section.fun::before { background: var(--c-gold); top: -80px; right: -60px; }
section.fun::after  { background: var(--c-urgency); bottom: -80px; left: -60px; }
section.fun > * { position: relative; z-index: 1; }

/* "Sticker" callouts */
.sticker {
  display: inline-block;
  background: var(--c-urgency);
  color: var(--c-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}
.sticker.gold { background: var(--c-gold); color: var(--c-ink); }

/* GUARANTEE SIMPLIFIED (no founder photo) */
.guarantee-block {
  text-align: center;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  border: 3px solid var(--c-gold);
}
.guarantee-block .seal {
  display: inline-flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  background: var(--c-gold);
  color: var(--c-ink);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.guarantee-block h3 { font-size: 30px; }

