/* ═══════════════════════════════════════════════
   METALLIC.V1 — Launch Page Stylesheet
   Mobile-first. No framework.
═══════════════════════════════════════════════ */

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

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

body {
  background: #060606;
  color: #F2F2F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── TOKENS ──────────────────────────────────── */
:root {
  --green:   #00C87A;
  --red:     #B83232;
  --white:   #F2F2F2;
  --dim:     rgba(242,242,242,0.45);
  --dimmer:  rgba(242,242,242,0.22);
  --border:  rgba(242,242,242,0.07);
  --bg:      #060606;
  --ts: 0 0 40px rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.85);
  --glow: 0 0 30px rgba(242,242,242,0.18), 0 0 60px rgba(242,242,242,0.07), 0 2px 4px rgba(0,0,0,0.95);
}

/* ── PAGE SYSTEM ─────────────────────────────── */
/* All pages hidden by default; JS adds .is-visible */
.page {
  display: none;
}

.page.is-visible {
  display: block;
  animation: pageIn 0.35s ease both;
}

/* Full-screen pages lock their height */
.page--full {
  position: relative;
  height: 100svh;
  height: 100vh; /* fallback */
  overflow: hidden;
}
.page--full.is-visible {
  display: block;
}

/* Scrollable pages grow naturally */
.page--scroll.is-visible {
  display: block;
  min-height: 100svh;
  min-height: 100vh;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── VIDEO BACKGROUND ────────────────────────── */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* ── VIDEO OVERLAY ───────────────────────────── */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  z-index: 1;
  pointer-events: none;
}

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 4vw, 28px) clamp(16px, 4vw, 40px);
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  min-height: 44px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  text-shadow: var(--ts);
  transition: color 0.25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-btn:hover,
.nav-btn.is-active { color: var(--white); }

/* ── TEXT BUTTONS ────────────────────────────── */
.text-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--ts);
  transition: color 0.25s, text-shadow 0.25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-align: left;
}
.text-btn:hover { color: var(--green); text-shadow: 0 0 20px rgba(0,200,122,0.45), var(--ts); }

.text-btn--green { color: var(--green); text-shadow: none; }
.text-btn--green:hover { color: var(--green); text-shadow: 0 0 20px rgba(0,200,122,0.6); }

.text-btn--dim {
  color: var(--dim);
  font-size: 11px;
  font-weight: 500;
}
.text-btn--dim:hover { color: var(--white); text-shadow: none; }

/* ── EYEBROW ─────────────────────────────────── */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dimmer);
  text-shadow: var(--ts);
}
.eyebrow--green { color: var(--green); text-shadow: none; }

/* ── SCROLL ARROWS ───────────────────────────── */
.arr-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.arr {
  width: 9px;
  height: 9px;
  border-bottom: 1.5px solid rgba(242,242,242,0.7);
  border-right:  1.5px solid rgba(242,242,242,0.7);
  filter: drop-shadow(0 0 5px rgba(242,242,242,0.3));
  animation: arrFade 2s ease infinite;
}
.arr:nth-child(1) { animation-delay: 0s;    }
.arr:nth-child(2) { animation-delay: 0.25s; }
.arr:nth-child(3) { animation-delay: 0.5s;  }

@keyframes arrFade {
  0%, 100% { opacity: 0.12; transform: translateY(-4px) rotate(45deg); }
  50%       { opacity: 0.65; transform: translateY(4px)  rotate(45deg); }
}

/* ── DIVIDER ─────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PAGE: HOME
═══════════════════════════════════════════════ */
#page-home { background: #060606; }

/* Countdown */
.countdown-wrap {
  position: absolute;
  top: clamp(80px, 14vh, 140px);
  left: 0; right: 0;
  z-index: 5;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.countdown-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.5);
  text-shadow: var(--ts);
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  gap: clamp(12px, 4vw, 36px);
  align-items: flex-end;
  justify-content: center;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cd-val {
  font-family: 'Space Mono', monospace;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  color: var(--white);
  text-shadow: var(--glow);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.cd-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.38);
  text-shadow: var(--ts);
}

