/* ============================================================
   לחשוב חיובי — Landing Page styles
   ============================================================ */

:root {
  --bg-deep: #050208;
  --bg-base: #0a0612;
  --bg-card: #1a0d22;
  --bg-card-2: #211029;
  --pink: #ec3a8b;
  --pink-bright: #ff4892;
  --pink-soft: #ff7eb6;
  --magenta: #b83694;
  --purple: #9d4edd;
  --purple-soft: #a366e0;
  --purple-deep: #6b1f9e;
  --purple-bg: #2a0e3e;
  --gold: #facc15;
  --gold-warm: #e9b923;
  --green: #22c55e;
  --text: #ffffff;
  --text-dim: #c0bccc;
  --text-muted: #8d869f;
  --text-faint: #5b536d;

  --grad-hero: radial-gradient(ellipse at 30% 20%, #4a1a6e 0%, transparent 55%),
               radial-gradient(ellipse at 80% 70%, #6b1f9e 0%, transparent 50%),
               radial-gradient(ellipse at 50% 100%, #ec3a8b22 0%, transparent 60%),
               #050208;
  --grad-pink: linear-gradient(135deg, #ff4892 0%, #ec3a8b 50%, #b83694 100%);
  --grad-purple: linear-gradient(135deg, #9d4edd 0%, #6b1f9e 100%);
  --grad-card: linear-gradient(180deg, rgba(40,15,55,0.6) 0%, rgba(15,8,25,0.4) 100%);
  --grad-text: linear-gradient(135deg, #ff7eb6 0%, #ec3a8b 30%, #9d4edd 100%);

  --shadow-pink: 0 12px 40px rgba(236,58,140,0.45), 0 0 80px rgba(236,58,140,0.2);
  --shadow-purple: 0 12px 40px rgba(157,78,221,0.4), 0 0 80px rgba(157,78,221,0.2);
  --shadow-card: 0 24px 60px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.05) inset;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

/* ============================================================
   Background field - layered atmosphere
   ============================================================ */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1200px 800px at 20% 10%, #4a1a6e44 0%, transparent 60%),
    radial-gradient(ellipse 900px 700px at 85% 35%, #6b1f9e33 0%, transparent 55%),
    radial-gradient(ellipse 1100px 600px at 50% 80%, #ec3a8b22 0%, transparent 55%),
    var(--bg-deep);
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, #fff8 0, transparent 1px),
    radial-gradient(1px 1px at 27% 64%, #fff5 0, transparent 1px),
    radial-gradient(1px 1px at 45% 22%, #fff6 0, transparent 1px),
    radial-gradient(1px 1px at 58% 88%, #fff8 0, transparent 1px),
    radial-gradient(1px 1px at 73% 14%, #fff4 0, transparent 1px),
    radial-gradient(2px 2px at 81% 49%, #ff7eb6cc 0, transparent 2px),
    radial-gradient(1px 1px at 91% 73%, #fff8 0, transparent 1px),
    radial-gradient(2px 2px at 17% 86%, #a366e0aa 0, transparent 2px),
    radial-gradient(1px 1px at 33% 36%, #fff5 0, transparent 1px),
    radial-gradient(1px 1px at 67% 31%, #fff6 0, transparent 1px);
  opacity: 0.7;
  animation: twinkle 6s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: 0.5; } 50% { opacity: 0.9; } }

/* mouse-driven aurora that floats with cursor */
.aurora {
  position: fixed;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(236,58,140,0.18) 0%, rgba(157,78,221,0.12) 30%, transparent 60%);
  filter: blur(40px);
  transition: transform 0.4s cubic-bezier(.2,.6,.2,1);
  mix-blend-mode: screen;
}

/* ============================================================
   Layout
   ============================================================ */
main { position: relative; z-index: 1; }
section { position: relative; padding: 140px 0; }
.container { width: min(1240px, 92vw); margin: 0 auto; position: relative; }
.narrow { width: min(880px, 92vw); margin: 0 auto; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; inset-inline: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,4,18,0.7);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1240px, 92vw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-pink);
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: var(--shadow-pink);
  transform: rotate(-3deg);
  transition: transform 0.3s;
}
.brand-mark:hover { transform: rotate(0deg) scale(1.05); }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.brand-sub { font-size: 12px; color: var(--text-muted); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px; border-radius: 100px;
  color: var(--text-dim); text-decoration: none; font-size: 14px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-pink {
  background: var(--grad-pink);
  color: white;
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(236,58,140,0.55), 0 0 100px rgba(236,58,140,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-lg { padding: 20px 38px; font-size: 18px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  color: white; text-decoration: none;
  transition: all 0.2s;
}
.store-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.store-btn .store-glyph { font-size: 28px; }
.store-btn .store-text { text-align: right; line-height: 1.1; }
.store-btn .store-text small { font-size: 11px; color: var(--text-muted); display: block; }
.store-btn .store-text strong { font-size: 17px; font-weight: 600; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(236,58,140,0.12);
  border: 1px solid rgba(236,58,140,0.3);
  color: var(--pink-soft);
  font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
h1.hero-title {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  text-wrap: balance;
}
h2.section-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 24px;
}
.section-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.5;
  text-wrap: pretty;
}

.gradient-text {
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}
.gold-text {
  background: linear-gradient(135deg, #facc15 0%, #e9b923 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ============================================================
   3D Scene utilities
   ============================================================ */
.scene-3d {
  perspective: 1800px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  width: min(1240px, 92vw);
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 2; }
.hero-stage {
  position: relative;
  height: 700px;
  transform-style: preserve-3d;
}
#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Floating phone in hero */
.phone-float {
  position: absolute;
  z-index: 3;
  transform-style: preserve-3d;
  animation: float-y 7s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translate3d(0,-12px,0) rotateY(-18deg) rotateX(4deg) rotateZ(-2deg); }
  50%      { transform: translate3d(0, 12px,0) rotateY(-15deg) rotateX(2deg) rotateZ(-1deg); }
}

/* ============================================================
   Phone mockup
   ============================================================ */
.phone {
  width: 320px;
  aspect-ratio: 9/19.2;
  border-radius: 44px;
  background: linear-gradient(180deg, #2a1838 0%, #15081f 100%);
  padding: 12px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 60px 120px rgba(0,0,0,0.7),
    0 0 80px rgba(236,58,140,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: var(--bg-base);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
}
.phone-time {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 14px; font-weight: 600;
  z-index: 10;
}
.phone-status {
  position: absolute;
  top: 20px; left: 26px;
  font-size: 13px;
  z-index: 10;
}

.gradient-header {
  background: linear-gradient(135deg, #6b1f9e 0%, #b83694 50%, #ec3a8b 100%);
  padding: 56px 22px 30px;
  text-align: right;
  position: relative;
  overflow: hidden;
}
.gradient-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 100%, rgba(255,255,255,0.12), transparent 60%);
}
.gradient-header h4 { font-size: 13px; font-weight: 500; opacity: 0.85; margin: 0; }
.gradient-header h3 { font-size: 22px; margin: 4px 0; font-weight: 700; }
.gradient-header p { font-size: 12px; opacity: 0.85; margin: 0; }

.bottom-nav {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(5,1fr);
  padding: 12px 6px 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-base);
}
.bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10px; color: var(--text-muted);
}
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-icon { font-size: 18px; }

/* ============================================================
   Floating 3D objects (decorative)
   ============================================================ */
.float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.7;
}

.heart-3d {
  font-size: 80px;
  filter: drop-shadow(0 20px 40px rgba(157,78,221,0.7));
  display: inline-block;
}

/* ============================================================
   Feature cards / pillars
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.pillar {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(236,58,140,0.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.pillar:hover::before { opacity: 1; }
.pillar:hover { transform: translateY(-6px) rotateX(2deg); box-shadow: var(--shadow-card); }
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 32px;
  margin-bottom: 20px;
  background: rgba(157,78,221,0.15);
  border: 1px solid rgba(157,78,221,0.3);
  transform: translateZ(40px);
}
.pillar h3 { font-size: 24px; margin-bottom: 10px; font-weight: 700; }
.pillar p { color: var(--text-dim); font-size: 16px; line-height: 1.55; margin: 0; }

/* ============================================================
   Split sections (text + phone)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split-stage {
  height: 640px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   Stats / Streak
   ============================================================ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 50px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
}
.stat .stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .stat-label { color: var(--text-dim); margin-top: 8px; font-size: 15px; }

/* ============================================================
   Crystal ball - 3D CSS sphere
   ============================================================ */
.crystal-stage {
  width: 100%; height: 580px;
  position: relative;
  perspective: 1400px;
  display: grid; place-items: center;
}
.crystal {
  width: 360px; height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #ffd8ee 0%, #ec3a8b 18%, #9d4edd 50%, #4a1a6e 85%, #1a0530 100%);
  box-shadow:
    inset 30px -40px 80px rgba(0,0,0,0.55),
    inset -30px 30px 60px rgba(255,255,255,0.15),
    0 60px 100px rgba(157,78,221,0.5),
    0 0 140px rgba(236,58,140,0.4);
  position: relative;
  animation: orb-float 9s ease-in-out infinite, orb-spin 30s linear infinite;
  transform-style: preserve-3d;
}
.crystal::before {
  content: "";
  position: absolute;
  top: 12%; left: 18%;
  width: 32%; height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85), transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}
.crystal::after {
  content: "";
  position: absolute;
  bottom: 14%; right: 22%;
  width: 18%; height: 10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55), transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
}
@keyframes orb-float {
  0%, 100% { transform: translateY(-14px); }
  50%      { transform: translateY(14px); }
}
@keyframes orb-spin {
  0%   { filter: hue-rotate(-15deg); }
  50%  { filter: hue-rotate(15deg); }
  100% { filter: hue-rotate(-15deg); }
}

.crystal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,126,182,0.25);
  pointer-events: none;
  animation: ring-pulse 5s ease-in-out infinite;
}
.crystal-ring.r1 { width: 420px; height: 420px; }
.crystal-ring.r2 { width: 500px; height: 500px; animation-delay: 1s; }
.crystal-ring.r3 { width: 580px; height: 580px; animation-delay: 2s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.15; transform: scale(1.06); }
}

.orbit-emoji {
  position: absolute;
  font-size: 36px;
  animation: orbit 15s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(280px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(280px) rotate(-360deg); }
}

/* ============================================================
   Testimonials — 3D card stack
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  perspective: 1400px;
}
.tcard {
  background: linear-gradient(180deg, rgba(40,15,55,0.9), rgba(15,8,25,0.7));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.tcard:nth-child(1) { transform: rotateY(8deg) translateZ(-20px); }
.tcard:nth-child(2) { transform: translateZ(20px); }
.tcard:nth-child(3) { transform: rotateY(-8deg) translateZ(-20px); }
.tcard:hover { transform: translateZ(40px) rotateY(0); }
.tcard .tquote {
  font-size: 18px; line-height: 1.6;
  text-wrap: pretty;
  margin-bottom: 24px;
}
.tcard .tquote::before {
  content: "”";
  font-size: 80px;
  line-height: 0.5;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
  font-family: serif;
}
.tperson { display: flex; align-items: center; gap: 12px; }
.tavatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-pink);
  display: grid; place-items: center;
  font-weight: 700;
}
.tname { font-weight: 600; }
.trole { font-size: 13px; color: var(--text-muted); }
.tstars { color: var(--gold); margin-top: 4px; font-size: 13px; letter-spacing: 2px; }

/* ============================================================
   Big CTA / footer
   ============================================================ */
.final-cta {
  text-align: center;
  padding: 200px 0 160px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,58,140,0.35) 0%, rgba(157,78,221,0.15) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-heart {
  font-size: 120px;
  display: inline-block;
  filter: drop-shadow(0 20px 60px rgba(157,78,221,0.7));
  animation: pulse-heart 3s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}
.final-cta h2 {
  font-size: clamp(48px, 7.5vw, 100px);
  margin: 24px 0;
}
.cta-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
  background: rgba(0,0,0,0.5);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  width: min(1240px, 92vw); margin: 0 auto;
  flex-wrap: wrap; gap: 20px;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.reveal.from-below {
  opacity: 0;
  transform: translateY(40px);
}
.reveal.from-below.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Daily journey — stepped 3D layout
   ============================================================ */
.journey-rail {
  margin-top: 80px;
  position: relative;
  perspective: 2000px;
}
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  transform-style: preserve-3d;
}
.journey-step:last-child { border-bottom: none; }
.j-num {
  font-size: 64px;
  font-weight: 900;
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}
.j-body h3 { font-size: 32px; margin-bottom: 8px; font-weight: 700; }
.j-body p { color: var(--text-dim); font-size: 17px; line-height: 1.6; margin: 0; max-width: 480px; }
.j-visual {
  height: 200px;
  border-radius: 24px;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 88px;
  position: relative; overflow: hidden;
  transform: rotateY(-8deg);
}
.j-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(236,58,140,0.25), transparent 60%);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .hero { padding-top: 110px; padding-bottom: 40px; }
  .hero-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage, .split-stage { height: 540px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .tcard:nth-child(n) { transform: none; }
  .journey-step { grid-template-columns: 1fr; text-align: right; }
  .j-visual { width: 100%; }
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-flex; }
}

@media (max-width: 720px) {
  /* Section rhythm */
  section { padding: 64px 0; }
  .hero { padding-top: 100px; padding-bottom: 32px; min-height: auto; }

  /* Launch ribbon — strip to essential */
  .launch-ribbon { font-size: 12px; padding: 8px 12px; gap: 8px; line-height: 1.35; }
  .launch-ribbon .ribbon-cta { display: none; }
  body.has-ribbon .nav { top: 40px; }

  /* Nav */
  .brand-sub { display: none; }
  .brand-mark { width: 38px; height: 38px; font-size: 18px; }
  .brand-name { font-size: 16px; }

  /* Hero copy */
  h1.hero-title { font-size: clamp(40px, 11vw, 60px); line-height: 1.05; }
  h2.section-title { font-size: clamp(32px, 8vw, 56px); }
  .section-sub { font-size: 16px; line-height: 1.55; }
  .eyebrow { font-size: 12px; padding: 6px 12px; margin-bottom: 20px; }

  /* CTAs stack full-width */
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .cta-row > * { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 24px; font-size: 16px; }

  /* Free badge — wrap items */
  .free-badge { flex-wrap: wrap; justify-content: center; padding: 10px 14px; font-size: 13px; gap: 8px; line-height: 1.4; }
  .free-badge .dot-sep { display: none; }
  .free-badge > span:not(.free-icon) { white-space: nowrap; }

  /* Hero stage / phone */
  .hero-stage { height: 460px; }
  .hero-stage .phone-float { position: relative !important; top: auto !important; right: auto !important; left: auto !important; margin: 0 auto; }
  .phone { width: 260px; border-radius: 36px; padding: 10px; }
  .phone-screen { border-radius: 28px; }
  .phone-notch { width: 80px; height: 22px; top: 12px; }
  .phone-time, .phone-status { top: 16px; font-size: 11px; }
  .gradient-header { padding: 46px 18px 22px; }
  .gradient-header h3 { font-size: 18px; }

  /* Phone float — keep but center & shrink */
  @keyframes float-y {
    0%, 100% { transform: translate3d(0,-10px,0) rotateY(-10deg) rotateX(3deg); }
    50%      { transform: translate3d(0, 10px,0) rotateY(-8deg) rotateX(2deg); }
  }
  .float-orb { width: 100px !important; height: 100px !important; filter: blur(30px); }

  /* Confidence split */
  .split-stage { height: 480px; }
  #phone-confidence { transform: rotateY(0) rotateX(0) !important; }

  /* Crystal ball — scale down rings + crystal */
  .crystal-stage { height: 440px; }
  .crystal { width: 240px; height: 240px; }
  .crystal-ring.r1 { width: 280px; height: 280px; }
  .crystal-ring.r2 { width: 330px; height: 330px; }
  .crystal-ring.r3 { width: 380px; height: 380px; }
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(190px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
  }
  .orbit-emoji { font-size: 28px; }

  /* Pillars */
  .pillar { padding: 28px 22px; }
  .pillar-icon { width: 56px; height: 56px; font-size: 26px; }
  .pillar h3 { font-size: 20px; }
  .pillar p { font-size: 15px; }

  /* Journey */
  .journey-step { padding: 28px 0; gap: 16px; }
  .j-num { font-size: 48px; }
  .j-body h3 { font-size: 24px; }
  .j-body p { font-size: 15px; }
  .j-visual { height: 160px; }
  .j-visual > div { font-size: 56px !important; }

  /* Stats */
  .stats-strip { padding-top: 36px; margin-top: 56px; gap: 18px; }
  .stat .stat-num { font-size: 36px; }
  .stat .stat-label { font-size: 13px; }

  /* Promise strip — stack vertically on phone */
  .promise-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    text-align: right;
    margin-top: 50px;
  }
  .promise-item { font-size: 14px; width: 100%; }

  /* Testimonials */
  .tcard { padding: 26px 22px; }
  .tcard .tquote { font-size: 16px; }

  /* Final CTA */
  .final-cta { padding: 110px 0 100px; }
  .final-cta-heart { font-size: 80px; }
  .final-cta h2 { font-size: clamp(36px, 9vw, 64px); }

  #final-form { flex-direction: column; align-items: stretch; gap: 10px; }
  #final-form .btn { width: 100%; justify-content: center; }
  #final-form .input-field { width: 100%; min-width: 0; }

  /* Store buttons */
  .cta-row .store-btn { width: 100%; justify-content: center; }
  .store-btn .store-text { text-align: right; }
  .soon-badge { top: -8px; inset-inline-end: 12px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }

  /* Modal */
  .modal-backdrop { padding: 12px; align-items: flex-end; }
  .modal-card { padding: 32px 22px 24px; border-radius: 24px 24px 12px 12px; max-height: 92vh; overflow-y: auto; }
  .modal-card h3 { font-size: 24px; }
  .modal-card .modal-sub { font-size: 14px; }
  .modal-perks { margin-top: 18px; padding-top: 18px; }
  .modal-perk { font-size: 13px; }

  /* Aurora — smaller blur footprint on mobile (perf) */
  .aurora { width: 40vmax; height: 40vmax; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .launch-ribbon { font-size: 11px; padding: 8px 10px; }
  h1.hero-title { font-size: 38px; }
  .phone { width: 240px; }
  .crystal { width: 210px; height: 210px; }
  .crystal-ring.r1 { width: 250px; height: 250px; }
  .crystal-ring.r2 { width: 290px; height: 290px; }
  .crystal-ring.r3 { width: 330px; height: 330px; }
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(165px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(165px) rotate(-360deg); }
  }
  .hero-stage { height: 420px; }
}

/* Hide nav-mobile-cta on desktop */
.nav-mobile-cta { display: none; }

/* Old @media 600 removed -- consolidated above */

/* utility */
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

/* ============================================================
   Free-forever badge
   ============================================================ */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(34,197,94,0.18) 0%, rgba(126,224,164,0.12) 100%);
  border: 1px solid rgba(126,224,164,0.45);
  color: #7ee0a4;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(126,224,164,0.05) inset, 0 8px 24px rgba(34,197,94,0.12);
}
.free-badge .free-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.25);
  display: grid; place-items: center;
  font-size: 12px;
}
.free-badge .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

