/* ══════════════════════════════════════════════════════════════
   COPPED LANDING PAGE — styles.css
   Dark mode only · 8-section framework
   ══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables (Dark Mode Only) ─────────────────────── */
:root {
  --accent: #FF7A50;
  --accent-hover: #FF6B3D;
  --accent-glow: rgba(255, 122, 80, 0.35);
  --accent-soft: rgba(255, 122, 80, 0.08);
  --accent-soft-border: rgba(255, 122, 80, 0.15);

  --bg: #0A0B0E;
  --bg-secondary: #111318;
  --bg-card: #16171C;
  --bg-card-hover: #1C1D24;
  --bg-input: #1C1D24;

  --text-primary: #FFFFFF;
  --text-secondary: #9CA3B8;
  --text-tertiary: #5A6178;

  --border: #1E2028;
  --border-subtle: #1A1B22;

  --red: #FF3B30;
  --green: #34C759;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 8px 32px var(--accent-glow);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 17px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button, input { font-family: var(--font); border: none; outline: none; }

/* ─── Gradient Text ───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #FF7A50, #FF9A6C, #FF6B3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section utilities ───────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-tag svg {
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav.nav-scrolled {
  background: rgba(10, 11, 14, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.nav-links a:hover { color: #FFFFFF; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF8A5C 0%, var(--accent) 50%, #FF5E3A 100%);
  padding: 10px 24px;
  border-radius: 12px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(255, 122, 80, 0.25);
  letter-spacing: 0.2px;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #FF9A70 0%, var(--accent-hover) 50%, #FF4F2A 100%);
  box-shadow: 0 4px 24px rgba(255, 122, 80, 0.4), 0 0 0 1px rgba(255, 122, 80, 0.15);
  transform: translateY(-1px);
}

/* ── Hamburger button (hidden on desktop) ─────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile dropdown menu ─────────────────────────────────── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.3s ease,
              padding 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding: 12px 20px 20px;
}
.nav-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: #fff; }
.nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--radius-lg);
  padding: 14px 0 !important;
  border-bottom: none !important;
}

/* ══════════════════════════════════════════════════════════════
   1. HERO — Split layout with aurora (Oxio-inspired)
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 40px;
  background: #06070A;
}

/* ─── Oxio-style Aurora Background ───────────────────────── */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 50% 105%, rgba(255, 220, 190, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 50% 110%, rgba(255, 122, 80, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 115%, rgba(255, 107, 61, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 20% at 50% 0%, rgba(255, 122, 80, 0.03) 0%, transparent 80%);
  pointer-events: none;
}

/* Orb layers */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 1200px;
  height: 800px;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 122, 80, 0.12) 0%, rgba(180, 80, 40, 0.04) 40%, transparent 70%);
  filter: blur(60px);
  animation: auroraBreath 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 800px;
  height: 600px;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 160, 100, 0.18) 0%, rgba(255, 122, 80, 0.06) 50%, transparent 70%);
  filter: blur(40px);
  animation: auroraBreath 8s ease-in-out 1s infinite;
}
.hero-orb-3 {
  width: 500px;
  height: 350px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 230, 210, 0.20) 0%, rgba(255, 180, 130, 0.08) 40%, transparent 65%);
  filter: blur(30px);
  animation: auroraBreath 8s ease-in-out 2s infinite;
}
@keyframes auroraBreath {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

/* ─── Subtle Grid Field ─────────────────────────────────── */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Film grain */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(6, 7, 10, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── Split Layout ────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Left column — text + form */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Badge */
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Headline */
.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.hero-title-line {
  display: block;
  color: rgba(255, 255, 255, 0.85);
}
/* Waterfall letter animation */
.hero-title .wf-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(40deg);
  filter: blur(4px);
  animation: waterfallIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--wf-delay);
}
.hero-title .wf-space {
  display: inline-block;
  width: 0.3em;
}
@keyframes waterfallIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
  }
}
.hero-title-accent {
  display: block;
}
/* Letter-by-letter animation */
.hero-rotating-wrap {
  display: inline;
  position: relative;
}
.hero-typed-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.hero-typed-letter {
  display: inline-block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #FF9A6C 0%, #FF7A50 40%, #FF6B3D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.hero-typed-letter.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-typed-letter.exit {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
/* Spaces need no animation but need width */
.hero-typed-space {
  display: inline;
  width: 0.3em;
}

/* Subtitle */
.hero .hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Hero form */
.hero-form {
  width: 100%;
  max-width: 480px;
  margin-bottom: 12px;
}
.hero-form-note {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 10px;
  margin-bottom: 24px;
  max-width: 400px;
}

/* Social Proof micro */
.hero .hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero .hero-social-proof p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.hero .hero-social-proof strong { color: rgba(255, 255, 255, 0.7); }
.hero-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Right column — phone */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Phone glow — oval aurora behind phone */
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 600px;
  height: 450px;
  background:
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 235, 215, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(255, 160, 100, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255, 122, 80, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(200, 80, 40, 0.06) 0%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  animation: phoneGlowPulse 6s ease-in-out infinite;
}
@keyframes phoneGlowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -45%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -45%) scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  animation: fadeInUp 1s ease 2s both;
  z-index: 3;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  position: relative;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.2; }
}

