/* ═══════════════════════════════════════════════════════
   AstroKamya™ · V7 · BRAND SYNC EDITION
   Unified with Cinematic Landing — Premium Design System
   Colors: Cosmic Void · Celestial Gold · Sacred Violet ·
           Destiny Rose · Aurora Teal · Starlight
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

:root {
  /* ── Brand Colors (synced with cinematic landing) ── */
  --bg: #0A0618;
  --bg-light: #110B2E;
  --bg-mid: #1A1145;
  --surface: rgba(17,11,46,0.65);
  --surface-2: rgba(17,11,46,0.75);
  --surface-3: rgba(17,11,46,0.85);
  --border: rgba(124,58,237,0.12);
  --border-h: rgba(255,184,0,0.35);
  --text-1: #F0EAFF;
  --text-2: #B8B0D4;
  --text-3: #6E628A;
  --gold: #FFB800;
  --gold-light: #FFCB45;
  --gold-dark: #E5A600;
  --amber: #FFCB45;
  --rose: #E8367C;
  --rose-light: #FF6B9D;
  --violet: #7C3AED;
  --violet-light: #9B6DFF;
  --violet-dark: #5B21B6;
  --teal: #06B6D4;
  --teal-light: #22D3EE;
  --grad: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  --grad-accent: linear-gradient(135deg, var(--gold), var(--rose));
  --grad-violet: linear-gradient(135deg, var(--violet), var(--violet-light), var(--violet-dark));
  --grad-cosmos: linear-gradient(135deg, #0A0618 0%, #110B2E 40%, #1A0A3E 70%, #0A0618 100%);
  --font: 'Clash Display', 'Space Grotesk', sans-serif;
  --font-b: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-space: 'Space Grotesk', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--text-1); font-family: var(--font-b); font-size: 15px; line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input { font-family: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 580px; }
.center { text-align: center; }
em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Gold / Shimmer Text Classes (from cinematic landing) ── */
.gold-text {
  background: linear-gradient(135deg, #FFB800 0%, #FFCB45 40%, #E5A600 70%, #FFB800 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.shimmer-text {
  background: linear-gradient(110deg, #E5A600 0%, #FFB800 25%, #FFCB45 50%, #FFB800 75%, #E5A600 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.violet-text {
  background: linear-gradient(135deg, #7C3AED 0%, #9B6DFF 50%, #B794FF 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Hero Text Shadows (from cinematic landing) ── */
.hero-text-shadow { text-shadow: 0 2px 20px rgba(10,6,24,0.95), 0 4px 40px rgba(10,6,24,0.8), 0 0 80px rgba(10,6,24,0.6); }
.hero-text-shadow-soft { text-shadow: 0 1px 12px rgba(10,6,24,0.9), 0 2px 24px rgba(10,6,24,0.6); }

/* ── Glass Card System (from cinematic landing) ── */
.glass-card {
  background: rgba(17, 11, 46, 0.65);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(240,234,255,0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(240,234,255,0.06), 0 0 30px rgba(124,58,237,0.08);
}
.glass-gold { background: rgba(255,184,0,0.08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,184,0,0.2); }

/* ── Shimmer CTA Button (from cinematic landing) ── */
.shimmer-btn {
  background: linear-gradient(110deg, #E5A600 0%, #FFB800 20%, #FFCB45 50%, #FFB800 80%, #E5A600 100%);
  background-size: 200% 100%; animation: shimmerText 3s ease-in-out infinite;
  color: var(--bg); font-weight: 700; border: none;
  position: relative; overflow: hidden;
  font-family: var(--font);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  box-shadow: 0 2px 16px rgba(255,184,0,0.25), 0 6px 36px rgba(255,184,0,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.shimmer-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); animation: btnSweep 4s ease-in-out infinite; pointer-events: none;
}
.shimmer-btn:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 4px 24px rgba(255,184,0,0.4), 0 12px 56px rgba(255,184,0,0.2), 0 0 80px rgba(255,184,0,0.15), inset 0 1px 0 rgba(255,255,255,0.35); }
@keyframes btnSweep { 0% { left: -100%; } 50% { left: 150%; } 100% { left: 150%; } }

/* ── Selection (brand violet) ── */
::selection { background: rgba(124,58,237,0.35); color: #ffffff; }

/* ── Scrollbar (brand gold) ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--gold), var(--gold-dark)); border-radius: 10px; }

/* ═══════ MESH GRADIENT BG (cosmic void with brand colors) ═══════ */
#mesh-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: radial-gradient(ellipse at 65% 35%, #130A2A 0%, #0D0820 30%, var(--bg) 65%);
}
.mesh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.orb-1 { width: 700px; height: 700px; background: rgba(255,184,0,0.1); top: -15%; left: -10%; animation: orbFloat1 25s ease-in-out infinite; }
.orb-2 { width: 600px; height: 600px; background: rgba(124,58,237,0.12); top: 15%; right: -10%; animation: orbFloat2 30s ease-in-out infinite; }
.orb-3 { width: 500px; height: 500px; background: rgba(232,54,124,0.08); bottom: 5%; left: 25%; animation: orbFloat3 22s ease-in-out infinite; }
.orb-4 { width: 450px; height: 450px; background: rgba(6,182,212,0.06); top: 55%; left: -8%; animation: orbFloat2 28s ease-in-out infinite reverse; }
.orb-5 { width: 550px; height: 550px; background: rgba(155,109,255,0.06); bottom: -10%; right: 5%; animation: orbFloat1 35s ease-in-out infinite reverse; }

@keyframes orbFloat1 { 0%,100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(60px, -40px) scale(1.1); } 66% { transform: translate(-30px, 50px) scale(0.95); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-50px, 30px) scale(0.9); } 66% { transform: translate(80px, -20px) scale(1.15); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -60px) scale(1.1); } }

/* ═══════ THREE.JS CELESTIAL CANVAS ═══════ */
#stars-canvas {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  width: 100vw !important; height: 100vh !important;
}

/* ═══════ URGENCY BANNER ═══════ */
#urgency-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  background: linear-gradient(92deg, #7C3AED, #E8367C, #FFB800);
  background-size: 200% 200%;
  padding: 8px 0;
  animation: bannerShimmer 4s ease-in-out infinite;
}
@keyframes bannerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ub-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; font-weight: 500; color: #fff;
}
.ub-icon { font-size: 14px; }
.ub-timer { font-family: var(--font-m); font-weight: 600; font-size: 12px; background: rgba(0,0,0,0.2); padding: 2px 8px; border-radius: 4px; }
.ub-cta {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 14px; border-radius: 6px;
  background: rgba(0,0,0,0.25); font-weight: 700; font-size: 12px; color: #fff;
  transition: background 0.3s;
}
.ub-cta:hover { background: rgba(0,0,0,0.4); }

/* ═══════ NAVBAR ═══════ */
#nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.4s;
}
#nav .wrap { display: flex; align-items: center; justify-content: space-between; }
#nav.scrolled { background: rgba(10,10,15,0.85); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--border); padding: 10px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-space); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.logo-icon { font-size: 18px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-mandala { width: 40px; height: 40px; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(124,58,237,0.3)); transition: filter 0.3s; }
.logo:hover .logo-mandala { filter: drop-shadow(0 0 12px rgba(124,58,237,0.5)); }
.logo-text { font-family: var(--font-space); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.logo-astro { color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
.logo-kamya { color: #F7C948; -webkit-text-fill-color: #F7C948; background: none; }
.tm { font-size: 9px; color: var(--text-3); vertical-align: super; font-weight: 400; -webkit-text-fill-color: var(--text-3); }
.foot-mandala { width: 72px; height: 72px; filter: drop-shadow(0 0 8px rgba(255,184,0,0.25)); }
.foot-logo-img { height: 48px; width: auto; object-fit: contain; filter: drop-shadow(0 0 4px rgba(255,184,0,0.2)); }
.nav-r { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 13px; color: var(--text-2); transition: all 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 1.5px;
  background: var(--gold); transition: all 0.3s var(--ease); transform: translateX(-50%);
}
.nav-link:hover { color: var(--text-1); }
.nav-link:hover::after { width: 100%; }

/* — Nav Icon Links (Apple-minimal + Liquid Glow) — */
.nav-link-icon {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 6px 14px; border-radius: 10px;
  position: relative; overflow: hidden;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-link-icon::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 10px; opacity: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,184,0,0.15) 0%, rgba(124,58,237,0.08) 50%, transparent 70%);
  filter: blur(4px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), filter 0.4s var(--ease);
  transform: scale(0.6);
  z-index: -1;
}
.nav-link-icon::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; width: 0; height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--violet));
  transition: width 0.4s var(--ease);
  transform: translateX(-50%);
}
.nav-link-icon:hover {
  color: var(--text-1); transform: translateY(-1px);
}
.nav-link-icon:hover::before {
  opacity: 1; transform: scale(1.2); filter: blur(8px);
}
.nav-link-icon:hover::after {
  width: 60%;
}
.nav-link-icon:hover .nav-icon {
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255,184,0,0.5));
  transform: scale(1.15);
}
.nav-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--text-3);
  transition: color 0.35s var(--ease), filter 0.4s var(--ease), transform 0.35s var(--ease);
}

/* Liquid glow keyframe for nav icons */
@keyframes navLiquidGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.nav-link-icon:hover::before {
  animation: navLiquidShift 2s ease-in-out infinite;
}
@keyframes navLiquidShift {
  0%, 100% { background: radial-gradient(circle at 25% 50%, rgba(255,184,0,0.18) 0%, rgba(124,58,237,0.06) 60%, transparent 80%); }
  50% { background: radial-gradient(circle at 75% 50%, rgba(124,58,237,0.18) 0%, rgba(255,184,0,0.06) 60%, transparent 80%); }
}

