/* ═══════════════════════════════════════════════════════
   ALPHA ZYRON — Premium Styles
═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --purple:       #a855f7;
  --purple-dark:  #7c3aed;
  --purple-light: #c084fc;
  --cyan:         #06b6d4;
  --cyan-light:   #67e8f9;
  --blue:         #6366f1;
  --pink:         #ec4899;
  --gold:         #f59e0b;
  --red:          #dc2626;
  --red-light:    #f87171;

  /* Brand silver palette */
  --silver:       #c8c8d0;
  --silver-light: #e8e8f0;
  --silver-dark:  #888898;

  --grad-primary: linear-gradient(135deg, var(--purple), var(--cyan));
  /* Heading gradient: silver chrome matching AZ logo */
  --grad-text:    linear-gradient(135deg, #d0d0d8 0%, #ffffff 40%, #a0a0b0 70%, #e0e0e8 100%);

  --glass-bg:     rgba(255,255,255,0.025);
  --glass-border: rgba(255,255,255,0.07);

  --font-head: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --pad-section: clamp(80px, 10vw, 140px);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hide default cursor on desktop */
@media (min-width: 769px) {
  body { cursor: none; }
  button, a { cursor: none; }
}

/* Custom cursor — sharp inner dot + soft outer ring */
.cursor-dot-inner {
  position: fixed; left: 0; top: 0;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
}
.cursor-outer {
  position: fixed; left: 0; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.6);
  background: rgba(168,85,247,0.04);
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  box-shadow: 0 0 14px rgba(168,85,247,0.2), inset 0 0 8px rgba(168,85,247,0.07);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s, box-shadow 0.18s;
}
.cursor-outer.hover {
  width: 54px; height: 54px;
  border-color: rgba(168,85,247,0.9);
  background: rgba(168,85,247,0.07);
  box-shadow: 0 0 28px rgba(168,85,247,0.4), inset 0 0 16px rgba(168,85,247,0.12);
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.gradient-text {
  background: linear-gradient(110deg,
    #ffffff 0%, #c8c8d0 18%, #ffffff 36%,
    #a0a0b0 52%, #e8e8f0 68%, #ffffff 84%, #c0c0c8 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 8s linear infinite;
}
@keyframes gradShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ─── LAYOUT HELPERS ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(200,200,210,0.05);
  border: 1px solid rgba(200,200,215,0.22);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── LOGO IMAGES ────────────────────────────────────── */
.logo-img-nav {
  height: 38px;
  width: 38px;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
}
.logo-img-hero {
  height: 96px;
  width: 96px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(200,200,220,0.3));
  display: block;
}

/* ─── HERO LOGO MARK ─────────────────────────────────── */
.hero-logo-mark {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
}

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity   0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ─── GLASS CARD ─────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform    0.4s var(--ease-spring),
    box-shadow   0.4s;
}
/* Top-edge light streak */
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none; z-index: 1;
}
/* Mouse-reactive inner glow — pointer spotlight */
.glass-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(168,85,247,0.12) 0%,
    rgba(99,102,241,0.06) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; z-index: 0;
}
.glass-card:hover::after { opacity: 1; }
.glass-card:hover {
  border-color: rgba(168,85,247,0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 30px rgba(168,85,247,0.07);
}

.card-glow-border {
  position: absolute; inset: -1px;
  border-radius: 22px;
  background: var(--grad-primary);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(1px);
}
.glass-card:hover .card-glow-border { opacity: 0.25; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--grad-primary);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  /* No transform here — JS magnetic handles it */
  transition: box-shadow 0.3s;
  will-change: transform;
}
.btn-primary:hover {
  box-shadow: 0 16px 44px rgba(168,85,247,0.45), 0 0 60px rgba(6,182,212,0.15);
}
.btn-primary:active { transform: scale(0.97) !important; }
.btn-icon { font-size: 17px; line-height: 1; }

.btn-glow {
  position: absolute; inset: 0;
  background: var(--grad-primary);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn-primary:hover .btn-glow { opacity: 0.55; }
.btn-glow-lg { filter: blur(28px); }

.btn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shineSweep 3.5s ease-in-out infinite;
}
@keyframes shineSweep {
  0%      { transform: translateX(-100%); }
  28%,100%{ transform: translateX(220%); }
}

.btn-ripple-container {
  position: absolute; inset: 0;
  border-radius: 100px;
  overflow: hidden;
}

/* ─── ROTATING CONIC RING on hero CTA ───────────────── */
@property --conic-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.cta-glow-wrap {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  padding: 2px;
  z-index: 0;
}
/* Rotating ring via ::before — outside overflow:hidden, no conflict */
.cta-glow-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: conic-gradient(
    from var(--conic-angle, 0deg),
    #402fb5 0%, #c084fc 25%, #67e8f9 50%, #ec4899 75%, #402fb5 100%
  );
  animation: conicSpin 3s linear infinite;
  z-index: -1;
}
/* Outer bloom */
.cta-glow-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  background: conic-gradient(
    from var(--conic-angle, 0deg),
    #402fb5 0%, #c084fc 25%, #67e8f9 50%, #ec4899 75%, #402fb5 100%
  );
  filter: blur(12px);
  opacity: 0.55;
  animation: conicSpin 3s linear infinite;
  z-index: -2;
}
@keyframes conicSpin {
  to { --conic-angle: 360deg; }
}
.cta-glow-wrap .btn-primary { margin: 0; }
.cta-glow-wrap .btn-primary::after { inset: -8px; }

/* Pulse ring — outer glow pulse on primary buttons */
.btn-primary::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 100px;
  border: 1.5px solid rgba(168,85,247,0.6);
  opacity: 0;
  animation: btnPulseRing 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes btnPulseRing {
  0%   { opacity: 0.75; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.26); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.025);
  transition: all 0.3s var(--ease-smooth);
}
.btn-ghost:hover {
  border-color: rgba(168,85,247,0.35);
  color: #fff;
  background: rgba(168,85,247,0.06);
}
.btn-arrow { transition: transform 0.3s; }
.btn-ghost:hover .btn-arrow { transform: translateY(4px); }

/* ─── AMBIENT BACKGROUND ─────────────────────────────── */
#particleCanvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

/* ─── TOAST NOTIFICATION ─────────────────────────────── */
.toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(8, 4, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #fff;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 36px rgba(168, 85, 247, 0.22), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── AMBIENT PARTICLES (silver dust) ────────────────── */
.ambient-particles {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.ap {
  position: absolute;
  border-radius: 50%;
  animation: apFloat linear infinite;
  will-change: transform, opacity;
}
@keyframes apFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.5; }
  100% { transform: translateY(calc(-100vh - 30px)) translateX(var(--drift, 40px)); opacity: 0; }
}

