/* ═══════════════════════════════════════════════════════════════
   DURACELL PROMO LANDING — style.css
   Fonts: Montserrat (Google Fonts)
   Layout: CSS Grid + Flexbox, no framework
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ───────────────────────────────────── */
:root {
  /* Colours */
  --c-bg:          #050505;
  --c-bg-alt:      #09090d;
  --c-bg-card:     #0f1014;
  --c-bg-card-2:   #141418;
  --c-gold:        #C8860A;
  --c-gold-light:  #E8A020;
  --c-gold-dark:   #8B5A04;
  --c-copper:      #D4782A;
  --c-white:       #FFFFFF;
  --c-offwhite:    #F0EDE8;
  --c-grey-lt:     #B0ADA8;
  --c-grey:        #6A6760;
  --c-green-pitch: #1a5c1a;
  --c-green-light: #2e8b2e;

  /* Glow */
  --glow-gold:     0 0 40px rgba(200,134,10,0.35), 0 0 80px rgba(200,134,10,0.15);
  --glow-gold-sm:  0 0 20px rgba(200,134,10,0.4);
  --glow-white:    0 0 30px rgba(255,255,255,0.08);

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Spacing scale */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   24px;
  --sp-lg:   40px;
  --sp-xl:   64px;
  --sp-2xl:  96px;
  --sp-3xl:  128px;

  /* Typography */
  --font-main: 'Montserrat', Arial, sans-serif;

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   280ms ease;
  --tr-slow:   500ms ease;

  /* Container */
  --container: 1200px;
  --container-pad: clamp(20px, 5vw, 80px);
}

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Utility ──────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ─── Shared section header ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-xs);
  padding: 4px 14px;
  border: 1px solid rgba(200,134,10,0.35);
  border-radius: var(--r-full);
  background: rgba(200,134,10,0.07);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── Logo ──────────────────────────────────────────────────────── */
.logo-img {
  height: 44px;
  width: auto;
}

.logo-img--small {
  height: 32px;
}

.logo-fallback {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-white);
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 14px;
}

.logo-fallback::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--c-gold);
  border-radius: 2px;
}

.logo-fallback--small {
  font-size: 20px;
}

/* ─── Button ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base), filter var(--tr-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr-fast);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 50%, var(--c-gold-dark) 100%);
  color: #0a0500;
  box-shadow: 0 4px 24px rgba(200,134,10,0.45), 0 0 0 0 rgba(200,134,10,0);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(200,134,10,0.6), 0 0 60px rgba(200,134,10,0.25);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--large {
  padding: 18px 40px;
  font-size: 17px;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--tr-base);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050508;
}

/* Background layers */
.hero__bg-stadium {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(30, 90, 30, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 20% 50%, rgba(200,134,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 80% 50%, rgba(200,134,10,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #050508 0%, #080b08 60%, #0a100a 100%);
  z-index: 0;
}

.hero__bg-spotlights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 15% 0%, rgba(255,255,240,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 85% 0%, rgba(255,255,240,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 20% 40% at 50% 0%, rgba(255,255,240,0.04) 0%, transparent 50%);
  z-index: 0;
}

.hero__bg-pitch {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(20,60,20,0.15) 40%, rgba(15,50,15,0.25) 100%);
  z-index: 0;
}

/* Pitch line */
.hero__pitch-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(46,139,46,0.3) 10%,
    rgba(46,139,46,0.7) 30%,
    rgba(255,255,255,0.15) 50%,
    rgba(46,139,46,0.7) 70%,
    rgba(46,139,46,0.3) 90%,
    transparent 100%
  );
  z-index: 5;
}

/* Main container */
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: var(--sp-xl) var(--container-pad) var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  min-height: calc(100vh - 5px);
  flex: 1;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 520px;
}

.hero__logo {
  margin-bottom: 4px;
}

/* Hero headline */
.hero__headline {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-white);
}

.hero__headline--accent {
  color: var(--c-gold-light);
  text-shadow: 0 0 40px rgba(200,134,10,0.6), 0 0 80px rgba(200,134,10,0.3);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--c-grey-lt);
  font-weight: 500;
  line-height: 1.5;
  max-width: 400px;
}