/* Stagger delays */
.hero .hero-badge.animate-on-scroll { transition-delay: 0ms; }
.hero .hero-title.animate-on-scroll { transition-delay: 100ms; }
.hero .hero-subtitle.animate-on-scroll { transition-delay: 200ms; }
.hero .hero-form.animate-on-scroll { transition-delay: 300ms; }
.hero .hero-social-proof.animate-on-scroll { transition-delay: 400ms; }
.hero .hero-right.animate-on-scroll { transition-delay: 200ms; }
/* ─── Hero Phone Image ─────────────────────────────────── */
.hero-phone-img-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-phone-img {
  width: 300px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(255,122,80,0.12));
  animation: heroPhoneFade 1s ease 0.4s both;
}
@keyframes heroPhoneFade {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 11, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  z-index: 20;
  white-space: nowrap;
  backdrop-filter: blur(16px);
}
.float-1 { top: 50px; left: -50px; animation: floatBadge1 4s ease-in-out infinite; }
.float-2 { bottom: 90px; right: -45px; color: #34C759; animation: floatBadge2 5s ease-in-out infinite; }
.float-3 { top: 50%; right: -55px; color: #FF7A50; animation: floatBadge3 6s ease-in-out infinite; }
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL GRID LINES (used across sections)
   ══════════════════════════════════════════════════════════════ */
.section-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════════════════════
   2. ALERTS SHOWCASE — Compact layout
   ══════════════════════════════════════════════════════════════ */
.alerts-showcase {
  padding: 60px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Aurora gradient continuation from hero */
.alerts-showcase::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 300px;
  background:
    linear-gradient(180deg, #06070A 0%, transparent 40%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 160, 100, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 122, 80, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Top row: text + notification preview */
.alerts-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.alerts-text .section-tag { display: inline-block; }
.alerts-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Notification preview — floating cards */
.alerts-preview {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.alerts-notif-float {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.alert-notif-mini {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(28, 28, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 0.5px rgba(255,255,255,0.05) inset;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease-out;
}

/* Smooth notification animations */
.alert-notif-mini.notif-exiting {
  animation: notifFadeOut 0.7s ease-out forwards;
}

@keyframes notifSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes notifFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/* Gentle entrance */
.alert-notif-mini.notif-entering {
  animation: notifSlideIn 0.9s ease-out forwards;
}
.alert-notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #FFF;
  flex-shrink: 0;
}
.alert-notif-body { flex: 1; min-width: 0; }
.alert-notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.alert-notif-app {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
.alert-notif-time {
  font-size: 11px;
  color: var(--text-tertiary);
}
.alert-notif-msg {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom row: 3 category cards */
.alerts-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.alert-category-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.alert-category-card:hover .alert-cat-content strong {
  color: rgba(255, 255, 255, 0.9);
}
.alert-category-card.active .alert-cat-bar {
  background: var(--border);
}
.alert-category-card.active .alert-cat-content strong {
  color: var(--accent);
  transition: color 0.4s ease;
}

/* Notification icon Copped logo */
.alert-notif-icon-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 122, 80, 0.3);
}
.alert-notif-shoe {
  background: #fff;
  padding: 4px;
  overflow: hidden;
}
.alert-notif-shoe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.alert-cat-bar {
  width: 3px;
  min-height: 48px;
  border-radius: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.alert-cat-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,122,80,0.4);
}
.alert-category-card.active .alert-cat-bar::after {
  animation: barFill 7.5s linear forwards;
}
@keyframes barFill {
  0% { height: 0%; }
  100% { height: 100%; }
}
.alert-cat-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alert-cat-content strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
.alert-cat-content span {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   BRAND CAROUSEL — Animated trust strip
   ══════════════════════════════════════════════════════════════ */
.brand-carousel {
  padding: 48px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.brand-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255, 122, 80, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.brand-carousel-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.brand-carousel-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.brand-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: carouselScroll 40s linear infinite;
}
.brand-carousel:hover .brand-carousel-track {
  animation-play-state: paused;
}
.brand-logo {
  flex-shrink: 0;
  padding: 0 40px;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}
.brand-logo:hover {
  opacity: 0.55;
}
.brand-logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}
/* Square logos — cap height so they don't tower over wide ones */
.brand-logo img[src*="nike.svg"] { height: 26px; }
.brand-logo img[src*="snkrs"] { height: 26px; }
.brand-logo img[src*="jordan"] { height: 30px; }
.brand-logo img[src*="adidas"] { height: 28px; }
.brand-logo img[src*="supreme"] { height: 22px; }
.brand-logo img[src*="nordstrom"] { height: 26px; }
/* Moderately wide logos */
.brand-logo img[src*="foot-locker"] { height: 26px; }
.brand-logo img[src*="jd-sports"] { height: 28px; filter: none; }
.brand-logo img[src*="champs"] { height: 24px; filter: none; }
.brand-logo img[src*="snipes"] { height: 20px; }
/* Very wide/text logos — slightly shorter so width stays reasonable */
.brand-logo img[src*="converse"] { height: 16px; }
.brand-logo img[src*="hibbett"] { height: 18px; }

@keyframes carouselScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   3. FEATURES — Bento grid (inspiration layout)
   ══════════════════════════════════════════════════════════════ */
.features {
  padding: 80px 24px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Bento grid — 12-column responsive layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Base bento card */
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}
.bento-card.animate-on-scroll { transition-delay: var(--delay, 0ms); }

.bento-text { margin-bottom: 8px; }
.bento-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.bento-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 0;
}

/* ─── Stock Numbers card (accent bg, with ring) ─────────── */
.bento-stock-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento-card-accent-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 122, 80, 0.15) 0%, rgba(255, 107, 61, 0.08) 50%, transparent 80%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
  border-radius: 24px;
}
/* ─── Customizable Notifications toggle UI ────────────────── */
.bento-notif-toggles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.bento-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  animation: bentoFadeUp 0.5s ease forwards;
}
.bento-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bento-toggle-label {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.bento-toggle-switch {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.bento-toggle-switch.on {
  background: var(--accent);
}
.bento-toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.bento-toggle-switch.on .bento-toggle-thumb {
  transform: translateX(16px);
}

/* ─── Monitor card (horizontal split with phone) ─────────── */
.bento-monitor-card {
  grid-column: span 7;
  padding: 0;
  overflow: hidden;
}
.bento-monitor-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.bento-monitor-left {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

/* Market mini stats row */
.bento-market-stats {
  display: flex;
  gap: 12px;
}
.bento-market-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}
.bento-market-stat.stat-active {
  border-color: rgba(255,122,80,0.5);
  background: rgba(255,122,80,0.08);
  box-shadow: 0 0 20px rgba(255,122,80,0.1), inset 0 0 20px rgba(255,122,80,0.03);
}
.bento-market-stat.stat-active .bento-market-stat-label {
  color: var(--accent);
  transition: color 0.5s ease;
}
.bento-market-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.bento-market-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

.bento-monitor-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 16px;
  background: rgba(255,255,255,0.015);
}

/* ─── Market Analysis Phone ──────────────────────────────── */
.bento-market-img-area {
  padding: 20px 16px 0 16px !important;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent !important;
  position: relative;
  max-height: 340px;
}
.bento-market-phone {
  width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(255,122,80,0.08));
  opacity: 0;
  transform: translateY(10px) scale(1.02);
  animation: marketPhoneIn 0.7s ease forwards;
}
@keyframes marketPhoneIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Soft fade at the bottom where the phone gets cropped */
.bento-market-img-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--card-bg) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
  z-index: 1;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,59,48,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(255,59,48,0); }
}