/* — Your Future dropdown — */
.nav-dropdown-wrap { position: relative; }
.nav-link-dd { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-link-dd svg { transition: transform 0.3s; }
.nav-dropdown-wrap:hover .nav-link-dd svg,
.nav-dropdown-wrap.open .nav-link-dd svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 180px; padding: 8px;
  background: rgba(18,18,24,0.92); backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.25s var(--ease);
}
/* Invisible bridge fills the gap between the link and the dropdown */
.nav-dropdown::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.ndd-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  font-size: 13px; color: var(--text-2); border-radius: 8px;
  transition: all 0.2s;
}
.ndd-item:hover { background: rgba(255,184,0,0.08); color: var(--text-1); transform: translateX(4px); }
.ndd-icon { font-size: 15px; width: 22px; text-align: center; }
.ndd-divider { height: 1px; background: var(--border); margin: 4px 0; }
.ndd-highlight { color: #E8367C !important; font-weight: 600; }
.ndd-highlight:hover { background: rgba(232,54,124,0.08); }

/* — CTA glow pulse — */
.nav-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-btn-glow {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255,184,0,0.2), 0 0 0 0 rgba(255,184,0,0.3); }
  50% { box-shadow: 0 4px 24px rgba(255,184,0,0.35), 0 0 0 6px rgba(255,184,0,0); }
}
.nav-cta-sub {
  font-size: 9px; color: var(--text-3); letter-spacing: 0.02em;
  opacity: 0.7; white-space: nowrap;
}

/* ═══════ BUTTONS (brand-aligned shimmer gold) ═══════ */
.cta-btn, .btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 12px;
  background: linear-gradient(110deg, #E5A600 0%, #FFB800 20%, #FFCB45 50%, #FFB800 80%, #E5A600 100%);
  background-size: 200% 100%;
  animation: shimmerText 3s ease-in-out infinite;
  font-family: var(--font); font-weight: 700; font-size: 13px; color: var(--bg);
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(255,184,0,0.25), 0 6px 36px rgba(255,184,0,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.cta-btn::before, .btn-glow::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg); animation: btnSweep 4s ease-in-out infinite; pointer-events: none;
}
.btn-glow { padding: 14px 28px; font-size: 14px; }
.btn-glow:hover, .cta-btn:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 4px 24px rgba(255,184,0,0.4), 0 12px 56px rgba(255,184,0,0.2), 0 0 80px rgba(255,184,0,0.15); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: 1px solid rgba(124,58,237,0.2); border-radius: 12px;
  font-weight: 500; font-size: 14px; color: var(--text-2);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-outline:hover { border-color: var(--border-h); color: var(--text-1); background: rgba(255,184,0,0.08); }
.full { width: 100%; justify-content: center; }
.btn-xl { padding: 18px 40px; font-size: 16px; border-radius: 14px; }

/* ═══════ HERO ═══════ */
#hero {
  position: relative; z-index: 2; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px; overflow-x: clip;
}
.hero-wrap { position: relative; width: 100%; }

/* Chart SVG — blended into background */
.hero-chart-bg {
  position: absolute; top: 50%; right: -8%; transform: translateY(-50%);
  width: 700px; height: 700px; pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 70%);
  opacity: 0.85;
}
#hero-chart { width: 100%; height: 100%; }

/* Hero text overlays chart */
.hero-content { position: relative; z-index: 3; max-width: 680px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-3); margin-bottom: 28px;
}
.pill-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; transform: scale(1.3); } }
.hero-pill strong { font-family: var(--font-m); color: var(--text-2); }

#hero h1, #hero-title {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px); line-height: 1.1;
  letter-spacing: -0.04em; margin-bottom: 24px;
  min-height: 3.4em;
}

/* Typewriter lines */
.ht-line { display: block; overflow: visible; white-space: nowrap; }
.ht-line-2 { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ht-cursor {
  display: inline-block; font-weight: 300; color: var(--gold);
  animation: cursorBlink 0.75s step-end infinite;
  margin-left: 2px; font-size: 0.85em;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }

/* Hero personalization line */
.hero-personal {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 32px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(124,58,237,0.06));
  border: 1px solid rgba(255,184,0,0.15);
  backdrop-filter: blur(8px);
  animation: personalPulse 3s ease-in-out infinite;
}
.hp-icon {
  color: var(--gold); font-size: 14px;
  animation: hpSpin 4s linear infinite;
}
@keyframes hpSpin { to { transform: rotate(360deg); } }
.hp-text {
  font-size: 14px; font-weight: 500; color: var(--gold);
  font-style: italic;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hp-text.fade { opacity: 0; transform: translateY(6px); }
@keyframes personalPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,184,0,0.05); }
  50% { box-shadow: 0 0 30px rgba(255,184,0,0.12); }
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }

/* Hero trust bar */
.hero-trust {
  display: flex; align-items: center; gap: 0;
  padding: 12px 0;
  font-size: 12px; color: var(--text-3);
}
.ht-item { display: flex; align-items: center; gap: 6px; padding: 0 16px; }
.ht-item:first-child { padding-left: 0; }
.ht-item strong { color: var(--text-1); font-weight: 600; }
.ht-icon { font-size: 14px; }
.ht-sep { width: 1px; height: 16px; background: var(--border); }

/* Ring animation */
.ring-draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: ringIn 2s var(--ease) forwards; }
.ring-draw:nth-child(2) { animation-delay: 0.15s; }
.ring-draw:nth-child(3) { animation-delay: 0.3s; }
.ring-draw:nth-child(4) { animation-delay: 0.45s; }
@keyframes ringIn { to { stroke-dashoffset: 0; } }
.y-pulse { animation: yp 3s ease-in-out infinite; }
@keyframes yp { 0%,100% { r: 20; opacity: 0.6; } 50% { r: 23; opacity: 1; } }
.zodiac-rotate { animation: zodiacSpin 120s linear infinite; transform-origin: 200px 200px; }
@keyframes zodiacSpin { to { transform: rotate(360deg); } }
.yantra-spin { animation: yantraSpin 90s linear infinite reverse; transform-origin: 200px 200px; }
@keyframes yantraSpin { to { transform: rotate(360deg); } }
.center-pulse { animation: cpulse 2s ease-in-out infinite; }
@keyframes cpulse { 0%,100% { r: 5; opacity: 0.7; } 50% { r: 7; opacity: 1; } }

/* Scroll reveal & Cinematic Animations */
.r { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.r.v { opacity: 1; transform: translateY(0); }

.reveal-fade { opacity: 0; transition: opacity 1s var(--ease); }
.reveal-fade.v { opacity: 1; }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.v { opacity: 1; transform: scale(1); }

.reveal-blur-up { opacity: 0; transform: translateY(30px); filter: blur(10px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal-blur-up.v { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Floating Elements Animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.anim-float { animation: float 6s ease-in-out infinite; will-change: transform; }
.anim-float-slow { animation: float 10s ease-in-out infinite reverse; will-change: transform; }

/* ═══════ SECTION SYSTEM ═══════ */
section { position: relative; z-index: 2; padding: 80px 0; }
.sec-label { font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
h2 { font-family: var(--font); font-weight: 700; font-size: clamp(28px, 4.5vw, 42px); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 48px; }

/* ═══════ BIRTH INPUT + INFOGRAPHIC — MERGED ═══════ */
#birth-input { padding: 80px 0; }

/* Side-by-side split layout */
.input-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── LEFT: Infographic Panel ── */
.infographic-panel {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.infographic-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #FFB800, #E8367C, #7C3AED);
  opacity: 0.6;
}
.infographic-bg-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
  opacity: 0.4;
}

/* Header */
.ig-header { margin-bottom: 24px; position: relative; z-index: 1; }
.ig-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.15);
  margin-bottom: 12px;
}
.ig-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: igDotPulse 1.5s ease-in-out infinite;
}
@keyframes igDotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.ig-header h3 {
  font-family: var(--font); font-size: 22px; font-weight: 700;
  line-height: 1.25; letter-spacing: -0.02em; margin: 0;
}
.ig-header h3 em {
  font-style: normal; background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Vertical Timeline ── */
.ig-timeline {
  flex: 1; display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 1;
}
.ig-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  align-items: start;
}

/* Node column (left side of timeline) */
.ig-node-col {
  display: flex; flex-direction: column; align-items: center;
}
.ig-node {
  position: relative; width: 40px; height: 40px; flex-shrink: 0;
}
.ig-node svg { width: 100%; height: 100%; }
.ig-node-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(255,184,0,0.2);
  animation: igRingSpin 8s linear infinite;
}
.ig-ring-rose { border-color: rgba(232,54,124,0.2); animation-duration: 6s; animation-direction: reverse; }
.ig-ring-violet { border-color: rgba(124,58,237,0.2); animation-duration: 10s; }
@keyframes igRingSpin { to { transform: rotate(360deg); } }
.ig-node-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 13px; font-weight: 800; color: var(--bg);
  pointer-events: none;
  text-shadow: 0 0 2px rgba(255,255,255,0.3);
}