/* Brand block bottom-left */
.home-brand {
  position: absolute;
  bottom: clamp(20px, 5vh, 52px);
  left: clamp(16px, 4vw, 40px);
  z-index: 5;
  user-select: none;
  pointer-events: none;
  max-width: 55vw;
}

.home-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--ts);
  line-height: 1;
  margin-bottom: 10px;
}

.home-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--dim);
  text-shadow: var(--ts);
  line-height: 1.6;
}

/* CTA bottom-right */
.home-cta-wrap {
  position: absolute;
  bottom: clamp(20px, 5vh, 52px);
  right: clamp(16px, 4vw, 40px);
  z-index: 5;
}

/* ═══════════════════════════════════════════════
   PAGE: FLAGSHIPS
═══════════════════════════════════════════════ */
#page-flagships { background: #080808; }

/* Hero section */
.flagships-hero {
  position: relative;
  height: 100svh;
  height: 100vh;
  overflow: hidden;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    transparent 35%,
    rgba(0,0,0,0.35) 65%,
    #080808 100%
  );
  pointer-events: none;
}

.flagships-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding-bottom: clamp(36px, 6vh, 60px);
}

.flagships-hero-text .eyebrow { margin-bottom: 12px; }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--ts);
  line-height: 1;
  margin-bottom: 36px;
}

/* Products grid */
.products-section {
  padding: clamp(32px, 5vh, 64px) clamp(16px, 4vw, 40px) clamp(64px, 10vh, 120px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 22px);
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .products-section { padding-left: 12px; padding-right: 12px; }
  .tile-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .tile-name { font-size: 9px; white-space: normal; line-height: 1.15; }
  .tile-status { font-size: 6px; }
}

/* Product tile */
.product-tile {
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 6px 28px rgba(0,0,0,0.85), 0 0 0 1px var(--border);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,1), 0 0 0 1px rgba(242,242,242,0.1);
}
.product-tile:active { transform: translateY(-2px); }

.tile-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060606;
}

.tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-tile:hover .tile-img { transform: scale(1.06); }

.tile-img-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(6,6,6,0.9));
  pointer-events: none;
}

.tile-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0e0e0e, #080808);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.03em;
}

.tile-label {
  padding: clamp(10px, 1.4vw, 15px) clamp(12px, 1.6vw, 18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tile-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F2F2F2;
  line-height: 1;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

.tile-status {
  font-family: 'Space Mono', monospace;
  font-size: clamp(6px, 0.6vw, 8px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.25);
  flex-shrink: 0;
}
.tile-status.available { color: var(--green); }

/* ═══════════════════════════════════════════════
   PAGE: BETA
═══════════════════════════════════════════════ */
#page-beta { background: #060606; }

.beta-hero-text {
  position: absolute;
  top: clamp(110px, 18vh, 180px);
  left: 0; right: 0;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.beta-hero-text .eyebrow { margin-bottom: 14px; }

.beta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--ts);
  line-height: 1;
  margin-bottom: 14px;
}

.beta-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(242,242,242,0.45);
  text-shadow: var(--ts);
}

/* Gift box CTA */
.gift-cta {
  position: absolute;
  bottom: clamp(72px, 13vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.gift-box-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-glow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(100px, 16vw, 180px);
  height: 36px;
  background: radial-gradient(ellipse, rgba(0,200,122,0.45) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

.gift-float {
  animation: giftFloat 4s ease-in-out infinite;
}

.gift-img {
  width: clamp(140px, 22vw, 240px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.8));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
}
.gift-cta:hover .gift-img {
  transform: rotate(8deg) scale(1.1);
  filter: drop-shadow(0 0 24px rgba(0,200,122,0.5)) drop-shadow(0 0 8px rgba(0,200,122,0.3));
}

.gift-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.3);
  transition: color 0.2s;
  user-select: none;
}
.gift-cta:hover .gift-label { color: rgba(242,242,242,0.65); }

