/* ==========================================================================
   SAUCE ESSENTIALS — motion.css
   Cinematic motion patterns + new age-gate. Loaded AFTER styles.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   REDUCED MOTION FALLBACK
   When motion.js is held back by prefers-reduced-motion, .reveal still works
   via this graceful in-class. (motion.js sets opacity:1 directly otherwise.)
-------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* --------------------------------------------------------------------------
   WORD STAGGER (hero headlines)
-------------------------------------------------------------------------- */
[data-split] {
  display: block;
}
[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
  padding-right: 0.04em;
}
[data-split] .word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   SPINNER (used by buttons during async)
-------------------------------------------------------------------------- */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
  vertical-align: -2px;
  margin-right: 6px;
}
@keyframes spinner { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   NEW AGE GATE — overrides old card-style
-------------------------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050B1F;
  display: block;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.22,1,.36,1), visibility .55s;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}
.age-gate.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.age-gate.leaving {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(1000px 700px at 100% 100%, rgba(59,130,246,.14), transparent 60%);
}
.age-gate-bg::before,
.age-gate-bg::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  animation: ageFloat 22s ease-in-out infinite;
  opacity: .55;
}
.age-gate-bg::before {
  background: radial-gradient(circle, rgba(59,130,246,.6), transparent 70%);
  top: -260px;
  left: -260px;
}
.age-gate-bg::after {
  background: radial-gradient(circle, rgba(212,165,116,.4), transparent 70%);
  bottom: -260px;
  right: -260px;
  animation-delay: -11s;
}
@keyframes ageFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.08); }
}

.age-gate-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

/* LEFT panel (text + actions) */
.age-gate-panel {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(40px, 6vw, 88px);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.age-gate-stage {
  animation: stageIn .7s cubic-bezier(.22,1,.36,1) both;
}
@keyframes stageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.age-gate-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: clamp(28px, 5vw, 56px);
}
.age-gate-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--sauce-electric), var(--sauce-cyan));
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(59,130,246,.45);
}
.age-gate-wordmark { letter-spacing: -0.005em; }

.age-gate-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sauce-cyan);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(34,211,238,.25);
  background: rgba(34,211,238,.06);
  border-radius: var(--r-pill);
  align-self: start;
}
.age-gate-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--sauce-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--sauce-cyan);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.age-gate-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 20px;
  color: var(--text);
}

.age-gate-lede {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.age-gate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.age-gate-actions .btn { min-width: 0; padding-left: 28px; padding-right: 28px; }
.age-gate-yes { padding-right: 32px !important; }

.age-gate-foot {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Stage 2: under-21 form */
.age-gate-form {
  display: grid;
  gap: 18px;
}
.age-gate-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.age-gate-field {
  display: grid;
  gap: 6px;
}
.age-gate-field .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-mute);
}
.age-gate-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all .25s var(--ease);
  width: 100%;
  color-scheme: dark;
}
.age-gate-field input::placeholder { color: var(--text-faint); }
.age-gate-field input:focus {
  outline: none;
  border-color: var(--sauce-cyan);
  background: rgba(34,211,238,.06);
  box-shadow: 0 0 0 4px rgba(34,211,238,.12);
}

.age-gate-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.age-gate-skip {
  background: none;
  border: 0;
  color: var(--text-mute);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.18);
  text-underline-offset: 4px;
  transition: color .25s var(--ease);
  padding: 6px 0;
}
.age-gate-skip:hover { color: var(--text-soft); }

.age-gate-fineprint {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 56ch;
  margin-top: 4px;
}

/* Stage 3: thanks */
.age-gate-thanks-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,165,116,.18), rgba(212,165,116,.04));
  border: 1px solid rgba(212,165,116,.4);
  color: var(--sauce-gold);
  display: grid;
  place-items: center;
  margin: 0 0 24px;
  animation: thanksPop .9s cubic-bezier(.34,1.5,.64,1) both;
  box-shadow: 0 0 60px rgba(212,165,116,.25);
}
@keyframes thanksPop {
  0% { transform: scale(.6); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* RIGHT panel (image) */
.age-gate-visual {
  position: relative;
  overflow: hidden;
  background: #0A1330;
  min-height: 100vh;
}
.age-gate-photo {
  position: absolute;
  inset: 0;
  display: block;
}
.age-gate-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  animation: visualKenburns 18s ease-in-out infinite alternate;
}
@keyframes visualKenburns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-1.5%); }
}
.age-gate-photo-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,11,31,.55) 0%, rgba(5,11,31,.15) 30%, transparent 50%, rgba(5,11,31,.15) 100%),
    linear-gradient(180deg, rgba(5,11,31,.4), transparent 30%, transparent 70%, rgba(5,11,31,.5));
  pointer-events: none;
}
.age-gate-photo-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.age-gate-quote {
  position: absolute;
  bottom: clamp(28px, 5vw, 56px);
  right: clamp(28px, 5vw, 56px);
  left: clamp(28px, 5vw, 56px);
  color: white;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}