/* Connector line between nodes */
.ig-connector {
  position: relative; width: 2px; flex: 1; min-height: 40px;
  margin: 4px auto;
}
.ig-connector-line {
  position: absolute; inset: 0; width: 2px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,184,0,0.4), rgba(232,54,124,0.2));
  border-radius: 2px;
}
.ig-line-rose {
  background: linear-gradient(180deg, rgba(232,54,124,0.4), rgba(124,58,237,0.2));
}
.ig-connector-pulse {
  position: absolute; top: 0; left: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255,184,0,0.6);
  animation: igPulseDown 2.5s ease-in-out infinite;
  will-change: transform, opacity;
}
.ig-pulse-rose {
  background: var(--rose);
  box-shadow: 0 0 8px rgba(232,54,124,0.6);
  animation-delay: 0.8s;
}
@keyframes igPulseDown {
  0% { transform: translate(-50%, 0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(-50%, 40px); opacity: 0; }
}

/* Content cards */
.ig-content {
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  margin-bottom: 8px;
}
.ig-step:hover .ig-content {
  border-color: rgba(255,184,0,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.ig-icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 10px;
  font-size: 16px; margin-bottom: 8px;
}
.ig-icon-input { background: rgba(255,184,0,0.1); }
.ig-icon-scan { background: rgba(232,54,124,0.1); }
.ig-icon-predict { background: rgba(124,58,237,0.1); }
.ig-content h4 {
  font-family: var(--font); font-size: 15px; font-weight: 700;
  margin: 0 0 4px; letter-spacing: -0.01em;
}
.ig-content p {
  font-size: 12.5px; color: var(--text-3); line-height: 1.5; margin: 0;
}

/* Mini data tags */
.ig-mini-cards {
  display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap;
}
.ig-mini {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 600;
  background: rgba(255,184,0,0.06); border: 1px solid rgba(255,184,0,0.12);
  color: var(--text-2); letter-spacing: 0.02em;
}

/* Scanner bar */
.ig-scanner-bar {
  margin-top: 10px; position: relative;
  height: 6px; border-radius: 4px; background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.ig-scanner-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 75%;
  border-radius: 4px;
  background: linear-gradient(90deg, #E8367C, #FFB800);
  animation: igScanPulse 3s ease-in-out infinite;
  will-change: opacity;
}
.ig-scanner-bar span {
  display: block; margin-top: 6px;
  font-size: 10px; color: var(--text-3); font-weight: 500;
}
@keyframes igScanPulse {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Confidence bar */
.ig-confidence {
  margin-top: 10px; display: flex; align-items: center; gap: 10px;
}
.ig-conf-bar {
  flex: 1; height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.06); overflow: hidden;
}
.ig-conf-fill {
  height: 100%; width: 94%; border-radius: 4px;
  background: linear-gradient(90deg, #7C3AED, #06B6D4);
  animation: igConfGrow 2s ease-out forwards;
}
@keyframes igConfGrow { from { width: 0; } to { width: 94%; } }
.ig-confidence span {
  font-size: 10px; color: var(--teal); font-weight: 600; white-space: nowrap;
}

/* Live stats at bottom */
.ig-live-stats {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.ig-stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-3);
}
.ig-stat strong { color: #22C55E; }
.ig-stat-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: igDotPulse 1.5s ease-in-out infinite;
}

/* ── RIGHT: Form Card Wrapper ── */
.input-card-wrap {
  display: flex; flex-direction: column; justify-content: center;
}
.input-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden;
  flex: 1;
}
.input-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); opacity: 0.6; }
.step { display: none; }
.step.active { display: block; animation: su 0.5s var(--ease); }
@keyframes su { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }

/* Destiny teaser */
.destiny-teaser {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,165,0,0.06), rgba(232,54,124,0.04));
  border: 1px solid rgba(255,165,0,0.15); border-radius: 12px;
  animation: teaserGlow 2.5s ease-in-out infinite;
}
.dt-pulse {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #FF8C00;
  box-shadow: 0 0 8px rgba(255,140,0,0.5);
  animation: dtBlink 1.5s ease-in-out infinite;
  will-change: opacity;
}
@keyframes dtBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.dt-text { font-size: 13px; color: #FFB347; font-weight: 500; line-height: 1.4; }
@keyframes teaserGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255,165,0,0); border-color: rgba(255,165,0,0.15); }
  50% { box-shadow: 0 2px 12px rgba(255,165,0,0.06); border-color: rgba(255,165,0,0.25); }
}

/* Form trust bar */
.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; font-size: 12px; color: var(--text-3);
  flex-wrap: wrap;
}
.form-trust span:nth-child(even) { color: rgba(255,255,255,0.15); }

/* Discover preview section */
.discover-preview {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.discover-label {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.discover-items { display: flex; flex-direction: column; gap: 8px; }
.discover-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.discover-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,184,0,0.15);
  transform: translateX(4px);
}
.di-icon { font-size: 16px; flex-shrink: 0; }
.di-text { flex: 1; font-size: 12.5px; color: var(--text-2); font-weight: 500; }
.di-badge {
  font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0;
}
.di-gold { background: rgba(255,184,0,0.12); color: #FFB800; }
.di-rose { background: rgba(232,54,124,0.12); color: #E8367C; }
.di-teal { background: rgba(6,182,212,0.12); color: #06B6D4; }

/* Live activity feed */
.live-activity {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.la-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.la-count {
  margin-left: auto; font-size: 10px; color: var(--gold); opacity: 0.7;
  font-weight: 600; letter-spacing: 0.02em;
}
.la-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: igDotPulse 1.5s ease-in-out infinite;
}
.la-title {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.la-feed { display: flex; flex-direction: column; gap: 6px; min-height: 88px; max-height: 88px; overflow: hidden; }
.la-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: 11.5px; color: var(--text-3);
  animation: laSlideIn 0.6s var(--ease) both;
}
.la-anim-1 { animation-delay: 0.3s; }
.la-anim-2 { animation-delay: 0.6s; }
@keyframes laSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.la-flag {
  font-size: 18px; flex-shrink: 0; width: 24px; text-align: center;
}
.la-time {
  margin-left: auto; font-size: 10px; color: var(--text-3);
  opacity: 0.6; white-space: nowrap;
}
/* Activity feed cycling animations */
.la-fade-in {
  animation: laFadeIn 0.5s var(--ease) both;
}
.la-fade-out {
  animation: laFadeOut 0.4s var(--ease) both;
}
@keyframes laFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes laFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}
.fld { display: flex; flex-direction: column; gap: 5px; }
.fld label { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; }
.fld input {
  padding: 14px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text-1); font-size: 14px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fld input:focus { border-color: rgba(255,184,0,0.5); box-shadow: 0 0 0 3px rgba(255,184,0,0.1); }
.fld input::placeholder { color: var(--text-3); }
.note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 14px; }

/* Loader */
.loader-wrap { text-align: center; padding: 40px 0; }
.loader-ring { width: 80px; height: 80px; margin: 0 auto 24px; position: relative; display: flex; align-items: center; justify-content: center; }
.lr1,.lr2,.lr3 { position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent; }
.lr1 { border-top-color: var(--gold); animation: sp 1s linear infinite; }
.lr2 { inset: 8px; border-right-color: var(--rose); animation: sp 1.5s linear infinite reverse; }
.lr3 { inset: 16px; border-bottom-color: var(--violet); animation: sp 2s linear infinite; }
.lr-icon { font-size: 16px; position: relative; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes sp { to { transform: rotate(360deg); } }
.loader-steps { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ls { font-size: 13px; color: var(--text-3); opacity: 0; transition: all 0.4s; }
.ls.on { opacity: 1; color: var(--text-2); }
.ls.done { opacity: 1; color: #22C55E; }

/* Result */
.result-head { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; }
.result-glyph { width: 44px; height: 44px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.result-head h3 { font-family: var(--font); font-size: 18px; margin-bottom: 0; }
.r-signs { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.result-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.res-item { display: flex; gap: 12px; padding: 16px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); font-size: 13px; color: var(--text-2); line-height: 1.7; animation: su 0.5s var(--ease) both; }
.res-item:nth-child(2) { animation-delay: 0.1s; }
.res-item:nth-child(3) { animation-delay: 0.2s; }
.res-item.gold { border-color: rgba(255,184,0,0.25); background: linear-gradient(135deg, rgba(255,184,0,0.06), var(--surface)); }
.res-item strong { color: var(--text-1); }
.ri-icon { font-size: 18px; flex-shrink: 0; padding-top: 1px; }
.ri-tag { display: inline-block; margin-top: 6px; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: rgba(34,197,94,0.12); color: #22C55E; letter-spacing: 0.04em; }

/* ═══════ HOW IT WORKS — ORBITAL PROCESS ═══════ */
#how-it-works { padding: 72px 0 80px; }

/* Orbital container */
.orbital-wrap { margin-bottom: 64px; }
.orbital-container {
  position: relative; max-width: 700px; margin: 0 auto;
  aspect-ratio: 3/2;
}

/* SVG background */
.orbital-svg {
  width: 100%; height: 100%; position: absolute; inset: 0;
}

/* Orbit ring subtle rotation */
.orbit-ring-1 { animation: orbitSpin1 60s linear infinite; transform-origin: 300px 200px; }
.orbit-ring-2 { animation: orbitSpin2 45s linear infinite reverse; transform-origin: 300px 200px; }
.orbit-ring-3 { animation: orbitSpin3 30s linear infinite; transform-origin: 300px 200px; }
@keyframes orbitSpin1 { to { transform: rotate(360deg); } }
@keyframes orbitSpin2 { to { transform: rotate(360deg); } }
@keyframes orbitSpin3 { to { transform: rotate(360deg); } }

/* Orbital node labels */
.orbital-node {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 10px;
  background: rgba(10,10,15,0.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-m); font-size: 11px; font-weight: 500;
  color: var(--text-2); letter-spacing: 0.02em; text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.4s var(--ease);
  z-index: 2;
}
.orbital-node:hover {
  border-color: rgba(255,184,0,0.3);
  color: var(--text-1);
  box-shadow: 0 4px 20px rgba(255,184,0,0.1);
  transform: translateY(-3px) !important;
}

/* Position nodes around the orbital diagram */
.on-1 { top: 5%; left: 50%; transform: translateX(-50%); animation: nodeFloat 4s ease-in-out infinite; }
.on-2 { top: 22%; right: 3%; animation: nodeFloat 4s ease-in-out 0.6s infinite; }
.on-3 { bottom: 22%; right: 5%; animation: nodeFloat 4s ease-in-out 1.2s infinite; }
.on-4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation: nodeFloat 4s ease-in-out 1.8s infinite; }
.on-5 { bottom: 22%; left: 5%; animation: nodeFloat 4s ease-in-out 2.4s infinite; }
.on-6 { top: 22%; left: 3%; animation: nodeFloat 4s ease-in-out 3s infinite; }

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* Override translateX for centered nodes */
.on-1, .on-4 {
  animation: nodeFloatCenter 4s ease-in-out infinite;
}
.on-4 { animation-delay: 1.8s; }
@keyframes nodeFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* Central cycling pill */
.orbital-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3;
}
.oc-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,184,0,0.2), rgba(124,58,237,0.15));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,184,0,0.25);
  font-family: var(--font-m); font-size: 13px; font-weight: 600;
  color: var(--gold);
  box-shadow: 0 8px 32px rgba(255,184,0,0.1), 0 0 60px rgba(255,184,0,0.04);
  animation: pillPulse 3s ease-in-out infinite;
}
.oc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255,184,0,0.6);
  animation: dotPulseGlow 1.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,184,0,0.1), 0 0 60px rgba(255,184,0,0.04); }
  50% { box-shadow: 0 8px 40px rgba(255,184,0,0.18), 0 0 80px rgba(255,184,0,0.08); }
}
@keyframes dotPulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* 3-step row */
.steps-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch; max-width: 960px; margin: 0 auto;
  gap: 0;
}
.step-item {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px; padding: 32px 24px 28px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.step-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0.5; border-radius: var(--radius) var(--radius) 0 0;
  transition: opacity 0.4s var(--ease);
}
.step-item:hover::before { opacity: 1; }
.step-item:hover {
  border-color: rgba(255,184,0,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 40px rgba(255,184,0,0.04);
}
.si-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 800; font-size: 18px; color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,184,0,0.2);
}
.si-content h3 { font-family: var(--font); font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.si-content p { font-size: 13px; color: var(--text-3); line-height: 1.65; max-width: 220px; margin: 0 auto; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  width: 48px; flex-shrink: 0;
  position: relative;
}
.step-connector svg { width: 48px; height: 24px; }

/* ═══════ INTENT CARDS — STRIKING 3D ═══════ */
#intent { padding: 80px 0; }
#intent h2 { margin-bottom: 12px; }
.intent-subtitle { font-size: 14px; color: var(--text-3); margin-bottom: 48px; }
.intent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.intent-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 40px 20px;
  aspect-ratio: 1 / 0.85; overflow: hidden;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); transition: all 0.45s var(--ease);
  cursor: pointer;
}
/* Subtle top accent bar on all cards */
.intent-card::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  border-radius: 0 0 4px 4px; transition: all 0.45s var(--ease);
}
.ic-glow {
  position: absolute; top: -40%; left: -40%; right: -40%; bottom: -40%;
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
  border-radius: 50%;
}
.ic-glow-rose { background: radial-gradient(circle, rgba(232,54,124,0.14), transparent 60%); }
.ic-glow-gold { background: radial-gradient(circle, rgba(255,184,0,0.14), transparent 60%); }
.ic-glow-teal { background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 60%); }
.ic-glow-violet { background: radial-gradient(circle, rgba(124,58,237,0.14), transparent 60%); }