/* QR Card */
.qr-card {
  display: inline-block;
  margin-top: 4px;
}

.qr-card__inner {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 20px 24px 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 0 0 2px rgba(200,134,10,0.4),
    var(--glow-gold),
    0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  animation: qrPulse 3s ease-in-out infinite;
  max-width: 200px;
}

@keyframes qrPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(200,134,10,0.4), 0 0 30px rgba(200,134,10,0.3), 0 20px 60px rgba(0,0,0,0.6); }
  50%       { box-shadow: 0 0 0 3px rgba(200,134,10,0.7), 0 0 60px rgba(200,134,10,0.5), 0 20px 60px rgba(0,0,0,0.6); }
}

.qr-card__badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  background: linear-gradient(90deg, rgba(200,134,10,0.12), rgba(200,134,10,0.06));
  border: 1px solid rgba(200,134,10,0.3);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.qr-card__code {
  width: 150px;
  height: 150px;
  border-radius: var(--r-sm);
}

.qr-card__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-top: -2px;
}

.hero__cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* Right column: bunny */
.hero__right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero__bunny-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__bunny {
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 2;
  animation: bunnyFloat 4s ease-in-out infinite;
  /* PNG has white bg — we remove it */
  mix-blend-mode: normal;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(255,182,120,0.15));
}

@keyframes bunnyFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

.hero__bunny-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,150,50,0.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════
   PRIZES SECTION
   ═══════════════════════════════════════════════════════════════ */
.prizes {
  position: relative;
  padding: var(--sp-2xl) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,134,10,0.05) 0%, transparent 70%),
    linear-gradient(180deg, #050508 0%, #080810 50%, #050508 100%);
  overflow: hidden;
}

.prizes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,0.3), transparent);
}

.prizes__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.prizes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

/* Prize Card */
.prize-card {
  position: relative;
  background: var(--c-bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  overflow: hidden;
  cursor: default;
}

.prize-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-gold), 0 30px 60px rgba(0,0,0,0.5);
}

.prize-card__border {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(200,134,10,0.25);
  pointer-events: none;
  transition: border-color var(--tr-base);
}

.prize-card:hover .prize-card__border {
  border-color: rgba(200,134,10,0.6);
}

.prize-card__glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.prize-card__glow--center {
  background: radial-gradient(circle, rgba(200,134,10,0.18) 0%, transparent 70%);
}

.prize-card--featured {
  background: linear-gradient(180deg, #14120a 0%, #0f0d08 100%);
  transform: scale(1.04);
}

.prize-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.prize-card__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.prize-card__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(200,134,10,0.35);
  background: radial-gradient(circle at 35% 35%, rgba(200,134,10,0.1) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.4), 0 0 30px rgba(200,134,10,0.1);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.prize-card:hover .prize-card__circle {
  border-color: rgba(200,134,10,0.7);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.4), 0 0 50px rgba(200,134,10,0.25);
}

.prize-card__svg {
  width: 90px;
  height: 90px;
}

.prize-card__img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 50%;
}

.prize-card__body {
  text-align: center;
}

.prize-card__qty {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(200,134,10,0.5);
}

.prize-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.35;
  letter-spacing: 0.01em;
}


/* ═══════════════════════════════════════════════════════════════
   HOW TO PARTICIPATE
   ═══════════════════════════════════════════════════════════════ */
.how-to {
  position: relative;
  padding: var(--sp-2xl) 0;
  background:
    radial-gradient(ellipse 100% 40% at 50% 50%, rgba(200,134,10,0.04) 0%, transparent 70%),
    #060608;
  overflow: hidden;
}

.how-to::before,
.how-to::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,0.2), transparent);
}

.how-to::before { top: 0; }
.how-to::after  { bottom: 0; }

.how-to__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Steps grid */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
  position: relative;
}

/* 3-step variant — wider cards, better centred */
.steps--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
  gap: var(--sp-lg);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-sm);
  position: relative;
}

.step__number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: relative;
}