.age-gate-quote .qmark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0;
  display: inline-block;
  color: var(--sauce-gold);
  margin-bottom: 8px;
  opacity: .9;
}
.age-gate-quote p {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 0 16px;
  color: white;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.age-gate-quote .qline {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.age-gate-quote .qfoot {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.85);
}

/* Mobile — stack */
@media (max-width: 880px) {
  .age-gate-shell { grid-template-columns: 1fr; min-height: 100vh; }
  .age-gate-visual {
    order: -1;
    min-height: 38vh;
    height: 38vh;
  }
  .age-gate-panel {
    padding: 32px 24px 48px;
    align-content: start;
  }
  .age-gate-quote { display: none; }
  .age-gate-brand { margin-bottom: 22px; }
  .age-gate-fields { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .age-gate-actions { flex-direction: column; align-items: stretch; }
  .age-gate-actions .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   FOOTER NEWSLETTER + SOCIALS
-------------------------------------------------------------------------- */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all .3s var(--ease);
}
.footer-socials a:hover {
  background: rgba(34,211,238,.08);
  border-color: var(--sauce-cyan);
  color: var(--sauce-cyan);
  transform: translateY(-2px);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-pill);
  padding: 4px 4px 4px 16px;
  transition: border-color .3s var(--ease);
}
.footer-newsletter:focus-within {
  border-color: var(--sauce-cyan);
  background: rgba(34,211,238,.04);
}
.footer-newsletter input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--text);
  outline: none;
  font-size: 14px;
  padding: 8px 0;
  min-width: 0;
}
.footer-newsletter input::placeholder { color: var(--text-faint); }
.footer-newsletter button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-electric), var(--sauce-cyan));
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.footer-newsletter button:hover { transform: translateX(2px); }

/* --------------------------------------------------------------------------
   CINEMATIC SECTION HEADERS — slight motion on every section eyebrow line
-------------------------------------------------------------------------- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 20px;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-hi), transparent);
}
.section-divider .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-mute);
}

/* --------------------------------------------------------------------------
   IMAGE TREATMENT — premium photo styling
-------------------------------------------------------------------------- */
.editorial-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-2);
}
.editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}
.editorial-image:hover img { transform: scale(1.05); }
.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,11,31,.65));
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   COUNTDOWN — used on verifier success
-------------------------------------------------------------------------- */
.countdown-ring {
  --p: 0;
  --size: 64px;
  width: var(--size);
  height: var(--size);
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--sauce-cyan) calc(var(--p) * 1%), rgba(255,255,255,.08) 0);
  transition: --p 1s linear;
}
.countdown-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}
.countdown-ring .num {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
}
@property --p {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

/* --------------------------------------------------------------------------
   VERIFY MULTI-STEP UI (.verify-stage transitions)
-------------------------------------------------------------------------- */
.verify-stage {
  animation: stageIn .55s cubic-bezier(.22,1,.36,1) both;
}
.verify-success-card {
  position: relative;
  text-align: center;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(34,211,238,.18), transparent 60%),
    linear-gradient(160deg, rgba(15,27,64,.85), rgba(10,19,48,.95));
  border: 1px solid rgba(34,211,238,.22);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.verify-success-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(34,211,238,.4), transparent 70%);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: .35;
  animation: glowSlide 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowSlide {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}
.verify-success-card > * { position: relative; z-index: 1; }

.verify-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sauce-electric), var(--sauce-cyan));
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: white;
  box-shadow: 0 0 80px rgba(34,211,238,.5);
  animation: thanksPop .9s cubic-bezier(.34,1.5,.64,1) both;
}

.verify-redirect {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-soft);
}
.verify-redirect a { color: var(--sauce-cyan); font-weight: 500; }

.verify-email-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.verify-email-form input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
}
.verify-email-form input:focus {
  border-color: var(--sauce-cyan);
  background: rgba(34,211,238,.06);
  box-shadow: 0 0 0 4px rgba(34,211,238,.12);
}

.verify-skip-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.2);
  text-underline-offset: 4px;
}
.verify-skip-link:hover { color: var(--text-soft); }