.intent-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.04); }
.intent-card:hover .ic-glow { opacity: 1; }
.intent-card.active .ic-glow { opacity: 1; }

/* Per-color hover/active — border accent + glow */
.intent-card[data-q="love"]:hover, .intent-card[data-q="love"].active {
  border-color: rgba(232,54,124,0.35);
  box-shadow: 0 16px 48px rgba(232,54,124,0.1), 0 0 20px rgba(232,54,124,0.04);
}
.intent-card[data-q="love"]:hover::before, .intent-card[data-q="love"].active::before {
  background: linear-gradient(90deg, transparent, #E8367C, transparent); left: 15%; right: 15%; opacity: 0.6;
}
.intent-card[data-q="career"]:hover, .intent-card[data-q="career"].active {
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 16px 48px rgba(255,184,0,0.1), 0 0 20px rgba(255,184,0,0.04);
}
.intent-card[data-q="career"]:hover::before, .intent-card[data-q="career"].active::before {
  background: linear-gradient(90deg, transparent, #FFB800, transparent); left: 15%; right: 15%; opacity: 0.6;
}
.intent-card[data-q="money"]:hover, .intent-card[data-q="money"].active {
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 16px 48px rgba(6,182,212,0.1), 0 0 20px rgba(6,182,212,0.04);
}
.intent-card[data-q="money"]:hover::before, .intent-card[data-q="money"].active::before {
  background: linear-gradient(90deg, transparent, #06B6D4, transparent); left: 15%; right: 15%; opacity: 0.6;
}
.intent-card[data-q="marriage"]:hover, .intent-card[data-q="marriage"].active {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 16px 48px rgba(124,58,237,0.1), 0 0 20px rgba(124,58,237,0.04);
}
.intent-card[data-q="marriage"]:hover::before, .intent-card[data-q="marriage"].active::before {
  background: linear-gradient(90deg, transparent, #7C3AED, transparent); left: 15%; right: 15%; opacity: 0.6;
}

.ic-svg { width: 64px; height: 64px; transition: transform 0.4s var(--ease); }
.ic-svg svg { width: 100%; height: 100%; }
.intent-card:hover .ic-svg { transform: scale(1.12) translateY(-2px); }
.ic-label { font-family: var(--font); font-weight: 600; font-size: 13px; letter-spacing: -0.01em; font-style: italic; color: var(--text-2); }

/* Category labels */
.ic-category {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.03em;
  padding: 3px 10px; border-radius: 8px;
  text-transform: uppercase;
}
.ic-cat-rose { background: rgba(232,54,124,0.12); color: #FF6B8A; }
.ic-cat-gold { background: rgba(255,184,0,0.12); color: #FFB800; }
.ic-cat-teal { background: rgba(6,182,212,0.12); color: #06B6D4; }
.ic-cat-violet { background: rgba(124,58,237,0.12); color: #9B6DFF; }

/* Hint text */
.ic-hint {
  font-size: 10px; color: var(--text-3); letter-spacing: 0.02em;
  margin-top: -4px; font-weight: 500;
}

/* Icon animations */
.ic-ring { animation: icRingPulse 3s ease-in-out infinite; }
@keyframes icRingPulse { 0%,100% { opacity: 0.2; } 50% { opacity: 0.5; } }
.ic-flame { animation: icFlameFlicker 1.5s ease-in-out infinite; transform-origin: center bottom; }
@keyframes icFlameFlicker { 0%,100% { opacity: 0.7; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.15); } }
.ic-sparkle { animation: icSparkle 2s ease-in-out infinite; }
@keyframes icSparkle { 0%,100% { opacity: 0.4; } 50% { opacity: 1; transform: scale(1.3); } }
.ic-diamond { animation: icDiamondFloat 3s ease-in-out infinite; }
@keyframes icDiamondFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }

.ai-preview-wrap {
  max-width: 560px; margin: 0 auto; padding: 2px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,184,0,0.2), rgba(124,58,237,0.15), rgba(6,182,212,0.1));
}
.ai-preview { max-width: none; border-radius: 18px; background: rgba(10,10,15,0.9); padding: 20px; }
.aip-q {
  display: flex; align-items: center; gap: 8px;
  text-align: right; padding: 12px 18px; justify-content: flex-end;
  background: linear-gradient(135deg, rgba(255,184,0,0.12), rgba(232,54,124,0.08));
  border-radius: 16px 16px 4px 16px; font-size: 14px; margin-bottom: 12px;
}
.aip-q-icon { font-size: 16px; }
.aip-head {
  display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 6px;
}
.aip-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; display: inline-block; animation: pulse 1.5s ease-in-out infinite; }
.aip-status { font-size: 10px; color: var(--text-3); font-weight: 400; margin-left: auto; animation: statusBlink 2s ease-in-out infinite; }
@keyframes statusBlink { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.aip-body {
  padding: 16px 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px; font-size: 13px; color: var(--text-2); line-height: 1.75; min-height: 64px;
}
.typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 4px; animation: tb 1.4s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tb { 0%,60%,100% { opacity: 0.3; } 30% { opacity: 1; transform: translateY(-4px); } }

/* Locked conversion box inside AI Preview */
.aip-locked-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(124,58,237,0.05));
  border: 1px dashed rgba(255,184,0,0.3);
  border-radius: 12px;
  animation: aipUnlockFloat 2s ease-in-out infinite alternate;
}
.aip-lr-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.aip-lr-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
}
.aip-lr-text strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 600;
}
@keyframes aipUnlockFloat {
  from { transform: translateY(0); box-shadow: 0 4px 12px rgba(255,184,0,0.05); }
  to { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,184,0,0.15); }
}

/* ═══════ DEMO — ENHANCED ═══════ */
#demo { padding: 80px 0; position: relative; overflow: hidden; }

/* Ambient particles canvas */
.demo-particles-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
#demo > .wrap { position: relative; z-index: 1; }

/* Demo header */
.demo-header-row { margin-bottom: 48px; }
.demo-header-text { max-width: 600px; }
.demo-sub { font-size: 15px; color: var(--text-3); line-height: 1.7; margin-top: -32px; }

.demo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Demo chart wrapper */
.demo-chart-wrap {
  position: relative; aspect-ratio: 1; max-width: 500px;
}
.demo-chart-wrap::before {
  content: ''; position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(255,184,0,0.08) 0%, rgba(124,58,237,0.04) 40%, transparent 70%);
  pointer-events: none; animation: demoChartGlow 8s ease-in-out infinite alternate;
}
@keyframes demoChartGlow {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}
#demo-chart { width: 100%; height: 100%; position: relative; z-index: 1; }
.d-houses { animation: fadeIn 2s 1.5s var(--ease) forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* Zodiac band rotation */
.zodiac-rotate-demo { animation: zodiacSpinDemo 100s linear infinite; transform-origin: 250px 250px; }
@keyframes zodiacSpinDemo { to { transform: rotate(360deg); } }
.yantra-spin-demo { animation: yantraSpinDemo 80s linear infinite reverse; transform-origin: 250px 250px; }
@keyframes yantraSpinDemo { to { transform: rotate(360deg); } }

/* 🔥 NEURAL COSMOS — Cutting-edge animations */

/* Sacred Geometry / Flower of Life — slow rotation */
.sacred-geo-spin { animation: sacredSpin 120s linear infinite; transform-origin: 250px 250px; }
@keyframes sacredSpin { to { transform: rotate(360deg); } }

/* Hexagonal grid — reverse spin */
.hex-grid-spin { animation: hexGridSpin 90s linear infinite reverse; transform-origin: 250px 250px; }
@keyframes hexGridSpin { to { transform: rotate(360deg); } }

/* Orbit ring spinning via stroke-dashoffset */
.orbit-spin-1 { animation: orbitDash1 20s linear infinite; transform-origin: 250px 250px; }
.orbit-spin-2 { animation: orbitDash2 15s linear infinite; transform-origin: 250px 250px; }
.orbit-spin-3 { animation: orbitDash3 25s linear infinite; transform-origin: 250px 250px; }
@keyframes orbitDash1 { to { stroke-dashoffset: -200; transform: rotate(360deg); } }
@keyframes orbitDash2 { to { stroke-dashoffset: 300; transform: rotate(-360deg); } }
@keyframes orbitDash3 { to { stroke-dashoffset: -150; transform: rotate(360deg); } }

/* Energy pulse rings — expanding outward from center */
.energy-pulse-1 {
  transform-origin: 250px 250px;
  animation: energyPulse 4s ease-out infinite;
}
.energy-pulse-2 {
  transform-origin: 250px 250px;
  animation: energyPulse 4s ease-out 1.3s infinite;
}
.energy-pulse-3 {
  transform-origin: 250px 250px;
  animation: energyPulse 4s ease-out 2.6s infinite;
}
@keyframes energyPulse {
  0% { r: 50; opacity: 0.35; stroke-width: 1.5; }
  70% { opacity: 0.08; }
  100% { r: 230; opacity: 0; stroke-width: 0.2; }
}

/* Data stream pulses */
.stream-pulse-1 { animation: streamFlow 2s linear infinite; }
.stream-pulse-2 { animation: streamFlow 2.5s linear 0.5s infinite; }
.stream-pulse-3 { animation: streamFlow 3s linear 1s infinite; }
@keyframes streamFlow {
  0% { stroke-dashoffset: 0; opacity: 0.3; }
  50% { opacity: 0.15; }
  100% { stroke-dashoffset: -30; opacity: 0.05; }
}

/* Hexagonal core — counter-rotating */
.hex-core-spin { animation: hexCoreSpin 12s linear infinite; transform-origin: 250px 250px; }
.hex-core-spin-reverse { animation: hexCoreSpin 18s linear infinite reverse; transform-origin: 250px 250px; }
@keyframes hexCoreSpin { to { transform: rotate(360deg); } }

/* Core outer ring pulsing */
.core-ring-outer {
  animation: coreRingPulse 3s ease-in-out infinite;
  transform-origin: 250px 250px;
}
@keyframes coreRingPulse {
  0%, 100% { r: 48; opacity: 0.1; }
  50% { r: 52; opacity: 0.25; }
}

/* Scan beam — rotating radial line */
.scan-beam {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 350deg,
    rgba(255,184,0,0.06) 355deg,
    rgba(255,184,0,0.12) 358deg,
    rgba(255,184,0,0.04) 360deg
  );
  animation: scanSweep 6s linear infinite;
}
@keyframes scanSweep { to { transform: rotate(360deg); } }

