/* ============================================
   VELUNA LANDING PAGE - STYLES
   ============================================ */

:root {
  --primary: #8B5CF6;
  --primary-light: #A78BFA;
  --secondary: #EC4899;
  --accent: #3B82F6;
  --success: #10B981;
  --warning: #F59E0B;
  
  --bg: #FAFAF9;
  --bg-dark: #0F172A;
  --surface: #FFFFFF;
  --surface-hover: #F8FAFC;
  
  --text: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-inverse: #FFFFFF;
  
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: 20%;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(30px, 10px) scale(1.02); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.logo-bar {
  width: 10px;
  height: 26px;
  border-radius: 5px 5px 3px 3px;
}

.logo-bar-left {
  background: linear-gradient(180deg, #EC4899 0%, #DB2777 100%);
  transform: rotate(-28deg);
  transform-origin: bottom center;
  margin-right: -6px;
}

.logo-bar-right {
  background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
  transform: rotate(28deg);
  transform-origin: bottom center;
  margin-left: -6px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--text);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION - IMMERSIVE GAME-LIKE
   ============================================ */

.hero-immersive {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #FAFAF9;
}

/* Game Scene Background */
.game-scene {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* Floating Coins - Positioned around phone (right side) */
.coin {
  position: absolute;
  width: 32px;
  height: 32px;
  color: #F59E0B;
  filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.3));
  animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 { top: 20%; right: 8%; animation-delay: 0s; }
.coin-2 { top: 35%; right: 3%; animation-delay: 1s; width: 26px; height: 26px; }
.coin-3 { bottom: 35%; right: 12%; animation-delay: 2s; width: 24px; height: 24px; }

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Achievement Badges - Positioned around phone (right side) */
.achievement {
  position: absolute;
  padding: 8px 14px;
  background: linear-gradient(135deg, #10B981, #34D399);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: achievementPop 3s ease-in-out infinite;
}

.ach-1 { top: 15%; right: 42%; animation-delay: 0.5s; }
.ach-2 { top: 55%; right: 5%; animation-delay: 1.5s; background: linear-gradient(135deg, #8B5CF6, #A78BFA); box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3); }
.ach-3 { bottom: 22%; right: 20%; animation-delay: 2.5s; background: linear-gradient(135deg, #F59E0B, #FBBF24); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3); }

@keyframes achievementPop {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.9; }
  50% { transform: scale(1.05) translateY(-8px); opacity: 1; }
}

/* Game Toasts - Positioned around phone (right side) */
.game-toast {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  animation: toastSlide 4s ease-in-out infinite;
}

.toast-1 { top: 12%; right: 25%; animation-delay: 0s; }
.toast-2 { bottom: 35%; left: 8%; animation-delay: 2s; }

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.save-icon { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.check-icon { background: linear-gradient(135deg, #10B981, #34D399); }

@keyframes toastSlide {
  0% { transform: translateY(-10px); opacity: 0; }
  20%, 80% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* XP Bar */
.xp-bar {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 28px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.xp-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
  border-radius: 14px;
  animation: xpPulse 2s ease-in-out infinite;
}

.xp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes xpPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
}

/* Hero Overlay Content */
.hero-overlay {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-left {
  flex: 1;
  text-align: left;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-mega-left {
  text-align: left;
}

.hero-actions-left {
  justify-content: flex-start;
}

.hero-trust-left {
  justify-content: flex-start;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease;
}

.badge-text {
  background: #EF4444;
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  animation: livePulse 1.5s ease-in-out infinite;
}

.pulse-ring {
  display: none;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-mega-title {
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 24px;
  color: var(--text);
}

.mega-line {
  display: block;
  animation: fadeInUp 0.6s ease backwards;
}

.mega-line:nth-child(1) { animation-delay: 0.1s; }
.mega-line:nth-child(2) { animation-delay: 0.2s; }

.mega-accent {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
}

.btn-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: white;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Trust Strip - Big */
.hero-trust-big {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

.trust-item-big {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item-big svg {
  color: var(--text-muted);
}

.trust-item-big.powered {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item-big.powered span {
  color: var(--text-muted);
}

.plaid-big {
  height: 22px;
  width: auto;
  opacity: 0.7;
}

/* Hero Phone Mockup */
.hero-phone-wrapper {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s backwards;
}

.phone-frame-hero {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 10px;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.phone-notch-hero {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #1a1a2e;
  border-radius: 16px;
  z-index: 10;
}

.phone-screen-hero {
  width: 100%;
  height: 100%;
  background: #FAFAF9;
  border-radius: 32px;
  overflow: hidden;
  padding: 44px 18px 18px;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.screen-logo {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.screen-bar {
  width: 7px;
  height: 18px;
  border-radius: 4px 4px 3px 3px;
}

.screen-bar-left {
  background: linear-gradient(180deg, #EC4899 0%, #DB2777 100%);
  transform: rotate(-28deg);
  transform-origin: bottom center;
  margin-right: -4px;
}

.screen-bar-right {
  background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
  transform: rotate(28deg);
  transform-origin: bottom center;
  margin-left: -4px;
}

.screen-greeting {
  font-size: 13px;
  color: var(--text-secondary);
}

.screen-balance {
  margin-bottom: 20px;
}

.screen-balance-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.screen-balance-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.screen-card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.screen-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.screen-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.screen-card-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.screen-card-msg {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}

.screen-card-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.screen-card-btns {
  display: flex;
  gap: 8px;
}

.screen-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.screen-btn.skip {
  background: var(--surface-hover);
  color: var(--text-secondary);
}

.screen-btn.approve {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.phone-glow-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50px;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
}

/* Keep old button styles for other sections */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--text-muted);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Responsive Hero */
@media (max-width: 968px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-mega-left {
    text-align: center;
  }
  
  .hero-actions-left {
    justify-content: center;
  }
  
  .hero-trust-left {
    justify-content: center;
  }
  
  .hero-right {
    margin-top: 40px;
  }
  
  .phone-frame-hero {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-mega-title {
    font-size: clamp(44px, 12vw, 80px);
    letter-spacing: -2px;
  }
  
  .hero-mega-left {
    text-align: center;
  }
  
  .hero-tagline {
    font-size: 18px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-actions-left {
    justify-content: center;
  }
  
  .btn-mega, .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-trust-big {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-trust-left {
    justify-content: center;
  }
  
  .trust-item-big {
    font-size: 14px;
  }
  
  .achievement, .game-toast, .coin {
    display: none;
  }
  
  .hero-right {
    display: none;
  }
  
  .hero-badge-new {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: 120px 24px;
  background: var(--surface);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.security-badge svg {
  color: var(--success);
}

.plaid-badge-img {
  height: 16px;
  width: auto;
}

.plaid-badge-img-large {
  height: 22px;
  width: auto;
}

/* Interactive Steps */
.steps-interactive {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step-block {
  display: flex;
  align-items: center;
  gap: 80px;
}

.step-block-reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  max-width: 480px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.step-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.step-feature svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Mini Phone Mockups */
.step-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mini-phone {
  width: 220px;
  height: 440px;
  background: var(--text);
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.mini-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: var(--text);
  border-radius: 10px;
  z-index: 10;
}

.mini-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 16px 16px;
}

/* Connect Demo */
.connect-demo {
  text-align: center;
}

.bank-icon-demo {
  width: 56px;
  height: 56px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.connect-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.bank-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-item {
  height: 48px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  animation: bankPulse 2s ease-in-out infinite;
}

.bank-item-1 { animation-delay: 0s; }
.bank-item-2 { animation-delay: 0.2s; }
.bank-item-3 { animation-delay: 0.4s; }

@keyframes bankPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Analyze Demo */
.analyze-demo {
  text-align: center;
}

.analyze-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.analyze-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 100px;
  margin-bottom: 24px;
}

.bar {
  width: 32px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 6px;
  animation: barGrow 1.5s ease-in-out infinite;
}

.bar-1 { height: 40%; animation-delay: 0s; }
.bar-2 { height: 70%; animation-delay: 0.1s; }
.bar-3 { height: 55%; animation-delay: 0.2s; }
.bar-4 { height: 85%; animation-delay: 0.3s; }

@keyframes barGrow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.7); }
}

.analyze-insight {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.insight-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -1px;
}

.insight-desc {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Journey Demo - Step 3 */
.journey-demo {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-header {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}

.journey-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.journey-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  animation: optionSlide 0.5s ease backwards;
}

.journey-option-1 { animation-delay: 0.1s; }
.journey-option-2 { animation-delay: 0.2s; }
.journey-option-3 { animation-delay: 0.3s; }
.journey-option-4 { animation-delay: 0.4s; }

@keyframes optionSlide {
  from { 
    opacity: 0; 
    transform: translateX(-10px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

.journey-option.journey-selected {
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.05);
}

.journey-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-icon-save {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
  color: var(--primary);
}

.journey-icon-vacation {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.2));
  color: var(--secondary);
}

.journey-icon-invest {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
  color: var(--success);
}

.journey-icon-emergency {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
  color: var(--accent);
}

.journey-check {
  margin-left: auto;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.journey-cta {
  margin-top: 12px;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
}

/* Notification Demo */
.notification-demo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.noti-phone {
  background: #000;
}

.noti-screen {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  padding: 0 !important;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  color: white;
}

.status-time {
  font-size: 14px;
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
  opacity: 0.8;
}

.lock-time {
  text-align: center;
  font-size: 64px;
  font-weight: 200;
  color: white;
  letter-spacing: -2px;
  margin-top: 40px;
}

.lock-date {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

/* Drop-down notification */
.drop-notification {
  margin: 0 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: dropIn 2s ease-in-out infinite;
}

@keyframes dropIn {
  0%, 100% { 
    transform: translateY(0); 
    opacity: 1;
  }
  10% {
    transform: translateY(-10px);
    opacity: 0;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
}

.drop-noti-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.drop-noti-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.logo-bar-tiny {
  width: 5px;
  height: 14px;
  border-radius: 3px 3px 2px 2px;
}

.logo-bar-left-tiny {
  background: linear-gradient(180deg, #EC4899 0%, #DB2777 100%);
  transform: rotate(-28deg);
  transform-origin: bottom center;
  margin-right: -3px;
}

.logo-bar-right-tiny {
  background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
  transform: rotate(28deg);
  transform-origin: bottom center;
  margin-left: -3px;
}

.drop-noti-app {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.drop-noti-time {
  font-size: 12px;
  color: var(--text-muted);
}

.drop-noti-content {
  margin-bottom: 12px;
}

.drop-noti-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.drop-noti-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.drop-noti-actions {
  display: flex;
  gap: 8px;
}

.drop-action {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.drop-skip {
  background: rgba(0,0,0,0.05);
  color: var(--text-secondary);
}

.drop-approve {
  background: var(--primary);
  color: white;
}

.swipe-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.swipe-line {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

/* Flow steps */
.noti-flow {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.flow-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.flow-icon-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.flow-step span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.flow-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .step-block,
  .step-block-reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-content {
    text-align: center;
    max-width: 100%;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
  
  .step-features {
    align-items: center;
  }
}

/* ============================================
   FEATURE PREVIEW
   ============================================ */

.feature-preview {
  padding: 120px 24px;
  background: var(--surface);
}

.preview-layout {
  display: flex;
  gap: 80px;
  align-items: center;
}

.preview-phone-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.preview-phone {
  width: 260px;
  height: 520px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.preview-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--text);
  border-radius: 12px;
  z-index: 10;
}

.preview-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.preview-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.preview-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 48px 20px 60px;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  visibility: hidden;
}

.preview-slide.slide-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Streak Demo */
.streak-demo {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.streak-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.streak-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.streak-fire {
  font-size: 14px;
  font-weight: 800;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.streak-flames {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.flame {
  width: 32px;
  height: 50px;
  background: linear-gradient(180deg, #FEF3C7 0%, #FBBF24 30%, #F59E0B 60%, #EA580C 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flicker 0.4s ease-in-out infinite alternate;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.flame-1 { animation-delay: 0s; height: 44px; width: 28px; }
.flame-2 { animation-delay: 0.15s; height: 56px; width: 36px; }
.flame-3 { animation-delay: 0.3s; height: 44px; width: 28px; }

@keyframes flicker {
  0% { transform: scaleY(1) scaleX(1) rotate(-2deg); }
  100% { transform: scaleY(1.15) scaleX(0.9) rotate(2deg); }
}

.streak-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.streak-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.streak-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.streak-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  position: relative;
}

.badge-bronze { 
  background: linear-gradient(135deg, #92400E, #D97706); 
  opacity: 0.5;
  border: 2px solid rgba(217, 119, 6, 0.3);
}
.badge-silver { 
  background: linear-gradient(135deg, #4B5563, #9CA3AF); 
  border: 2px solid #9CA3AF;
  box-shadow: 0 0 12px rgba(156, 163, 175, 0.4);
}
.badge-gold { 
  background: linear-gradient(135deg, #D97706, #FBBF24); 
  opacity: 0.4;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

/* Mood Demo */
.mood-demo {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mood-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mood-score-ring {
  width: 140px;
  height: 140px;
  position: relative;
  margin-bottom: 12px;
}

.mood-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mood-progress {
  animation: moodFill 1.5s ease-out forwards, moodPulse 2s ease-in-out infinite 1.5s;
}

@keyframes moodFill {
  from { stroke-dashoffset: 283; }
  to { stroke-dashoffset: 44; }
}

@keyframes moodPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.3)); }
  50% { filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6)); }
}

.mood-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mood-status {
  font-size: 20px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 16px;
}

.mood-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mood-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.detail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-good { background: var(--success); }

/* Wrap Demo */
.wrap-demo {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wrap-header {
  margin-bottom: 20px;
}

.wrap-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wrap-stat-main {
  margin-bottom: 24px;
}

.wrap-stat-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.wrap-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.wrap-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.wrap-stat-small {
  text-align: center;
}

.wrap-small-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.wrap-small-label {
  font-size: 11px;
  color: var(--text-muted);
}

.wrap-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Celebration Demo */
.celebration-demo {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.celeb-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: particleFloat 2.5s ease-in-out infinite;
}

.p1 { background: var(--primary); top: 15%; left: 15%; animation-delay: 0s; width: 12px; height: 12px; }
.p2 { background: var(--secondary); top: 25%; right: 12%; animation-delay: 0.4s; }
.p3 { background: var(--success); bottom: 35%; left: 10%; animation-delay: 0.8s; width: 8px; height: 8px; }
.p4 { background: var(--warning); bottom: 20%; right: 18%; animation-delay: 1.2s; width: 14px; height: 14px; }
.p5 { background: var(--accent); top: 35%; left: 25%; animation-delay: 1.6s; width: 6px; height: 6px; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-15px) scale(1.3) rotate(180deg); opacity: 1; }
}

.celeb-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--success), #34D399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
  animation: celebPulse 1.5s ease-in-out infinite;
}

@keyframes celebPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(16, 185, 129, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(16, 185, 129, 0.6); }
}

.celeb-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.celeb-message {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.celeb-rarity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.rarity-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Preview navigation */
.preview-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
}

.preview-dot:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.preview-dot.dot-active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 1;
}

.swipe-hint {
  position: absolute;
  bottom: 44px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  animation: swipeHintMove 1.5s ease-in-out infinite;
}

@keyframes swipeHintMove {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* Progress indicator */
.preview-screen::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.preview-screen::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  z-index: 5;
  animation: progressFill 2.5s linear infinite;
}

@keyframes progressFill {
  0% { width: 0; }
  100% { width: calc(100% - 40px); }
}

/* Paused state - stop progress bar */
.preview-screen.paused::before {
  animation: none;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.6;
}

.preview-screen.paused::after {
  background: transparent;
}

/* Feature list */
.preview-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--border);
  background: var(--surface);
}

.preview-feature:hover {
  background: var(--bg);
  transform: translateX(4px);
  border-color: var(--text-muted);
}

.preview-feature.pf-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.preview-feature.pf-active .pf-title {
  color: var(--primary);
}

.pf-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-icon-streak { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.pf-icon-mood { background: rgba(139, 92, 246, 0.1); color: var(--primary); }
.pf-icon-wrap { background: rgba(236, 72, 153, 0.1); color: var(--secondary); }
.pf-icon-celeb { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.pf-content {
  flex: 1;
}

.pf-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pf-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .preview-layout {
    flex-direction: column;
    gap: 48px;
  }
  
  .preview-features {
    width: 100%;
  }
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: 120px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TECH PHILOSOPHY SECTION
   ============================================ */

.tech-philosophy {
  text-align: center;
}

.tech-header {
  margin-bottom: 48px;
}

.tech-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 20px;
}

.tech-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tech-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all 0.3s ease;
}

.tech-feature:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg), var(--surface));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.tech-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.tech-value {
  font-size: 13px;
  color: var(--text-muted);
}

/* Code Window */
.tech-code {
  display: flex;
  justify-content: center;
}

.code-window {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.code-dots {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #FF5F56; }
.code-dots span:nth-child(2) { background: #FFBD2E; }
.code-dots span:nth-child(3) { background: #27CA40; }

.code-content {
  padding: 20px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.code-line {
  display: block;
  color: #e4e4e7;
  opacity: 0;
  animation: typeIn 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 0.8s; }
.code-line:nth-child(4) { animation-delay: 1.1s; }
.code-line:nth-child(5) { animation-delay: 1.4s; }

@keyframes typeIn {
  from { 
    opacity: 0; 
    transform: translateX(-10px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

.code-keyword {
  color: #C678DD;
}

.code-prop {
  color: #61AFEF;
}

.code-string {
  color: #98C379;
}

/* Blinking cursor effect */
.code-content::after {
  content: '|';
  color: var(--primary);
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.proof-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .proof-divider {
    display: none;
  }
  .proof-content {
    gap: 32px;
  }
}

/* ============================================
   SECURITY TRUST SECTION
   ============================================ */

.security-trust {
  padding: 80px 24px;
}

.security-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.security-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.security-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.security-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.flow-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--border);
}

.flow-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--border), var(--success), var(--border));
  position: relative;
}

.flow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

/* Bank Logos Cycling */
.bank-node {
  overflow: hidden;
}

.bank-logos-cycle {
  display: flex;
  flex-direction: column;
  animation: cycleBanks 10s ease-in-out infinite;
}

.bank-logo-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bank-chase {
  color: #117ACA;
}

.bank-chase svg {
  width: 32px;
  height: 32px;
}

.bank-td {
  font-size: 18px;
  font-weight: 900;
  color: #34A853;
}

.bank-boa {
  color: #E31837;
}

.bank-boa svg {
  width: 28px;
  height: 28px;
}

.bank-wells {
  color: #D71E28;
}

.bank-wells svg {
  width: 28px;
  height: 28px;
}

.bank-citi {
  font-size: 14px;
  font-weight: 800;
  color: #003B70;
  letter-spacing: -0.5px;
}

@keyframes cycleBanks {
  0%, 18% { transform: translateY(0); }
  20%, 38% { transform: translateY(-48px); }
  40%, 58% { transform: translateY(-96px); }
  60%, 78% { transform: translateY(-144px); }
  80%, 98% { transform: translateY(-192px); }
  100% { transform: translateY(0); }
}

/* Lock Node */
.lock-node {
  border: 2px dashed var(--success);
  background: rgba(16, 185, 129, 0.05);
  color: var(--success);
}

/* Veluna Node */
.veluna-node {
  background: var(--bg);
}

.veluna-logo-mini {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.v-bar {
  width: 10px;
  height: 28px;
  border-radius: 5px 5px 3px 3px;
}

.v-bar-left {
  background: linear-gradient(180deg, #EC4899 0%, #DB2777 100%);
  transform: rotate(-28deg);
  transform-origin: bottom center;
  margin-right: -4px;
}

.v-bar-right {
  background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
  transform: rotate(28deg);
  transform-origin: bottom center;
  margin-left: -4px;
}

/* Privacy Badge */
.security-badge-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.badge-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   WAITLIST
   ============================================ */

.waitlist {
  padding: 120px 24px;
}

.waitlist-card {
  background: var(--surface);
  border-radius: 32px;
  padding: 64px;
  display: flex;
  gap: 64px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.waitlist-content {
  flex: 1;
}

.waitlist-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.waitlist-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 400px;
}

.waitlist-form {
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.waitlist-count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-left: -8px;
  border: 3px solid var(--surface);
}

.avatar:first-child {
  margin-left: 0;
}

.count-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.waitlist-visual {
  flex: 1;
  max-width: 350px;
}

.notification-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif {
  background: var(--bg);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.6s ease backwards;
}

.notif-1 { animation-delay: 0.1s; }
.notif-2 { animation-delay: 0.2s; transform: translateX(20px); }
.notif-3 { animation-delay: 0.3s; transform: translateX(10px); }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-icon-save {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
}

.notif-icon-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.notif-icon-alert {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.notif-text {
  display: flex;
  flex-direction: column;
}

.notif-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.notif-time {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .waitlist-card {
    flex-direction: column;
    padding: 40px 24px;
  }
  .waitlist-visual {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 64px 24px 32px;
  background: var(--text);
  color: var(--text-inverse);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer .logo-text {
  color: white;
}

.footer-tagline {
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   SUCCESS STATE
   ============================================ */

.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  animation: successFadeIn 0.6s ease-out;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-particles {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.success-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: particleBurst 1s ease-out forwards;
}

.particle.p1 { background: #E879F9; top: 50%; left: 50%; animation-delay: 0s; }
.particle.p2 { background: #60A5FA; top: 50%; left: 50%; animation-delay: 0.1s; }
.particle.p3 { background: #34D399; top: 50%; left: 50%; animation-delay: 0.2s; }
.particle.p4 { background: #FBBF24; top: 50%; left: 50%; animation-delay: 0.15s; }
.particle.p5 { background: #F472B6; top: 50%; left: 50%; animation-delay: 0.25s; }
.particle.p6 { background: #818CF8; top: 50%; left: 50%; animation-delay: 0.05s; }

@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.particle.p1 { animation-name: burst1; }
.particle.p2 { animation-name: burst2; }
.particle.p3 { animation-name: burst3; }
.particle.p4 { animation-name: burst4; }
.particle.p5 { animation-name: burst5; }
.particle.p6 { animation-name: burst6; }

@keyframes burst1 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-80px, -60px) scale(1); opacity: 0; }
}
@keyframes burst2 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(70px, -50px) scale(1); opacity: 0; }
}
@keyframes burst3 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-60px, 70px) scale(1); opacity: 0; }
}
@keyframes burst4 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(80px, 40px) scale(1); opacity: 0; }
}
@keyframes burst5 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-30px, -80px) scale(1); opacity: 0; }
}
@keyframes burst6 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(50px, 60px) scale(1); opacity: 0; }
}

.success-check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10B981, #34D399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: checkPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

@keyframes checkPop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.success-check svg {
  color: white;
}

.check-circle {
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  animation: drawCircle 0.6s ease-out 0.4s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

.check-mark {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: drawCheck 0.4s ease-out 0.8s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px 0;
  animation: textSlide 0.5s ease-out 0.3s both;
}

@keyframes textSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  font-size: 16px;
  color: #64748B;
  margin: 0 0 24px 0;
  line-height: 1.6;
  animation: textSlide 0.5s ease-out 0.4s both;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(232, 121, 249, 0.1), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(232, 121, 249, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #8B5CF6;
  animation: textSlide 0.5s ease-out 0.5s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #E879F9, #60A5FA);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-phone {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   GLOBAL ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