/* Promise strip — sits as a section divider band */
.promise-strip {
  margin: 70px 0 -10px;
  padding: 22px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(157,78,221,0.08) 100%);
  border: 1px solid rgba(126,224,164,0.25);
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
  text-align: center;
}
.promise-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.promise-item .pi-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(126,224,164,0.18);
  border: 1px solid rgba(126,224,164,0.4);
  display: grid; place-items: center;
  color: #7ee0a4;
  font-size: 14px;
}
.promise-item .pi-sub { color: var(--text-muted); font-weight: 400; font-size: 13px; }

@media (max-width: 720px) {
  .promise-strip { gap: 18px; padding: 18px; }
  .promise-item { font-size: 13px; }
}
.launch-ribbon {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 110;
  background: linear-gradient(90deg, #4a1a6e 0%, #b83694 35%, #ec3a8b 65%, #4a1a6e 100%);
  background-size: 200% 100%;
  animation: ribbon-shimmer 12s linear infinite;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.launch-ribbon strong { font-weight: 700; }
.launch-ribbon .ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7ee0a4;
  box-shadow: 0 0 0 0 rgba(126,224,164,0.7);
  animation: pulse-dot 2s ease-out infinite;
}
.launch-ribbon .ribbon-cta {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}
.launch-ribbon .ribbon-cta:hover { background: rgba(255,255,255,0.28); }
@keyframes ribbon-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(126,224,164,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(126,224,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(126,224,164,0); }
}
body.has-ribbon .nav { top: 38px; }
body.has-ribbon { padding-top: 0; }

/* "soon" badges on store buttons */
.store-btn { position: relative; }
.store-btn[data-soon] { opacity: 0.78; cursor: not-allowed; }
.store-btn[data-soon]:hover { transform: none; }
.soon-badge {
  position: absolute;
  top: -10px; inset-inline-end: -8px;
  background: var(--grad-pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(236,58,140,0.5);
}

/* ============================================================
   Early access modal
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,2,8,0.78);
  backdrop-filter: blur(14px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal-card {
  width: min(520px, 96vw);
  background: linear-gradient(180deg, #1a0d22 0%, #0a0612 100%);
  border: 1px solid rgba(157,78,221,0.3);
  border-radius: var(--r-lg);
  padding: 44px 38px 36px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 30px 80px rgba(0,0,0,0.7),
    0 0 120px rgba(236,58,140,0.25);
  position: relative;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), opacity 0.4s ease;
}
.modal-backdrop.open .modal-card { transform: none; opacity: 1; }
.modal-close {
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  display: grid; place-items: center;
}
.modal-close:hover { background: rgba(255,255,255,0.18); }
.modal-card .modal-heart {
  font-size: 48px;
  display: inline-block;
  filter: drop-shadow(0 8px 24px rgba(157,78,221,0.7));
  animation: pulse-heart 3s ease-in-out infinite;
}
.modal-card h3 {
  font-size: 28px;
  margin: 16px 0 10px;
  font-weight: 800;
  text-wrap: balance;
}
.modal-card .modal-sub {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.modal-form {
  display: flex; flex-direction: column; gap: 12px;
}
.field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: -4px;
}
.input-field {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.input-field:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(236,58,140,0.06);
}
.input-field::placeholder { color: var(--text-faint); }
.modal-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--grad-pink);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: var(--shadow-pink);
  transition: transform 0.2s, box-shadow 0.3s;
}
.modal-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(236,58,140,0.55);
}
.modal-btn:disabled { opacity: 0.6; cursor: wait; }
.modal-perks {
  display: grid; gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.modal-perk {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px;
  color: var(--text-dim);
}
.modal-perk-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(126,224,164,0.18);
  border: 1px solid rgba(126,224,164,0.3);
  display: grid; place-items: center;
  color: #7ee0a4;
  font-size: 13px;
}
.modal-success {
  text-align: center;
  padding: 20px 0 4px;
}
.modal-success .modal-heart { font-size: 64px; }
.modal-success h3 { font-size: 30px; margin-top: 16px; }
.modal-success p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.modal-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-top: 6px;
}

/* Inline counter / scarcity */
.access-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
}
.access-counter b { color: var(--pink-soft); font-weight: 700; }
.access-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 14px;
}
.access-bar-fill {
  height: 100%;
  width: 68%;
  background: var(--grad-pink);
  border-radius: 100px;
  box-shadow: 0 0 14px rgba(236,58,140,0.7);
  animation: bar-shimmer 3s ease-in-out infinite;
}
@keyframes bar-shimmer {
  0%, 100% { box-shadow: 0 0 14px rgba(236,58,140,0.7); }
  50%      { box-shadow: 0 0 24px rgba(236,58,140,1); }
}

@media (max-width: 600px) {
  /* legacy block — kept for the small bits not already in 720 block */
  .modal-card { padding: 28px 20px 22px; }
}