/* Live badge */
.demo-chart-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; z-index: 2;
  background: rgba(10,10,15,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,184,0,0.2);
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.03em; text-transform: uppercase;
  animation: badgeFloat 3s ease-in-out infinite;
}
.dcb-dot {
  width: 6px; height: 6px; background: #22C55E; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
}
@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* ═══════ CHAT BOX — PREMIUM ═══════ */
.chat-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.4s var(--ease);
}
.chat-box:hover {
  border-color: rgba(255,184,0,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Chat header */
.cb-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,184,0,0.04), rgba(124,58,237,0.02));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cb-avatar {
  position: relative; width: 36px; height: 36px; flex-shrink: 0;
}
.cb-avatar svg { width: 36px; height: 36px; border-radius: 50%; }
.cb-avatar-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid transparent;
  background: conic-gradient(from 0deg, var(--gold), var(--rose), var(--violet), var(--teal), var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: avatarRingSpin 4s linear infinite;
}
@keyframes avatarRingSpin {
  to { transform: rotate(360deg); }
}
.cb-head-info { flex: 1; }
.cb-head-info strong { font-size: 13px; font-weight: 600; display: block; }
.cb-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-3); margin-top: 1px; }
.cb-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: pulse 2s ease-in-out infinite;
}
.cb-head-actions { margin-left: auto; }
.cb-action {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--text-3); transition: all 0.2s;
}
.cb-action:hover { background: var(--surface-2); color: var(--text-1); }

/* Chat body */
.cb-body {
  padding: 20px; display: flex; flex-direction: column; gap: 16px;
  max-height: 360px; overflow-y: auto;
}
.cb-body::-webkit-scrollbar { width: 4px; }
.cb-body::-webkit-scrollbar-track { background: transparent; }
.cb-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* Chat messages */
.cb-msg { max-width: 90%; display: flex; gap: 10px; align-items: flex-start; }
.cb-msg-avatar { width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.cb-msg-avatar svg { width: 24px; height: 24px; border-radius: 50%; }

.cb-ai .cb-msg-content p, .tw {
  font-size: 13px; color: var(--text-2); line-height: 1.8;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px 16px 16px 16px;
  position: relative;
}
.cb-time { display: block; font-size: 10px; color: var(--text-3); margin-top: 6px; padding-left: 2px; }

.cb-user { align-self: flex-end; flex-direction: row-reverse; }
.cb-user .cb-msg-content p {
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 16px 16px 4px 16px; font-size: 13px;
  color: var(--text-1);
}

/* Typewriter cursor */
.tw .cursor { display: inline-block; width: 2px; height: 1em; background: var(--gold); animation: blink 0.7s step-end infinite; vertical-align: text-bottom; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Chat footer */
.cb-foot {
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}
.cb-input-wrap {
  display: flex; gap: 8px; align-items: center;
  padding: 4px 4px 4px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; transition: all 0.3s;
}
.cb-input-wrap:focus-within {
  border-color: rgba(255,184,0,0.3);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.06);
}
.cb-input-wrap input {
  flex: 1; padding: 8px 0; background: transparent; border: none;
  color: var(--text-1); font-size: 13px; outline: none;
}
.cb-input-wrap input::placeholder { color: var(--text-3); }
.send-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: var(--grad); border-radius: 10px; color: var(--bg);
  transition: all 0.3s var(--ease); flex-shrink: 0;
}
.send-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(255,184,0,0.25); }
.send-btn svg { width: 16px; height: 16px; }

/* ═══════ CHIPS — COLORED ═══════ */
.chip-row { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--border);
  border-radius: 12px; font-size: 12px; font-weight: 500;
  color: var(--text-3); transition: all 0.3s var(--ease);
}
.chip-icon { font-size: 13px; }
.chip:hover { transform: translateY(-2px); }

/* Per-color chips */
.chip-career:hover, .chip-career.active { border-color: rgba(255,184,0,0.4); color: var(--gold); background: rgba(255,184,0,0.06); box-shadow: 0 4px 16px rgba(255,184,0,0.08); }
.chip-love:hover, .chip-love.active { border-color: rgba(232,54,124,0.4); color: var(--rose); background: rgba(232,54,124,0.06); box-shadow: 0 4px 16px rgba(232,54,124,0.08); }
.chip-health:hover, .chip-health.active { border-color: rgba(6,182,212,0.4); color: var(--teal); background: rgba(6,182,212,0.06); box-shadow: 0 4px 16px rgba(6,182,212,0.08); }
.chip-finance:hover, .chip-finance.active { border-color: rgba(124,58,237,0.4); color: var(--violet); background: rgba(124,58,237,0.06); box-shadow: 0 4px 16px rgba(124,58,237,0.08); }

/* ═══════ JYOTISHI LIVE CHAT — INTERACTIVE ═══════ */

/* Inline Birth Data Form */
.jyotishi-birth-form {
  margin: 4px 0 0;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,184,0,0.05) 0%, rgba(124,58,237,0.03) 50%, rgba(10,10,15,0.9) 100%);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: 16px;
  animation: jbfSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes jbfSlideIn {
  0% { opacity: 0; transform: translateY(10px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.jbf-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.jbf-icon { font-size: 18px; }
.jbf-title {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.jbf-fields {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.jbf-field label {
  display: block; font-size: 11px; font-weight: 600; color: var(--text-3);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.jbf-required { color: #FF4D6D; font-weight: 700; }
.jbf-optional { color: var(--text-3); font-weight: 400; font-size: 10px; opacity: 0.7; }
.jbf-field input {
  width: 100%; padding: 9px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--text-1);
  font-size: 13px; font-family: var(--font);
  outline: none; transition: all 0.3s var(--ease);
  box-sizing: border-box;
}
.jbf-field input:focus {
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.06);
  background: rgba(255,255,255,0.06);
}
.jbf-field input::placeholder { color: var(--text-3); }
.jbf-field-required input {
  border-color: rgba(255,184,0,0.2);
}
/* Date/time input specific color fixes for dark mode */
.jbf-field input[type="date"]::-webkit-calendar-picker-indicator,
.jbf-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}
.jbf-error {
  font-size: 11px; color: #FF4D6D; font-weight: 600;
  margin-bottom: 8px; padding: 4px 0;
  animation: jbfShake 0.4s ease;
}
@keyframes jbfShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.jbf-submit {
  width: 100%; padding: 12px 20px;
  border-radius: 12px; font-size: 13px; font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad); color: var(--bg);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(255,184,0,0.2);
}
.jbf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,184,0,0.3);
}
.jbf-submit:active { transform: translateY(0); }
.jbf-submit-icon {
  font-size: 14px;
  animation: jbfSubmitSpin 3s linear infinite;
}
@keyframes jbfSubmitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.jbf-note {
  text-align: center; font-size: 10px; color: var(--text-3);
  margin-top: 8px; margin-bottom: 0;
}

/* Form loading state */
.jbf-submit.jbf-loading {
  pointer-events: none; opacity: 0.7;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
  background-size: 200% 100%;
  animation: jbfLoadingShimmer 1.5s ease infinite;
}
@keyframes jbfLoadingShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Chart analysis card — shown after analyzing */
.jyotishi-chart-card {
  margin: 4px 0; padding: 16px;
  background: linear-gradient(145deg, rgba(255,184,0,0.06) 0%, rgba(124,58,237,0.04) 100%);
  border: 1px solid rgba(255,184,0,0.18);
  border-radius: 14px;
  animation: cbMsgSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.jcc-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.jcc-icon { font-size: 20px; }
.jcc-title {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  color: var(--text-1);
}
.jcc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 10px;
}
.jcc-item {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.jcc-item-icon { font-size: 14px; }
.jcc-item-label { font-size: 9px; color: var(--text-3); display: block; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.jcc-item-value { font-size: 12px; color: var(--text-1); font-weight: 600; }
.jcc-scan-bar {
  height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden; margin-top: 4px;
}
.jcc-scan-fill {
  height: 100%; width: 0; border-radius: 3px;
  background: var(--grad);
  animation: jccScan 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes jccScan {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Questions remaining badge */
.jyotishi-questions-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-3);
  margin-bottom: 10px; padding: 5px 12px;
  background: rgba(255,184,0,0.04);
  border: 1px solid rgba(255,184,0,0.1);
  border-radius: 10px;
  transition: all 0.4s var(--ease);
}
.jqb-icon {
  font-size: 12px; color: var(--gold);
  animation: jqbPulse 2s ease-in-out infinite;
}
@keyframes jqbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.jyotishi-questions-badge.jqb-warning {
  border-color: rgba(255,77,109,0.25);
  background: rgba(255,77,109,0.06);
  color: #FF6B8A;
}
.jyotishi-questions-badge.jqb-warning .jqb-icon { color: #FF6B8A; }
.jyotishi-questions-badge.jqb-exhausted {
  border-color: rgba(255,77,109,0.35);
  background: rgba(255,77,109,0.08);
  color: #FF4D6D;
}

/* Chat message entrance animation */
.cb-msg-enter {
  animation: cbMsgSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}
@keyframes cbMsgSlideIn {
  0% { opacity: 0; transform: translateY(12px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* AI typing indicator in chat */
.cb-typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px 16px 16px 16px;
}
.cb-typing-indicator span {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: cbTypingBounce 1.4s ease-in-out infinite;
}
.cb-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.cb-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cbTypingBounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-5px); }
}

/* Input disabled state when limit reached */
.cb-input-wrap.jyotishi-locked {
  opacity: 0.4; pointer-events: none;
  border-color: rgba(255,77,109,0.2);
}
.cb-input-wrap.jyotishi-locked input::placeholder {
  color: #FF6B8A;
}

/* Chips disabled state */
.chip-row.jyotishi-chips-locked .chip {
  opacity: 0.35; pointer-events: none;
}

/* ═══════ ACCOUNT GATE OVERLAY ═══════ */
.jyotishi-gate-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  opacity: 0; animation: gateOverlayIn 0.5s var(--ease) forwards;
}
@keyframes gateOverlayIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.jyotishi-gate-card {
  max-width: 340px; width: 90%; text-align: center;
  padding: 36px 28px;
  background: linear-gradient(160deg, rgba(255,184,0,0.06) 0%, rgba(124,58,237,0.04) 50%, rgba(10,10,15,0.95) 100%);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 40px rgba(255,184,0,0.05);
  animation: gateCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
  opacity: 0; transform: translateY(20px) scale(0.9);
}
@keyframes gateCardPop {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.jyotishi-gate-icon {
  font-size: 40px; margin-bottom: 6px;
  animation: gateIconFloat 3s ease-in-out infinite;
}
@keyframes gateIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.jyotishi-gate-title {
  font-family: var(--font); font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.jyotishi-gate-subtitle {
  font-size: 13px; color: var(--text-3); line-height: 1.65;
  margin-bottom: 20px;
}
.jyotishi-gate-features {
  display: flex; flex-direction: column; gap: 8px;
  text-align: left; margin-bottom: 24px;
}
.jyotishi-gate-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-2);
}
.jyotishi-gate-feat-icon {
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; background: rgba(34,197,94,0.1);
  color: #22C55E; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.jyotishi-gate-cta {
  width: 100%; padding: 14px 24px;
  border-radius: 14px; font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad); color: var(--bg);
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 24px rgba(255,184,0,0.25);
}
.jyotishi-gate-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,0.35);
}
.jyotishi-gate-note {
  font-size: 11px; color: var(--text-3); margin-top: 12px;
}

