/* ============================================
   JumpInPitt — Landing Page
   ============================================ */

:root {
  --bg: #09090b;
  --surface: #131316;
  --surface-2: #1c1c21;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(255,184,28,0.22);
  --gold: #FFB81C;
  --gold-dim: #D4AF37;
  --gold-glow: rgba(255,184,28,0.12);
  --gold-glow-strong: rgba(255,184,28,0.28);
  --text: #f4f4f5;
  --text-2: #d8d8e0;
  --text-3: #9e9eae;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border-gold); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; }

.nav-logo-wrap { display:flex; align-items:center; gap:12px; }
.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 184, 28, 0.35)) drop-shadow(0 0 20px rgba(255, 184, 28, 0.15));
  transition: filter 0.3s;
}
.nav-logo-wrap:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 184, 28, 0.5)) drop-shadow(0 0 28px rgba(255, 184, 28, 0.25));
}
.nav-logo-text { font-size:22px; font-weight:800; letter-spacing:-0.5px; }
.logo-jump { color: var(--text); }
.logo-in   { color: var(--gold); }
.logo-pitt { color: var(--text); margin-left: 0.15em; }

.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { color:var(--text-2); font-size:14px; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--text); }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.2s var(--ease) !important;
}
.nav-cta:hover { box-shadow: 0 0 24px var(--gold-glow-strong); transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  padding: 140px 28px 80px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite;
}
.hero-orb-1 { width:700px; height:700px; background:radial-gradient(circle, rgba(255,184,28,0.22) 0%, transparent 70%); top:-20%; left:-15%; animation-delay:0s; }
.hero-orb-2 { width:500px; height:500px; background:radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); bottom:-20%; right:-10%; animation-delay:-5s; }
.hero-orb-3 { width:280px; height:280px; background:radial-gradient(circle, rgba(255,184,28,0.1)  0%, transparent 70%); top:50%;   right:25%; animation-delay:-9s; }
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-50px) scale(1.06); }
  66%      { transform: translate(-25px,25px) scale(0.94); }
}