.step__connector {
  position: absolute;
  left: 60%;
  top: 50%;
  right: -50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,134,10,0.4), rgba(200,134,10,0.1));
  transform: translateY(-50%);
  pointer-events: none;
}

.step:last-child .step__connector {
  display: none;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold-dark));
  color: #0a0500;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(200,134,10,0.4);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step__icon {
  width: 48px;
  height: 48px;
  color: var(--c-gold-light);
  opacity: 0.85;
}

.step__icon svg {
  width: 100%;
  height: 100%;
}

.step__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0.01em;
}

.step__text {
  font-size: 13px;
  color: var(--c-grey-lt);
  font-weight: 500;
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: var(--sp-2xl) 0;
  overflow: hidden;
  background: #040406;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,134,10,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(30,90,30,0.1) 0%, transparent 60%);
}

/* Decorative lines */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,134,10,0.3), transparent);
}

.cta-section__container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  background: linear-gradient(135deg, rgba(200,134,10,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-xl);
  box-shadow: 0 0 60px rgba(200,134,10,0.06);
}

.cta-section__text {
  flex: 1;
}

.cta-section__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cta-section__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--c-grey-lt);
  font-weight: 500;
  max-width: 460px;
}

.cta-section__btn {
  flex-shrink: 0;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,134,10,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(200,134,10,0.75), 0 0 80px rgba(200,134,10,0.3); }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #030304;
  padding: var(--sp-xl) 0 var(--sp-lg);
  border-top: 1px solid rgba(200,134,10,0.12);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer__nav {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-grey-lt);
  transition: color var(--tr-fast);
  letter-spacing: 0.01em;
}

.footer__link:hover {
  color: var(--c-gold-light);
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: var(--sp-md) 0;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 11px;
  color: var(--c-grey);
  line-height: 1.6;
  max-width: 600px;
}

.footer__copy {
  font-size: 11px;
  color: var(--c-grey);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="fade-up"] {
  transform: translateY(36px);
}

[data-reveal="fade-left"] {
  transform: translateX(40px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (768px – 1199px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    align-items: center;
  }

  .hero__headline {
    font-size: clamp(28px, 4vw, 44px);
  }

  .hero__bunny {
    max-width: 460px;
  }

  .prizes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }

  .prize-card--featured {
    transform: scale(1.02);
  }

  .prize-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .steps--three {
    gap: var(--sp-md);
  }

  .step__title { font-size: 14px; }
  .step__text  { font-size: 12px; }

  .cta-section__inner {
    padding: var(--sp-lg) var(--sp-lg);
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  :root {
    --sp-xl:  48px;
    --sp-2xl: 64px;
  }

  /* Hero: single column, reordered */
  .hero__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: var(--sp-lg);
    padding-bottom: var(--sp-lg);
    gap: var(--sp-md);
    min-height: auto;
  }

  .hero__left {
    order: 1;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero__right {
    order: 0; /* Bunny above text on mobile */
    justify-content: center;
  }

  .hero__sub {
    text-align: center;
  }

  .hero__bunny {
    max-width: 340px;
    animation: bunnyFloat 4s ease-in-out infinite;
  }

  .hero__headline {
    font-size: clamp(26px, 8vw, 38px);
    text-align: center;
  }

  .hero__cta {
    align-self: center;
  }

  /* Prizes: single column */
  .prizes__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .prize-card--featured {
    transform: none;
  }

  .prize-card--featured:hover {
    transform: translateY(-8px);
  }

  /* Steps: single column on mobile */
  .steps,
  .steps--three {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: var(--sp-md);
  }

  .step__connector {
    display: none;
  }

  /* CTA: stack */
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-lg) var(--sp-md);
    gap: var(--sp-md);
  }

  .cta-section__sub {
    margin: 0 auto;
  }

  /* Footer: stack */
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__bunny {
    max-width: 280px;
  }

  .qr-card__inner {
    padding: 16px 18px 12px;
  }

  .qr-card__code {
    width: 130px;
    height: 130px;
  }
}

/* ─── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__bunny,
  .qr-card__inner,
  .cta-section__btn {
    animation: none;
  }
  [data-reveal] {
    transition: none;
  }
}