/* Flash effect when question count changes */
.jqb-flash {
  animation: jqbFlash 0.6s ease;
}
@keyframes jqbFlash {
  0% { transform: scale(1); }
  25% { transform: scale(1.15); color: #FF4D6D; }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* ═══════ PROOF BAR ═══════ */
#proof-bar { padding: 40px 0; }
.proof-strip {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 0; overflow: hidden;
}
.ps-item { flex: 1; text-align: center; }
.ps-item strong { display: block; font-family: var(--font); font-weight: 700; font-size: 24px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.ps-item span { font-size: 12px; color: var(--text-3); }
.ps-sep { width: 1px; height: 32px; background: var(--border); }

/* ═══════ TESTIMONIALS ═══════ */
#testimonials { padding: 80px 0; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.t-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.4s var(--ease);
}
.t-card:hover { border-color: rgba(255,184,0,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.tc-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.t-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-foot { display: flex; align-items: center; gap: 10px; }
.tc-photo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,184,0,0.2);
  transition: border-color 0.3s;
}
.t-card:hover .tc-photo { border-color: rgba(255,184,0,0.5); }
.tc-foot strong { font-size: 13px; display: block; }
.tc-foot span { font-size: 11px; color: var(--text-3); }

/* ═══════ FEATURES — ENHANCED CARDS ═══════ */
#features { padding: 100px 0; }
.feat-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fb-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.4s var(--ease);
}
.fb-glow {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s; pointer-events: none;
  background: radial-gradient(circle 300px at var(--gx,50%) var(--gy,50%), rgba(255,184,0,0.08), transparent);
}
.fb-card:hover { border-color: rgba(255,184,0,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.fb-card:hover .fb-glow { opacity: 1; }
.fb-big { grid-column: span 2; grid-row: span 2; }
.fb-wide { grid-column: span 2; }

/* Feature card icon */
.fb-icon-wrap { margin-bottom: 16px; }
.fb-icon { width: 48px; height: 48px; }
.fb-card:hover .fb-icon { animation: fbIconBounce 0.6s var(--ease); }
@keyframes fbIconBounce { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }

.fb-badge { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(255,184,0,0.12); color: var(--gold); margin-bottom: 12px; }
.fb-card h3 { font-family: var(--font); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.fb-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.fb-demo { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.fbd-user { padding: 12px 16px; background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(124,58,237,0.05)); border: 1px solid rgba(255,184,0,0.1); border-radius: 12px 12px 4px 12px; font-size: 13px; align-self: flex-end; max-width: 85%; }
.fbd-ai { padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px 12px 12px 12px; font-size: 13px; color: var(--text-2); line-height: 1.6; max-width: 90%; }
.coming { display: inline-block; margin-top: 12px; padding: 3px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; background: rgba(124,58,237,0.12); color: var(--violet); }

/* ═══════ PRICING — PREMIUM ═══════ */
#pricing { padding: 80px 0; }
.price-header-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-top: -16px; margin-bottom: 48px; flex-wrap: wrap;
}
.price-subtitle { font-size: 14px; color: var(--text-3); flex: 1; min-width: 260px; }

/* Currency Toggle */
.currency-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ct-label {
  font-size: 12px; font-weight: 600; color: var(--text-3);
  cursor: pointer; transition: all 0.3s var(--ease);
  user-select: none;
}
.ct-label.ct-active { color: var(--gold); }
.ct-switch {
  position: relative; width: 42px; height: 22px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; cursor: pointer;
  transition: all 0.3s var(--ease); padding: 0;
}
.ct-switch:hover {
  border-color: rgba(255,184,0,0.3);
  background: rgba(255,255,255,0.1);
}
.ct-knob {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 2px 6px rgba(255,184,0,0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.ct-switch.ct-usd .ct-knob,
.ct-knob.ct-usd {
  left: 22px;
}
.ct-rate {
  font-size: 9px; font-weight: 600; color: var(--text-3);
  padding: 2px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  white-space: nowrap; letter-spacing: 0.02em;
}
.ct-rate.ct-rate-live {
  color: #22C55E;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
}

/* Price transition animation — only applied via JS class */
.price-updating {
  opacity: 0.3 !important;
  transition: opacity 0.15s ease !important;
}
.price-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; padding-top: 16px; }
.pc {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
  overflow: visible;
}
.pc::after {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 3px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,184,0,0.6) 25%,
    rgba(232,54,124,0.5) 50%,
    rgba(124,58,237,0.4) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: auroraSlide 4s ease-in-out infinite;
  filter: blur(0.5px);
  opacity: 0.5;
  transition: opacity 0.4s, filter 0.4s, box-shadow 0.4s;
}
.pc:hover::after {
  opacity: 1;
  filter: blur(1px);
  box-shadow: 0 0 12px rgba(255,184,0,0.2), 0 0 24px rgba(232,54,124,0.1);
}
@keyframes auroraSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 200% 50%; }
}
.pc:hover { border-color: rgba(255,184,0,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,184,0,0.05); }
.pc-tier-icon { font-size: 36px; margin-bottom: 12px; filter: grayscale(0.15); }
.pc h3 { font-family: var(--font); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pc-price { font-family: var(--font); font-weight: 700; font-size: 42px; letter-spacing: -0.03em; margin-bottom: 2px; }
.pc-price small { font-size: 14px; font-weight: 400; color: var(--text-3); }
.pc-desc { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.pc ul { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pc li { font-size: 13px; color: var(--text-2); padding-left: 22px; position: relative; line-height: 1.4; }
.pc li::before { content: '✓'; position: absolute; left: 0; color: #22C55E; font-size: 13px; font-weight: 700; }

/* CTA button always at bottom */
.pc .btn-outline, .pc .btn-glow { margin-top: auto; }

/* Value badge */
.pc-value-badge {
  display: inline-block; padding: 4px 12px; border-radius: 8px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  color: #22C55E; font-size: 11px; font-weight: 700; margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* Guarantee text */
.pc-guarantee { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 12px; }

/* Per-tier color accents */
.pc:nth-child(1)::after {
  background: linear-gradient(90deg, transparent, rgba(148,130,255,0.5), rgba(200,180,255,0.3), transparent);
  background-size: 200% 100%;
  animation: auroraSlide 5s ease-in-out infinite;
}
.pc:nth-child(2)::after {
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), rgba(255,165,0,0.4), transparent);
  background-size: 200% 100%;
  animation: auroraSlide 3.5s ease-in-out infinite;
}
.pc:nth-child(4)::after {
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), rgba(6,182,212,0.4), transparent);
  background-size: 200% 100%;
  animation: auroraSlide 4.5s ease-in-out infinite;
}

/* Popular card — premium treatment */
.pc-pop {
  border-color: rgba(255,184,0,0.35);
  background: linear-gradient(180deg, rgba(255,184,0,0.08) 0%, rgba(232,54,124,0.04) 50%, rgba(255,255,255,0.03) 100%);
  position: relative; transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,184,0,0.08), 0 8px 32px rgba(0,0,0,0.2);
  will-change: transform;
}
.pc-pop::before {
  content: ''; position: absolute; inset: -2px; border-radius: var(--radius); z-index: -1;
  background: linear-gradient(135deg, rgba(255,184,0,0.4), rgba(232,54,124,0.3), rgba(124,58,237,0.3), rgba(255,184,0,0.4));
  background-size: 300% 300%;
  animation: gradBorder 4s ease infinite;
  filter: blur(1px);
  will-change: background-position;
}
.pc-pop::after { background: var(--grad); opacity: 0.7; }
@keyframes gradBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pc-pop:hover { transform: scale(1.03) translateY(-6px); box-shadow: 0 24px 60px rgba(255,184,0,0.12), 0 0 50px rgba(255,184,0,0.06); }
.pop-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; background: var(--grad); border-radius: 14px;
  font-size: 11px; font-weight: 700; color: var(--bg); white-space: nowrap;
  letter-spacing: 0.02em; box-shadow: 0 4px 12px rgba(255,184,0,0.3);
  z-index: 3;
}