/* ─── GRAIN TEXTURE OVERLAY ──────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── 3D PHONE MOCKUP ────────────────────────────────── */
.phone-3d-wrap {
  position: relative;
  width: 340px;
  height: 356px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9)) drop-shadow(0 0 60px rgba(200,200,210,0.06));
}
.phone-3d-screen {
  position: absolute;
  /* Screen area calibrated to match the 3D render:
     image is 2048×2048, displayed 340×340 centered in 340×356 (8px letterbox each side)
     screen left≈22%, top≈12%, width≈55%, height≈77% of rendered image */
  top: calc(8px + 12% * 340px / 356px);
  left: 22%;
  width: 55%;
  height: calc(77% * 340px / 356px);
  overflow: hidden;
  z-index: 1;
  border-radius: 2%;
}
.phone-3d-wp {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.phone-3d-frame {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  /* White bg removed via JS canvas — will update to data:image/png after load */
}
/* silver/neutral glow for the 3D mockup */
.glow-silver {
  inset: -80px;
  background: radial-gradient(ellipse at center, rgba(200,200,215,0.14) 0%, rgba(180,180,200,0.06) 40%, transparent 70%);
  animation-delay: 0s;
}

.ambient-orbs {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
/* Orbs — FULLY STATIC. No animation at all. Blur+animation = guaranteed jitter. */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
/* Brand orbs — near-black silver, matches AZ identity */
.orb-1 { width:700px;height:700px; background:#1a1a20; opacity:.9; top:-300px;left:-250px; }
.orb-2 { width:600px;height:600px; background:#101018; opacity:.9; bottom:-250px;right:-200px; }
.orb-3 { width:500px;height:500px; background:#141418; opacity:.7; top:38%;left:28%; }
.orb-4 { width:400px;height:400px; background:#0c0c10; opacity:.8; top:52%;right:-150px; }

.cursor-spotlight {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: 1000; padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(2,2,5,0.74);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.022), 0 6px 40px rgba(0,0,0,0.55);
  padding: 13px 0;
}
.navbar.scrolled::after {
  content: '';
  position: absolute; bottom: 0; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.22), rgba(6,182,212,0.14), transparent);
  pointer-events: none;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
}

.nav-logo { display: flex; align-items: center; gap: 9px; }
.logo-icon {
  width: 36px; height: 36px;
  background: #060606;
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(168,85,247,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.18em;
}

.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left:0; right:0; height:1px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { padding: 10px 20px; font-size: 13px; }

/* ─── FILM GRAIN ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9997;
  pointer-events: none;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px clamp(20px,5vw,60px) 60px;
  z-index: 2; overflow: hidden;
  text-align: center;
}
/* Ambient grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, black 0%, transparent 100%);
}

.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; font-size: 12px;
  color: rgba(255,255,255,0.6); margin-bottom: 30px;
  animation: pillGlow 4s ease-in-out infinite;
}
@keyframes pillGlow {
  0%, 100% { border-color: rgba(255,255,255,0.08); }
  50%       { border-color: rgba(16,185,129,0.24); box-shadow: 0 0 18px rgba(16,185,129,0.07); }
}
.live-dot {
  width: 7px; height: 7px; background: #10b981;
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px #10b981;
  animation: liveBlink 2.2s ease-in-out infinite;
}
@keyframes liveBlink {
  0%,100% { opacity:1; }
  50%     { opacity:0.4; }
}

.hero-content { max-width: 860px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  border: 1px solid rgba(168,85,247,0.28);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 24px;
  background: rgba(168,85,247,0.06);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.title-line { display: block; }

/* Line 1 — solid white, tight */
.t-main {
  color: #fff;
  /* Atmospheric ambient glow only, no fake 3D */
  text-shadow: 0 0 80px rgba(255,255,255,0.05);
}

/* Line 2 — premium silver-to-color gradient */
.t-grad {
  background: linear-gradient(110deg,
    #ffffff 0%,
    #e9d5ff 22%,
    #c084fc 48%,
    #818cf8 72%,
    #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 12px 40px rgba(124,58,237,0.28));
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.5); line-height: 1.7;
  margin: 0 auto 38px; max-width: 600px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.82); }

.hero-cta-group {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 44px;
}
.btn-hero { padding: 17px 34px; font-size: 16px; }

/* Social proof */
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 14px; }
.proof-avatars { display: flex; align-items: center; }
.proof-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  margin-left: -9px;
}
.proof-avatar:first-child { margin-left: 0; }
/* Individual avatar colors */
.av1 { background: linear-gradient(135deg,#a855f7,#6366f1); }
.av2 { background: linear-gradient(135deg,#06b6d4,#a855f7); }
.av3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.av4 { background: linear-gradient(135deg,#10b981,#06b6d4); }
.av5 { background: linear-gradient(135deg,#f43f5e,#a855f7); }

.proof-text { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.proof-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.proof-text span { font-size: 12px; color: rgba(255,255,255,0.55); }
.proof-text strong { color: #fff; }

/* ─── PHONE MOCKUPS ──────────────────────────────────── */
.hero-mockups {
  position: relative; z-index: 2;
  width: 100%; max-width: 680px;
  height: 520px; margin-top: 56px;
  display: flex; align-items: flex-end; justify-content: center;
}

.mockup-wrap { position: absolute; }

/* Phone floats driven entirely by JS rAF (single animation source = zero tremor) */
.mockup-center-wrap {
  z-index: 3; bottom: 0; left: 50%;
  transform: translateX(-50%);
  will-change: transform;
  perspective: 1000px;
  perspective-origin: 50% 40%;
}
.mockup-left-wrap {
  z-index: 2; bottom: 30px; left: 50%;
  opacity: 0.62;
  transform: translateX(-230px) rotate(-13deg);
  will-change: transform;
}
.mockup-right-wrap {
  z-index: 2; bottom: 30px; left: 50%;
  opacity: 0.62;
  transform: translateX(90px) rotate(13deg);
  will-change: transform;
}
.mockup-bob { /* kept for HTML compat */ }

/* 3D depth on side phones — transforms only, GPU-composited, no filter=no jitter */
.mockup-left-wrap  .phone-sm {
  transform: perspective(800px) rotateY(22deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.mockup-right-wrap .phone-sm {
  transform: perspective(800px) rotateY(-22deg) rotateX(2deg);
  transform-style: preserve-3d;
}

/* Extra edge-catch sheen on 3D phones */
.mockup-left-wrap  .phone-sm::after,
.mockup-right-wrap .phone-sm::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(to right, rgba(255,255,255,0.07) 0%, transparent 40%);
  pointer-events: none; z-index: 9;
}
.mockup-right-wrap .phone-sm::after {
  background: linear-gradient(to left, rgba(255,255,255,0.07) 0%, transparent 40%);
}

/* ─── PREMIUM PHONE FRAME — TITANIUM NATURAL ────────── */
.phone-frame {
  position: relative;
  border-radius: 46px;
  /* Brushed titanium finish */
  background: linear-gradient(168deg,
    #5c5c60 0%, #3e3e42 10%, #525256 22%,
    #2e2e32 36%, #4c4c50 50%, #38383c 64%,
    #565658 78%, #3a3a3e 90%, #505054 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.28),
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.7),
    0 0 0 0.5px rgba(0,0,0,1),
    0 80px 160px rgba(0,0,0,0.99),
    0 40px 80px rgba(0,0,0,0.85),
    0 16px 40px rgba(0,0,0,0.7),
    0 30px 100px rgba(120,50,220,0.14);
}
.phone-main {
  width: 240px; height: 518px;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}
.phone-sm {
  width: 175px; height: 378px;
  border-radius: 38px;
  background: linear-gradient(168deg,
    #484848 0%, #303034 15%, #444448 30%,
    #282830 50%, #404044 70%, #303034 85%, #484848 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 0 0.5px rgba(0,0,0,0.9),
    0 40px 80px rgba(0,0,0,0.95);
}

/* Physical side buttons — left side */
.phone-vol-silent,
.phone-vol-up,
.phone-vol-down {
  position: absolute;
  left: -3px;
  width: 3px;
  background: linear-gradient(to right, #282830, #505058, #282830);
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.12);
  z-index: 25;
}
.phone-vol-silent { top: 64px;  height: 24px; }
.phone-vol-up     { top: 106px; height: 42px; }
.phone-vol-down   { top: 158px; height: 42px; }

/* Power button — right side */
.phone-power {
  position: absolute;
  right: -3px; top: 118px;
  width: 3px; height: 60px;
  background: linear-gradient(to left, #282830, #505058, #282830);
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 0 5px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.12);
  z-index: 25;
}

/* Dynamic Island */
.phone-di {
  position: absolute; top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 27px;
  background: #000;
  border-radius: 100px;
  z-index: 20;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 3px 10px rgba(0,0,0,0.9);
}
.phone-di-cam {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #1a1a28, #080810);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 0 6px rgba(80,80,200,0.25);
}

/* Side phones notch (kept simple) */
.phone-notch {
  position: absolute; top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 21px;
  background: #000; border-radius: 100px; z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-screen {
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  overflow: hidden;
  border-radius: 42px;
  background: #000;
  box-shadow:
    0 0 40px rgba(168,85,247,0.22),
    0 0 80px rgba(99,102,241,0.1),
    0 0 120px rgba(168,85,247,0.06);
}
.phone-sm .phone-screen { border-radius: 34px; box-shadow: none; }

/* Status bar overlay inside screen */
.phone-status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px 9px;
  pointer-events: none;
}
.psb-time {
  font-size: 15px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.psb-icons {
  display: flex; align-items: center; gap: 5px;
}

/* Glass surface reflection — cinematic multi-streak */
.phone-glass {
  position: absolute; inset: 0;
  background:
    linear-gradient(118deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.10) 14%,
      rgba(255,255,255,0.02) 28%,
      transparent 42%
    ),
    linear-gradient(245deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.02) 18%,
      transparent 32%
    ),
    linear-gradient(to bottom,
      rgba(255,255,255,0.06) 0%,
      transparent 24%
    ),
    linear-gradient(to top,
      rgba(255,255,255,0.03) 0%,
      transparent 18%
    );
  z-index: 8; pointer-events: none;
}
/* Rim light — environmental catch on titanium edge */
.phone-main::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.18) 8%,
    transparent 22%,
    transparent 78%,
    rgba(255,255,255,0.12) 90%,
    rgba(255,255,255,0.28) 100%
  );
  pointer-events: none;
  z-index: 30;
  mix-blend-mode: overlay;
}

.phone-home-bar {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 4px;
  background: rgba(255,255,255,0.38); border-radius: 100px; z-index: 20;
}

.phone-glow {
  position: absolute; z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  animation: phoneGlowPulse 4s ease-in-out infinite;
}
.glow-purple {
  inset: -90px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.38) 0%, rgba(99,102,241,0.16) 40%, transparent 70%);
  animation-delay: 0s;
}
.glow-cyan {
  inset: -65px;
  background: radial-gradient(ellipse at center, rgba(6,182,212,0.32) 0%, transparent 65%);
  animation-delay: 1.3s;
}
.glow-pink {
  inset: -65px;
  background: radial-gradient(ellipse at center, rgba(236,72,153,0.28) 0%, transparent 65%);
  animation-delay: 2.1s;
}
@keyframes phoneGlowPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.7; transform: scale(0.92); }
}

/* Wallpaper backgrounds */
.wp-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: opacity 0.9s ease;
}
.wp-purple {
  background: url('wallpapers/wp6.jpg') center/cover no-repeat, #1a0040;
}
.wp-blue {
  background: url('wallpapers/wp7.jpg') center/cover no-repeat, #001020;
}
.wp-pink {
  background: url('wallpapers/wp5.jpg') center/cover no-repeat, #18000f;
}

/* Overlay hidden — real wallpapers already have their own typography */
.wp-overlay { display: none; }
.wp-quote { display: none; }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: rgba(6,6,6,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 12px; font-weight: 600;
  backdrop-filter: blur(18px);
  white-space: nowrap;
  will-change: transform;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.06);
}
.fb-dot { width:7px;height:7px;background:#10b981;border-radius:50%;box-shadow:0 0 6px #10b981; }
.fb1 { top:55px; left:0; }
.fb2 { top:15px; right:15px; }
.fb3 { bottom:75px; right:-15px; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.28); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(168,85,247,0.7), transparent);
  transform-origin: top;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  35%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  65%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  position: relative; z-index: 2;
  padding: 28px clamp(20px,5vw,60px);
  background: rgba(255,255,255,0.018);
  border-top: 1px solid rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-around; gap: 20px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-row  { display: flex; align-items: baseline; gap: 1px; line-height: 1; }
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suf {
  font-family: var(--font-body);
  font-size: clamp(18px,2.5vw,28px);
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; }
.stat-sep { width:1px; height:36px; background:rgba(255,255,255,0.07); }

/* ─── PREVIEW SECTION ────────────────────────────────── */
.preview-section {
  position: relative; z-index: 2;
  padding: var(--pad-section) 0;
  background: #000;
}
.preview-section .section-header { padding: 0 clamp(20px,5vw,60px); }

/* Masonry-style grid — full width, no max-width constraint */
.preview-grid {
  position: relative;
  display: flex; gap: 14px;
  padding: 0 14px;
  overflow: hidden;
}

.preview-col {
  display: flex; flex-direction: column;
  gap: 18px; flex: 1;
}
.preview-col-4 { flex: 1; }

.preview-card {
  border-radius: 18px; overflow: hidden;
  position: relative; min-height: 280px;
  transition: transform 0.55s var(--ease-spring), box-shadow 0.55s;
  cursor: default;
  /* AMOLED border with silver catch */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 60px rgba(0,0,0,0.8);
}
.preview-card:hover {
  transform: scale(1.025) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(200,200,215,0.18),
    0 36px 80px rgba(0,0,0,0.85),
    0 0 40px rgba(200,200,220,0.06);
  z-index: 2;
}
.preview-card.tall { min-height: 440px; }

/* Individual card backgrounds — real wallpapers with gradient fallback */
.pc1 { background: url('wallpapers/wp1.jpg') center/cover no-repeat, linear-gradient(155deg,#0a0020,#2d0057,#7c3aed); }
.pc2 { background: url('wallpapers/wp2.jpg') center/cover no-repeat, linear-gradient(135deg,#0d0d0d,#1a1a1a,#2d2d2d); }
.pc3 { background: url('wallpapers/wp3.jpg') center/cover no-repeat, linear-gradient(155deg,#000a14,#001a2e,#003366); }
.pc4 { background: url('wallpapers/wp4.jpg') center/cover no-repeat, linear-gradient(145deg,#0d1a0d,#1a3a1a,#2d5a2d); }
.pc5 { background: url('wallpapers/wp5.jpg') center/cover no-repeat, linear-gradient(140deg,#1a1000,#4d3300,#cc8800); }
.pc6 { background: url('wallpapers/wp6.jpg') center/cover no-repeat, linear-gradient(155deg,#0a0a0a,#181818,#2a2a2a); }
.pc7 { background: url('wallpapers/wp7.jpg') center/cover no-repeat, linear-gradient(135deg,#001a2e,#0040aa,#0066dd); }
.pc8 { background: url('wallpapers/wp8.jpg') center/cover no-repeat, linear-gradient(155deg,#0a0020,#1e0040,#6600cc); }

/* Watermark overlay — branded diagonal text on every preview card */
.preview-card::before {
  content: 'ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON  ALPHA ZYRON';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.13);
  transform: rotate(-35deg);
  line-height: 2.8;
  word-break: break-all;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  white-space: normal;
  text-align: center;
  padding: 10px;
}

/* Bottom vignette on every card for AMOLED contrast */
.preview-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Lock overlay on cards */
.preview-lock {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity 0.3s;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.preview-card:hover .preview-lock { opacity: 1; }
.lock-icon { font-size: 22px; }

/* Blur overlay at bottom revealing CTA */
.preview-blur-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.85) 40%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 40px;
  z-index: 10;
}
.preview-blur-content { text-align: center; }
.pbo-count { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.pbo-sub   { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.pbo-price {
  font-family: var(--font-head); font-size: 36px; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
}

/* ─── BENEFITS ───────────────────────────────────────── */
.benefits-section {
  position: relative; z-index: 2;
  padding: var(--pad-section) 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 18px;
}
.benefit-card { padding: 30px; }
.bicon-wrap { position: relative; display: inline-block; margin-bottom: 18px; }
.bicon { font-size: 34px; position: relative; z-index: 1; }
.bicon-glow {
  position: absolute; inset: -6px;
  background: radial-gradient(circle, rgba(168,85,247,0.28) 0%, transparent 70%);
  border-radius: 50%;
  /* Static — no animation to avoid trembling */
}
.benefit-card h3 {
  font-family: var(--font-head); font-size: 19px;
  font-weight: 700; margin-bottom: 10px;
}
.benefit-card p { color: rgba(255,255,255,0.48); line-height: 1.7; font-size: 14px; }

/* ─── COMPARISON ─────────────────────────────────────── */
.comparison-section { position: relative; z-index: 2; padding: var(--pad-section) 0; }
.comparison-inner { max-width: 980px; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.comp-card { padding: 30px; border-radius: 22px; }
.comp-before {
  background: rgba(255,59,48,0.04);
  border: 1px solid rgba(255,59,48,0.14);
}
.comp-after {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.22);
  position: relative; overflow: hidden;
}
.comp-label {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-block; padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
}
.bad-label  { background:rgba(255,59,48,0.1);  color:#ff6b60; border:1px solid rgba(255,59,48,0.2); }
.good-label { background:rgba(168,85,247,0.14); color:var(--purple-light); border:1px solid rgba(168,85,247,0.28); }

.comp-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.comp-list li { display:flex; align-items:center; gap:11px; font-size:14px; color:rgba(255,255,255,0.68); }
.ci {
  flex-shrink:0; width:20px; height:20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700;
}
.ci.bad  { background:rgba(255,59,48,0.12);  color:#ff6b60; border:1px solid rgba(255,59,48,0.25); }
.ci.good { background:rgba(168,85,247,0.12); color:var(--purple-light); border:1px solid rgba(168,85,247,0.28); }
.comp-glow {
  position:absolute; bottom:-36px; right:-36px;
  width:180px; height:180px;
  background:radial-gradient(circle, rgba(168,85,247,0.16) 0%, transparent 70%);
  pointer-events:none;
}

/* ─── LIFESTYLE ──────────────────────────────────────── */
.lifestyle-section { position:relative; z-index:2; padding:var(--pad-section) 0; }
.lifestyle-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.ls-title { font-size: clamp(28px,3.5vw,48px); text-align: left; margin-bottom: 22px; }
.ls-desc { color:rgba(255,255,255,0.48); line-height:1.8; font-size:15px; margin-bottom:32px; }
.ls-desc strong { color:rgba(255,255,255,0.82); }

/* Lifestyle device */
.lifestyle-device-wrap { display:flex; justify-content:center; }
.ls-device {
  position: relative;
  width: 270px; height: 546px;
}
.ls-screen {
  width:100%; height:100%;
  background: linear-gradient(180deg,#1c1c1c,#0a0a0a);
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 52px 100px rgba(0,0,0,0.9),
    0 0 70px rgba(168,85,247,0.12);
}
.ls-wallpaper {
  position: absolute; inset: 0;
  background: url('wallpapers/wp5.jpg') center/cover no-repeat, #1a0040;
}
@keyframes wallpaperHue {
  0%   { filter: hue-rotate(0deg)   brightness(1); }
  100% { filter: hue-rotate(28deg)  brightness(1.18); }
}
.ls-ui {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:36px 22px;
  background:linear-gradient(to bottom,rgba(0,0,0,0.18) 0%,rgba(0,0,0,0.48) 100%);
}
.ls-time {
  font-family:var(--font-head); font-size:62px; font-weight:200;
  letter-spacing:-2px; color:#fff;
  text-shadow:0 0 36px rgba(168,85,247,0.45);
}
.ls-date { font-size:15px; color:rgba(255,255,255,0.55); margin-bottom:42px; }
.ls-widget {
  font-family:var(--font-head); font-size:12.5px; font-weight:600;
  color:rgba(255,255,255,0.82); text-align:center; line-height:1.6;
  padding:14px; background:rgba(0,0,0,0.42);
  border:1px solid rgba(255,255,255,0.1); border-radius:14px;
  backdrop-filter:blur(8px);
}
.ls-glow {
  position:absolute; inset:-24px; border-radius:50%;
  background:radial-gradient(circle,rgba(168,85,247,0.22) 0%,transparent 65%);
  z-index:-1;
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing-section { position:relative; z-index:2; padding:var(--pad-section) 0; overflow:hidden; }
.pricing-section::before {
  content: '';
  position: absolute;
  width: 220%; height: 440px;
  left: -60%; bottom: 0; z-index: 0;
  background:
    linear-gradient(rgba(168,85,247,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.052) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(420px) rotateX(63deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 62%);
  pointer-events: none;
}
.pricing-inner { max-width:660px; position:relative; z-index:1; }

.urgency-bar {
  display:flex; align-items:center; justify-content:center; gap:9px;
  padding:11px 22px; margin-bottom:28px;
  background:rgba(234,179,8,0.07);
  border:1px solid rgba(234,179,8,0.18);
  border-radius:10px; font-size:13px; color:rgba(255,255,255,0.78);
  text-align:center;
}
.urgency-bar strong { color:#fbbf24; }
.urgency-dot {
  width:7px; height:7px; background:#fbbf24; border-radius:50%;
  flex-shrink:0; box-shadow:0 0 7px #fbbf24;
  animation:liveBlink 1.6s ease-in-out infinite;
}

.price-card {
  padding: 44px; border-radius: 26px; text-align: center;
  border: 1px solid transparent;
  background:
    rgba(8,8,16,0.78) padding-box,
    conic-gradient(from var(--holo-angle, 0deg),
      rgba(168,85,247,0.6),
      rgba(99,102,241,0.4),
      rgba(6,182,212,0.55),
      rgba(236,72,153,0.4),
      rgba(168,85,247,0.6)
    ) border-box;
  animation: priceGlow 4.5s ease-in-out infinite, holoSpin 9s linear infinite;
  transition: transform 0.4s var(--ease-spring);
}
@keyframes priceGlow {
  0%, 100% {
    box-shadow: 0 0 60px rgba(168,85,247,0.06), inset 0 0 40px rgba(168,85,247,0.02);
    border-color: rgba(168,85,247,0.22);
  }
  50% {
    box-shadow: 0 0 100px rgba(168,85,247,0.14), 0 0 160px rgba(6,182,212,0.05), inset 0 0 50px rgba(168,85,247,0.05);
    border-color: rgba(168,85,247,0.4);
  }
}
.price-card:hover { transform: translateY(-7px); }

.price-top-badge {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  padding:5px 18px;
  background:var(--grad-primary);
  border-radius:0 0 14px 14px;
  font-size:10px; font-weight:700; letter-spacing:0.12em;
}
.price-name  { font-family:var(--font-head); font-size:26px; font-weight:700; margin:22px 0 7px; }
.price-desc  { color:rgba(255,255,255,0.45); font-size:14px; margin-bottom:28px; }

.price-block { margin-bottom:32px; }
.price-old   { font-size:15px; color:rgba(255,255,255,0.28); text-decoration:line-through; display:block; margin-bottom:7px; }
.price-main  { display:flex; align-items:flex-start; justify-content:center; gap:3px; line-height:1; margin-bottom:7px; }
.price-cur   { font-family:var(--font-head); font-size:26px; font-weight:700; margin-top:11px; color:rgba(255,255,255,0.75); }
.price-val   {
  font-family:var(--font-body); font-size:84px; font-weight:900; letter-spacing:-4px;
  background:var(--grad-text);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.price-dec   { font-family:var(--font-head); font-size:26px; font-weight:700; margin-top:11px; color:rgba(255,255,255,0.75); }
.price-note  { display:block; font-size:12px; color:rgba(255,255,255,0.38); }

.price-list  { list-style:none; margin-bottom:32px; display:flex; flex-direction:column; gap:13px; text-align:left; }
.price-list li { display:flex; align-items:center; gap:11px; font-size:14px; color:rgba(255,255,255,0.72); }
.pli {
  flex-shrink:0; width:19px; height:19px;
  background:rgba(168,85,247,0.14);
  border:1px solid rgba(168,85,247,0.28);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:10px; color:var(--purple-light);
}

.btn-price { width:100%; justify-content:center; padding:19px 28px; font-size:17px; margin-bottom:18px; }

.price-guarantee {
  display:flex; align-items:center; justify-content:center; gap:7px;
  font-size:12px; color:rgba(255,255,255,0.4); margin-bottom:18px;
}
.price-methods { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.pm { font-size:12px; color:rgba(255,255,255,0.38); padding:5px 12px; border:1px solid rgba(255,255,255,0.07); border-radius:7px; }

.price-card-glow {
  position:absolute; inset:-2px; border-radius:26px;
  background:var(--grad-primary); opacity:0.08; z-index:-1;
  filter:blur(18px);
  /* Static glow — no animation to avoid trembling */
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews-section { position:relative; z-index:2; padding:var(--pad-section) 0; }
.reviews-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:18px; margin-bottom:48px;
}
.review-card { padding:26px; border-radius:20px; display:flex; flex-direction:column; gap:11px; }
.rv-featured {
  border: 1px solid transparent;
  background:
    rgba(8,8,18,0.7) padding-box,
    conic-gradient(from var(--holo-angle, 0deg),
      rgba(168,85,247,0.45),
      rgba(6,182,212,0.38),
      rgba(168,85,247,0.45)
    ) border-box;
  animation: holoSpin 12s linear 2s infinite;
}

.rv-header { display:flex; align-items:center; gap:11px; }
.rv-avatar { width:42px;height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.rv-info { flex:1; display:flex; flex-direction:column; }
.rv-name   { font-weight:700; font-size:14px; }
.rv-handle { font-size:11px; color:rgba(255,255,255,0.38); }
.rv-platform { font-size:18px; }
.rv-stars  { color:var(--gold); font-size:13px; letter-spacing:2px; }
.rv-text   { color:rgba(255,255,255,0.65); line-height:1.7; font-size:13.5px; flex:1; }
.rv-date   { font-size:11px; color:rgba(255,255,255,0.28); }
.rv-badge  { display:inline-block; padding:2px 9px; background:rgba(168,85,247,0.14); border:1px solid rgba(168,85,247,0.28); border-radius:100px; font-size:9px; font-weight:600; color:var(--purple-light); letter-spacing:.04em; }

.rating-bar {
  display:flex; align-items:center; justify-content:center; gap:18px;
  padding:28px; background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:18px; backdrop-filter:blur(18px);
}
.rating-num {
  font-family:var(--font-body); font-size:60px; font-weight:900; line-height:1;
  background:var(--grad-text);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.rating-stars { color:var(--gold); font-size:22px; letter-spacing:3px; margin-bottom:3px; }
.rating-count { font-size:13px; color:rgba(255,255,255,0.38); }

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-cta {
  position:relative; z-index:2;
  padding:var(--pad-section) clamp(20px,5vw,60px);
  text-align:center; overflow:hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 180%; height: 300px;
  left: -40%; bottom: 0; z-index: 0;
  background:
    linear-gradient(rgba(168,85,247,0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.048) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(360px) rotateX(56deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(168,85,247,0.07) 0%, transparent 68%);
  pointer-events:none;
}
.final-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
.final-title {
  font-size:clamp(38px,7vw,78px); font-weight:700;
  line-height:1; letter-spacing:-0.03em; margin:18px 0 22px;
}
.final-sub { color:rgba(255,255,255,0.48); font-size:clamp(14px,1.8vw,17px); line-height:1.7; margin-bottom:36px; }
.btn-final { padding:21px 44px; font-size:19px; margin-bottom:18px; }
.final-trust { font-size:12px; color:rgba(255,255,255,0.38); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  position:relative; z-index:2;
  padding:44px clamp(20px,5vw,60px);
  border-top:1px solid rgba(255,255,255,0.045);
  text-align:center;
}
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-tag   { color:rgba(255,255,255,0.28); font-size:13px; margin-bottom:22px; }
.footer-links { display:flex; align-items:center; justify-content:center; gap:22px; flex-wrap:wrap; margin-bottom:22px; }
.footer-link  { font-size:12px; color:rgba(255,255,255,0.28); transition:color 0.2s; }
.footer-link:hover { color:rgba(255,255,255,0.65); }
.footer-copy  { font-size:11px; color:rgba(255,255,255,0.18); }

/* ─── STICKY CTA ─────────────────────────────────────── */
.sticky-cta {
  position:fixed; bottom:0; left:0; right:0; z-index:900;
  padding: 11px 18px;
  padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
  background:rgba(0,0,0,0.88); backdrop-filter:blur(20px);
  border-top:1px solid rgba(255,255,255,0.055);
  transform:translateY(100%);
  transition:transform 0.4s var(--ease-smooth);
  display:none;
}
.sticky-cta.visible { transform:translateY(0); }
.sticky-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; max-width:460px; margin:0 auto;
}
.sticky-price {
  font-family:var(--font-head); font-size:21px; font-weight:800;
  background:var(--grad-text);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  display:block;
}
.sticky-label { font-size:10px; color:rgba(255,255,255,0.38); }
.sticky-btn { flex:1; max-width:200px; justify-content:center; padding:13px 20px; font-size:14px; }

/* ─── TOASTS ─────────────────────────────────────────── */
.toast-container {
  position:fixed; bottom:76px; left:16px;
  z-index:1001; display:flex; flex-direction:column; gap:9px;
  pointer-events:none;
}
.toast {
  display:flex; align-items:center; gap:11px;
  padding:12px 16px;
  background:rgba(12,12,12,0.96);
  border:1px solid rgba(168,85,247,0.22);
  border-radius:13px; font-size:12px; max-width:270px;
  animation:toastIn 0.4s var(--ease-spring) both;
  backdrop-filter:blur(18px);
  box-shadow:0 6px 28px rgba(0,0,0,0.5);
}
.toast.out { animation:toastOut 0.3s var(--ease-smooth) both; }
.toast-av {
  width:30px;height:30px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:10px; font-weight:700;
}
.toast-body { display:flex; flex-direction:column; gap:1px; }
.toast-name { font-weight:600; color:rgba(255,255,255,0.9); font-size:12px; }
.toast-act  { color:rgba(255,255,255,0.46); font-size:11px; }

@keyframes toastIn  { from{opacity:0;transform:translateX(-18px) scale(0.94)} to{opacity:1;transform:none} }
@keyframes toastOut { from{opacity:1;transform:none} to{opacity:0;transform:translateX(-18px) scale(0.94)} }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width:960px) {
  .lifestyle-inner { grid-template-columns:1fr; gap:44px; }
  .ls-title { text-align:center; }
  .lifestyle-text { order:2; }
  .lifestyle-device-wrap { order:1; }
  .lifestyle-text .btn-primary { width:100%; justify-content:center; }
  .comp-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
}

@media (max-width:768px) {
  .hero-mockups { height:380px; }
  .mockup-left-wrap, .mockup-right-wrap { display:none; }
  .fb1, .fb2, .fb3 { display:none; }
  .hero-cta-group { flex-direction:column; align-items:stretch; }
  .btn-primary, .btn-ghost { justify-content:center; }
  .stat-sep { display:none; }
  .preview-col-4 { display:none; }
  .preview-col { flex:0 0 calc(33.33% - 8px); min-width:130px; }
  .benefits-grid { grid-template-columns:1fr; }
  .price-card { padding:30px 20px; }
  .reviews-grid { grid-template-columns:1fr; }
  .sticky-cta { display:block; }
  .toast-container { bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width:520px) {
  .hero-title { font-size:42px; }
  .section-title { font-size:28px; }
  .final-title { font-size:34px; }
  .price-val { font-size:70px; }
  .btn-final { padding:17px 26px; font-size:16px; }
  .preview-grid { gap:10px; padding:0 14px; }
  .preview-card { min-height:200px; }
  .preview-card.tall { min-height:300px; }
}

/* Accessibility — reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:0.01ms !important;
    transition-duration:0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   NEW PREMIUM SECTIONS
═══════════════════════════════════════════════════════ */

/* ─── BONUSES ────────────────────────────────────────── */
.bonuses-section { position:relative; z-index:2; padding:var(--pad-section) 0; }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-bottom: 36px;
}
@media (max-width: 1100px) { .bonuses-grid { grid-template-columns: repeat(2,1fr); } }
.bonus-card {
  padding: 34px 30px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(168,85,247,0.08);
}
.bonus-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.28);
  border-radius: 100px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
}
.bonus-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.bonus-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.bonus-card p { color: rgba(255,255,255,0.5); line-height: 1.7; font-size: 14px; margin-bottom: 16px; }
.bonus-value {
  display: inline-block;
  font-size: 12px; font-weight: 700; color: var(--purple-light);
  background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.2);
  padding: 4px 12px; border-radius: 7px;
}
.bonuses-total {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 20px 28px;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.16);
  border-radius: 14px; flex-wrap: wrap; text-align: center;
}
.bt-label { font-size: 13px; color: rgba(255,255,255,0.48); }
.bt-value {
  font-family: var(--font-body); font-size: 20px; font-weight: 700;
  text-decoration: line-through; color: rgba(255,255,255,0.3);
}
.bt-free {
  padding: 5px 16px;
  background: var(--grad-primary);
  border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SCARCITY BAR ───────────────────────────────────── */
.scarcity-bar {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(168,85,247,0.04);
  border: 1px solid rgba(168,85,247,0.14);
  border-radius: 14px;
}
.scarcity-label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.scarcity-label strong { color: var(--purple-light); }
.scarcity-track {
  height: 6px; background: rgba(255,255,255,0.05);
  border-radius: 100px; overflow: hidden;
}
.scarcity-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 100px;
  width: 0%;
  box-shadow: 0 0 12px rgba(168,85,247,0.5);
  transition: width 1.6s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.scarcity-bar.visible .scarcity-fill { width: 73%; }

/* ─── GUARANTEE ──────────────────────────────────────── */
.guarantee-section { position:relative; z-index:2; padding:var(--pad-section) 0; }
.guarantee-card {
  max-width: 720px; margin: 0 auto;
  padding: 52px 44px; text-align: center;
  border-color: rgba(255,255,255,0.06);
}
.guarantee-badge {
  font-size: 52px; margin-bottom: 18px; display: block;
  filter: drop-shadow(0 0 24px rgba(16,185,129,0.35));
}
.guarantee-card h2 {
  font-size: clamp(22px,3vw,32px); font-weight: 700;
  margin-bottom: 16px;
}
.guarantee-card p {
  color: rgba(255,255,255,0.5); line-height: 1.8;
  font-size: 15px; max-width: 520px; margin: 0 auto 28px;
}
.guarantee-card p strong { color: rgba(255,255,255,0.82); }
.guarantee-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}
.guarantee-meta span {
  font-size: 13px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 7px;
}
.guarantee-meta span::before {
  content: '✓';
  color: #10b981; font-weight: 700; font-size: 14px;
}

/* Trust seals */
.trust-seals {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.trust-seal {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.42);
  transition: border-color 0.3s, color 0.3s;
}
.trust-seal:hover {
  border-color: rgba(168,85,247,0.3);
  color: rgba(255,255,255,0.72);
}
.trust-seal-icon { font-size: 14px; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section { position:relative; z-index:2; padding:var(--pad-section) 0; }
.faq-list {
  max-width: 740px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(168,85,247,0.22); }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: color 0.2s;
  cursor: pointer;
}
.faq-q:hover { color: #fff; }
.faq-q::after {
  content: '+';
  font-size: 22px; font-weight: 300;
  color: rgba(168,85,247,0.7); flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring), color 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--purple-light); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  color: rgba(255,255,255,0.46); line-height: 1.8; font-size: 14px;
  transition: max-height 0.45s var(--ease-out), padding 0.35s;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 22px; }

/* ─── BONUS SECTION RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {
  .bonuses-grid { grid-template-columns: 1fr; }
  .guarantee-card { padding: 36px 24px; }
  .guarantee-meta { gap: 14px; flex-direction: column; align-items: flex-start; max-width: 280px; margin-left: auto; margin-right: auto; }
  .trust-seals { gap: 8px; }
  .scarcity-bar { padding: 14px 16px; }
  .faq-q { font-size: 14px; }
}

@media (max-width: 520px) {
  .bonus-card { padding: 26px 20px; }
  .bonus-icon { font-size: 30px; }
  .bt-value { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM MOTION & DEPTH — Wave 2
═══════════════════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%; z-index: 10000; pointer-events: none;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 10px rgba(168,85,247,0.7), 0 0 24px rgba(168,85,247,0.3);
  transition: width 0.12s linear;
}

/* ─── HERO ATMOSPHERIC GLOW ──────────────────────────── */
.hero::after {
  content: '';
  position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 320px;
  background: radial-gradient(ellipse at center,
    rgba(168,85,247,0.07) 0%,
    rgba(6,182,212,0.04) 40%,
    transparent 72%);
  pointer-events: none; z-index: 1;
}

/* ─── HERO TITLE GRADIENT LINE (t-grad) SHIMMER ─────── */
.t-grad {
  filter: drop-shadow(0 12px 40px rgba(124,58,237,0.24));
}

/* ─── HERO SUBTITLE ENHANCED ─────────────────────────── */
.hero-subtitle {
  letter-spacing: 0.008em;
  color: rgba(255,255,255,0.46);
}

/* ─── BICON GLOW RING ────────────────────────────────── */
.bicon-wrap::after {
  content: '';
  position: absolute;
  inset: -16px; border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.1);
  pointer-events: none;
}
.bicon-wrap { position: relative; display: inline-block; margin-bottom: 18px; }

/* ─── RATING BAR POLISH ──────────────────────────────── */
.rating-bar { position: relative; overflow: hidden; }
.rating-bar::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ─── SECTION BADGE HOVER SHIMMER ───────────────────── */
.section-badge {
  transition: border-color 0.3s, background 0.3s;
}
.section-badge:hover {
  border-color: rgba(168,85,247,0.45);
  background: rgba(168,85,247,0.1);
}

/* ─── COMPARISON CARD DEPTH ──────────────────────────── */
.comp-after:hover {
  box-shadow: 0 0 60px rgba(168,85,247,0.1), 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(-3px);
  transition: all 0.4s var(--ease-spring);
}

/* ─── REVIEW CARD FEATURED BORDER ANIMATION ─────────── */
.rv-featured {
  position: relative;
}
.rv-featured::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(168,85,247,0.4), rgba(6,182,212,0.3), rgba(168,85,247,0.4));
  background-size: 200% 200%;
  animation: featuredBorder 5s ease-in-out infinite;
  z-index: -1;
}
@keyframes featuredBorder {
  0%, 100% { background-position: 0% 50%; opacity: 0.6; }
  50%       { background-position: 100% 50%; opacity: 1; }
}

/* ─── FINAL CTA GLOW ENHANCED ────────────────────────── */
.final-cta-glow {
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
    rgba(168,85,247,0.09) 0%,
    rgba(6,182,212,0.04) 50%,
    transparent 72%);
}

/* ─── STATS BAR ENHANCED ─────────────────────────────── */
.stat-number, .stat-suf {
  filter: drop-shadow(0 0 14px rgba(168,85,247,0.3));
}

/* ─── PRICING LIST CHECK GLOW ────────────────────────── */
.pli { box-shadow: 0 0 10px rgba(168,85,247,0.12); }

/* ─── LIFESTYLE SCREEN GLASS OVERLAY ─────────────────── */
.ls-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 30%,
    transparent 50%);
  pointer-events: none; z-index: 10;
}

/* ─── SECTION TITLE LINE-HEIGHT ──────────────────────── */
.section-title { line-height: 1.07; }

/* ─── TOAST ENHANCED ─────────────────────────────────── */
.toast {
  background: rgba(10,10,12,0.97);
  border-color: rgba(168,85,247,0.26);
  box-shadow: 0 8px 36px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ─── HERO BADGE SPARKLE ──────────────────────────────── */
.hero-badge {
  position: relative;
}
.hero-badge::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
  background-size: 200%;
  animation: badgeSweep 4s linear infinite;
  z-index: -1;
}
@keyframes badgeSweep {
  0%   { background-position: -200% center; opacity: 0; }
  40%  { opacity: 1; }
  100% { background-position: 200% center; opacity: 0; }
}

/* ─── BUTTON PRIMARY ENHANCED ────────────────────────── */
.btn-primary {
  box-shadow: 0 4px 20px rgba(168,85,247,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(168,85,247,0.48), 0 0 70px rgba(6,182,212,0.12), inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ─── STATS BAR EDGE FADE ────────────────────────────── */
.stats-bar {
  position: relative;
}
.stats-bar::before, .stats-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  pointer-events: none; z-index: 1;
}
.stats-bar::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.stats-bar::after  { right: 0; background: linear-gradient(to left, #000, transparent); }

/* Disable phone float on mobile — keep static */
@media (max-width: 768px) {
  .mockup-center-wrap { animation: none; }
  .mockup-left-wrap   { animation: none; }
  .mockup-right-wrap  { animation: none; }
  .hero::after { width: 320px; height: 180px; }
}

/* ═══════════════════════════════════════════════════════
   WAVE 3 — FUTURISTIC 3D EXPERIENCE
═══════════════════════════════════════════════════════ */

/* ─── PAGE VIGNETTE ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9996;
  pointer-events: none;
  background: radial-gradient(ellipse 130% 100% at 50% 0%,
    transparent 52%, rgba(0,0,0,0.2) 100%);
}

/* ─── @PROPERTY HOLOGRAPHIC SPIN ─────────────────────── */
@property --holo-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes holoSpin { to { --holo-angle: 360deg; } }

/* ─── AURORA HERO BLOBS ──────────────────────────────── */
/* No filter:blur — transform-only animation = GPU composited = zero jitter */
.hero-aurora {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.aurora-blob { position: absolute; border-radius: 50%; will-change: transform; }

.ab1 {
  width: 920px; height: 720px;
  top: -240px; left: -180px;
  background: radial-gradient(ellipse at center,
    rgba(168,85,247,0.17) 0%,
    rgba(99,102,241,0.07) 48%,
    transparent 72%);
  animation: ab1Drift 20s ease-in-out infinite alternate;
}
.ab2 {
  width: 780px; height: 640px;
  top: -110px; right: -210px;
  background: radial-gradient(ellipse at center,
    rgba(6,182,212,0.14) 0%,
    rgba(99,102,241,0.05) 45%,
    transparent 70%);
  animation: ab2Drift 26s ease-in-out 4s infinite alternate;
}
.ab3 {
  width: 580px; height: 580px;
  bottom: -100px; left: 30%;
  background: radial-gradient(ellipse at center,
    rgba(236,72,153,0.1) 0%, transparent 66%);
  animation: ab3Drift 18s ease-in-out 8s infinite alternate;
}
@keyframes ab1Drift {
  0%   { transform: translate(0,    0)    scale(1); }
  100% { transform: translate(80px, 58px) scale(1.13); }
}
@keyframes ab2Drift {
  0%   { transform: translate(0,     0)    scale(1.04); }
  100% { transform: translate(-68px, 82px) scale(0.91); }
}
@keyframes ab3Drift {
  0%   { transform: translate(0,    0)     scale(1); }
  100% { transform: translate(-48px,-68px) scale(1.1); }
}

/* ─── LIVE PILL Z-INDEX FIX (above aurora) ───────────── */
.live-pill { position: relative; z-index: 1; }
.scroll-cue { z-index: 2; }

/* ─── HERO TITLE EXTRA TIGHT ─────────────────────────── */
.t-main { letter-spacing: -0.054em; }

/* ─── ENERGY SWEEP ON SECTION HEADERS ────────────────── */
.section-header { position: relative; overflow: hidden; }
.section-header::after {
  content: '';
  position: absolute; top: 50%; left: -10%; right: -10%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(168,85,247,0) 25%,
    rgba(168,85,247,0.55) 50%,
    rgba(6,182,212,0.4) 62%,
    transparent 80%);
  transform: translateY(-50%) translateX(-100%);
  animation: energySweep 6s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
@keyframes energySweep {
  0%   { transform: translateY(-50%) translateX(-150%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-50%) translateX(150%); opacity: 0; }
}

/* ─── SECTION SMOOTH TRANSITIONS ────────────────────── */
.stats-bar,
.preview-section,
.bonuses-section,
.benefits-section,
.comparison-section,
.lifestyle-section,
.pricing-section,
.guarantee-section,
.faq-section,
.reviews-section,
.final-cta {
  position: relative;
}

/* Top fade — each section dissolves from black */
.preview-section::before,
.bonuses-section::before,
.benefits-section::before,
.comparison-section::before,
.lifestyle-section::before,
.pricing-section::before,
.guarantee-section::before,
.faq-section::before,
.reviews-section::before,
.final-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Bottom fade — each section dissolves back into black */
.stats-bar::after,
.preview-section::after,
.bonuses-section::after,
.benefits-section::after,
.comparison-section::after,
.lifestyle-section::after,
.pricing-section::after,
.guarantee-section::after,
.faq-section::after,
.reviews-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ─── STATS ITEM CARDS ───────────────────────────────── */
.stat-item {
  padding: 18px 28px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-spring);
}
.stat-item:hover {
  border-color: rgba(168,85,247,0.22);
  background: rgba(168,85,247,0.028);
  transform: translateY(-3px);
}
.stats-inner { gap: 12px; }
.stat-sep    { display: none; }

/* ─── PREVIEW CARD DEEPER HOVER ──────────────────────── */
.preview-card:hover {
  transform: scale(1.026) translateY(-5px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.78), 0 0 36px rgba(168,85,247,0.12);
}

/* ─── COMPARISON CARD HOVER DEPTH ───────────────────── */
.comp-after {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.comp-after:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(168,85,247,0.1), 0 20px 50px rgba(0,0,0,0.5);
}

/* ─── REVIEW FEATURED GLOW PULSE ────────────────────── */
.rv-featured {
  position: relative;
}

/* ─── BENEFIT ICON RING ──────────────────────────────── */
.bicon-wrap {
  position: relative; display: inline-block;
  margin-bottom: 18px;
}
.bicon-wrap::after {
  content: '';
  position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.1);
  pointer-events: none;
}

/* ─── BUTTON EXTRA DEPTH ─────────────────────────────── */
.btn-primary {
  box-shadow: 0 4px 22px rgba(168,85,247,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-primary:hover {
  box-shadow: 0 18px 52px rgba(168,85,247,0.5), 0 0 80px rgba(6,182,212,0.1), inset 0 1px 0 rgba(255,255,255,0.16);
}

/* ─── STATS DROP SHADOW ──────────────────────────────── */
.stat-number, .stat-suf {
  filter: drop-shadow(0 0 12px rgba(168,85,247,0.28));
}

/* ─── TOAST DEPTH ────────────────────────────────────── */
.toast {
  box-shadow: 0 10px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(168,85,247,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ─── MOBILE DISABLES ────────────────────────────────── */
@media (max-width: 768px) {
  body::before { display: none; }
  .ab3 { display: none; }
  .aurora-blob { animation-duration: 30s; }
  .pricing-section::before { display: none; }
  .final-cta::before { display: none; }
  .section-header::after { display: none; }
  .stat-item { padding: 12px 16px; border: none; background: none; }
  .stat-item:hover { transform: none; }

  /* Navbar mobile */
  .nav-cta { display: none; }
  .navbar { padding: 14px 0; }

  /* Hero logo centered on mobile */
  .hero-logo-mark { justify-content: center; margin-bottom: 20px; }
  .logo-img-hero  { height: 72px; width: 72px; }

  /* Hero content centered */
  .hero-content { text-align: center; }
  .hero-cta-group { align-items: center; }

  /* Preview grid — 2 columns on mobile */
  .preview-col   { flex: 0 0 calc(50% - 7px); min-width: 0; }
  .preview-col-4 { display: none; }

  /* Comparison: single col handled above */
  .comp-grid { gap: 16px; }

  /* Lifestyle */
  .lifestyle-text { padding: 0 8px; }
}

@media (max-width: 520px) {
  .ab1 { width: 400px; height: 300px; }
  .ab2 { width: 350px; height: 280px; }

  /* Tighter hero padding */
  .hero { padding-top: 90px; padding-bottom: 40px; }

  /* Preview: 1 column on very small screens */
  .preview-grid   { flex-direction: column; }
  .preview-col    { flex: none; width: 100%; }
  .preview-col:nth-child(n+3) { display: none; }

  /* Navbar logo text shorter on tiny screens */
  .logo-text { font-size: 13px; letter-spacing: 0.12em; }

  /* Sticky CTA tighter */
  .sticky-inner { padding: 10px 16px; }
}

/* ═══════════════════════════════════════════════════════
   WAVE FINAL — PREMIUM MILLIONAIRE PACK
═══════════════════════════════════════════════════════ */

/* ─── PAGE LOADER ─────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: radial-gradient(ellipse at center, #0a0a12 0%, #000 60%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pl-orbit { position: absolute; inset: -34px; pointer-events: none; }
.pl-orbit span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(200,200,220,0.18);
  animation: orbitSpin 4s linear infinite;
}
.pl-orbit span:nth-child(2) { inset: -16px; border-color: rgba(168,85,247,0.18); animation-duration: 6s; animation-direction: reverse; }
.pl-orbit span:nth-child(3) { inset: -32px; border-color: rgba(6,182,212,0.12); animation-duration: 9s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.pl-logo {
  width: 88px; height: 88px;
  filter: drop-shadow(0 0 24px rgba(200,200,220,0.4));
  animation: plLogoIn 1.2s cubic-bezier(0.16,1,0.3,1);
}
@keyframes plLogoIn {
  0%   { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.pl-text {
  font-family: var(--font-head); letter-spacing: 0.38em;
  font-size: 13px; font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: plTextIn 1s 0.4s both ease-out;
}
@keyframes plTextIn { from { opacity: 0; letter-spacing: 0.8em; } to { opacity: 1; letter-spacing: 0.38em; } }
.pl-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.pl-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #c8c8d0, #ffffff, #a0a0b0);
  animation: plBar 1.3s 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes plBar { to { width: 100%; } }

/* ─── PERSISTENT LIVE PROOF TOAST ─────────────────────── */
.live-proof {
  position: fixed; left: 18px; bottom: 18px; z-index: 950;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px;
  background: rgba(10,10,15,0.82);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 24px rgba(168,85,247,0.08);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
  max-width: 320px;
}
.live-proof.visible { transform: translateX(0); }
.lp-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  flex-shrink: 0;
}
.lp-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.92); }
.lp-city { color: rgba(255,255,255,0.5); font-weight: 400; }
.lp-sub { font-size: 11px; color: rgba(255,255,255,0.42); }
.lp-pulse {
  position: absolute; right: 10px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 0 0 #10b981;
  animation: lpPulse 1.8s infinite;
}
@keyframes lpPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  60% { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
}

/* ─── CURSOR TRAIL ────────────────────────────────────── */
.cursor-trail { position: fixed; inset: 0; pointer-events: none; z-index: 99997; }
.ct-dot {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #f0d97a 0%, #c8a04e 50%, transparent 100%);
  filter: blur(0.3px);
  opacity: 0;
  will-change: transform, opacity;
}

/* ─── SCROLL SPOTLIGHT ────────────────────────────────── */
.scroll-spotlight {
  position: fixed; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at center,
    rgba(168,85,247,0.05) 0%,
    rgba(99,102,241,0.025) 38%,
    transparent 70%);
  transition: top 0.18s linear;
}

/* ─── STAY MODAL ──────────────────────────────────────── */
.stay-modal {
  position: fixed; inset: 0; z-index: 99996;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  padding: 20px;
}
.stay-modal.visible { opacity: 1; visibility: visible; }
.sm-card {
  position: relative;
  max-width: 440px; width: 100%;
  padding: 44px 36px;
  background: linear-gradient(160deg, rgba(20,20,30,0.95), rgba(8,8,12,0.95));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.7), 0 0 50px rgba(168,85,247,0.18);
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.stay-modal.visible .sm-card { transform: scale(1) translateY(0); }
.sm-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 26px; color: rgba(255,255,255,0.4);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.sm-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.sm-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(168,85,247,0.18);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 18px;
}
.sm-title { font-family: var(--font-head); font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.sm-text { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.6; margin-bottom: 26px; }
.sm-btn { width: 100%; justify-content: center; }

/* ─── GOLD CONFETTI ───────────────────────────────────── */
.gold-confetti { position: fixed; inset: 0; pointer-events: none; z-index: 99995; overflow: hidden; }
.gc-piece {
  position: absolute; width: 10px; height: 14px;
  background: linear-gradient(135deg, #f4d066, #c89a3a 50%, #f0c450);
  opacity: 0;
}

/* ─── LUXURY MARQUEE ──────────────────────────────────── */
.lux-marquee {
  position: relative; z-index: 3;
  padding: 22px 0;
  background: linear-gradient(180deg, transparent, rgba(10,10,15,0.4) 50%, transparent);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.lux-track {
  display: inline-flex; gap: 38px; align-items: center;
  white-space: nowrap;
  animation: luxScroll 240s linear infinite;
}
.lux-track span {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: -webkit-text-stroke-color 0.3s;
}
.lux-track span:nth-child(odd):hover { -webkit-text-fill-color: rgba(200,200,215,0.18); }
@keyframes luxScroll { to { transform: translateX(-50%); } }

/* ─── INFINITE GALLERY ────────────────────────────────── */
.infinite-gallery {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 80px) 0;
  overflow: hidden;
  background: #000;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ig-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: igScroll 360s linear infinite;
}
.ig-card {
  flex: 0 0 280px; height: 380px;
  border-radius: 22px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 36px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.ig-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg,
    transparent 0%, rgba(168,85,247,0.18) 25%, rgba(6,182,212,0.18) 50%,
    rgba(236,72,153,0.16) 75%, transparent 100%);
  background-size: 250% 100%;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s;
}
.ig-card:hover { transform: scale(1.05) translateY(-4px); }
.ig-card:hover::after { opacity: 1; animation: holoIris 2.4s linear infinite; }
@keyframes holoIris { to { background-position: 250% 0; } }
@keyframes igScroll { to { transform: translateX(-50%); } }

/* ─── IMPACT QUOTE SECTION ────────────────────────────── */
.impact-section {
  position: relative; z-index: 2;
  padding: clamp(80px, 12vw, 160px) 0;
  background: radial-gradient(ellipse 80% 60% at center,
    rgba(168,85,247,0.08) 0%, transparent 70%), #000;
  text-align: center;
}
.impact-inner { max-width: 980px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }
.impact-mark {
  display: inline-block; font-family: var(--font-head);
  font-size: clamp(72px, 12vw, 156px);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #c8c8d0 35%, #888898 65%, #e8e8f0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 12px 48px rgba(200,200,220,0.18));
  margin-bottom: 16px;
}
.impact-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.6vw, 68px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.impact-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.04em;
}

/* ─── MANIFESTO ───────────────────────────────────────── */
.manifesto-section {
  position: relative; z-index: 2;
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(10,10,15,0.5), transparent);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(46px, 9vw, 124px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.045em;
  margin: 26px 0 18px;
  text-shadow: 0 30px 80px rgba(168,85,247,0.1);
}
.manifesto-attr {
  font-size: 12px; letter-spacing: 0.36em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

/* ─── BRAZIL MAP ──────────────────────────────────────── */
.brmap-section { position: relative; z-index: 2; padding: var(--pad-section) 0; }
.brmap-inner { padding: 0 clamp(20px,5vw,60px); }
.brmap-wrap {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 320px; gap: 48px;
  align-items: center;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.brmap { width: 100%; max-width: 400px; height: auto; display: block; margin: 0 auto; }
.brmap-dots circle {
  fill: #d8d8e0;
  filter: drop-shadow(0 0 6px rgba(200,200,220,0.6));
  animation: brmapPulse 2.6s ease-in-out infinite;
}
.brmap-dots circle:nth-child(1) { animation-delay: 0s; }
.brmap-dots circle:nth-child(2) { animation-delay: 0.3s; }
.brmap-dots circle:nth-child(3) { animation-delay: 0.6s; }
.brmap-dots circle:nth-child(4) { animation-delay: 0.9s; }
.brmap-dots circle:nth-child(5) { animation-delay: 1.2s; }
.brmap-dots circle:nth-child(6) { animation-delay: 1.5s; }
.brmap-dots circle:nth-child(7) { animation-delay: 1.8s; }
.brmap-dots circle:nth-child(8) { animation-delay: 2.1s; }
.brmap-dots circle:nth-child(9) { animation-delay: 0.45s; }
.brmap-dots circle:nth-child(10) { animation-delay: 0.75s; }
.brmap-dots circle:nth-child(11) { animation-delay: 1.05s; }
.brmap-dots circle:nth-child(12) { animation-delay: 1.65s; }
@keyframes brmapPulse {
  0%, 100% { r: 2; filter: drop-shadow(0 0 3px rgba(200,200,220,0.4)); opacity: 0.6; }
  50%       { r: 5; filter: drop-shadow(0 0 14px rgba(168,85,247,0.8)); opacity: 1; fill: #c8a4ff; }
}
.brmap-side { display: flex; flex-direction: column; gap: 22px; }
.brmap-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; align-self: flex-start;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: #10b981;
}
.brmap-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 8px #10b981;
  animation: lpPulse 1.6s infinite;
}
.brmap-stat { display: flex; flex-direction: column; gap: 4px; }
.brmap-num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.brmap-lbl { font-size: 12px; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; }
@media (max-width: 768px) {
  .brmap-wrap { grid-template-columns: 1fr; gap: 28px; }
  .brmap-side { align-items: center; text-align: center; }
}

/* ─── PHONE REFLECTION (Apple-style mirror) ────────────── */
.phone-reflection {
  position: absolute; bottom: -120px; left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 195px; height: 110px;
  background: linear-gradient(
    to bottom,
    rgba(168,85,247,0.2) 0%,
    rgba(168,85,247,0.06) 35%,
    transparent 75%
  );
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1; pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}
@media (max-width: 768px) { .phone-reflection { display: none; } }

/* ─── LIQUID CHROME TITLE ─────────────────────────────── */
.liquid-chrome .t-grad {
  background: linear-gradient(110deg,
    #ffffff 0%, #c8c8d0 14%, #ffffff 28%,
    #888898 42%, #f0f0f8 56%, #a8a8b8 70%,
    #ffffff 84%, #c0c0c8 100%);
  background-size: 350% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lcShimmer 6s linear infinite;
  filter: drop-shadow(0 8px 30px rgba(168,85,247,0.22));
}
@keyframes lcShimmer { 0% { background-position: 0% center; } 100% { background-position: 350% center; } }

/* ─── HERO GREETING ───────────────────────────────────── */
.hero-greeting {
  font-size: 12px; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  margin-top: 12px; margin-bottom: -4px;
  opacity: 0; animation: fadeInUp 0.8s 1.6s forwards;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── METAL SEALS ROW ─────────────────────────────────── */
.seals-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin: 0 auto 32px; max-width: 720px;
}
.metal-seal {
  position: relative;
  width: 86px; height: 86px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, #2a2a32 0%, #0a0a0e 70%);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    inset 0 -1px 2px rgba(0,0,0,0.6),
    0 10px 24px rgba(0,0,0,0.5),
    0 0 18px rgba(168,85,247,0.1);
}
.ms-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(200,200,220,0.18);
  border-top-color: rgba(255,255,255,0.45);
  animation: msSpin 7s linear infinite;
}
.metal-seal:nth-child(even) .ms-ring { animation-direction: reverse; animation-duration: 9s; }
@keyframes msSpin { to { transform: rotate(360deg); } }
.ms-text {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  text-align: center; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ms-text span {
  display: block; margin-top: 4px;
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em;
  -webkit-text-fill-color: rgba(255,255,255,0.46);
  color: rgba(255,255,255,0.46);
  background: none;
}

/* ─── HOLOGRAPHIC PRICE CARD ──────────────────────────── */
.holo-card { position: relative; overflow: hidden; }
.holo-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    var(--holo-angle, 110deg),
    transparent 30%,
    rgba(168,85,247,0.08) 45%,
    rgba(6,182,212,0.1)  55%,
    rgba(236,72,153,0.08) 65%,
    transparent 80%
  );
  mix-blend-mode: screen;
  opacity: 0; transition: opacity 0.4s;
  animation: holoSpin 8s linear infinite;
}
.holo-card:hover .holo-shine { opacity: 1; }

/* ─── PRICE MIRROR + SAVINGS ──────────────────────────── */
.price-mirror {
  font-family: var(--font-head);
  font-size: 56px; font-weight: 800;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transform: scaleY(-1);
  margin-top: -28px; margin-bottom: 4px;
  opacity: 0.5; pointer-events: none;
  filter: blur(0.4px);
}
.price-savings {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 16px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: rgba(245,158,11,0.86);
  letter-spacing: 0.04em;
}
.ps-num { font-weight: 800; }

/* ─── LOGO GLITCH (subtle, periodic) ──────────────────── */
.nav-logo .logo-icon { animation: logoBreath 4.5s ease-in-out infinite; }
@keyframes logoBreath {
  0%, 92%, 100% { filter: none; }
  93%           { filter: hue-rotate(15deg) brightness(1.1); transform: translateX(0.5px); }
  94%           { filter: none; transform: translateX(-0.5px); }
  95%           { filter: hue-rotate(-10deg) brightness(1.15); transform: translateX(0); }
}

/* ─── ENHANCED GRAIN ──────────────────────────────────── */
body::after {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.06;
}

/* ─── EXTRA RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  .live-proof { left: 10px; right: 10px; max-width: none; bottom: 78px; padding: 10px 14px; }
  .seals-row { gap: 14px; }
  .metal-seal { width: 70px; height: 70px; }
  .ms-text { font-size: 14px; }
  .ms-text span { font-size: 7px; }
  .price-mirror { font-size: 42px; margin-top: -22px; }
  .ig-card { flex: 0 0 220px; height: 300px; }
  .manifesto-quote { font-size: 44px; }
  .impact-mark { font-size: 72px; }
  .impact-title { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════
   CINEMATIC LAYER — grain, vignette, lens flare, fog
═══════════════════════════════════════════════════════ */
.film-grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-6px,4px); }
  50% { transform: translate(4px,-3px); } 75% { transform: translate(-2px,5px); }
  100% { transform: translate(3px,-4px); }
}
.page-vignette {
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 95%);
  opacity: 0.55; transition: opacity 0.3s;
}
.lens-flare {
  position: fixed; top: 18%; left: -20%; width: 60vw; height: 8px; z-index: 9996;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,220,180,0.0) 30%, rgba(255,235,200,0.55) 50%, rgba(255,220,180,0) 70%, transparent);
  filter: blur(3px);
  transform: rotate(-8deg);
  animation: lensFlareSweep 14s ease-in-out infinite;
  opacity: 0;
}
@keyframes lensFlareSweep {
  0%, 100% { opacity: 0; transform: translateX(0) rotate(-8deg); }
  45% { opacity: 0; }
  55% { opacity: 0.9; }
  70% { opacity: 0; transform: translateX(180vw) rotate(-8deg); }
}
.vol-fog {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.vol-fog i {
  position: absolute; display: block;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.06), transparent 65%);
  filter: blur(60px);
  animation: fogDrift 38s ease-in-out infinite;
}
.vol-fog i:nth-child(1) { top: 20%; left: -20%; animation-delay: 0s; }
.vol-fog i:nth-child(2) { top: 50%; left: 60%; background: radial-gradient(circle, rgba(6,182,212,0.05), transparent 65%); animation-delay: -12s; }
.vol-fog i:nth-child(3) { top: 75%; left: 10%; background: radial-gradient(circle, rgba(236,72,153,0.04), transparent 65%); animation-delay: -22s; }
@keyframes fogDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20vw, -10vh) scale(1.2); }
}

/* Chromatic aberration applied via JS class on body during fast scroll */
body.chroma-shift {
  animation: chromaPulse 0.5s ease-out;
}
@keyframes chromaPulse {
  0% { filter: none; }
  40% { filter: hue-rotate(0deg) drop-shadow(2px 0 0 rgba(255,0,80,0.35)) drop-shadow(-2px 0 0 rgba(0,200,255,0.35)); }
  100% { filter: none; }
}

/* ═══════════════════════════════════════════════════════
   STICKY COUNTDOWN TOPBAR
═══════════════════════════════════════════════════════ */
.sticky-topbar {
  position: fixed; top: -60px; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 10px 18px;
  background: linear-gradient(90deg, rgba(10,10,12,0.92), rgba(20,18,28,0.92), rgba(10,10,12,0.92));
  border-bottom: 1px solid rgba(168,85,247,0.22);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 13px; color: rgba(255,255,255,0.92);
  transition: top 0.5s cubic-bezier(0.16,1,0.3,1);
  font-family: var(--font-body);
}
.sticky-topbar.visible { top: 0; }
.stb-dot { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 8px #ef4444; animation: stbDot 1.2s ease-in-out infinite; }
@keyframes stbDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.stb-text { opacity: 0.8; }
.stb-time { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.04em; color: #fff; font-variant-numeric: tabular-nums; }
.stb-cta {
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 12.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stb-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,85,247,0.45); }
@media (max-width: 560px) {
  .sticky-topbar { font-size: 11.5px; gap: 8px; padding: 8px 10px; }
  .stb-text { display: none; }
}

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER SLIDER
═══════════════════════════════════════════════════════ */
.bna-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; background: linear-gradient(180deg, transparent, rgba(8,8,10,0.6) 50%, transparent); }
.section-tag { display: inline-block; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.bna-wrap { max-width: 980px; margin: 36px auto 0; }
.bna-stage {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
  user-select: none; cursor: ew-resize;
  background: #0a0a0c;
}
.bna-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bna-before {
  background: linear-gradient(135deg, #1a1a22 0%, #2a2730 40%, #1d1d24 100%);
}
.bna-before::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px);
  opacity: 0.5;
}
.bna-after { clip-path: inset(0 0 0 50%); transition: clip-path 0.05s linear; }
.bna-label { position: absolute; top: 18px; padding: 6px 12px; border-radius: 8px; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); color: #fff; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.bna-label-left { left: 18px; opacity: 0.7; }
.bna-label-right { right: 18px; background: linear-gradient(135deg, rgba(168,85,247,0.85), rgba(6,182,212,0.85)); }
.bna-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; transform: translateX(-1px);
  pointer-events: none;
}
.bna-handle-bar { width: 100%; height: 100%; background: linear-gradient(180deg, transparent, #fff 12%, #fff 88%, transparent); box-shadow: 0 0 18px rgba(255,255,255,0.6); }
.bna-handle-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #fff, #c8c8d0);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 18px; color: #0a0a0c; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 -2px 6px rgba(0,0,0,0.2);
  pointer-events: auto; cursor: ew-resize;
}
.bna-hint { text-align: center; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════════════════
   TIMELINE — Sua transformação
═══════════════════════════════════════════════════════ */
.tl-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; }
.tl-track { position: relative; max-width: 820px; margin: 60px auto 0; padding-left: 60px; }
.tl-line { position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, transparent, rgba(168,85,247,0.4) 8%, rgba(6,182,212,0.4) 92%, transparent); }
.tl-item { position: relative; padding-bottom: 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute; left: -60px; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a22, #2a2530);
  border: 1px solid rgba(168,85,247,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: rgba(255,255,255,0.8);
  box-shadow: 0 8px 24px rgba(168,85,247,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}
.tl-marker-final {
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  border-color: rgba(255,255,255,0.3); color: #fff;
  box-shadow: 0 8px 32px rgba(168,85,247,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.tl-content { padding-top: 4px; }
.tl-when { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(168,85,247,0.9); margin-bottom: 6px; font-weight: 600; }
.tl-content h3 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; color: #fff; }
.tl-content p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; margin: 0; max-width: 560px; }

/* ═══════════════════════════════════════════════════════
   DM MURAL
═══════════════════════════════════════════════════════ */
.dm-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; }
.section-sub { text-align: center; color: rgba(255,255,255,0.55); font-size: 14px; margin: 10px 0 0; }
.dm-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; max-width: 1100px; margin: 50px auto 0;
}
.dm-card {
  background: linear-gradient(180deg, #16161c, #0e0e13);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; padding: 16px 16px 18px;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.dm-card:hover { transform: rotate(0) translateY(-6px) scale(1.02); box-shadow: 0 30px 70px rgba(168,85,247,0.18); }
.dm-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 12px; }
.dm-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 14px; }
.dm-name { color: #fff; font-weight: 600; font-size: 14px; flex: 1; }
.dm-time { color: rgba(255,255,255,0.4); font-size: 12px; }
.dm-bubble {
  background: rgba(255,255,255,0.04);
  padding: 10px 13px; border-radius: 14px 14px 14px 4px;
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.82);
  margin-bottom: 8px; max-width: 90%;
}
.dm-bubble-mine {
  background: linear-gradient(135deg, rgba(168,85,247,0.35), rgba(6,182,212,0.35));
  color: #fff; margin-left: auto;
  border-radius: 14px 14px 4px 14px;
}

/* ═══════════════════════════════════════════════════════
   DROP CAP no manifesto
═══════════════════════════════════════════════════════ */
.manifesto-quote::first-letter {
  font-size: 1.35em;
  background: linear-gradient(135deg, #f5d57a, #b88f2e 60%, #f5d57a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  padding-right: 0.06em;
  text-shadow: 0 2px 30px rgba(245,213,122,0.35);
}

/* ═══════════════════════════════════════════════════════
   MAGNETIC + TILT (CSS hooks; JS applies transforms)
═══════════════════════════════════════════════════════ */
.bonus-card { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s; transform-style: preserve-3d; will-change: transform; }
[data-magnetic] { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); will-change: transform; }

/* Variable weight hover on hero title */
.hero-title .title-line { transition: font-weight 0.35s ease, letter-spacing 0.35s ease; }
.hero-title:hover .title-line { font-weight: 900; letter-spacing: 0.005em; }

/* Contextual cursor */
.ig-card, .bonus-card, .review-card { cursor: zoom-in; }
.btn-primary, .btn-secondary, .stb-cta { cursor: pointer; }

/* Decorative giant translucent quote (between sections) */
.giant-quote {
  position: absolute; left: 0; right: 0;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(80px, 16vw, 220px);
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  letter-spacing: -0.03em;
  white-space: nowrap; overflow: hidden;
  opacity: 0.55;
}

/* Responsive tweaks for new sections */
@media (max-width: 560px) {
  .tl-track { padding-left: 50px; }
  .tl-marker { left: -50px; width: 40px; height: 40px; font-size: 14px; }
  .bna-stage { aspect-ratio: 4/5; }
  .dm-grid { gap: 16px; }
  .lens-flare { display: none; }
  .film-grain { opacity: 0.04; }
}

/* ═══════════════════════════════════════════════════════
   POLISH WAVE — quality & smoothing pass
═══════════════════════════════════════════════════════ */

/* Refined easing pool */
:root {
  --ease-cinema: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-silk:   cubic-bezier(0.65, 0, 0.35, 1);
  --bg-amoled:   #0a0a0d;
}

/* Deeper AMOLED black + premium text rendering */
body {
  background: var(--bg-amoled);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "ss01" 1, "liga" 1, "calt" 1;
  font-kerning: normal;
}

/* Balanced headline wrapping */
h1, h2, h3, .hero-title, .section-title, .manifesto-quote {
  text-wrap: balance;
  -webkit-hyphens: auto;
}

/* Sharper imagery on Retina */
img, .wp-bg, .preview-card, .ig-card {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.preview-card img, .preview-img {
  filter: contrast(1.03) saturate(1.06);
}

/* Image fade-in (JS toggles .loaded) */
img[loading="lazy"], img.lazy-fade {
  opacity: 0;
  transition: opacity 0.6s var(--ease-cinema);
}
img[loading="lazy"].loaded, img.lazy-fade.loaded { opacity: 1; }

/* Selection — branded gradient feel */
::selection { background: rgba(168,85,247,0.42); color: #fff; text-shadow: 0 0 8px rgba(168,85,247,0.4); }
::-moz-selection { background: rgba(168,85,247,0.42); color: #fff; }

/* Custom scrollbar slim with brand gradient */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a855f7, #06b6d4);
  border-radius: 999px;
  border: 2px solid var(--bg-amoled);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #c084fc, #67e8f9); }
html { scrollbar-color: #a855f7 transparent; scrollbar-width: thin; }

/* Premium focus ring (double, gold + cyan) */
:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bg-amoled),
    0 0 0 3px rgba(245,158,11,0.85),
    0 0 0 5px rgba(6,182,212,0.55),
    0 0 22px rgba(245,158,11,0.35);
  border-radius: 8px;
}

/* (Dithered gradient removed — was rendering as a solid bar behind hero title) */

/* Content-visibility for offscreen perf — apply to heavier sections only */
.bonuses-section, .benefits-section, .comparison-section,
.lifestyle-section, .reviews-section, .faq-section, .dm-section, .tl-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* Hover-out delay — keep hover state alive briefly */
.bonus-card, .review-card, .preview-card {
  transition-delay: 0s;
}
.bonus-card:not(:hover), .review-card:not(:hover), .preview-card:not(:hover) {
  transition-delay: 0.18s;
}

/* Loading shimmer skeleton (apply class to placeholders) */
.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 0%,
    rgba(168,85,247,0.10) 35%,
    rgba(255,255,255,0.03) 70%);
  background-size: 200% 100%;
  animation: skelShine 1.6s var(--ease-silk) infinite;
  border-radius: 12px;
}
@keyframes skelShine { to { background-position: -200% 0; } }

/* Refined transitions globally for interactive elements */
button, a, .glass-card, .bonus-card, .preview-card, .review-card, .nav-link {
  transition-timing-function: var(--ease-cinema);
}

/* Parallax depth layers (JS sets --py) */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0);
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .film-grain, .lens-flare, .vol-fog, .cursor-trail, .cursor-spotlight { display: none !important; }
}

/* High contrast HDR-feel for wallpapers in preview */
.wp-bg { filter: contrast(1.04) saturate(1.08); }

/* ═══════════════════════════════════════════════════════
   QUIZ
═══════════════════════════════════════════════════════ */
.quiz-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; }
.quiz-card {
  max-width: 720px; margin: 40px auto 0;
  background: linear-gradient(180deg, rgba(22,22,28,0.7), rgba(14,14,19,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px);
}
.quiz-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.quiz-progress span { display: block; height: 100%; background: linear-gradient(90deg, #a855f7, #06b6d4); transition: width 0.5s var(--ease-cinema); }
.quiz-q { font-family: var(--font-head); font-size: clamp(20px, 3vw, 28px); color: #fff; margin: 0 0 22px; text-align: center; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 15px; font-weight: 500; font-family: var(--font-body);
  padding: 16px 20px; border-radius: 14px;
  text-align: left; cursor: pointer;
  transition: all 0.3s var(--ease-cinema);
}
.quiz-opt:hover {
  background: rgba(168,85,247,0.10);
  border-color: rgba(168,85,247,0.4);
  transform: translateX(4px);
}
.quiz-result { text-align: center; }
.quiz-badge { display: inline-block; padding: 6px 14px; border-radius: 999px; background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(6,182,212,0.25)); border: 1px solid rgba(168,85,247,0.4); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.quiz-rname { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quiz-rdesc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin: 0 auto 24px; max-width: 480px; }
.quiz-rwall { width: 100%; max-width: 320px; aspect-ratio: 9/16; margin: 0 auto 28px; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(168,85,247,0.25); }
.quiz-wall { width: 100%; height: 100%; background-size: cover; background-position: center; }
.quiz-redo { background: none; border: none; color: rgba(255,255,255,0.5); margin-top: 16px; font-size: 13px; cursor: pointer; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   HALL OF FAME
═══════════════════════════════════════════════════════ */
.hof-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 110px) 0; }
.hof-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 14px; max-width: 1200px; margin: 50px auto 0; }
.hof-item {
  position: relative;
  background: linear-gradient(180deg, #16161c, #0c0c11);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.45s var(--ease-cinema), box-shadow 0.3s;
}
.hof-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 24px 50px rgba(168,85,247,0.25); }
.hof-rank {
  position: absolute; top: 10px; left: 12px; z-index: 3;
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hof-1 .hof-rank { font-size: 32px; }
.hof-1 { background: linear-gradient(180deg, rgba(168,85,247,0.15), rgba(14,14,19,0.7)); border-color: rgba(168,85,247,0.3); }
.hof-thumb { width: 100%; aspect-ratio: 9/16; background-size: cover; background-position: center; }
.hof-info { padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; background: rgba(0,0,0,0.4); }
.hof-name { color: #fff; font-weight: 600; font-size: 14px; }
.hof-count { color: rgba(255,255,255,0.5); font-size: 12px; }
@media (max-width: 768px) { .hof-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   ROI CALCULATOR
═══════════════════════════════════════════════════════ */
.roi-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; }
.roi-card {
  max-width: 780px; margin: 40px auto 0;
  background: linear-gradient(180deg, rgba(22,22,28,0.7), rgba(14,14,19,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px);
}
.roi-row { margin-bottom: 22px; }
.roi-row label { display: block; color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 10px; font-weight: 500; }
.roi-row input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; background: linear-gradient(90deg, #a855f7, #06b6d4);
  border-radius: 999px; outline: none;
}
.roi-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; cursor: pointer;
  box-shadow: 0 4px 14px rgba(168,85,247,0.55), 0 0 0 4px rgba(168,85,247,0.18);
  transition: transform 0.2s;
}
.roi-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; cursor: pointer;
  box-shadow: 0 4px 14px rgba(168,85,247,0.55);
  border: none;
}
.roi-val { display: block; color: #fff; font-weight: 600; margin-top: 8px; font-size: 14px; font-variant-numeric: tabular-nums; }
.roi-result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.roi-block {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 18px 14px; text-align: center;
}
.roi-block.roi-highlight {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(6,182,212,0.2));
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 12px 32px rgba(168,85,247,0.18);
}
.roi-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 4vw, 36px); color: #fff; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.roi-lbl { display: block; color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.4; }
.roi-foot { text-align: center; color: rgba(255,255,255,0.7); margin-top: 26px; font-size: 14px; line-height: 1.6; }
.roi-foot strong { color: #fff; }
@media (max-width: 560px) { .roi-result { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   WORLD MAP
═══════════════════════════════════════════════════════ */
.world-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 110px) 0; }
.world-wrap { max-width: 1100px; margin: 40px auto 0; }
.world-map {
  width: 100%; border-radius: 22px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.06), transparent 70%);
  padding: 20px; overflow: hidden;
}
.world-map svg { width: 100%; height: auto; display: block; }
.wd {
  fill: url(#dotG);
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.8));
  animation: worldPulse 2.6s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.wd:nth-child(odd) { animation-delay: -1.3s; }
.wd:nth-child(3n) { animation-delay: -0.7s; }
.wd:nth-child(5n) { animation-delay: -2s; fill: #06b6d4; }
@keyframes worldPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}
.world-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.world-stat { text-align: center; padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; }
.world-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); color: #fff; }
.world-lbl { display: block; color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   CAFE COMPARISON + MEMBER CARD
═══════════════════════════════════════════════════════ */
.cafe-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 120px) 0; }
.cafe-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.cafe-title { text-align: left; font-size: clamp(28px, 4.4vw, 56px); margin-bottom: 28px; }
.cafe-list { list-style: none; padding: 0; margin: 0; }
.cafe-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: center; }
.cafe-list li:last-child { border-bottom: none; }
.cafe-list .cafe-x { font-size: 24px; flex-shrink: 0; opacity: 0.55; }
.cafe-list strong { display: block; color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.cafe-list span { display: block; color: rgba(255,255,255,0.55); font-size: 13.5px; }
.cafe-good { background: linear-gradient(90deg, rgba(168,85,247,0.10), transparent); margin: 6px -14px 0; padding: 16px 14px !important; border-radius: 14px; border-bottom: none !important; }
.cafe-good .cafe-x { opacity: 1; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
.cafe-good strong { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

/* Member card */
.cafe-right { perspective: 1400px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.member-card { width: 100%; max-width: 380px; aspect-ratio: 1.586/1; cursor: pointer; }
.mc-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.9s var(--ease-cinema); }
.member-card:hover .mc-inner { transform: rotateY(180deg); }
.mc-face {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}
.mc-front {
  background:
    linear-gradient(135deg, rgba(168,85,247,0.25), transparent 50%, rgba(6,182,212,0.25)),
    linear-gradient(180deg, #1a1a22 0%, #08080b 100%);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.mc-chip { width: 44px; height: 32px; border-radius: 6px; background: linear-gradient(135deg, #d4af37, #9c7d2c); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); }
.mc-band { position: absolute; top: 30px; right: 0; width: 70%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18)); }
.mc-brand { display: flex; align-items: center; gap: 8px; position: absolute; top: 22px; right: 22px; }
.mc-brand img { width: 26px; height: 26px; mix-blend-mode: screen; }
.mc-brand span { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; }
.mc-num { font-family: var(--font-head); font-size: clamp(16px, 2.2vw, 20px); letter-spacing: 0.18em; color: rgba(255,255,255,0.95); font-variant-numeric: tabular-nums; }
.mc-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mc-foot span { display: block; color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 3px; }
.mc-foot strong { display: block; color: #fff; font-size: 12px; letter-spacing: 0.1em; }
.mc-shine {
  position: absolute; inset: -100% -50%; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: mcShine 6s ease-in-out infinite;
}
@keyframes mcShine { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(50%, 50%); } }
.mc-back {
  background: linear-gradient(180deg, #0a0a0d, #14141a);
  padding: 22px; display: flex; flex-direction: column; justify-content: space-between;
  color: rgba(255,255,255,0.85);
  transform: rotateY(180deg);
}
.mc-stripe { width: calc(100% + 44px); margin: -22px -22px 0; height: 42px; background: #000; }
.mc-sig { display: flex; gap: 12px; align-items: center; }
.mc-sigtxt { flex: 1; background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6)); color: #0a0a0d; font-family: var(--font-head); font-style: italic; padding: 8px 12px; border-radius: 4px; font-size: 12px; }
.mc-cvv { font-family: monospace; font-size: 12px; color: rgba(255,255,255,0.7); }
.mc-legal { font-size: 10px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }
.mc-hint { color: rgba(255,255,255,0.4); font-size: 12px; }
@media (max-width: 860px) { .cafe-inner { grid-template-columns: 1fr; } .cafe-right { order: -1; } }

/* ═══════════════════════════════════════════════════════
   REFERRAL + VIP NEWSLETTER
═══════════════════════════════════════════════════════ */
.ref-section { position: relative; z-index: 2; padding: clamp(60px, 9vw, 100px) 0; }
.ref-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1100px; margin: 0 auto; }
.ref-card {
  background: linear-gradient(180deg, rgba(22,22,28,0.7), rgba(14,14,19,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px; padding: clamp(26px, 3.6vw, 42px);
  position: relative; overflow: hidden;
}
.ref-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 22px; padding: 1px;
  background: linear-gradient(135deg, rgba(168,85,247,0.3), transparent 50%, rgba(6,182,212,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.ref-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #c084fc; margin-bottom: 18px; font-weight: 600; }
.ref-badge-vip { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.35); color: #f59e0b; }
.ref-card h3 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); color: #fff; margin: 0 0 14px; line-height: 1.25; }
.ref-card p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.ref-stat { display: flex; align-items: baseline; gap: 10px; }
.ref-stat strong { font-family: var(--font-head); font-size: clamp(34px, 5vw, 48px); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ref-stat span { color: rgba(255,255,255,0.55); font-size: 14px; }
.ref-form { display: flex; gap: 8px; margin-bottom: 10px; }
.ref-form input {
  flex: 1; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08);
  color: #fff; padding: 12px 16px; border-radius: 12px; font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.ref-form input:focus { border-color: rgba(245,158,11,0.5); }
.ref-cta {
  padding: 12px 20px; border-radius: 12px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #f59e0b, #ec4899);
  color: #fff; font-weight: 600; font-size: 14px; font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ref-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(245,158,11,0.45); }
.ref-foot { display: block; color: rgba(255,255,255,0.4); font-size: 12px; }
@media (max-width: 760px) { .ref-inner { grid-template-columns: 1fr; } .ref-form { flex-direction: column; } }

/* ═══════════════════════════════════════════════════════
   CINEMA MODE TOGGLE
═══════════════════════════════════════════════════════ */
.cinema-toggle {
  position: fixed; bottom: 20px; left: 20px; z-index: 9990;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(20,20,26,0.85); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-cinema);
}
.cinema-toggle:hover { background: rgba(168,85,247,0.2); border-color: rgba(168,85,247,0.5); color: #fff; transform: scale(1.08); }
.cinema-overlay {
  position: fixed; inset: 0; z-index: 9985; pointer-events: none;
  background: #000; opacity: 0;
  transition: opacity 0.6s var(--ease-cinema);
}
body.cinema-mode .cinema-overlay { opacity: 0.92; pointer-events: auto; }
body.cinema-mode .navbar,
body.cinema-mode .scroll-progress,
body.cinema-mode .sticky-topbar,
body.cinema-mode .sticky-cta,
body.cinema-mode .live-proof,
body.cinema-mode .film-grain,
body.cinema-mode .lens-flare { display: none !important; }
body.cinema-mode .hero,
body.cinema-mode .mockup-wrap,
body.cinema-mode .phone-frame { position: relative; z-index: 9986; }
@media (max-width: 560px) { .cinema-toggle { bottom: 80px; } }

/* ═══════════════════════════════════════════════════════
   PHASE 25 — visual & micro additions
═══════════════════════════════════════════════════════ */

/* ── Days since launch counter ── */
.days-counter {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
  margin: 0 auto 26px; max-width: max-content;
  backdrop-filter: blur(10px);
}
.dc-lbl { text-transform: uppercase; letter-spacing: 0.18em; font-size: 10.5px; opacity: 0.7; }
.dc-val { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-head); font-variant-numeric: tabular-nums; }
.dc-val b { color: #fff; font-weight: 700; font-size: 14px; padding: 0 2px; }
.dc-val span { opacity: 0.5; font-size: 11px; margin-right: 4px; }

/* ── Breathing headline ── */
.hero-title.breathe { animation: breathe 6.5s ease-in-out infinite; transform-origin: center; }
@keyframes breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.006); filter: brightness(1.035); }
}

/* ── Section curtain reveal ── */
section { transition: clip-path 0.9s var(--ease-cinema); }
section.section-curtain {
  clip-path: inset(40% 0 40% 0);
  opacity: 0.4;
}
section.section-curtain.unveiled {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ── Metaball aurora (more fluid blob fusion) ── */
.hero-aurora { filter: blur(0); }
.hero-aurora::after {
  content: ''; position: absolute; inset: 0;
  filter: contrast(20) blur(0);
  pointer-events: none;
}

/* ── Pulse halo on primary CTA ── */
.btn-primary { position: relative; }
.btn-primary::after {
  content: ''; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid rgba(168,85,247,0.6);
  animation: ctaHalo 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaHalo {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ── Price ticker historical ── */
.price-ticker {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  margin: 0 auto 26px; flex-wrap: wrap; justify-content: center;
}
.pt-old { color: rgba(255,255,255,0.45); font-size: 16px; text-decoration: line-through; position: relative; }
.pt-old::after {
  content: ''; position: absolute; left: -2px; right: -2px; top: 50%;
  height: 2px; background: linear-gradient(90deg, transparent, #ef4444, transparent);
  transform: translateY(-50%) scaleX(0); transform-origin: left;
  animation: strikeDraw 1.4s var(--ease-cinema) forwards;
  animation-delay: 0.4s;
}
@keyframes strikeDraw { to { transform: translateY(-50%) scaleX(1); } }
.pt-arrow { color: rgba(255,255,255,0.35); font-size: 14px; }
.pt-mid { color: rgba(255,255,255,0.55); font-size: 17px; }
.pt-now { display: inline-flex; align-items: center; gap: 8px; }
.pt-now-num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 3vw, 28px);
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pt-now-tag { padding: 4px 10px; border-radius: 999px; background: linear-gradient(135deg, #a855f7, #06b6d4); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: #fff; }

/* ── Back-to-offer FAB ── */
.back-to-offer {
  position: fixed; bottom: 80px; right: 20px; z-index: 9990;
  display: none; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 999px; text-decoration: none;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  color: #fff; font-weight: 600; font-size: 13px;
  box-shadow: 0 10px 30px rgba(168,85,247,0.4);
  transition: transform 0.3s var(--ease-cinema), opacity 0.3s;
  opacity: 0; transform: translateY(20px);
}
.back-to-offer.visible { display: inline-flex; opacity: 1; transform: translateY(0); }
.back-to-offer:hover { transform: translateY(-2px) scale(1.04); }
@media (max-width: 560px) { .back-to-offer { bottom: 90px; right: 12px; padding: 9px 14px; font-size: 12px; } .back-to-offer span { display: none; } }

/* ── Fullscreen wallpaper modal ── */
.fs-modal {
  position: fixed; inset: 0; z-index: 99000;
  background: rgba(0,0,0,0.94); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-cinema);
}
.fs-modal.visible { opacity: 1; pointer-events: auto; }
.fs-img {
  max-width: min(90vw, 480px); aspect-ratio: 9/16;
  background-size: cover; background-position: center;
  border-radius: 28px; box-shadow: 0 40px 100px rgba(168,85,247,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  transform: scale(0.92); transition: transform 0.5s var(--ease-spring);
}
.fs-modal.visible .fs-img { transform: scale(1); }
.fs-caption { margin-top: 20px; color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; }
.fs-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 20px;
}
.fs-close:hover { background: rgba(255,255,255,0.16); }

/* ── Lock screen demo ── */
.lock-trigger {
  position: fixed; bottom: 20px; left: 76px; z-index: 9990;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(20,20,26,0.85); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-cinema);
}
.lock-trigger:hover { background: rgba(6,182,212,0.2); border-color: rgba(6,182,212,0.5); color: #fff; transform: scale(1.08); }
.lock-demo {
  position: fixed; inset: 0; z-index: 99100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(24px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-cinema);
}
.lock-demo.visible { opacity: 1; pointer-events: auto; }
.lock-wall {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55) blur(0);
  transform: scale(1.05);
}
.lock-ui {
  position: relative; z-index: 2; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 40px;
}
.lock-time { font-family: var(--font-head); font-weight: 200; font-size: clamp(90px, 18vw, 180px); letter-spacing: -0.04em; line-height: 1; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.lock-date { font-size: 17px; opacity: 0.85; letter-spacing: 0.02em; }
.lock-notif {
  margin-top: 60px; padding: 14px 18px; max-width: 380px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(20px);
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  text-align: left;
}
.lock-app { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.lock-text { font-size: 15px; font-weight: 500; }
.lock-slide { margin-top: 80px; font-size: 13px; opacity: 0.6; animation: lockSlide 1.6s ease-in-out infinite; letter-spacing: 0.06em; }
@keyframes lockSlide { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.85; } }
.lock-x {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px;
}

/* ── Speak manifesto button ── */
.speak-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85); font-size: 13px; font-family: var(--font-body);
  margin-top: 24px;
  transition: all 0.3s var(--ease-cinema);
}
.speak-btn:hover { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.4); color: #fff; }
.speak-btn.speaking { background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(6,182,212,0.3)); border-color: rgba(168,85,247,0.6); }
.speak-icon { display: flex; }
.speak-btn.speaking .speak-icon { animation: speakWave 0.6s ease-in-out infinite; }
@keyframes speakWave { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }

/* ── Mobile swipe reviews ── */
@media (max-width: 720px) {
  .reviews-section .reviews-grid,
  .reviews-section [class*="grid"]:not(.section-header) {
    display: flex !important; flex-wrap: nowrap !important;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; padding: 0 16px 20px; margin: 0 -16px;
    scrollbar-width: none;
  }
  .reviews-section [class*="grid"]::-webkit-scrollbar { display: none; }
  .reviews-section .review-card { flex: 0 0 86%; scroll-snap-align: center; }
}

/* ── Particle burst on wallpaper hover ── */
.preview-card, .hof-item, .quiz-wall { position: relative; overflow: hidden; }
.burst-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  pointer-events: none; will-change: transform, opacity;
  background: #fff;
}

/* ── Matrix grid behind pricing ── */
.pricing-section { position: relative; overflow: hidden; }
.pricing-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  animation: matrixDrift 30s linear infinite;
  opacity: 0.5;
}
@keyframes matrixDrift { to { background-position: 60px 60px; } }
.pricing-inner { position: relative; z-index: 1; }

/* Adjust positioning for stacked floating buttons (cinema, lock, back-to-offer) */
@media (max-width: 560px) { .lock-trigger { bottom: 132px; left: 12px; } .cinema-toggle { bottom: 80px; left: 12px; } }