.hero-grid {
  position: absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-split {
  position: relative; z-index:2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin: auto; /* Vertically centers without top-clipping risk */
  width: 100%;
}

/* LEFT */
.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease) both;
}
.badge-dot {
  width:7px; height:7px;
  background: var(--gold);
  border-radius:50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s var(--ease) 0.08s both;
}
.hero-gradient {
  background: linear-gradient(135deg, #FFB81C 0%, #f7e08a 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease) 0.16s both;
}

/* Inline stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease) 0.22s both;
}
.hs { display:flex; flex-direction:column; }
.hs-num { font-size:22px; font-weight:800; color:var(--gold); line-height:1; letter-spacing:-0.5px; }
.hs-label { font-size:12px; color:var(--text-3); margin-top:2px; }
.hs-div { width:1px; height:32px; background:var(--border); }

/* Countdown */
.countdown-wrapper { animation: fadeUp 0.7s var(--ease) 0.28s both; }
.cd-caption { font-size:11px; color:var(--text-3); text-transform:uppercase; letter-spacing:2px; font-weight:600; margin-bottom:8px; }
.countdown { display:flex; align-items:center; gap:6px; }
.cd-block { text-align:center; min-width:52px; }
.cd-num { display:block; font-size:40px; font-weight:800; color:var(--gold); line-height:1; font-variant-numeric:tabular-nums; }
.cd-label { font-size:10px; color:var(--text-3); text-transform:uppercase; letter-spacing:1.5px; margin-top:3px; }
.cd-sep { font-size:28px; font-weight:700; color:var(--text-3); margin-top:-14px; line-height:1; }

/* RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-phone-float {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%) rotate(-4deg);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  filter: blur(1px);
}
.phone-frame-hero { width:160px; height:320px; }

.hero-signup-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px var(--gold-glow);
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero-signup-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  border-radius: 50%;
}
.signup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  position: relative;
}
.hero-signup-title { font-size:22px; font-weight:800; margin-bottom:8px; position:relative; }
.hero-signup-desc  { font-size:13px; color:var(--text-2); line-height:1.55; margin-bottom:20px; position:relative; }
.hero-signup-note  { font-size:12px; color:var(--text-3); text-align:center; margin-top:12px; }

/* App Store Badges */
.app-stores {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.app-store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.app-store-badge:hover {
  border-color: var(--border-gold);
  background: var(--surface-2);
}
.app-store-badge svg { opacity: 0.9; }
.app-store-text { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-small { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; }
.app-store-name { font-size: 14px; font-weight: 600; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items:center; justify-content:center;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px; font-weight:600;
  border: none; cursor:pointer;
  font-family: inherit;
  transition: all 0.22s var(--ease);
}
.btn-gold { background: var(--gold); color:#000; }
.btn-gold:hover { box-shadow: 0 0 32px var(--gold-glow-strong), 0 6px 18px rgba(0,0,0,0.35); transform:translateY(-2px); }
.btn-ghost { background:transparent; color:var(--text-2); border:1px solid var(--border); }
.btn-ghost:hover { border-color:var(--text-3); color:var(--text); background:var(--surface); }

/* ============ FORMS ============ */
.wl-form { display:flex; flex-direction:column; gap:10px; position:relative; }
.wl-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.wl-input:focus { border-color: var(--gold); }
.wl-input::placeholder { color: var(--text-3); }
.wl-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237c7c8a' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg);
  padding-right: 40px;
}
.wl-select option { background: var(--bg); color: var(--text); }
.wl-btn { width:100%; padding:14px; font-size:15px; margin-top:4px; }
.form-message { text-align:center; font-size:13px; min-height:18px; font-weight:500; }
.form-message.success { color:#4CAF50; }
.form-message.error   { color:#ef4444; }

/* ============ SOCIAL STRIP ============ */
.social-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-strip-label { font-size:12px; color:var(--text-3); font-weight:600; text-transform:uppercase; letter-spacing:1.5px; white-space:nowrap; }
.social-strip-logos { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.social-strip-logos span { font-size:14px; font-weight:600; color:var(--text-2); }
.strip-dot { color:var(--text-3) !important; font-weight:400 !important; }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-header { text-align:center; margin-bottom:64px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight:700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing:2.5px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800; line-height:1.12;
  letter-spacing: -1px; margin-bottom:14px;
}
.section-desc { font-size:17px; color:var(--text-2); max-width:520px; margin:0 auto; }
.text-gold { color: var(--gold); }

/* ============ STEPS ============ */
.steps { display:flex; flex-direction:column; gap:80px; }
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.step-reverse .step-visual { order:2; }
.step-reverse .step-info   { order:1; }

.step-number {
  position: absolute;
  top: -20px; left: 0;
  font-size: 130px; font-weight:900;
  color: var(--surface-2);
  line-height:1; letter-spacing:-8px;
  z-index:0; user-select:none;
  pointer-events:none;
}
.step-reverse .step-number { left:auto; right:0; }

.step-visual {
  position: relative; z-index:1;
  display: flex; justify-content:center;
}
/* Dual phone layout for Check In step */
.step-visual-dual {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.step-visual-dual .phone-frame-back,
.step-visual-dual .phone-frame-front {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .step-visual-dual { gap: 12px; }
  .step-visual-dual .phone-frame { max-width: 45%; }
}
@media (max-width: 560px) {
  .step-visual-dual {
    gap: 10px;
  }
  .step-visual-dual .phone-frame-back,
  .step-visual-dual .phone-frame-front {
    /* Same 1:2 ratio as base .phone-frame (260:520), just smaller */
    width: 150px;
    height: 300px;
    padding: 9px;
    border-radius: 30px;
    flex-shrink: 1;
  }
  .step-visual-dual .phone-screen {
    border-radius: 22px;
  }
}

.step-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius:50%;
  filter: blur(60px);
  z-index:0;
  pointer-events:none;
}
.step-info { position:relative; z-index:1; }

.step-icon-wrap {
  display: inline-flex;
  align-items: center; justify-content:center;
  width: 42px; height:42px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  margin-bottom: 16px;
}
.step-title { font-size:30px; font-weight:800; margin-bottom:12px; letter-spacing:-0.5px; }
.step-desc  { font-size:16px; color:var(--text-2); line-height:1.72; margin-bottom:20px; }
.step-bullets { list-style:none; display:flex; flex-direction:column; gap:10px; }
.step-bullets li {
  font-size:14px; color:var(--text-2);
  padding-left:20px;
  position:relative;
}
.step-bullets li::before {
  content:'';
  position:absolute; left:0; top:8px;
  width:6px; height:6px;
  background: var(--gold);
  border-radius:50%;
}

/* Phone frame */
.phone-frame {
  width: 260px; height: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 72px rgba(0,0,0,0.55),
    0 0 50px var(--gold-glow);
  position: relative; z-index:1;
}
.phone-screen {
  width:100%; height:100%;
  background:var(--bg);
  border-radius:30px;
  overflow:hidden;
}
.phone-screenshot { width:100%; height:100%; object-fit:cover; object-position:top center; }

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 40px 28px;
  text-align: center;
}
.stat-card:last-child { border-right:none; }
.stat-card-gold { background:var(--surface-2); }
.stat-num { font-size:48px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:8px; letter-spacing:-2px; }
.stat-label { font-size:15px; font-weight:700; margin-bottom:4px; }
.stat-sub { font-size:13px; color:var(--text-2); }

/* ============ TOP BANNER ============ */
.top-banner {
  background: rgba(255, 184, 28, 0.1);
  color: var(--text);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-gold);
}
.top-banner a {
  color: var(--gold);
  font-weight: 700;
  margin-left: 8px;
  text-decoration: none;
}
.top-banner a:hover {
  text-decoration: underline;
}

/* ============ VENUES SECTION ============ */
.section-venues { background:var(--bg); }
.venues-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.venues-left .section-title { text-align:left; }
.venues-left .section-desc { text-align:left; margin:0 0 36px 0; }

.venue-props { display:flex; flex-direction:column; gap:28px; }
.vp { display:flex; gap:16px; align-items:flex-start; }
.vp-icon {
  flex-shrink:0;
  width:38px; height:38px;
  background:var(--surface-2);
  border:1px solid var(--border-gold);
  border-radius:9px;
  display:flex; align-items:center; justify-content:center;
}
.vp-title { font-size:15px; font-weight:700; margin-bottom:4px; }
.vp-desc  { font-size:13px; color:var(--text-2); line-height:1.6; }

.partner-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position:sticky; top:84px;
}
.pf-title { font-size:20px; font-weight:800; margin-bottom:6px; }
.pf-desc  { font-size:13px; color:var(--text-2); margin-bottom:20px; line-height:1.55; }
.pf-row   { display:flex; gap:10px; margin-bottom:10px; }

/* ============ GAMIFICATION ============ */
.section-game { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.game-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.game-card-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 16px;
  line-height: 1.5;
  text-align: center;
}

/* Demo disclaimer */
.demo-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 32px;
  opacity: 0.6;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Passport Callout */
.pp-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,184,28,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  margin-bottom: 16px;
  animation: calloutBounce 2.5s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.4s;
}
.pp-callout.pp-callout-hidden { opacity: 0; pointer-events: none; }
.pp-callout-icon { font-size: 18px; }
.pp-callout-text {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
@keyframes calloutBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* -- Interactive Passport (Book) -- */
.passport-3d {
  position: relative;
  width: 280px;
  height: 380px;
  margin: 0 auto;
  perspective: 1200px;
  cursor: pointer;
}
/* The book wrapper holds cover+pages side by side */
.pp-book {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
/* Cover — front of book, flips from left spine */
.pp-cover {
  position: absolute;
  inset: 0;
  background: #3B2314;
  border-radius: 4px 12px 12px 4px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
  backface-visibility: hidden;
  border: 1px solid rgba(196,152,85,0.3);
  box-shadow: 4px 0 20px rgba(0,0,0,0.4), inset -2px 0 8px rgba(0,0,0,0.2);
}
.passport-3d.pp-open .pp-cover {
  transform: rotateY(-165deg);
  box-shadow: -2px 0 12px rgba(0,0,0,0.3);
}
/* Left spine edge highlight on cover */
.pp-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(to right, rgba(255,255,255,0.06), transparent);
  border-radius: 4px 0 0 4px;
}
.pp-cover-stitch {
  position: absolute;
  inset: 14px;
  border: 2px dashed #C49855;
  border-radius: 6px;
  opacity: 0.45;
  pointer-events: none;
}
.pp-cover-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pp-cover-logo {
  font-size: 20px;
  font-weight: 800;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.7);
}
.pp-cover-sub {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-top: 8px;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.7);
}
.pp-cover-title {
  color: #D4AF37;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 1px 3px 3px rgba(0,0,0,0.7);
}
.pp-cover-divider {
  width: 55%;
  height: 2px;
  background: #D4AF37;
  opacity: 0.5;
  margin: 16px 0;
}
.pp-cover-user {
  color: #D4AF37;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
  opacity: 0.85;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.7);
}
.pp-cover-valid {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #6B0000;
  border: 2px solid #8B1A1A;
  border-radius: 50%;
  transform: rotate(-12deg);
  margin-top: 16px;
}
.pp-cv-t { color: #fff; font-size: 8px; font-weight: 900; letter-spacing: 1.5px; line-height: 1; }
.pp-cv-y { color: #fff; font-size: 16px; font-weight: 900; line-height: 1.2; }
.pp-cover-tap {
  position: absolute;
  bottom: 18px;
  color: #D4AF37;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  opacity: 0.7;
  transition: opacity 0.4s;
  animation: tapPulse 2s ease-in-out infinite;
}
@keyframes tapPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.passport-3d.pp-open .pp-cover-tap { opacity: 0; }

/* Pages — sits behind cover */
.pp-pages {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  border-left: 3px solid #D5CCBE;
  box-shadow: inset 3px 0 6px rgba(0,0,0,0.06);
  perspective: 1200px;
}
.pp-page {
  position: absolute;
  inset: 0;
  background: #F5F0E8;
  padding: 12px 14px 8px 20px;
  flex-direction: column;
  display: flex;
  /* Pages flip from the LEFT spine, just like the cover */
  transform-origin: left center;
  transform: rotateY(0);
  backface-visibility: hidden;
  /* Hidden by default — stacked behind */
  z-index: 0;
  pointer-events: none;
}
.pp-page-active {
  z-index: 2;
  pointer-events: auto;
}
/* Flipped page — turned to the left like the cover */
.pp-page-flipped {
  transform: rotateY(-165deg);
  z-index: 1;
}
/* Transition only when animating (JS adds this class) */
.pp-page-animating {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.pp-spine {
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.06), transparent);
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
.pp-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.pp-page-hl { color: #AAA; font-size: 6px; font-weight: 900; letter-spacing: 1.5px; }
.pp-page-hr { color: #4A3728; font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.pp-hr {
  border: none;
  height: 1px;
  background: #E0DAD0;
  margin: 3px 0;
}
.pp-hood-title {
  color: #4A3728;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  padding: 3px 0;
}

/* Stamp Grid — constrained sizes */
.pp-stamp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
  align-content: center;
  justify-items: center;
  padding: 4px 2px;
}
.pp-stamp {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  border-width: 2px;
  border-style: solid;
}

/* Shapes — all same base size for consistency */
.pp-shape-circle { border-radius: 50%; }
.pp-shape-oval { border-radius: 50% / 38%; width: 100px; height: 82px; }
.pp-shape-roundrect { border-radius: 6px; width: 95px; height: 85px; }
.pp-shape-diamond {
  border-radius: 3px;
  width: 58px; height: 58px;
  transform: rotate(45deg) !important;
  margin: 10px;
}
.pp-shape-diamond > * { transform: rotate(-45deg); display: block; }

/* Filled stamps */
.pp-stamp-filled { border-style: solid; }
.pp-stamp-eat { border-color: #B82E2E; color: #B82E2E; }
.pp-stamp-drink { border-color: #1A4A76; color: #1A4A76; }
.pp-stamp-do { border-color: #1E7A49; color: #1E7A49; }
.pp-st-cat { font-size: 7px; font-weight: 900; letter-spacing: 1.5px; }
.pp-st-name { font-size: 9px; font-weight: 900; line-height: 1.15; }
.pp-st-div { border: none; width: 22px; height: 1.5px; opacity: 0.5; margin: 2px 0; }
.pp-stamp-eat .pp-st-div { background: #B82E2E; }
.pp-stamp-drink .pp-st-div { background: #1A4A76; }
.pp-stamp-do .pp-st-div { background: #1E7A49; }
.pp-st-yr { font-size: 6px; font-weight: 700; letter-spacing: 0.5px; opacity: 0.7; }

/* Empty stamps */
.pp-stamp-empty { border-style: dashed; border-color: #CCC; color: #CCC; }
.pp-st-q { font-size: 16px; font-weight: 900; margin-bottom: 1px; }
.pp-st-name-empty { font-size: 6px; font-weight: 700; line-height: 1.1; }

/* Smaller text in diamond */
.pp-shape-diamond .pp-st-cat { font-size: 6px; letter-spacing: 1px; }
.pp-shape-diamond .pp-st-name { font-size: 7px; }
.pp-shape-diamond .pp-st-q { font-size: 14px; }
.pp-shape-diamond .pp-st-name-empty { font-size: 5px; }
.pp-shape-diamond .pp-st-yr { font-size: 5px; }

/* Page footer & nav */
.pp-page-footer {
  color: #AAA;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin: 4px 0 2px;
}
.pp-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2px;
}
.pp-nav-btn {
  background: none;
  border: 1px solid #C49855;
  border-radius: 4px;
  color: #4A3728;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.pp-nav-btn:hover { background: rgba(196,152,85,0.15); }
.pp-nav-disabled { opacity: 0.3; pointer-events: none; }
.pp-nav-close {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.2s;
  color: #4A3728;
}
.pp-nav-close:hover { background: rgba(0,0,0,0.05); }

/* Page edge lines (decorative) */
.pp-pages::before {
  content: '';
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #E0DAD0 0px,
    #E0DAD0 1px,
    #F5F0E8 1px,
    #F5F0E8 3px
  );
  z-index: 2;
  border-radius: 0 2px 2px 0;
}

/* Responsive passport */
@media (max-width: 560px) {
  .passport-3d { width: 240px; height: 330px; }
  .pp-stamp { width: 76px; height: 76px; }
  .pp-shape-oval { width: 84px; height: 68px; }
  .pp-shape-roundrect { width: 80px; height: 72px; }
  .pp-shape-diamond { width: 48px; height: 48px; margin: 8px; }
  .pp-cover-title { font-size: 22px; }
  .pp-cover-logo { font-size: 17px; }
  .pp-st-cat { font-size: 6px; }
  .pp-st-name { font-size: 7px; }
}

/* -- Game Phone Frame (for real screenshots in gamification section) -- */
.game-phone-frame {
  width: 200px;
  margin: 12px auto 8px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.game-phone-frame .phone-screen {
  border-radius: 18px;
  overflow: hidden;
}
.game-phone-frame .phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
@media (max-width: 560px) {
  .game-phone-frame { width: 170px; }
}

/* -- Leaderboard Mock -- */
.mock-leaderboard { display: flex; flex-direction: column; gap: 8px; }
.ml-header { color: var(--text-3); font-size: 11px; text-align: center; margin-bottom: 4px; }
.ml-row {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  gap: 10px;
}
.ml-medal, .ml-rank { width: 28px; text-align: center; font-size: 16px; }
.ml-rank { color: var(--text); font-weight: 700; font-size: 15px; }
.ml-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.ml-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
}
.ml-row-you {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.ml-row-you .ml-name { color: #000; }
.ml-row-you .ml-rank { color: #000; }
.ml-badge-you {
  color: #000 !important;
  background: rgba(0,0,0,0.12) !important;
}

/* -- Weekly Recap Mock -- */
.mock-recap { text-align: center; }
.mr-date { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 2px; margin-bottom: 6px; }
.mr-quote { color: var(--text-3); font-size: 12px; font-style: italic; margin-bottom: 16px; }
.mr-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 0;
  margin-bottom: 14px;
}
.mr-stat { flex: 1; display: flex; flex-direction: column; align-items: center; }
.mr-stat-num { font-size: 32px; font-weight: 900; color: var(--text); line-height: 1; }
.mr-stat-label { font-size: 9px; font-weight: 800; color: var(--text-3); letter-spacing: 1.5px; margin-top: 4px; }
.mr-stat-div { width: 1px; height: 36px; background: var(--border); }

.mr-streak {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 24px;
  padding: 8px 16px;
  background: rgba(255,184,28,0.05);
  margin-bottom: 14px;
}
.mr-streak-fire { font-size: 20px; }
.mr-streak-title { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: 1px; text-align: left; }
.mr-streak-sub { color: var(--text-3); font-size: 10px; text-align: left; }

.mr-breakdown { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.mr-cat { display: flex; align-items: center; gap: 8px; }
.mr-cat-emoji { font-size: 14px; width: 22px; }
.mr-cat-label { font-size: 11px; font-weight: 700; color: var(--text-2); width: 42px; }
.mr-bar { flex: 1; height: 10px; background: #1A1A1A; border-radius: 6px; overflow: hidden; }
.mr-bar-fill { height: 100%; border-radius: 6px; min-width: 10%; }
.mr-bar-eat { background: #E74C3C; }
.mr-bar-drink { background: #3498DB; }
.mr-bar-do { background: #2ECC71; }
.mr-cat-count { font-size: 13px; font-weight: 900; color: var(--text); width: 22px; text-align: right; }

@media (max-width:900px) {
  .game-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============ TESTIMONIAL ============ */
.section-testimonial { padding: 60px 0; }
.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-3); }
.testimonial-partner-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

/* ============ FAQ ============ */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after {
  content: '\2212';
}
.faq-item[open] .faq-q { color: var(--gold); }
.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============ VENUE CTA BANNER ============ */
.venue-banner {
  background: linear-gradient(135deg, rgba(255,184,28,0.06) 0%, var(--surface) 40%, var(--surface) 60%, rgba(255,184,28,0.06) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.venue-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,184,28,0.18) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: bannerGlow 4s ease-in-out infinite;
}
@keyframes bannerGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.venue-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.venue-banner-left { flex: 1; }
.venue-banner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,184,28,0.12); border: 1px solid var(--border-gold);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
  animation: goldPulse 3s ease-in-out infinite;
}
.venue-banner-badge .badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.venue-banner-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.venue-banner-title .hero-gradient {
  background: linear-gradient(135deg, #FFB81C 0%, #f7e08a 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.venue-banner-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.6;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  white-space: nowrap;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: var(--surface);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 184, 28, 0.3)) drop-shadow(0 0 18px rgba(255, 184, 28, 0.12));
}
.footer-brand-name { font-size: 24px; font-weight: 800; }
.footer-tagline { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-made { font-size: 12px; color: var(--text-3); }

@media (max-width:900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width:560px) {
  .footer-links-group { grid-template-columns: 1fr 1fr; }
}

/* ============ LOADING ============ */
.btn-loading { opacity:0.65; pointer-events:none; position:relative; }
.btn-loading::after {
  content:''; position:absolute;
  width:15px; height:15px;
  border:2px solid transparent; border-top-color:#000;
  border-radius:50%;
  animation:spin 0.55s linear infinite;
  right:16px; top:50%; transform:translateY(-50%);
}
@keyframes spin { to { transform:translateY(-50%) rotate(360deg); } }

/* ============ RESPONSIVE ============ */
@media (max-width:900px) {
  .hero { display: block; min-height: auto; padding-top: 180px !important; }
  .hero-split { margin: 0 auto; grid-template-columns:1fr; gap:48px; }
  .hero-right { justify-content:center; }
  .hero-signup-card { max-width:480px; }
  .hero-phone-float { display:none; }
  .hero-badge { justify-content:center; }
  .hero-title { text-align:center; letter-spacing:-1.5px; }
  .hero-subtitle { text-align:center; }
  .hero-stats { justify-content:center; }
  .countdown { justify-content:center; }
  .countdown-wrapper { text-align:center; }

  .step { grid-template-columns:1fr; gap:32px; text-align:center; }
  .step-reverse .step-visual { order:unset; }
  .step-reverse .step-info   { order:unset; }
  .step-number { display:none; }
  .phone-frame { width:220px; height:440px; }
  .step-bullets { align-items:flex-start; display:inline-flex; flex-direction:column; gap:10px; }
  .step-bullets li { text-align:left; }
  .step-icon-wrap { margin:0 auto 16px; }

  /* Hero stats row: keep single row, shrink spacing */
  .hero-stats { gap: 14px; flex-wrap: nowrap; }
  .hs-num { font-size: 20px; }
  .hs-label { font-size: 11px; }
  .hs-div { height: 28px; }

  /* Countdown: keep in one row */
  .countdown { gap: 4px; flex-wrap: nowrap; }
  .cd-num { font-size: 34px; }
  .cd-block { min-width: 46px; }
  .cd-sep { font-size: 24px; margin-top: -10px; }

  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-card { border-right:none; border-bottom:1px solid var(--border); }
  .stat-card:nth-child(2n) {}

  .venues-split { grid-template-columns:1fr; }
  .partner-form-card { position:static; }
  .pf-row { flex-direction:column; }

  .venue-banner-inner { flex-direction:column; text-align:center; }
  .venue-banner-desc { margin:0 auto; }
  .btn-lg { width:100%; max-width:400px; }
}

@media (max-width:560px) {
  .container { padding: 0 16px; }
  .hero { padding: 180px 20px 60px !important; }
  .hero-title { font-size:36px; }
  .section { padding:64px 0; }
  .hero-signup-card { padding:28px 20px; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-card { border-bottom:1px solid var(--border); }
  .social-strip-inner { flex-direction:column; align-items:center; gap:10px; }
  .app-stores { flex-direction: column; align-items: center; }
  .app-store-badge { width: 100%; max-width: 200px; justify-content: center; }

  /* Countdown scales down */
  .cd-num { font-size: 32px; }
  .cd-block { min-width: 44px; }
  .cd-sep { font-size: 22px; }
}

/* ============ MOBILE NAV ============ */
@media (max-width: 768px) {
  .nav-inner { height: 60px; }
  .nav-logo-img { width: 38px; height: 38px; border-radius: 9px; }
  .nav-logo-wrap { gap: 8px; }
  .nav-logo-text { font-size: 17px; }

  /* Hide text links by default EXCEPT .nav-keep-mobile */
  .nav-links { gap: 8px; margin-left: auto; padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.15); }
  .nav-links a:not(.nav-cta):not(.nav-keep-mobile) { display: none; }
  .nav-keep-mobile { font-size: 11px; color: #fff; font-weight: 700; padding: 6px 2px; white-space: nowrap; }
  .nav-cta { padding: 6px 10px !important; font-size: 11px !important; white-space: nowrap; }
}

/* ============ MOBILE CONTENT ============ */
@media (max-width: 480px) {
  .nav-inner { height: 56px; }
  .nav-logo-img { width: 34px; height: 34px; border-radius: 8px; }
  .nav-logo-text { font-size: 15px; }
  .nav-keep-mobile { font-size: 12px; padding: 4px; }
  .nav-cta { padding: 6px 10px !important; font-size: 11px !important; }

  /* Single phone frames smaller on small screens */
  .phone-frame { width: 200px; height: 400px; border-radius: 32px; padding: 10px; }
  .phone-screen { border-radius: 24px; }

  /* Dual phones: even smaller to fit side by side */
  .step-visual-dual .phone-frame-back,
  .step-visual-dual .phone-frame-front {
    width: 140px;
    height: 280px;
    padding: 8px;
    border-radius: 26px;
  }
  .step-visual-dual .phone-screen { border-radius: 20px; }

  /* Step section tighter */
  .step { gap: 24px; }
  .step-title { font-size: 24px; }
  .step-desc { font-size: 14px; }
  .steps { gap: 56px; }

  /* Bullets aligned properly */
  .step-bullets { align-items: flex-start; width: 100%; padding: 0 8px; }
  .step-bullets li { text-align: left; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-desc { font-size: 15px; }

  /* Hero adjustments */
  .hero { padding: 80px 16px 48px; }
  .hero-title { font-size: 32px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 15px; }
  .hero-signup-card { padding: 24px 16px; }

  /* Hero stats + countdown on small screens */
  .hero-stats { gap: 10px; justify-content: center; }
  .hs-num { font-size: 18px; }
  .hs-label { font-size: 10px; }
  .hs-div { height: 24px; }
  .countdown { gap: 2px; }
  .cd-num { font-size: 28px; }
  .cd-block { min-width: 38px; }
  .cd-sep { font-size: 18px; margin-top: -8px; }
  .cd-caption { font-size: 10px; letter-spacing: 1.5px; }

  /* Footer tighter */
  .footer-logo-img { width: 44px; height: 44px; }
  .footer-brand-name { font-size: 20px; }
}

/* ============ SCROLL ANIMATIONS ============ */
[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle glow pulse on gold CTAs */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,184,28,0.15); }
  50% { box-shadow: 0 0 32px rgba(255,184,28,0.35); }
}
.btn-gold { animation: goldPulse 3s ease-in-out infinite; }
.btn-gold:hover { animation: none; box-shadow: 0 0 40px rgba(255,184,28,0.4); }

/* Hero orb movement (parallax via JS) */
.hero-orb { transition: transform 0.1s linear; }

/* ============ MODAL POPUPS ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px var(--gold-glow);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--border);
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); cursor: pointer; transition: all 0.2s;
  font-size: 16px; line-height: 1;
  z-index: 2;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-3); }
.modal-header { margin-bottom: 20px; text-align: center; padding-top: 12px; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,184,28,0.1); border: 1px solid var(--border-gold);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
  animation: goldPulse 3s ease-in-out infinite;
}
.modal-badge .badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.modal-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.5px; }
.modal-title-gold { color: var(--gold); }
.modal-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.modal-subtitle { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* Modal success state */
.modal-success { text-align: center; display: none; flex-direction: column; align-items: center; gap: 16px; padding: 20px 0; }
.modal.success-state .wl-form, .modal.success-state .modal-desc { display: none; }
.modal.success-state .modal-success { display: flex; }
.success-icon { width: 64px; height: 64px; background: rgba(76, 175, 80, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #4CAF50; margin-bottom: 8px; }
.success-icon svg { width: 32px; height: 32px; }
.success-desc { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }

@media (max-width: 560px) {
  .modal-content { padding: 32px 20px; }
}