/* Tier comparison footnote */
.pc-comparison {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: var(--text-3); line-height: 1.5;
}
.pc-comparison strong { color: var(--text-2); }

/* Impulse tag on Stellar */
.pc-impulse-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 12px; white-space: nowrap;
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  font-size: 10px; font-weight: 800; color: var(--bg);
  letter-spacing: 0.03em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
  animation: impulseGlow 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes impulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(255,215,0,0.3); }
  50% { box-shadow: 0 4px 24px rgba(255,215,0,0.5), 0 0 30px rgba(255,107,53,0.2); }
}

/* ═══════ LIFETIME CARD — THE SHOWSTOPPER ═══════ */
.lifetime-wrap {
  margin-top: 48px;
  padding: 1.5px;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(255,184,0,0.5) 0%,
    rgba(255,184,0,0.15) 30%,
    rgba(232,54,124,0.2) 50%,
    rgba(255,184,0,0.15) 70%,
    rgba(255,184,0,0.5) 100%
  );
  background-size: 300% 300%;
  animation: ltBorderShimmer 8s ease infinite;
  position: relative;
  will-change: background-position;
}
@keyframes ltBorderShimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
.lifetime-wrap::before {
  content: ''; position: absolute; inset: -8px; border-radius: 30px; z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,184,0,0.15) 0%, transparent 60%);
  filter: blur(16px); opacity: 0.7;
  pointer-events: none;
  animation: ltHaloPulse 4s ease-in-out infinite;
}
@keyframes ltHaloPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 0.8; transform: scaleX(1.02); }
}

.lifetime-card {
  position: relative; overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255,184,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(124,58,237,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(232,54,124,0.02) 0%, transparent 50%),
    linear-gradient(180deg, rgba(18,14,30,0.98) 0%, rgba(10,10,15,0.99) 100%);
  padding: 0;
}

/* Background orbs — bigger, brighter, more dramatic */
.lt-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(70px); opacity: 0.18;
}
.lt-orb-1 {
  width: 400px; height: 400px; top: -80px; left: -80px;
  background: radial-gradient(circle, #FFB800, transparent 65%);
  animation: ltOrbFloat1 12s ease-in-out infinite;
}
.lt-orb-2 {
  width: 350px; height: 350px; bottom: -60px; right: -60px;
  background: radial-gradient(circle, #7C3AED, transparent 65%);
  animation: ltOrbFloat2 14s ease-in-out infinite;
}
.lt-orb-3 {
  width: 280px; height: 280px; top: 40%; left: 55%;
  background: radial-gradient(circle, #E8367C, transparent 65%);
  animation: ltOrbFloat3 10s ease-in-out infinite;
}
@keyframes ltOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  50% { transform: translate(40px, 20px) scale(1.3); opacity: 0.25; }
}
@keyframes ltOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  50% { transform: translate(-30px, -25px) scale(1.25); opacity: 0.22; }
}
@keyframes ltOrbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.12; }
  50% { transform: translate(20px, -30px) scale(1.15); opacity: 0.2; }
}

/* Urgency ribbon */
.lt-ribbon {
  background: linear-gradient(90deg, #DC2626, #EF4444, #DC2626);
  background-size: 200% 100%;
  animation: ltRibbonSlide 3s linear infinite;
  padding: 10px 20px;
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; color: #fff;
  position: relative; z-index: 2;
}
.lt-ribbon strong { font-size: 14px; }
.lt-ribbon-fire {
  font-size: 14px; display: inline-block;
  animation: ltFireFlicker 1s ease-in-out infinite alternate;
  will-change: transform;
  vertical-align: middle;
}
@keyframes ltRibbonSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes ltFireFlicker {
  0% { transform: scale(1); }
  100% { transform: scale(1.15) rotate(-3deg); }
}

/* Main content layout */
.lt-content {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; padding: 48px 48px 36px;
  position: relative; z-index: 2;
}

/* Left side */
.lt-badge-row { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.lt-badge {
  display: inline-block; padding: 5px 14px; border-radius: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(232,54,124,0.1));
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--gold);
}
.lt-badge-save {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.08));
  border-color: rgba(34,197,94,0.3);
  color: #22C55E;
}