/* ─── Bento phone mockup (compact) ────────────────────────── */
.bento-phone-mock {
  width: 150px;
  transform: translateY(16px);
}
.bento-phone-bezel {
  background: #18181C;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 16px 48px rgba(0,0,0,0.5);
  overflow: hidden;
  position: relative;
}
.bento-phone-sm {
  border-radius: 22px;
  padding: 6px;
}
.bento-phone-notch-sm {
  width: 56px;
  height: 18px;
  background: #18181C;
  border-radius: 9px;
  margin: 4px auto 6px;
  position: relative;
  z-index: 5;
}
.bento-phone-screen-inner {
  background: #0C0C10;
  border-radius: 18px;
  padding: 8px;
  overflow: hidden;
}
.bento-phone-sm .bento-phone-screen-inner {
  border-radius: 14px;
  padding: 6px;
}

/* ─── App UI inside bento phones ──────────────────────────── */
.bento-app-header { margin-bottom: 10px; }
.bento-app-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}
.bento-app-tabs {
  display: flex;
  gap: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2px;
}
.bento-app-tab {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.bento-app-tab.active {
  background: var(--accent);
  color: #FFF;
}
.bento-app-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.bento-app-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}
.bento-app-thumb {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.bento-app-thumb.aj4 { background: linear-gradient(135deg, #C0392B 30%, #333); }
.bento-app-thumb.aj1 { background: linear-gradient(135deg, #2C3E50 30%, #95A5A6); }
.bento-app-thumb.dl { background: linear-gradient(135deg, #FF69B4 30%, #FFB6C1); }
.bento-app-thumb.aj4b { background: linear-gradient(135deg, #1A1A1A 30%, #444); }
.bento-app-info {
  flex: 1;
  min-width: 0;
}
.bento-app-info strong {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bento-app-sizes {
  display: block;
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Learn More button (shared across cards) ─────────────── */
.bento-learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid rgba(255, 122, 80, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-decoration: none;
  width: fit-content;
}
.bento-learn-more:hover {
  background: rgba(255, 122, 80, 0.08);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(255, 122, 80, 0.15);
}

@keyframes bentoFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Copped Score card ──────────────────────────────────── */
.bento-score-card { padding: 0 !important; }
.bento-score-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.bento-score-visual {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.015);
  border-right: 1px solid rgba(255,255,255,0.04);
}
.bento-score-ring-wrap {
  position: relative;
  width: 170px;
  height: 170px;
}
.bento-score-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 10;
}
.score-ring-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: 534;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 8px rgba(255,122,80,0.4));
}
.bento-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.bento-score-value {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FF9A6C, #FF6B3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: all 0.6s ease;
}
.bento-score-label-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

/* Score metrics bars */
.bento-score-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-score-metric { display: flex; flex-direction: column; gap: 4px; }
.score-metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
}
.score-metric-val {
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  transition: all 0.6s ease;
}
.score-metric-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.score-metric-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #FF7A50, #FF9A6C);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.score-metric-fill.volatility {
  background: linear-gradient(90deg, #FFCC00, #FF9500);
}
.score-metric-fill.profit {
  background: linear-gradient(90deg, #30D158, #34C759);
}

/* Score text side */
.bento-score-text {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.bento-score-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.score-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.score-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.score-badge-dot.high { background: #FF7A50; box-shadow: 0 0 6px rgba(255,122,80,0.4); }
.score-badge-dot.mid { background: #FFCC00; box-shadow: 0 0 6px rgba(255,204,0,0.3); }
.score-badge-dot.low { background: #FF453A; box-shadow: 0 0 6px rgba(255,69,58,0.3); }
.bento-score-shoe-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 12px;
  background: rgba(255,122,80,0.06);
  border: 1px solid rgba(255,122,80,0.15);
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

/* ─── Calendar card (week strip + release items) ─────────── */
.bento-calendar-card {
  grid-column: span 7;
}

/* Week strip calendar */
.bento-week-strip {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.bento-week-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bento-week-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.bento-week-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-week-active {
  background: var(--accent) !important;
  color: #FFF !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(255, 122, 80, 0.3);
}
.bento-week-drop {
  position: relative;
}
.bento-week-drop::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Release thumb color variants */
.aj4-thumb { background: linear-gradient(135deg, #C0392B 30%, #333) !important; }
.aj1-thumb { background: linear-gradient(135deg, #8EC5FC 30%, #2C3E50) !important; }

/* Release items inside calendar card */
.bento-release-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  min-height: 140px;
}
.bento-release-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-release-item.cal-visible {
  opacity: 1;
}
.bento-release-item.cal-exit {
  opacity: 0;
}
}
@keyframes bentoSlideIn {
  to { opacity: 1; transform: translateX(0); }
}
.bento-feed-anim-1 { animation-delay: 0.8s; }
.bento-feed-anim-2 { animation-delay: 1.1s; }
.bento-feed-anim-3 { animation-delay: 1.4s; }
.bento-release-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-tertiary);
  flex-shrink: 0;
}
.bento-release-thumb img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.bento-release-info {
  flex: 1;
  min-width: 0;
}
.bento-release-info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}
.bento-release-info span {
  font-size: 12px;
  color: var(--text-tertiary);
}
.bento-release-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.bento-price-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
}
.bento-price-row span:first-child {
  color: var(--text-tertiary);
  font-weight: 500;
}
.bento-price-row span:last-child {
  font-weight: 700;
}
.bento-price-row.resale span:last-child {
  color: #34C759;
}

/* ─── Info card (release details) ──────────────────────────── */
.bento-info-card {
  grid-column: span 5;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}
.bento-info-header-area {
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-info-card > .bento-text {
  padding: 10px 14px 14px;
}

/* Product hero */
.bento-info-product {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: bentoFadeUp 0.5s ease forwards;
}
.bento-info-shoe-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.bento-info-shoe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-info-product-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bento-info-product-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.bento-info-product-meta span {
  font-size: 11px;
  color: var(--text-tertiary);
}
.bento-info-sku {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 10px !important;
  color: var(--text-tertiary);
  opacity: 0.6;
}

/* Detail rows */
.bento-info-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  animation: bentoFadeUp 0.5s ease forwards;
}
.bento-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bento-info-row:last-child {
  border-bottom: none;
}
.bento-info-row svg {
  flex-shrink: 0;
}
.bento-info-row-label {
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
}
.bento-info-row-value {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.bento-info-row-value.bento-info-yes {
  color: #34C759;
}

/* Site list pills */
.bento-info-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  animation: bentoFadeUp 0.5s ease forwards;
}
.bento-info-site-pill {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.bento-info-site-pill.fade {
  color: var(--accent);
  background: rgba(255, 122, 80, 0.08);
  border-color: rgba(255, 122, 80, 0.15);
}

/* ─── News card (full-width, phones + text) ───────────────── */
.bento-news-card {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}
.bento-news-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
/* ─── Widgets preview area ─────────────────────────────────── */
.bento-widgets-preview {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.015);
  align-items: start;
}
.bento-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  animation: bentoFadeUp 0.5s ease forwards;
}
.bento-widget-header {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bento-widget-header span {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
.bento-widget-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bento-widget-countdown {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.bento-widget-feed-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bento-widget-feed-row:last-child {
  border-bottom: none;
}
.bento-widget-shoe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bento-widget-feed-row span {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bento-news-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ══════════════════════════════════════════════════════════════
   SCANNER SHOWCASE
   ══════════════════════════════════════════════════════════════ */
/* ── Scanner Section — Sticky scroll-driven showcase ───────── */
.scanner-section {
  padding: 40px 0 0;
  background: var(--bg);
  position: relative;
  overflow: visible;
}
.scanner-section > .section-inner {
  padding: 0 24px;
}
.scanner-section .section-header {
  margin-bottom: 32px;
}

/* Tall scroll container (drives the sticky) */
.scanner-scroll-wrap {
  height: 220vh;
  position: relative;
}

/* Sticky viewport */
.scanner-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

/* Inner layout: text left, phone right */
.scanner-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

/* ── Text slides (stacked, only active visible) ────────────── */
.scanner-text-stack {
  position: relative;
  min-height: 240px;
}
.scanner-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.scanner-text-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scanner-text-slide.exit-up {
  opacity: 0;
  transform: translateY(-40px);
}
.scanner-step-num {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #FF9A6C 0%, #FF7A50 40%, #FF6B3D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.scanner-text-slide h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.scanner-text-slide p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

/* ── Phone card stack (3D perspective) ────────────────────── */
.scanner-phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
  perspective: 1200px;
}
.scanner-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,122,80,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

/* Each card */
.scanner-card {
  position: absolute;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px) rotateX(12deg) scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}
.scanner-card.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
  z-index: 3;
  pointer-events: auto;
}
.scanner-card.exit-up {
  opacity: 0;
  transform: translateY(-80px) rotateX(-12deg) scale(0.92);
  z-index: 2;
}
.scanner-card img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6))
          drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
/* First card — screenshot already has phone frame baked in */
.scanner-card[data-scan-step="0"] img {
  border-radius: 36px;
}

/* ── Progress indicator ────────────────────────────────────── */
.scanner-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 400px;
  margin: 48px auto 0;
}
.scanner-prog-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
  width: 70px;
  flex-shrink: 0;
}
.scanner-prog-dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.scanner-prog-dot.active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255,122,80,0.4);
}
.scanner-prog-dot.completed::before {
  background: var(--accent);
  border-color: var(--accent);
}
.scanner-prog-dot span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}
.scanner-prog-dot.active span,
.scanner-prog-dot.completed span {
  color: var(--accent);
}
.scanner-prog-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 12px;
  margin-bottom: 22px;
}
.scanner-prog-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   6. SOCIAL PROOF
   ══════════════════════════════════════════════════════════════ */
.proof {
  padding: 120px 24px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Stats bar */
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 64px;
}
.proof-stat { text-align: center; }
.proof-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.proof-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 4px;
}
.proof-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-tertiary);
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  color: var(--text-tertiary);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.trust-logo:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   7. PERKS — Differentiators + Pricing
   ══════════════════════════════════════════════════════════════ */
.perks {
  padding: 120px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
}
.perk-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 80, 0.12);
}
.perk-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.perk-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Perks V2 — Redesigned cards ────────────────────────────── */
.perks-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.perk-v2 {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.perk-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--perk-accent), transparent);
  opacity: 0.8;
  border-radius: 20px 20px 0 0;
}
.perk-v2:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--perk-accent) 25%, transparent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 40px color-mix(in srgb, var(--perk-accent) 10%, transparent);
}
.perk-v2-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--perk-accent) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.perk-v2:hover .perk-v2-glow {
  opacity: 0.18;
}
.perk-v2-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--perk-accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  opacity: 0.6;
}
.perk-v2-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--perk-accent) 15%, transparent), color-mix(in srgb, var(--perk-accent) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--perk-accent) 20%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--perk-accent);
  transition: all 0.4s ease;
}
.perk-v2:hover .perk-v2-icon {
  transform: scale(1.08);
  box-shadow: 0 0 30px color-mix(in srgb, var(--perk-accent) 20%, transparent);
}
.perk-v2-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.perk-v2-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .perks-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .perks-grid-v2 { grid-template-columns: 1fr; }
}