/* --------------------------------------------------------------------------
   "Coming soon" state badge
-------------------------------------------------------------------------- */
.state-card.coming {
  opacity: .82;
  background:
    linear-gradient(160deg, rgba(212,165,116,.06), rgba(212,165,116,.02));
  border-color: rgba(212,165,116,.18);
}
.state-card.coming .pulse { background: var(--sauce-gold); box-shadow: 0 0 12px var(--sauce-gold); }
.state-card.coming::after {
  content: 'Coming soon';
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sauce-gold);
  padding: 3px 8px;
  border: 1px solid rgba(212,165,116,.35);
  border-radius: var(--r-pill);
  background: rgba(212,165,116,.08);
}

/* --------------------------------------------------------------------------
   HERO PHOTOGRAPHY (replaces CSS-rendered pen for cinematic feel)
-------------------------------------------------------------------------- */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 35%, rgba(5,11,31,.4) 80%),
    radial-gradient(circle at 70% 0%, rgba(34,211,238,.18), transparent 50%);
  pointer-events: none;
}
.hero-photo-frame {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.1);
}

/* --------------------------------------------------------------------------
   PRODUCT CARDS — image upgrade
-------------------------------------------------------------------------- */
.product-img-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.product-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-img-photo img { transform: scale(1.07); }

/* --------------------------------------------------------------------------
   PROMO HERO — premium image
-------------------------------------------------------------------------- */
.promo-prize-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo-prize-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-prize-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(212,165,116,.3), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(5,11,31,.45));
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   AMBIENT BACKGROUNDS — for sections that want a hero photo behind copy
-------------------------------------------------------------------------- */
.ambient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ambient-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  filter: blur(1px) saturate(.9);
}
.ambient-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,31,.65), rgba(5,11,31,.95));
}
.ambient-section { position: relative; }
.ambient-section > .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   MAGNETIC CTA polish
-------------------------------------------------------------------------- */
[data-magnetic], .btn-primary.btn-lg, .btn-gold.btn-lg {
  will-change: transform;
}

/* --------------------------------------------------------------------------
   HERO SCROLL CUE
-------------------------------------------------------------------------- */
.hero-scroll-cue {
  position: absolute;
  bottom: clamp(24px, 5vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-mute);
  pointer-events: none;
  opacity: 0;
  animation: cueFade 1.2s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes cueFade { to { opacity: 1; } }
.hero-scroll-cue .line {
  display: inline-block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--sauce-cyan));
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, white);
  animation: cueDrop 2s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* --------------------------------------------------------------------------
   TICKER — Coming Soon variant
-------------------------------------------------------------------------- */
.ticker-item.soon {
  color: var(--sauce-gold);
  opacity: .85;
}
.ticker-item .ticker-soon {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sauce-gold);
  padding: 2px 7px;
  border: 1px solid rgba(212,165,116,.4);
  background: rgba(212,165,116,.08);
  border-radius: var(--r-pill);
  vertical-align: 2px;
}

/* --------------------------------------------------------------------------
   SERIAL pill (verify success)
-------------------------------------------------------------------------- */
.serial-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 3px 10px;
  margin: 0 4px;
  border-radius: var(--r-pill);
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.3);
  color: var(--sauce-cyan);
}

/* --------------------------------------------------------------------------
   AGE-GATE — when shown, lock scroll on html too
-------------------------------------------------------------------------- */
html.age-gate-open, body.age-gate-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   LEGACY HERO ANIMATION OVERRIDES
   The old styles.css fades hero pieces in via CSS keyframes — motion.js
   now owns this via data-reveal. Disable the legacy animation so they
   don't double-fire.
-------------------------------------------------------------------------- */
.hero-eyebrow,
.hero-lead,
.hero-actions,
.hero-stats,
.hero-visual {
  animation: none !important;
}
.hero h1 .word {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* --------------------------------------------------------------------------
   HERO-VISUAL — fit the photo properly
-------------------------------------------------------------------------- */
.hero-visual {
  height: auto !important;
  display: block !important;
  position: relative;
}
.hero-visual .hero-photo {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .hero-visual .hero-photo { max-width: 360px; }
}

/* --------------------------------------------------------------------------
   LEGACY .reveal — keep working as fallback if motion.js fails to load.
   When motion.js IS active, it sets inline opacity which overrides this.
-------------------------------------------------------------------------- */
.reveal:not(.in) { opacity: 1; } /* let motion.js take over via inline styles */
.reveal-stagger:not(.in) > * { opacity: 1; }

/* --------------------------------------------------------------------------
   PROMO PRIZE PHOTO — sit inside the existing .promo-feature grid
-------------------------------------------------------------------------- */
.promo-prize-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .promo-prize-photo { aspect-ratio: 16/10; max-width: none; }
}