.lt-title {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em; line-height: 1.15;
  background: linear-gradient(90deg, #FFD700 0%, #FFB800 30%, #E8367C 50%, #FFD700 70%, #FFB800 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ltTitleShimmer 6s ease-in-out infinite;
  margin-bottom: 10px;
}
@keyframes ltTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lt-subtitle {
  font-size: 15px; color: var(--text-2); line-height: 1.65;
  margin-bottom: 28px;
}
.lt-subtitle strong { color: var(--text-1); }

/* Features grid */
.lt-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 28px;
}
.lt-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.lt-feature:hover {
  border-color: rgba(255,184,0,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.lt-feat-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.lt-feature strong {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-1);
  margin-bottom: 2px;
}
.lt-feature span { font-size: 11px; color: var(--text-3); line-height: 1.4; }

/* Emotional selling row */
.lt-emotion-row {
  display: flex; gap: 20px; justify-content: flex-start;
}
.lt-emotion {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 24px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.lt-emotion:hover {
  border-color: rgba(255,184,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lt-emo-icon { font-size: 24px; }
.lt-emotion span {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-2);
}

/* Right side — Price block */
.lt-right {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.lt-price-block {
  text-align: center; width: 100%;
  padding: 32px 24px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,184,0,0.06) 0%, rgba(232,54,124,0.03) 100%);
  border: 1px solid rgba(255,184,0,0.15);
}

.lt-original-price {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 4px;
}
.lt-strike {
  font-size: 22px; font-weight: 600; color: var(--text-3);
  text-decoration: line-through; text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}
.lt-off-badge {
  display: inline-block; padding: 3px 10px; border-radius: 8px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  font-size: 11px; font-weight: 800; color: #fff;
  letter-spacing: 0.02em;
  animation: ltOffPulse 2s ease-in-out infinite;
  will-change: opacity;
  vertical-align: middle;
}
@keyframes ltOffPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.lt-current-price {
  display: flex; align-items: flex-start; justify-content: center; gap: 2px;
  margin-bottom: 4px;
}
.lt-rupee {
  font-family: var(--font); font-weight: 700; font-size: 28px;
  background: linear-gradient(135deg, #FFD700, #FFB800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}
.lt-amount {
  font-family: var(--font); font-weight: 800; font-size: 64px;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #FFD700, #FFB800, #E8367C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lt-price-note {
  font-size: 12px; color: var(--text-3); margin-bottom: 20px;
}

/* Countdown timer */
.lt-countdown {
  margin-bottom: 20px;
}
.lt-countdown-label {
  font-size: 11px; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.lt-timer {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.lt-time-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 48px; padding: 8px 6px 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.lt-time-unit span {
  font-family: var(--font); font-weight: 800; font-size: 22px;
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lt-time-unit small {
  font-size: 8px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.08em; margin-top: 2px;
}
.lt-time-sep {
  font-size: 20px; font-weight: 800; color: var(--gold); opacity: 0.5;
  animation: ltTimeSepBlink 1s step-end infinite;
}
@keyframes ltTimeSepBlink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0; }
}

/* Shimmer CTA button */
.lt-cta {
  display: block; position: relative; overflow: hidden;
  padding: 16px 32px; border-radius: 14px;
  background: linear-gradient(135deg, #FFB800, #E8367C, #FFB800);
  background-size: 200% 100%;
  animation: ltCtaBgSlide 3s ease infinite;
  text-align: center; text-decoration: none;
  font-weight: 800; font-size: 16px; color: var(--bg);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(255,184,0,0.3), 0 0 60px rgba(255,184,0,0.1);
  transition: all 0.3s var(--ease);
  margin-bottom: 14px;
}
.lt-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,184,0,0.4), 0 0 80px rgba(255,184,0,0.15);
}
@keyframes ltCtaBgSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lt-cta-shimmer {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: ltShimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ltShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.lt-cta-text { position: relative; z-index: 2; }

/* Trust badges */
.lt-trust-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.lt-trust-badges span {
  font-size: 10px; color: var(--text-3); font-weight: 500;
}

/* Social proof */
.lt-social-proof {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; justify-content: center;
}
.lt-avatars {
  display: flex;
}
.lt-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--bg);
  border: 2px solid rgba(10,10,15,0.9);
  margin-left: -8px;
}
.lt-avatar:first-child { margin-left: 0; }
.lt-proof-text {
  font-size: 11px; color: var(--text-3);
}
.lt-proof-text strong { color: var(--text-2); }

/* Bottom comparison bar */
.lt-comparison {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 36px; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  position: relative; z-index: 2;
}
.lt-comp-item {
  flex: 1; text-align: center; padding: 0 16px;
}
.lt-comp-label {
  display: block; font-size: 10px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.lt-comp-value {
  font-size: 12px; color: var(--text-2);
}
.lt-comp-value strong { color: var(--gold); }
.lt-comp-divider {
  width: 1px; height: 32px; background: rgba(255,255,255,0.06); flex-shrink: 0;
}

/* ═══════ FINAL CTA — COSMIC ═══════ */
#cta-final {
  padding: 120px 0 140px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 20% 55%, rgba(255,184,0,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 45% 35% at 80% 50%, rgba(124,58,237,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 30% at 50% 75%, rgba(232,54,124,0.04) 0%, transparent 100%);
}

/* Typewriter cycling word */
.cta-typewriter {
  display: inline-block;
  border-right: 2px solid var(--gold);
  animation: twBlink 0.7s step-end infinite;
}
@keyframes twBlink {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}

/* Animated floating orbs */
.cta-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(120px); opacity: 0.10;
}
.cta-orb-1 {
  width: 350px; height: 350px; top: 60px; left: 0;
  background: radial-gradient(circle, #FFB800, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.cta-orb-2 {
  width: 300px; height: 300px; bottom: 20px; right: 0;
  background: radial-gradient(circle, #7C3AED, transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}
.cta-orb-3 {
  width: 250px; height: 250px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, #E8367C, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, 40px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* Cosmic eye */
.cta-cosmic-eye {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 320px; opacity: 0.12; pointer-events: none;
  animation: eyePulse 6s ease-in-out infinite;
}
@keyframes eyePulse {
  0%, 100% { opacity: 0.08; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 0.18; transform: translate(-50%, -60%) scale(1.05); }
}

/* Eyebrow */
.cta-eyebrow {
  font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
}

.big-cta { font-family: var(--font); font-weight: 700; font-size: clamp(32px, 5.5vw, 56px); line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: var(--text-2); margin-bottom: 36px; }

/* Trust row */
.cta-trust-row {
  display: flex; gap: 0; align-items: center; justify-content: center;
  margin-top: 24px; flex-wrap: wrap;
}
.cta-trust-row span {
  font-size: 12px; color: var(--text-3); padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.cta-trust-row span:last-child { border-right: none; }


/* ═══════ FOOTER — PREMIUM TYPOGRAPHY ═══════ */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,15,0.5) 100%);
}

.foot-grid {
  display: flex; justify-content: space-between; gap: 48px;
  align-items: flex-start;
}

/* ── Brand Column ── */
.foot-brand {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; max-width: 280px;
}
.foot-brand .foot-mandala {
  width: 52px; height: 52px;
  filter: drop-shadow(0 0 12px rgba(255,184,0,0.25));
  margin-bottom: 4px;
}
.foot-brand .logo-text {
  font-family: 'Outfit', var(--font), sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.foot-brand .logo-astro {
  color: var(--text-1);
}
.foot-brand .logo-kamya {
  background: linear-gradient(135deg, var(--gold), #E5A600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.foot-brand .tm {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.4;
  vertical-align: super;
}
.foot-brand p {
  font-family: 'Inter', var(--font-b), sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ── Link Columns ── */
.foot-cols {
  display: flex; gap: 56px;
}
.foot-cols div {
  display: flex; flex-direction: column; gap: 10px;
}
.foot-cols h4 {
  font-family: 'Outfit', var(--font), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 10px;
}
.foot-cols h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}
.foot-cols a {
  font-family: 'Inter', var(--font-b), sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-block;
}
.foot-cols a:hover {
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transform: translateX(2px);
}

/* ── Copyright Bar ── */
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-bottom p {
  font-family: 'Inter', var(--font-b), sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* ── Footer Tagline ── */
.foot-tagline {
  font-size: 12px !important;
  color: rgba(255,255,255,0.35) !important;
  line-height: 1.5 !important;
  margin-bottom: 4px;
  max-width: 280px;
}

/* ── Trust Badges ── */
.foot-trust {
  display: flex;gap: 16px;flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.foot-trust-item {
  display: flex;align-items: center;gap: 6px;
  font-size: 11px;color: rgba(255,255,255,0.35);font-weight: 500;
  font-family: 'Inter', var(--font-b), sans-serif;
}
.foot-trust-item span { font-size: 14px; }

/* ── Footer Disclaimer ── */
.foot-disclaimer {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.foot-disclaimer::before {
  content: '';position: absolute;top: 0;left: 0;right: 0;height: 2px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, rgba(255,184,0,0.15), rgba(124,58,237,0.1), rgba(232,54,124,0.08));
}
.foot-disclaimer-label {
  font-size: 10px;font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: 'Inter', var(--font-b), sans-serif;
}
.foot-disclaimer p {
  font-size: 10px;color: rgba(255,255,255,0.3);
  line-height: 1.7;margin-bottom: 8px;
  font-family: 'Inter', var(--font-b), sans-serif;
}
.foot-disclaimer p:last-child { margin-bottom: 0; }
.foot-disclaimer strong { color: rgba(255,255,255,0.45);font-weight: 600; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  #urgency-banner .ub-inner { font-size: 11px; gap: 8px; }
  .hero-chart-bg { width: 500px; height: 500px; right: -15%; opacity: 0.5; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }
  .demo-split { grid-template-columns: 1fr; }
  .input-split { grid-template-columns: 1fr 1fr; gap: 24px; }
  .demo-chart-wrap { max-width: 400px; margin: 0 auto; }
  .feat-bento, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-big { grid-column: span 2; grid-row: span 1; }
  .price-row { grid-template-columns: repeat(2, 1fr); }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-link { display: none; }
  .orbital-container { max-width: 500px; }
  .steps-row { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; }
  .step-connector { width: 32px; }
  .step-connector svg { width: 32px; }
  .step-item { padding: 24px 16px 20px; }
  .intent-card { aspect-ratio: auto; padding: 32px 16px; }
  .lt-content { grid-template-columns: 1fr; gap: 28px; padding: 36px 32px 28px; }
  .lt-features-grid { grid-template-columns: 1fr 1fr; }
  .lt-emotion-row { justify-content: center; }
}
@media (max-width: 640px) {
  .hero-chart-bg { width: 350px; height: 350px; right: -20%; top: 30%; opacity: 0.35; }
  .hero-content { max-width: 100%; }
  .ht-line { white-space: normal; }
  .hero-wrap, .price-row, .feat-bento, .test-grid, .intent-grid, .demo-split { grid-template-columns: 1fr; }
  .input-split { grid-template-columns: 1fr; gap: 20px; }
  .infographic-panel { padding: 24px 20px; }
  .ig-header h3 { font-size: 18px; }
  .demo-chart-wrap { max-width: 320px; margin: 0 auto; }
  .fb-big, .fb-wide { grid-column: span 1; }
  .pc-pop { transform: none; }
  .field-grid { grid-template-columns: 1fr; }
  .proof-strip { flex-direction: column; }
  .ps-sep { width: 60%; height: 1px; }
  .foot-grid { flex-direction: column; }
  .foot-cols { flex-wrap: wrap; gap: 24px; }
  .hero-card { max-width: 320px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }
  #urgency-banner .ub-timer { display: none; }
  .orbital-container { max-width: 100%; }
  .orbital-node { font-size: 9px; padding: 4px 10px; }
  .oc-pill { padding: 10px 20px; font-size: 11px; }
  .steps-row { grid-template-columns: 1fr; gap: 12px; }
  .step-connector { display: none; }
  .step-item { flex-direction: row; gap: 14px; text-align: left; padding: 20px; }
  .step-item .si-content p { margin: 0; }
  .intent-card { aspect-ratio: auto; padding: 28px 16px; }
  .lt-content { padding: 28px 20px 24px; }
  .lt-features-grid { grid-template-columns: 1fr; gap: 10px; }
  .lt-emotion-row { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .lt-emotion { padding: 10px 16px; }
  .lt-comparison { flex-direction: column; gap: 12px; padding: 16px 20px; }
  .lt-comp-divider { width: 60%; height: 1px; }
  .lt-amount { font-size: 48px; }
  .lt-title { font-size: 24px; }
  .lt-price-block { padding: 24px 16px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ═══════ BIRTH FORM VALIDATION ERRORS ═══════ */
.fld-error {
  border-color: rgba(232,54,124,0.6) !important;
  box-shadow: 0 0 0 3px rgba(232,54,124,0.12) !important;
  background: rgba(232,54,124,0.03) !important;
}
.fld-error-msg {
  display: block;
  font-size: 11px;
  color: #E8367C;
  font-weight: 500;
  margin-top: 4px;
  animation: fldErrorIn 0.3s ease;
}
@keyframes fldErrorIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fldShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(1px); }
}

/* ═══════ TIER-GATED LOCKED CONTENT ═══════ */
.res-locked {
  position: relative;
  pointer-events: none;
  user-select: none;
}
.res-locked::after {
  content: '🔒 Unlock with free account';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  z-index: 5;
}
.res-locked > * {
  filter: blur(4px);
}

/* ═══════ INTELLIGENT UPSELL CARD ═══════ */
.ak-upsell-card {
  display: none;
  margin-top: 20px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,184,0,0.06), rgba(124,58,237,0.04));
  border: 1px solid rgba(255,184,0,0.2);
  position: relative;
  overflow: hidden;
  animation: su 0.6s var(--ease) both;
}
.ak-upsell-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.06), transparent);
  animation: upsellShimmer 3s ease-in-out infinite;
}
@keyframes upsellShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.ak-upsell-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ak-upsell-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ak-upsell-title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ak-upsell-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ak-upsell-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ak-upsell-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.ak-upsell-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}
.ak-upsell-feat-icon {
  color: #22C55E;
  font-weight: 700;
}
.ak-upsell-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.12);
  font-size: 11px;
  color: #22C55E;
  font-weight: 500;
  margin-bottom: 16px;
}
.ak-upsell-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(255,184,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ak-upsell-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,184,0,0.35);
}
.ak-upsell-note {
  text-align: center;
  font-size: 10px;
  color: var(--text-3);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .hero-world { transform: scale(0.65); transform-origin: top center; margin-top:-60px; }
  .chart-card { min-width: 100%; }
  .sec-stats { flex-direction: column; gap: 20px; }
  .feature-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  p { font-size: 14px; }
  h1 { font-size: 40px !important; }
  h2 { font-size: 28px !important; }
  .pm-menu { right: 0; min-width: 260px; }
  .hero-pill, .hero-personal, .hero-trust, .ht-sep, .hero-actions { 
    transform: scale(0.9); transform-origin: left; 
    flex-wrap: wrap; 
  }
}

@media (max-width: 380px) {
  /* Extreme narrow devices ex. iPhone SE */
  .ss-bento { grid-template-columns: 1fr; }
  .discover-item { font-size: 13px; }
  .ig-step { font-size: 14px; }
  .la-feed { width: 100%; font-size: 12px; }
  .input-card { padding: 12px; }
}
