@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: #CC0000;
  min-height: 100vh;
  padding-bottom: 72px;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: #111;
  border-top: 1px solid rgba(0,0,0,.3);
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
  z-index: 50;
}
.sticky-cta button {
  width: 100%; height: 56px;
  background: #FACC15;
  color: #000;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
}
.sticky-cta button:hover { background: #fde047; }
.sticky-cta button:active { background: #eab308; }

/* ── HERO ── */
.hero {
  background: #CC0000;
  text-align: center;
  overflow: hidden;
}
.hero-logo-wrap {
  padding: 12px 16px 4px;
  display: flex; justify-content: center;
}
.hero-logo {
  height: 48px; width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
@media (min-width: 768px) { .hero-logo { height: 80px; } }

.hero-content { padding: 0 16px 12px; }
.hero-headline {
  font-size: 1.1rem; font-weight: 800;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
  margin-bottom: 4px;
  font-family: 'Museosansrounded 700 webfont', sans-serif!important;
}
@media (min-width: 768px) { .hero-headline { font-size: 1.9rem; } }
.hero-headline .accent { color: #FACC15; }

.hero-boxes {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  max-width: 160px;
  margin: 4px auto;
}
@media (min-width: 768px) { .hero-boxes { max-width: 220px; } }
.hero-box-item {
  flex: 1;
  position: relative;
}
.hero-box-item img {
  width: 100%; height: auto;
  display: block;
  mix-blend-mode: screen;
}
.hero-box-lock {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-box-lock span {
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  padding: 4px;
  border: 1px solid rgba(250,204,21,.5);
  display: flex;
}

.hero-instruction {
  color: #fde68a;
  font-size: .75rem;
  font-weight: 700;
}
@media (min-width: 768px) { .hero-instruction { font-size: .875rem; } }

/* ── FORM SECTION ── */
.form-section {
  padding: 8px 16px 48px;
  background: linear-gradient(to bottom, #CC0000 0%, #990000 100%);
}
.form-section-inner { max-width: 960px; margin: 0 auto; }

/* countdown */
.countdown-wrap { display: flex; justify-content: center; margin-bottom: 8px; }
.countdown {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(250,204,21,.5);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.countdown-label {
  color: rgba(255,255,255,.7);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  white-space: nowrap;
}
.countdown-digits {
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 1.25rem;
  color: #FACC15;
  letter-spacing: .1em;
  text-shadow: 0 0 12px rgba(255,215,0,.5);
  line-height: 1;
}
.countdown-digits .secs { font-size: 1.1rem; color: #fde68a; }

/* form card */
.form-card-wrap { max-width: 480px; margin: 0 auto; }
.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  padding: 20px;
  border: 1px solid #f1f5f9;
}
@media (min-width: 768px) { .form-card { padding: 32px; } }

.step-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.step-item { display: flex; align-items: center; gap: 8px; }
.step-badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  background: #CC0000; color: #fff;
}
.step-badge.inactive { background: #e2e8f0; color: #94a3b8; }
.step-label { font-size: .875rem; font-weight: 600; color: #64748b; }
.step-line-wrap { flex: 1; margin: 0 12px; height: 2px; background: #e2e8f0; overflow: hidden; }
.step-line-fill {
  height: 100%; background: #CC0000;
  width: 50%;
  transition: width .5s ease;
}

.form-title { font-size: 1.1rem; font-weight: 800; color: #0f172a; text-align: center; margin-bottom: 2px; }
.form-subtitle { font-size: .75rem; color: #94a3b8; text-align: center; margin-bottom: 14px; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: .875rem; font-weight: 700; color: #334155; margin-bottom: 4px; }
.field input,
.field select {
  width: 100%; height: 44px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  outline: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus {
  background: #fff;
  border-color: #CC0000;
  box-shadow: 0 0 0 3px rgba(204,0,0,.15);
}
.field .select-wrap { position: relative; }
.field .select-wrap svg {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: #94a3b8;
  width: 16px; height: 16px;
}
.field-error { font-size: .75rem; color: #dc2626; margin-top: 3px; display: none; }
.field-error.visible { display: block; }

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0px #ffd700; }
  50%      { box-shadow: 0 0 22px rgba(255,215,0,.6); }
}
.submit-btn {
  width: 100%; height: 56px;
  background: #FACC15;
  color: #000;
  font-family: inherit;
  font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
  border: none; border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
  transition: background .15s, transform .1s;
  animation: pulseGlow 2s ease-in-out infinite;
}
.submit-btn:hover { background: #fde047; }
.submit-btn:active { transform: scale(.97); }

.form-note {
  font-size: .75rem; color: #94a3b8;
  text-align: center; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* confirmed state */
.form-confirmed { text-align: center; padding: 16px 0; }
.form-confirmed .check-icon {
  width: 56px; height: 56px;
  color: #22c55e;
  margin: 0 auto 12px;
}
.form-confirmed h2 { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.form-confirmed p { font-size: .875rem; color: #64748b; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.bounce-arrow { animation: bounce 1s ease-in-out infinite; margin-top: 16px; display: flex; justify-content: center; }

/* trust strip */
.trust-strip {
  margin-top: 20px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-icon-wrap { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.trust-label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.3; }

/* ── MYSTERY BOXES SECTION ── */
.mystery-section {
  background: #b80000;
  padding: 48px 16px;
  text-align: center;
}
.mystery-section.hidden { display: none; }
.mystery-heading { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
@media (min-width: 768px) { .mystery-heading { font-size: 1.875rem; } }
.mystery-subheading { font-size: 1.1rem; font-weight: 700; color: #fde68a; margin-bottom: 0; }

.boxes-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  max-width: 500px;
  margin: 24px auto 16px;
}
@media (min-width: 768px) { .boxes-grid { gap: 32px; } }

.box-item {
  flex: 1;
  max-width: 160px;
  position: relative;
  cursor: default;
  transition: opacity .5s, filter .5s;
}
.box-item.unlocked { cursor: pointer; }

@keyframes bobble {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.box-item.bobbing { animation: bobble 1.8s ease-in-out infinite; }
.box-item.bobbing:nth-child(2) { animation-delay: .25s; }
.box-item.bobbing:nth-child(3) { animation-delay: .5s; }

.box-item img {
  width: 100%; height: auto;
  display: block;
  mix-blend-mode: screen;
}
.box-lock-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(1px);
}
.box-lock-ring {
  background: rgba(0,0,0,.7);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid rgba(250,204,21,.4);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  margin-bottom: 4px;
}
.box-locked-text { font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); }

.box-tap-label {
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  display: flex; justify-content: center;
}
.box-tap-label span {
  background: #FACC15; color: #000;
  font-size: .7rem; font-weight: 900;
  padding: 2px 12px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  text-transform: uppercase; letter-spacing: .06em;
}
@keyframes fadePulse {
  0%,100% { opacity: .7; }
  50%      { opacity: 1; }
}
.box-tap-label { animation: fadePulse 1s ease-in-out infinite; }

@keyframes glowRing {
  0%,100% { box-shadow: 0 0 0px 0px rgba(255,215,0,.5); }
  50%      { box-shadow: 0 0 24px 8px rgba(255,215,0,.4); }
}
.box-item.unlocked:not(.faded) { animation: bobble 1.8s ease-in-out infinite; }
.box-item.unlocked:not(.faded) { position: relative; }
.box-item.glow-ring::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  animation: glowRing 1.8s ease-in-out infinite;
  pointer-events: none;
}

.mystery-unlock-hint {
  color: #fde68a; font-size: .875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 24px;
}
@keyframes breathe {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}
.mystery-unlock-hint { animation: breathe 2s ease-in-out infinite; }

/* ── WIN SCREEN ── */
.win-screen {
  position: relative;
  text-align: center;
  overflow: hidden;
  display: none;
}
.win-screen.visible { display: block; }
.win-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.win-overlay { position: absolute; inset: 0; background: rgba(184,0,0,.7); }
.win-content { position: relative; z-index: 10; padding: 80px 16px; }

.win-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(250,204,21,.6);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1) .2s both;
}
@keyframes popIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.win-eyebrow {
  color: #fde68a; font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 4px;
}
.win-discount {
  font-size: 6rem; font-weight: 900; color: #fff; line-height: 1;
  text-shadow: 0 4px 20px rgba(255,215,0,.5);
}
@media (min-width: 768px) { .win-discount { font-size: 9rem; } }
.win-off { font-size: 1.5rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.win-caption { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: 4px; }

.win-body {
  color: rgba(255,255,255,.9); font-size: 1.1rem;
  max-width: 480px; margin: 0 auto 32px;
  animation: fadeUp .4s ease .7s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.win-cta {
  background: linear-gradient(135deg, #00247D, #003BA8);
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 20px 40px;
  border: none; border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  transition: transform .15s;
  animation: fadeUp .4s ease .9s both;
}
.win-cta:hover { transform: scale(1.05); }
.win-small { color: rgba(255,255,255,.6); font-size: .875rem; margin-top: 16px; animation: fadeUp .4s ease .9s both; }

/* ── WHAT YOU GET ── */
.what-you-get {
  background: #fff;
  padding: 48px 16px;
}
.what-you-get-inner { max-width: 768px; margin: 0 auto; text-align: center; }
.section-title { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
@media (min-width: 768px) { .section-title { font-size: 1.875rem; } }
.section-sub { font-size: .875rem; color: #94a3b8; margin-bottom: 32px; }

.wyg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 640px) { .wyg-grid { grid-template-columns: 1fr 1fr; } }

.wyg-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f1f5f9;
}
.wyg-icon {
  width: 40px; height: 40px;
  background: rgba(204,0,0,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wyg-icon svg { width: 20px; height: 20px; color: #CC0000; }
.wyg-card h3 { font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 2px; }
.wyg-card p { font-size: .875rem; color: #64748b; }

/* ── REVIEWS ── */
.reviews-section {
  background: #f8fafc;
  padding: 48px 16px;
  border-top: 1px solid #e2e8f0;
}
.reviews-inner { max-width: 960px; margin: 0 auto; text-align: center; }

.tp-header {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.tp-row { display: flex; align-items: center; gap: 8px; }
.tp-excellent { font-size: .875rem; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: .06em; }
.tp-stars { display: flex; gap: 2px; }
.tp-star {
  width: 24px; height: 24px;
  background: #00B67A;
  display: flex; align-items: center; justify-content: center;
}
.tp-star svg { width: 16px; height: 16px; color: #fff; fill: #fff; }
.tp-star-partial {
  width: 24px; height: 24px;
  position: relative; overflow: hidden; flex-shrink: 0;
  background: #ddd;
}
.tp-star-partial .fill {
  position: absolute; inset: 0;
  background: #00B67A;
  clip-path: inset(0 30% 0 0);
  display: flex; align-items: center; justify-content: center;
}
.tp-star-partial .fill svg { width: 16px; height: 16px; color: #fff; fill: #fff; }
.tp-meta { font-size: .875rem; color: #64748b; }
.tp-meta strong { color: #0f172a; }

.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  text-align: left;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-star {
  width: 20px; height: 20px;
  background: #00B67A;
  display: flex; align-items: center; justify-content: center;
}
.review-star svg { width: 12px; height: 12px; color: #fff; fill: #fff; }
.review-title { font-size: .875rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.review-text { font-size: .875rem; color: #475569; line-height: 1.6; margin-bottom: 16px; }
.review-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #f1f5f9; padding-top: 12px;
}
.review-name { font-size: .75rem; font-weight: 700; color: #0f172a; }
.review-date { font-size: .75rem; color: #94a3b8; }
.reviews-note { font-size: .75rem; color: #94a3b8; margin-top: 24px; }

/* ── TRUST BADGES ── */
.badges-section {
  background: #fff;
  padding: 40px 16px;
  border-top: 1px solid #f1f5f9;
}
.badges-inner { max-width: 768px; margin: 0 auto; text-align: center; }
.badges-eyebrow { font-size: .7rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 24px; }
.badges-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.badge-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.badge-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: center;
}
.badge-icon-wrap svg { width: 32px; height: 32px; color: #CC0000; }
.badge-label { font-size: .875rem; font-weight: 700; color: #334155; text-align: center; }

/* ── FINAL CTA ── */
.final-cta {
  background: #CC0000;
  color: #fff;
  padding: 56px 16px;
  text-align: center;
}
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
@media (min-width: 768px) { .final-cta h2 { font-size: 3rem; } }
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.final-cta-btn {
  background: #FACC15;
  color: #000;
  font-family: inherit;
  font-size: 1.25rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 20px 48px;
  border: none; border-radius: 12px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  animation: pulseGlow 2s ease-in-out infinite;
  transition: background .15s, transform .1s;
}
.final-cta-btn:hover { background: #fde047; }
.final-cta-btn:active { transform: scale(.97); }

/* ── FOOTER ── */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 32px 16px;
  text-align: center;
  font-size: .875rem;
}
footer .footer-inner { max-width: 640px; margin: 0 auto; }
.footer-name { font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-address { font-size: .75rem; opacity: .6; margin-bottom: 8px; }
.footer-terms { font-size: .75rem; opacity: .5; margin-top: 8px; }