.scroll-arrows-bottom {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   PAGE: REWARDS
═══════════════════════════════════════════════ */
#page-rewards {
  background: #060606;
  position: relative;
}

.rewards-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(0,200,122,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.rewards-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3vh, 32px) clamp(20px, 4vw, 44px);
  border-bottom: 1px solid var(--border);
}

.topbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.25);
}

.rewards-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(28px, 4vh, 52px) clamp(20px, 6vw, 72px) clamp(60px, 8vh, 100px);
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.rewards-image {
  flex: 1 1 300px;
  max-width: 580px;
}
.rewards-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.rewards-content {
  flex: 1 1 280px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.rewards-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin: 14px 0 10px;
}

.rewards-price {
  font-family: 'Space Mono', monospace;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(242,242,242,0.45);
  margin-bottom: 36px;
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0;
}

.reward-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.reward-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  flex-shrink: 0;
  padding-top: 2px;
}

.reward-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}

.reward-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: rgba(242,242,242,0.4);
}

/* ═══════════════════════════════════════════════
   OVERLAY: PRODUCT DETAIL
═══════════════════════════════════════════════ */
#overlay-product {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(4,4,4,0.98);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#overlay-product.is-visible {
  display: flex;
  animation: pageIn 0.35s ease both;
}

.overlay-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3vh, 32px) clamp(20px, 4vw, 44px);
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.status-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(242,242,242,0.1);
  padding: 5px 10px;
  border-radius: 1px;
  color: var(--dimmer);
}
.status-badge.available {
  color: var(--green);
  border-color: rgba(0,200,122,0.25);
}

.product-layout {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(28px, 4vh, 52px) clamp(20px, 6vw, 80px) 40px;
  align-items: flex-start;
}

.product-img-wrap {
  flex: 1 1 300px;
  max-width: 580px;
}
.product-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.product-text {
  flex: 1 1 280px;
  max-width: 520px;
}

.product-category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 18px;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  white-space: pre-line;
  margin-bottom: 28px;
}

.product-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,242,242,0.55);
}

.overlay-bottom {
  padding: clamp(16px, 2.5vh, 28px) clamp(20px, 4vw, 44px);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.is-visible {
  display: flex;
  animation: pageIn 0.25s ease both;
}

.modal {
  width: 100%;
  max-width: 400px;
  padding: clamp(40px, 6vw, 56px) clamp(28px, 5vw, 48px);
  position: relative;
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(242,242,242,0.3);
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { color: var(--white); }

.modal-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.3);
  margin-bottom: 24px;
}

.modal-price {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #F2F2F2;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.modal-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242,242,242,0.5);
  margin-bottom: 28px;
}

/* Access form */
#form-access {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(242,242,242,0.25); }
.form-input:focus { border-color: rgba(242,242,242,0.2); }

.form-err {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.05em;
  display: none;
}
.form-err.is-visible { display: block; }

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */
@keyframes giftFloat {
  0%, 100% { transform: translateY(0px)   rotate(-0.5deg); }
  50%       { transform: translateY(-16px) rotate(0.5deg);  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4;  transform: translateX(-50%) scaleX(1);    }
  50%       { opacity: 0.72; transform: translateX(-50%) scaleX(1.18); }
}

/* ── SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(242,242,242,0.12); border-radius: 2px; }

/* ── UTILITIES ────────────────────────────────── */
img { -webkit-user-drag: none; user-select: none; }
button { -webkit-tap-highlight-color: transparent; }

/* ── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .arr, .gift-float, .gift-glow { animation: none; }
  .page.is-visible, #overlay-product.is-visible, .modal-backdrop.is-visible { animation: none; }
}