/* Pricing header */
.pricing-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}
.pricing-popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}
.pricing-popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 48px var(--accent-glow);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-header { margin-bottom: 20px; }
.pricing-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}
.pricing-savings {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}
.pricing-trial {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--accent);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
}
.pricing-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.pricing-cta-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}
.pricing-cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 122, 80, 0.08);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════════════
   8. FAQ
   ══════════════════════════════════════════════════════════════ */
.faq {
  padding: 100px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.faq-question:hover span {
  color: var(--accent);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer {
  opacity: 1;
}
.faq-answer p {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ══════════════════════════════════════════════════════════════
   9. STRONG CTA — Final conversion
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 120px 24px 160px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.final-cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
}

/* COBE Globe */
.globe-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  mask-image: radial-gradient(circle at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}
.globe-wrap::after {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,80,0.15) 0%, rgba(255,100,60,0.06) 40%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
#cobeGlobe {
  width: 100%;
  height: 100%;
  display: block;
}
.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.final-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Form */
.final-form {
  max-width: 520px;
  margin: 0 auto 28px;
}
.input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 6px;
  transition: all var(--transition);
  position: relative;
  backdrop-filter: blur(12px);
}
.input-wrapper:focus-within {
  border-color: rgba(255, 122, 80, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 122, 80, 0.08), 0 0 32px rgba(255, 122, 80, 0.06);
  background: rgba(255, 255, 255, 0.06);
}
.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 80, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
  margin-left: 4px;
}
/* ─── US Country Code Prefix ─────────────────────────────── */
.input-country {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s;
}
.input-country:hover {
  background: rgba(255, 255, 255, 0.04);
}
/* ─── "Not from US?" tooltip ─────────────────────────────── */
.country-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  transform: translateY(4px);
  white-space: nowrap;
  background: linear-gradient(135deg, #1E1F26 0%, #16171C 100%);
  border: 1px solid rgba(255, 122, 80, 0.15);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 122, 80, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.country-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 24px;
  border: 6px solid transparent;
  border-top-color: rgba(255, 122, 80, 0.15);
}
.country-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.country-tooltip-msg {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
.country-flag {
  font-size: 18px;
  line-height: 1;
}
.country-code {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}
.country-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 4px;
}
.hero-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: transparent;
  border: none;
}
.hero-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.hero-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 32px rgba(255, 122, 80, 0.35);
  transform: translateY(-1px);
}
.hero-submit:active { transform: translateY(0) scale(0.98); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-top: 12px;
  animation: slideUp 0.4s var(--transition-spring);
}
.form-success.show { display: flex; }

/* Final social proof */
.final-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.final-social-proof .avatar-stack { display: flex; }
.final-social-proof .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #FFF;
  border: 2px solid var(--bg);
  margin-right: -6px;
}
.final-social-proof p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.final-social-proof strong { color: rgba(255, 255, 255, 0.7); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 12px; color: #FFFFFF; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split { gap: 32px; }
  .hero-title { font-size: clamp(36px, 4.5vw, 56px); }
  .bento-grid { gap: 16px; grid-template-columns: repeat(12, 1fr); }
  .bento-stock-card { grid-column: span 6; }
  .bento-monitor-card { grid-column: span 6; }
  .bento-calendar-card { grid-column: span 6; }
  .bento-info-card { grid-column: span 6; }
  .bento-news-card { grid-column: 1 / -1; }
  .bento-monitor-split { grid-template-columns: 1fr; }
  .bento-market-img-area { min-height: 240px; max-height: 300px; }
  .bento-market-phone { width: 260px; }
  .bento-market-img-area::after { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .bento-phone-mock { width: 180px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .floating-badge.float-3 { display: none; }
  .alerts-top { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  /* Grid lines — smaller cells & wider mask for mobile */
  .hero-grid-lines {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,0,0,0.8) 0%, transparent 70%);
  }
  .section-grid-lines {
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,0,0,0.35) 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,0,0,0.35) 0%, transparent 80%);
  }

  /* Hero — stack vertically on mobile */
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { align-items: center; text-align: center; }
  .hero-form { max-width: 100%; }
  .hero .hero-social-proof { justify-content: center; }
  .hero-form-note { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-title { font-size: clamp(42px, 12vw, 64px); }
  .hero-typed-letter { font-size: 1.15em; filter: brightness(1.15); }
  .hero .hero-subtitle { font-size: 15px; text-align: center; max-width: 100%; }

  /* Phone */
  .hero-phone-img { width: 240px; }
  .phone-glow { width: 380px; height: 300px; }
  .floating-badge { display: none; }

  /* Scroll indicator — hide on mobile */
  .scroll-indicator { display: none; }

  /* Brand carousel */
  .brand-carousel { padding: 32px 0; }
  .brand-carousel-label { font-size: 11px; margin-bottom: 16px; }
  .brand-logo { padding: 0 28px; }
  .brand-logo img { height: 20px; }
  .brand-logo img[src*="nike.svg"] { height: 19px; }
  .brand-logo img[src*="snkrs"] { height: 19px; }
  .brand-logo img[src*="jordan"] { height: 22px; }
  .brand-logo img[src*="adidas"] { height: 20px; }
  .brand-logo img[src*="supreme"] { height: 16px; }
  .brand-logo img[src*="nordstrom"] { height: 19px; }
  .brand-logo img[src*="foot-locker"] { height: 19px; }
  .brand-logo img[src*="jd-sports"] { height: 20px; }
  .brand-logo img[src*="champs"] { height: 18px; }
  .brand-logo img[src*="snipes"] { height: 15px; }
  .brand-logo img[src*="converse"] { height: 12px; }
  .brand-logo img[src*="hibbett"] { height: 13px; }

  /* Alerts showcase */
  .alerts-showcase { padding: 80px 20px; overflow: hidden; }
  .alerts-top { grid-template-columns: 1fr; gap: 32px; overflow: hidden; }
  .alerts-text .section-title { text-align: center !important; }
  .alerts-text { text-align: center; }
  .alerts-desc { text-align: center; font-size: 15px; }
  .alerts-preview { justify-content: center; overflow: hidden; }
  .alerts-notif-float { max-width: 100%; overflow: hidden; height: 180px; }
  .alerts-categories { grid-template-columns: 1fr; gap: 16px; }
  .alert-cat-content strong { font-size: 16px; }
  .alert-cat-content span { font-size: 13px; }

  /* Features bento */
  .features { padding: 80px 20px; }
  .bento-grid { grid-template-columns: 1fr; gap: 14px; overflow: hidden; }
  .bento-stock-card,
  .bento-monitor-card,
  .bento-calendar-card,
  .bento-info-card,
  .bento-news-card { grid-column: 1 / -1; }
  .bento-stock-card { min-height: auto; }
  .bento-monitor-card { min-height: auto; }
  .bento-monitor-split { grid-template-columns: 1fr; }
  .bento-market-img-area { min-height: 200px; max-height: 260px; }
  .bento-market-phone { width: 200px; }
  .bento-market-img-area::after { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .bento-phone-mock { width: 160px; margin: 0 auto; }
  .bento-calendar-card { min-height: auto; overflow: hidden; }
  /* Release items — compact side-by-side price boxes */
  .bento-release-prices { flex-direction: row; gap: 6px; }
  .bento-price-row { flex-direction: column; gap: 2px; padding: 5px 8px; border-radius: 8px; text-align: center; min-width: 58px; font-size: 11px; }
  .bento-price-row.resale span:first-child { display: inline-block; max-width: 48px; line-height: 1.2; }
  .bento-release-thumb { width: 40px; height: 40px; }
  .bento-release-info strong { font-size: 11px; }
  .bento-release-info span { font-size: 10px; }
  .bento-info-card { min-height: auto; padding: 0; }
  .bento-news-split { grid-template-columns: 1fr; }
  .bento-score-split { grid-template-columns: 1fr; }
  .bento-score-visual { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .bento-score-ring-wrap { width: 140px; height: 140px; }
  .bento-score-value { font-size: 36px; }
  .bento-score-label-tag { max-width: 50px; line-height: 1.3; text-align: center; font-size: 8px; }
  .bento-widgets-preview { grid-template-columns: 1fr 1fr; }
  .bento-widget-sm:last-child { grid-column: 1 / -1; }
  /* Bento notification toggles — 1 col on mobile */
  .bento-notif-toggles { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  /* Bento week calendar — prevent overflow */
  .bento-week-strip { gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bento-week-day { min-width: 0; }
  .bento-week-num { width: 28px; height: 28px; font-size: 14px; }
  .bento-week-label { font-size: 8px; }

  /* Scanner sticky */
  .scanner-section { padding: 32px 0 0; }
  .scanner-sticky { top: 48px; height: calc(100vh - 48px); justify-content: flex-start; padding-top: 3vh; }
  .scanner-sticky-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; padding-top: 0; }
  .scanner-text-stack { min-height: 150px; }
  .scanner-text-slide { align-items: center; }
  .scanner-text-slide h3 { font-size: 22px; }
  .scanner-text-slide p { max-width: 100%; font-size: 14px; line-height: 1.6; }
  .scanner-step-num { font-size: 36px; }
  .scanner-phone-stage { height: 380px; margin-top: 4vh; }
  .scanner-card { width: 200px; }
  .scanner-card img { border-radius: 24px; }
  .scanner-scroll-wrap { height: 400vh; }
  .scanner-progress { margin-top: auto; padding-bottom: 10vh; }
  .scanner-prog-dot span { font-size: 10px; }

  /* Proof / Testimonials */
  .proof { padding: 80px 20px 40px; }
  .proof-stats { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .proof-stat-number { font-size: 36px; }
  .proof-stat-divider { width: 40px; height: 1px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px; }
  .testimonial-card:last-child { max-width: none; }

  /* Perks */
  .perks { padding: 80px 20px; }
  .perks-grid { grid-template-columns: 1fr; }
  .perk-v2 { padding: 28px 22px; }
  .perk-v2-icon { width: 56px; height: 56px; }
  .perk-v2-title { font-size: 17px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-popular { transform: scale(1); }
  .pricing-popular:hover { transform: translateY(-4px); }
  .pricing-card:last-child { max-width: none; }

  /* FAQ */
  .faq { padding: 80px 20px; }
  .faq-question { padding: 18px 0; gap: 12px; }
  .faq-question span { font-size: 15px; }
  .faq-answer p { font-size: 13px; padding: 0 0 18px; }

  /* CTA */
  .final-cta { padding: 80px 20px 120px; }
  .final-form { max-width: 100%; }
  .final-subtitle { font-size: 15px; margin: 0 auto 32px; }
  .globe-wrap { width: 480px; height: 480px; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 28px; flex-wrap: wrap; }

  /* CTA form — show "Join Waitlist" text on mobile */
  .hero-submit .submit-text { display: inline; }
  .hero-submit .submit-arrow { display: none; }
  .hero-submit { padding: 0 18px; font-size: 13px; }
  .input-wrapper { padding: 5px; }
  .hero-input { padding: 0 10px; font-size: 14px; }

  /* Nav — hamburger on mobile */
  .nav-inner { padding: 0 20px; height: 48px; }
  .nav-logo { font-size: 15px; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-subtitle { font-size: 15px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; height: 42px; }
  .nav-logo-icon { width: 28px; height: 28px; border-radius: 8px; }
  .nav-logo { font-size: 14px; gap: 8px; }
  .nav-hamburger { width: 34px; height: 34px; }
  .hero-submit { font-size: 12px; padding: 0 14px; height: 42px; }
  .input-wrapper { padding: 4px; border-radius: 14px; }
  .input-icon { width: 34px; height: 34px; border-radius: 8px; }
  .hero-input { padding: 0 8px; font-size: 13px; height: 42px; }
  .input-country { padding-left: 10px; gap: 4px; }
  .country-flag { font-size: 15px; }
  .country-code { font-size: 13px; }
  .country-divider { height: 20px; margin-left: 2px; }
  .country-tooltip { padding: 8px 12px; }
  .country-tooltip-msg { font-size: 11px; }

  .hero { padding: 80px 16px 40px; }

  .hero-split { gap: 32px; }
  .hero-title { font-size: 40px; }
  .hero-typed-letter { font-size: 1.2em; filter: brightness(1.2); }
  .hero .hero-subtitle { font-size: 14px; }
  .hero-phone-img { width: 200px; }
  .phone-glow { width: 320px; height: 250px; }

  .section-title { font-size: 26px; }
  .section-header { margin-bottom: 32px; }
  .section-tag { font-size: 11px; padding: 5px 12px; }

  /* Brand carousel */
  .brand-logo { padding: 0 20px; }
  .brand-logo img { height: 17px; }
  .brand-logo img[src*="nike.svg"] { height: 16px; }
  .brand-logo img[src*="snkrs"] { height: 16px; }
  .brand-logo img[src*="jordan"] { height: 18px; }
  .brand-logo img[src*="adidas"] { height: 17px; }
  .brand-logo img[src*="supreme"] { height: 13px; }
  .brand-logo img[src*="nordstrom"] { height: 16px; }
  .brand-logo img[src*="foot-locker"] { height: 16px; }
  .brand-logo img[src*="jd-sports"] { height: 17px; }
  .brand-logo img[src*="champs"] { height: 15px; }
  .brand-logo img[src*="snipes"] { height: 12px; }
  .brand-logo img[src*="converse"] { height: 10px; }
  .brand-logo img[src*="hibbett"] { height: 11px; }

  /* Alerts */
  .alerts-showcase { padding: 60px 16px; }
  .alert-notif-mini { padding: 12px 14px; gap: 10px; }
  .alert-notif-icon,
  .alert-notif-icon-img { width: 36px; height: 36px; }

  /* Features bento */
  .features { padding: 60px 16px; }
  .bento-grid { gap: 12px; }
  .bento-market-phone { width: 180px; }
  .bento-phone-mock { width: 140px; }
  .bento-score-ring-wrap { width: 120px; height: 120px; }
  .bento-score-value { font-size: 32px; }
  .bento-score-label-tag { max-width: 46px; line-height: 1.3; text-align: center; font-size: 7px; }
  .bento-toggle-row { padding: 10px 12px; }
  .bento-toggle-icon { width: 24px; height: 24px; }
  .bento-toggle-label { font-size: 11px; }
  .bento-toggle-switch { width: 32px; height: 18px; }
  .bento-widgets-preview { grid-template-columns: 1fr; }
  /* Release items — tighter at small screens */
  .bento-price-row { min-width: 52px; padding: 4px 6px; font-size: 10px; }
  .bento-price-row.resale span:first-child { display: inline-block; max-width: 44px; line-height: 1.2; }
  .bento-release-thumb { width: 36px; height: 36px; }
  .bento-release-item { gap: 8px; padding: 6px; }

  /* Scanner */
  .scanner-section { padding: 24px 0 0; }
  .scanner-sticky { top: 42px; height: calc(100vh - 42px); justify-content: flex-start; padding-top: 2vh; }
  .scanner-sticky-inner { gap: 16px; padding-top: 0; }
  .scanner-phone-stage { height: 340px; margin-top: 3vh; }
  .scanner-card { width: 175px; }
  .scanner-card img { border-radius: 20px; }
  .scanner-text-slide h3 { font-size: 20px; }
  .scanner-text-slide p { font-size: 13px; line-height: 1.6; }
  .scanner-step-num { font-size: 28px; }
  .scanner-text-stack { min-height: 130px; }
  .scanner-scroll-wrap { height: 380vh; }
  .scanner-progress { margin-top: auto; padding-bottom: 10vh; }

  /* Perks */
  .perks { padding: 60px 16px; }
  .perk-v2 { padding: 24px 18px; }
  .perk-v2-icon { width: 48px; height: 48px; }
  .perk-v2-icon svg { width: 24px; height: 24px; }
  .perk-v2-number { margin-bottom: 16px; }

  /* Proof */
  .proof { padding: 60px 16px 32px; }
  .proof-stat-number { font-size: 30px; }
  .proof-stats { padding: 24px 16px; }
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 13px; }

  /* FAQ */
  .faq { padding: 60px 16px; }
  .faq-question span { font-size: 14px; }
  .faq-answer p { font-size: 13px; }

  /* CTA */
  .final-cta { padding: 60px 16px 100px; }
  .final-title { font-size: clamp(26px, 7vw, 36px); }
  .final-subtitle { font-size: 14px; }
  .globe-wrap { width: 280px; height: 280px; opacity: 0.5; }

  /* Footer */
  .footer { padding: 40px 16px 20px; }
  .footer-links { gap: 24px; }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-title .wf-letter { opacity: 1; transform: none; filter: none; animation: none; }
  .brand-carousel-track { animation: none; }
  .hero-bg-orb { animation: none; }
  .scroll-indicator { animation: none; }
}

/* ── Global Mobile Text Safety ─────────────────────────────── */
@media (max-width: 768px) {
  .alerts-desc,
  .alert-cat-content span,
  .testimonial-text,
  .faq-answer p,
  .perk-v2-desc,
  .perk-desc,
  .scanner-text-slide p,
  .hero .hero-subtitle,
  .final-subtitle {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* ══════════════════════════════════════════════════════════════
   WAITLIST POPUP
   ══════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-card {
  position: relative;
  background: linear-gradient(170deg, #1A1B22 0%, #111318 60%, #0E0F14 100%);
  border: 1px solid rgba(255, 122, 80, 0.15);
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 122, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}
.popup-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 3px;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all var(--transition);
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 122, 80, 0.25);
}
.popup-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.popup-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.popup-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.popup-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
}
.popup-perk svg {
  flex-shrink: 0;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px 14px;
  transition: border-color var(--transition);
}
.popup-input-wrap:focus-within {
  border-color: rgba(255, 122, 80, 0.4);
}
.popup-input-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.popup-country {
  padding-left: 4px;
}
.popup-country .country-flag {
  font-size: 16px;
}
.popup-country .country-code {
  font-size: 14px;
}
.popup-country .country-divider {
  height: 20px;
}
.popup-input {
  flex: 1;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
}
.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.popup-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FF8A5C 0%, var(--accent) 50%, #FF5E3A 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 122, 80, 0.3);
  letter-spacing: 0.2px;
}
.popup-submit:hover {
  box-shadow: 0 6px 32px rgba(255, 122, 80, 0.45);
  transform: translateY(-1px);
}
.popup-submit:active {
  transform: translateY(0) scale(0.98);
}
.popup-disclaimer {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .popup-card { padding: 32px 24px 24px; }
  .popup-title { font-size: 20px; }
  .popup-subtitle { font-size: 13px; }
  .popup-perk { font-size: 12px; padding: 8px 12px; }
}
