/* ============================================
   MyFinanceSheet — Landing Page Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg-primary:      #050502; /* Deep warm obsidian black */
  --bg-secondary:    #0f0e06; /* Warm dark bronze section background */
  --bg-card:         rgba(245,158,11,0.03); /* Amber/Gold-tinted card base */
  --bg-card-hover:   rgba(245,158,11,0.07);
  --border:          rgba(255,255,255,0.05);
  --border-hover:    rgba(245,158,11,0.4);

  --accent-indigo:   #FF9933; /* Saffron Orange */
  --accent-violet:   #10b981; /* Emerald Green */
  --accent-green:    #10b981;
  --accent-red:      #ef4444;
  --accent-blue:     #3b82f6;
  --accent-amber:    #FF9933;

  --text-primary:    #fffbeb; /* Warm vanilla tint */
  --text-secondary:  #a3a298;
  --text-muted:      #615f53;

  --saffron:         #FF9933;
  --flag-white:      #FFFFFF;
  --flag-green:      #10B981;

  --gradient-hero:   linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #10B981 100%);
  --gradient-cta:    linear-gradient(135deg, #FF9933, #e65c00); /* Saffron gradient */
  --gradient-green:  linear-gradient(135deg, #10B981, #059669);

  --glow-indigo:     0 0 60px rgba(255,153,51,0.25);
  --glow-violet:     0 0 40px rgba(16,185,129,0.2);

  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
  --radius-xl:       28px;

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Tiranga Text Fade Gradient ─── */
.wg-fade-text {
  background: linear-gradient(to right, var(--flag-white) 0%, var(--flag-white) 15%, var(--flag-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* ─── Responsive Grid Helpers ─── */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.responsive-grid-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.responsive-grid-split-rev {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .responsive-grid-2,
  .responsive-grid-split,
  .responsive-grid-split-rev {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.4); border-radius: 3px; }

/* ─── Background Orbs ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: var(--saffron); top: -200px; left: -200px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--flag-white); top: 40%; right: -150px; animation-delay: -3s; }
.orb-3 { width: 400px; height: 400px; background: var(--flag-green); bottom: -100px; left: 30%; animation-delay: -6s; }

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

/* ─── Noise Texture Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── Layout Wrapper ─── */
.page-wrapper { position: relative; z-index: 1; }

/* ─── Utility ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 24px rgba(99,102,241,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(99,102,241,0.1);
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

/* ─── Section Label ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 20px;
}

/* ─── Section Title ─── */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Divider ─── */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: 2px;
  margin: 0 auto 48px;
}

/* ──────────────────────────────────────── */
/* NAVBAR */
/* ──────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  user-select: none;
  background: linear-gradient(to right, var(--saffron) 0%, var(--flag-white) 50%, var(--flag-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.logo-text-light {
  font-weight: 300;
}
.logo-text-bold {
  font-weight: 800;
}
.logo-text-accent {
  font-weight: 800;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,12,20,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  overflow-y: auto;
  padding: 80px 24px 60px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu .nav-links a {
  font-size: 1.2rem;
  padding: 12px 32px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* ──────────────────────────────────────── */
/* HERO SECTION */
/* ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-indigo);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInDown 0.7s ease 0.3s both;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hero-stats-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mockup-frame {
  background: rgba(15,17,23,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.15),
    0 40px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(99,102,241,0.1);
}
.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot.red   { background: #ff5f57; }
.mockup-dot.amber { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }
.mockup-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 12px;
}
.hero-mockup-img {
  width: 100%;
  display: block;
}

/* Floating Cards on Hero */
.hero-float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(15,18,28,0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 0.82rem;
  animation: floatCard 4s ease-in-out infinite alternate;
  z-index: 10;
}
.hero-float-card-1 {
  left: -20px;
  top: 20%;
  animation-delay: 0s;
}
.hero-float-card-2 {
  right: -20px;
  top: 35%;
  animation-delay: -2s;
}

@keyframes floatCard {
  from { transform: translateY(0px); }
  to   { transform: translateY(-12px); }
}
.float-card-header {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.float-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.float-card-sub {
  font-size: 0.72rem;
  color: var(--accent-green);
  margin-top: 2px;
}


/* ──────────────────────────────────────── */
/* SOCIAL PROOF / TICKER BAR */
/* ──────────────────────────────────────── */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--accent-indigo); flex-shrink: 0; }


/* ──────────────────────────────────────── */
/* FEATURES SECTION */
/* ──────────────────────────────────────── */
.features {
  padding: 120px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-cta);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), var(--glow-indigo);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.icon-indigo { background: rgba(99,102,241,0.15); color: var(--accent-indigo); }
.icon-violet { background: rgba(139,92,246,0.15); color: var(--accent-violet); }
.icon-green  { background: rgba(34,197,94,0.15);  color: var(--accent-green);  }
.icon-blue   { background: rgba(59,130,246,0.15);  color: var(--accent-blue);   }
.icon-amber  { background: rgba(245,158,11,0.15);  color: var(--accent-amber);  }
.icon-red    { background: rgba(239,68,68,0.15);   color: var(--accent-red);    }

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ──────────────────────────────────────── */
/* HOW IT WORKS */
/* ──────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  position: relative;
}
.how-it-works-header { text-align: center; margin-bottom: 80px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.steps-row::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
  opacity: 0.4;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.4);
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ──────────────────────────────────────── */
/* TESTIMONIALS */
/* ──────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
}
.testimonials-header { text-align: center; margin-bottom: 72px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.testimonial-card.featured {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.3);
}
.testimonial-card.featured:hover {
  box-shadow: 0 16px 40px rgba(99,102,241,0.15);
}

.quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent-indigo);
  opacity: 0.5;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--accent-amber); font-size: 0.9rem; }

/* ──────────────────────────────────────── */
/* PRICING SECTION */
/* ──────────────────────────────────────── */
.pricing {
  padding: 120px 0;
}
.pricing-header { text-align: center; margin-bottom: 72px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  background: rgba(99,102,241,0.07);
  border-color: rgba(99,102,241,0.4);
  box-shadow: var(--glow-indigo);
}
.pricing-card.popular:hover {
  box-shadow: 0 0 80px rgba(99,102,241,0.3);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  background: var(--gradient-cta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 8px;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.plan-features li .check {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li .cross {
  color: var(--text-muted);
  flex-shrink: 0;
}
.plan-cta { width: 100%; justify-content: center; }

/* ──────────────────────────────────────── */
/* FAQ SECTION */
/* ──────────────────────────────────────── */
.faq {
  padding: 120px 0;
}
.faq-header { text-align: center; margin-bottom: 72px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--accent-indigo); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent-indigo); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ──────────────────────────────────────── */
/* FINAL CTA SECTION */
/* ──────────────────────────────────────── */
.cta-section {
  padding: 80px 0 120px;
}

.cta-card {
  border-radius: var(--radius-xl);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────── */
/* FOOTER */
/* ──────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 6px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links-group a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--text-primary); }

/* ──────────────────────────────────────── */
/* ANIMATIONS */
/* ──────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ──────────────────────────────────────── */
/* RESPONSIVE */
/* ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; }
  .steps-row     { grid-template-columns: 1fr; }
  .steps-row::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

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

  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 24px; }
  .hero-stats-divider { display: none; }
  .hero-float-card { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .features, .how-it-works, .testimonials, .pricing, .faq, .cta-section { padding: 80px 0; }

  .cta-card { padding: 48px 24px; }
  .footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-brand {
    flex: 1 1 100%;
    margin-bottom: 16px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-links-group {
    flex: 1 1 calc(50% - 16px);
    min-width: 130px;
  }
  @media (min-width: 480px) {
    .footer-links-group {
      flex: 1 1 calc(33.33% - 16px);
    }
  }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ──────────────────────────────────────── */
/* UNIQUE MYFINANCESHEET DIFF ACCENTS */
/* ──────────────────────────────────────── */

/* Glowing card class */
.glow-card {
  position: relative;
  background: rgba(15, 14, 6, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.7);
}
.glow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(16, 185, 129, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s;
}
.glow-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 14, 6, 0.6);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.8), 0 0 25px -5px rgba(245, 158, 11, 0.15);
}

/* AI Coach Soundwave Player widget */
.coach-widget {
  background: rgba(8, 7, 3, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 24px;
  max-width: 440px;
  margin: 30px auto 0 auto;
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.1);
}
.coach-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.coach-voice-toggles {
  display: flex;
  gap: 8px;
}
.voice-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.voice-btn:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}
.voice-btn.active {
  background: var(--gradient-cta);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.soundwave-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.soundwave-bar {
  width: 3px;
  height: 8px;
  background: var(--accent-indigo);
  border-radius: 2px;
  transition: height 0.15s ease;
}
.soundwave-bar.animating {
  animation: wavePulse 1s ease-in-out infinite alternate;
}
@keyframes wavePulse {
  0% { height: 6px; }
  100% { height: 48px; }
}

/* Journal Simulator Widget */
.journal-widget {
  background: rgba(13, 17, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tag-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.tag-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}
.tag-pill.active-warning {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
}
.tag-pill.active-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}
.metric-highlight {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.3s;
}
.widget-feedback {
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 72px;
  display: flex;
  align-items: center;
}

/* Galton Board CSS Styles */
.peg {
  fill: rgba(255, 255, 255, 0.25);
  transition: fill 0.1s, r 0.1s;
}
.peg.hit {
  fill: #818cf8;
  r: 5px;
}
.ball {
  fill: #6366f1;
  filter: drop-shadow(0 0 3px rgba(99, 102, 241, 0.8));
}
.ball-chop {
  fill: #3b82f6;
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.8));
}
.ball-volatile {
  fill: #f59e0b;
  filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.8));
}
.ball-trend {
  fill: #10b981;
  filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.8));
}
.bin-border {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
}

/* ─── Waving Flag Animation ─── */
.nav-flag-container {
  display: inline-flex;
  align-items: flex-start;
  height: 18px;
  position: relative;
  margin-left: 8px;
  vertical-align: middle;
  padding-top: 1px;
}
.flag-pole {
  width: 2px;
  height: 18px;
  background: linear-gradient(to bottom, #f1f5f9, #94a3b8);
  border-radius: 1px;
  flex-shrink: 0;
}
.flying-flag {
  width: 20px;
  height: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-origin: left center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  border-radius: 1px;
  overflow: hidden;
  animation: flagWind 2.2s ease-in-out infinite alternate;
}
@keyframes flagWind {
  0% {
    transform: rotate(2deg) skewY(-2deg) scaleX(0.97);
    filter: brightness(0.93);
  }
  50% {
    transform: rotate(-1deg) skewY(2deg) scaleX(1.02);
    filter: brightness(1.05);
  }
  100% {
    transform: rotate(3deg) skewY(-1deg) scaleX(0.98);
    filter: brightness(0.98);
  }
}
.stripe {
  flex: 1;
  width: 100%;
}
.saffron-stripe { background-color: var(--flag-top, var(--saffron)); }
.white-stripe { background-color: var(--flag-mid, var(--flag-white)); position: relative; }
.green-stripe { background-color: var(--flag-bot, var(--flag-green)); }
.ashoka-chakra {
  width: 4px;
  height: 4px;
  border: 0.5px solid #000080;
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: var(--emblem-display, block);
}

/* ─── Tradinjournal Inspired Premium Animations ─── */
@keyframes landing-hero3DFloat {
  0%, 100% { transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0); }
  25% { transform: perspective(1200px) rotateX(1.5deg) rotateY(-1deg) translateY(-8px); }
  50% { transform: perspective(1200px) rotateX(-1deg) rotateY(1.5deg) translateY(-12px); }
  75% { transform: perspective(1200px) rotateX(0.5deg) rotateY(-0.5deg) translateY(-5px); }
}

@keyframes landing-orbPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

@keyframes landing-particleFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, -40px); }
  75% { transform: translate(10px, -15px); }
}

/* Animation Utility Classes */
.animate-3d-float {
  animation: landing-hero3DFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.animate-orb-pulse {
  animation: landing-orbPulse 10s ease-in-out infinite;
  will-change: transform, opacity;
}

.animate-particle-drift {
  animation: landing-particleFloat 12s ease-in-out infinite;
  will-change: transform;
}

/* ─── Stripe-style SaaS Stack Shift Animation ─── */
.hero-mockup-stack-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1800px;
  padding-bottom: 40px;
  transform-style: preserve-3d;
  cursor: pointer;
}

.mockup-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(15,17,23,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

/* Front Card (Dashboard) - Starts in focus */
.mockup-card-front {
  position: relative;
  width: 85%;
  z-index: 5;
  margin: 0 auto;
  transform: rotateX(6deg) rotateY(-4deg) rotateZ(0deg) translateZ(0px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(99,102,241,0.05);
}

/* Back Card (Trade Logs) - Starts slightly offset behind */
.mockup-card-back {
  position: absolute;
  top: 0;
  left: 7.5%;
  width: 85%;
  z-index: 3;
  opacity: 0.6;
  transform: rotateX(6deg) rotateY(-4deg) rotateZ(-1.5deg) translate3d(40px, 30px, -150px);
  filter: brightness(0.65) blur(1px);
  box-shadow:
    0 20px 80px rgba(0,0,0,0.5);
}

/* PC Hover Shift: Only trigger hover state on devices supporting a mouse/pointer */
@media (hover: hover) {
  .hero-mockup:hover .mockup-card-front {
    transform: rotateX(4deg) rotateY(-2deg) translate3d(-100px, 0, 0px) scale(0.95);
    opacity: 0.8;
  }
  .hero-mockup:hover .mockup-card-back {
    transform: rotateX(4deg) rotateY(2deg) translate3d(140px, -20px, 50px) scale(1.02);
    opacity: 1;
    filter: brightness(1) blur(0px);
    z-index: 6;
    box-shadow:
      0 0 0 1px rgba(99,102,241,0.2),
      0 40px 120px rgba(99,102,241,0.15),
      0 30px 80px rgba(0,0,0,0.7);
  }
}

/* PC Click/Tap Shift: Support clicking to toggle on desktop screens */
@media (min-width: 769px) {
  .hero-mockup-stack-container.clicked .mockup-card-front {
    transform: rotateX(4deg) rotateY(-2deg) translate3d(-100px, 0, 0px) scale(0.95);
    opacity: 0.8;
  }
  .hero-mockup-stack-container.clicked .mockup-card-back {
    transform: rotateX(4deg) rotateY(2deg) translate3d(140px, -20px, 50px) scale(1.02);
    opacity: 1;
    filter: brightness(1) blur(0px);
    z-index: 6;
    box-shadow:
      0 0 0 1px rgba(99,102,241,0.2),
      0 40px 120px rgba(99,102,241,0.15),
      0 30px 80px rgba(0,0,0,0.7);
  }
}

/* Mobile responsive fallback: stacked 3D deck swap (completely decoupled from hover) */
@media (max-width: 768px) {
  .hero-mockup-stack-container {
    perspective: none; /* disable 3D perspective to prevent background clipping */
    padding-top: 25px; /* space for the top card sticking out */
    padding-bottom: 25px;
    transform-style: flat;
  }
  
  /* Default Mobile State: Dashboard in front, Trade Logs offset behind */
  .mockup-card-front {
    width: 90%;
    margin: 0 auto;
    z-index: 5;
    position: relative;
    transform: scale(1) translateY(0);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  }
  
  .mockup-card-back {
    position: absolute;
    top: 5px; /* offset down so it lines up with parent */
    left: 5%;
    width: 90%;
    z-index: 3;
    opacity: 0.6;
    transform: scale(0.92) translateY(-25px); /* pull up slightly so it peaks out at the top */
    filter: brightness(0.65) blur(0.5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: block; /* Make sure it is visible on mobile */
  }

  /* Tapped Mobile State: Front card fades out and moves down, letting the back card center and scale up */
  .hero-mockup-stack-container.clicked .mockup-card-front {
    transform: scale(0.92) translateY(25px);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
  }

  .hero-mockup-stack-container.clicked .mockup-card-back {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: brightness(1) blur(0px);
    z-index: 6;
    box-shadow:
      0 0 0 1px rgba(99,102,241,0.2),
      0 25px 60px rgba(0,0,0,0.6);
  }
}


/* ──────────────────────────────────────── */
/* INTERACTIVE SHOWCASE PANEL */
/* ──────────────────────────────────────── */
.showcase-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.showcase-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
}

.showcase-tab {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: start;
  text-align: left;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.showcase-tab.active {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 4px 30px rgba(99, 102, 241, 0.06);
}

.showcase-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-tab-icon i {
  width: 18px;
  height: 18px;
}

.bg-indigo { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.bg-violet { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-amber { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

.showcase-tab-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px 0;
}

.showcase-tab-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.showcase-viewer {
  flex: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(15, 17, 23, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  align-self: center;
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.8;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.amber { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-url-bar {
  margin-left: 20px;
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.showcase-mockup-container {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #08090d;
  overflow: hidden;
}

.showcase-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.7;
  z-index: 1;
}

.showcase-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.showcase-panel.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
  pointer-events: auto;
}

/* Common Mock Card styling */
.mock-journal-card,
.mock-coach-chat-card,
.mock-stats-display-card,
.mock-playbook-card,
.mock-sync-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  z-index: 3;
  text-align: left;
}

/* Journal mockup */
.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mock-symbol-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-symbol {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.mock-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.mock-badge.buy {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.mock-badge.sell {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.mock-pnl-glowing {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
}
.mock-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.mock-stat-val {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.mock-chart-container {
  height: 90px;
  margin-bottom: 20px;
}
.mock-tags-row {
  display: flex;
  gap: 8px;
}
.mock-tag-pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}
.mock-tag-pill.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mock-tag-pill.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.mock-tag-pill.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

/* Coach chat mockup */
.mock-chat-bubble {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 85%;
}
.mock-chat-bubble.user-bubble {
  background: rgba(255,255,255,0.05);
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 2px;
  border: 1px solid rgba(255,255,255,0.04);
}
.mock-chat-bubble.coach-bubble {
  background: rgba(99, 102, 241, 0.08);
  color: #e2e8f0;
  border-left: 3px solid #6366f1;
  border-bottom-left-radius: 2px;
}
.mock-coach-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.mock-coach-avatar {
  font-size: 1.1rem;
}
.mock-coach-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.82rem;
}
.mock-voice-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  margin-top: 6px;
}
.mock-voice-pulse {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(99,102,241,0.5);
  animation: pulse-voice 2s infinite;
}
.soundwave-mock {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}
.wave-mock-bar {
  width: 3px;
  height: 14px;
  background: rgba(99, 102, 241, 0.4);
  border-radius: 2px;
}
.wave-mock-bar.active {
  background: #6366f1;
  animation: wave-pulse 0.8s infinite alternate;
}

/* Stats Analytics mockup */
.mock-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mock-stats-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.mock-expectancy-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(16,185,129,0.2);
}
.mock-progress-bars-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.mock-progress-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.mock-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.mock-progress-fill {
  height: 100%;
  border-radius: 3px;
}
.mock-stats-footer-pills {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.mock-footer-pill {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.mock-footer-pill .lbl {
  color: var(--text-muted);
}
.mock-footer-pill .val {
  font-weight: 700;
}

/* Playbook / Systems Mockup */
.mock-playbook-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 14px;
}
.mock-playbook-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}
.mock-playbook-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.mock-sizing-bias {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.mock-checklist-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mock-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.mock-checklist-item {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
}
.mock-checklist-item.checked {
  color: #e2e8f0;
}
.mock-checklist-item.checked .check-icon {
  color: #10b981;
  font-weight: bold;
}
.mock-checklist-item.unchecked {
  color: var(--text-muted);
}
.mock-checklist-item.unchecked .check-icon {
  color: var(--text-muted);
}
.mock-limits-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #10b981;
}

/* Sync direct broker mockup */
.mock-sync-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  padding: 0 20px;
}
.mock-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.mock-node-inner {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.mock-node-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mock-sync-lines {
  position: absolute;
  top: 23px;
  left: 66px;
  right: 66px;
  height: 2px;
  z-index: 1;
}
.sync-line {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
}
.sync-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: sync-pulse-anim 1.5s infinite linear;
}
.mock-sync-status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.mock-sync-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: sync-dot-pulse 1.5s infinite ease-in-out;
}
.mock-sync-status-txt {
  font-size: 0.8rem;
  color: #fff;
}
.mock-synced-trades-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-synced-trade-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 6px;
}
.mock-synced-trade-row .time {
  color: var(--text-muted);
}
.mock-synced-trade-row .sym {
  font-weight: 600;
  color: #fff;
}
.mock-synced-trade-row .type.buy { color: #10b981; }
.mock-synced-trade-row .type.sell { color: #ef4444; }

/* Keyframe animations */
@keyframes pulse-voice {
  0% { box-shadow: 0 0 0 0 rgba(99,102,241,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}
@keyframes wave-pulse {
  0% { height: 6px; }
  100% { height: 20px; }
}
@keyframes sync-pulse-anim {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes sync-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Responsive showcase */
@media (max-width: 991px) {
  .showcase-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .showcase-tabs {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .showcase-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .showcase-tab {
    min-width: 260px;
    flex-shrink: 0;
  }
}


/* ──────────────────────────────────────── */
/* ALTERNATING SHOWCASE ROWS */
/* ──────────────────────────────────────── */
.showcase-rows-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 60px;
  width: 100%;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
  width: 100%;
}

.showcase-row.reverse {
  flex-direction: row-reverse;
}

.showcase-row-content {
  flex: 1;
  max-width: 480px;
  text-align: left;
}

.showcase-row-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-indigo);
  margin-bottom: 12px;
  display: inline-block;
}

.showcase-row-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.showcase-row-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.showcase-row-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-row-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.showcase-row-features li i {
  color: var(--accent-green);
  flex-shrink: 0;
}

.showcase-row-visual {
  flex: 1.1;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.showcase-row-visual::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .showcase-rows-container {
    gap: 60px;
  }
  .showcase-row,
  .showcase-row.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .showcase-row-content {
    max-width: 100%;
    text-align: center;
  }
  .showcase-row-features {
    align-items: center;
  }
}

/* ─── Hologram Conversation Illustration Styles ─── */
.hologram-silhouette {
  animation: float-hologram 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes float-hologram {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hologram-bubble {
  animation: float-bubble 5s ease-in-out infinite;
  transform-origin: center;
}
.bubble-trader {
  animation-delay: 0.5s;
}
.bubble-dost {
  animation-delay: 1.5s;
}

@keyframes float-bubble {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}

.hologram-hud-chart {
  animation: pulse-chart 6s ease-in-out infinite alternate;
}

@keyframes pulse-chart {
  0% {
    opacity: 0.04;
  }
  100% {
    opacity: 0.12;
  }
}

/* ─── Timeline Showcase Styles ─── */
.timeline-step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.timeline-step-card.active {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.2) !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
  transform: translateX(6px);
}

.step-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transition: width 0.05s linear;
}

.step-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}

.timeline-step-card.active .step-icon-box {
  background: #6366f1;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 1px 4px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-visual {
  width: 100%;
}

/* Radar pulse animation */
.scan-beam {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(99, 102, 241, 0.3) 100%);
  animation: radar-rotate 3s infinite linear;
}

@keyframes radar-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulse-ring-outer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.5);
  animation: pulse-outward 2s infinite ease-out;
}

@keyframes pulse-outward {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  filter: drop-shadow(0 0 3px #60a5fa);
}
.orbit-1 {
  top: 10px;
  left: 10px;
  animation: orbit-move-1 4s infinite linear;
}
.orbit-2 {
  bottom: 12px;
  right: 15px;
  animation: orbit-move-2 5s infinite linear;
}
.orbit-3 {
  top: 50%;
  right: -3px;
  animation: orbit-move-3 3s infinite linear;
}

@keyframes orbit-move-1 {
  0% { transform: rotate(0deg) translate(40px) rotate(0deg); }
  100% { transform: rotate(360deg) translate(40px) rotate(-360deg); }
}
@keyframes orbit-move-2 {
  0% { transform: rotate(120deg) translate(40px) rotate(-120deg); }
  100% { transform: rotate(480deg) translate(40px) rotate(-480deg); }
}
@keyframes orbit-move-3 {
  0% { transform: rotate(240deg) translate(40px) rotate(-240deg); }
  100% { transform: rotate(560deg) translate(40px) rotate(-560deg); }
}

/* ─── Stats Performance Console Styles ─── */
.stats-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.stats-tab-btn.active {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3) !important;
  color: #fff;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.15);
}

.stats-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-out;
}

.stats-panel.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── AI Insights Playbook Scanner Styles ─── */
.scanner-glowing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: glow-pulse-green 1.5s infinite alternate;
}

@keyframes glow-pulse-green {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.scanner-beam-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  animation: scan-sweep 3s infinite ease-in-out;
  pointer-events: none;
}

@keyframes scan-sweep {
  0% {
    top: 5%;
  }
  50% {
    top: 95%;
  }
  100% {
    top: 5%;
  }
}

.insights-slide {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Trader's Journey Section Styles ─── */
.journey-tab-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.journey-tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.journey-tab-btn.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.journey-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #6366f1);
  transition: width 0.05s linear;
}

/* ─── Expectancy Surface & Quadrants Animations ─── */
.surface-cell {
  opacity: 1;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.surface-cell:hover {
  transform: scale(1.12) !important;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.radar-sweeper {
  background: conic-gradient(from 0deg, rgba(99, 102, 241, 0.08) 0deg, transparent 90deg);
  animation: radar-spin 6s linear infinite;
}

@keyframes radar-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.quad-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.quad-card:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.backtest-status-pulse {
  animation: backtest-pulse-glow 1.5s infinite ease-in-out;
}

@keyframes backtest-pulse-glow {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* ─── Mental Replay Pulse Beacons ─── */
.pulse-beacon-fomo, .pulse-beacon-fear {
  animation: beacon-ping 1.2s infinite ease-in-out;
}

@keyframes beacon-ping {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}



/* ─── Mobile Responsiveness Layout Fixes (Ported to Shared CSS) ─── */
.mobile-menu {
  z-index: 10000 !important;
}
.floating-why-card {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.responsive-scroll-wrapper {
  width: 100%;
  overflow-x: hidden !important;
}
.responsive-scroll-grid {
  min-width: 0 !important;
}
.responsive-scroll-calendar {
  min-width: 0 !important;
}

@media (max-width: 1250px) {
  .calendar-grid-split {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .nav-links {
    gap: 2px !important;
  }
  .nav-links a {
    padding: 6px 8px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 1024px) {
  .navbar .nav-links, .navbar .nav-actions {
    display: none !important;
  }
  .nav-flag-container {
    align-items: center !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    transform: translateY(4.5px) !important;
  }
  .nav-hamburger {
    margin: 0 !important;
    align-self: center !important;
    height: 32px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    transform: translateY(3.5px) !important;
  }
  .responsive-scroll-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .responsive-scroll-grid {
    min-width: 440px !important;
  }
  .responsive-scroll-calendar {
    min-width: 650px !important;
  }

  /* Mobile menu active rules */
  .mobile-menu .nav-links {
    display: flex !important;
  }

  /* Most Traders Fail Section Floating Cards Cutoff & Proximity */
  .why-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    gap: 20px !important;
    padding: 40px 0 !important;
    position: relative !important;
  }
  .why-silhouette-wrapper {
    position: relative !important;
    top: auto !important;
    margin: 10px auto !important;
    width: 220px !important;
    height: 240px !important;
    order: 2 !important;
  }
  .why-card-left {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    animation: none !important;
    order: 1 !important;
  }
  .why-card-right {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    animation: none !important;
    order: 3 !important;
  }
  .why-connect-line {
    display: none !important;
  }

  /* Dost AI Tu Mode card header squeeze */
  .mock-card-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* AI Coach Online header squeeze */
  .coach-widget-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .coach-voice-toggles {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ─── Premium Dropdown Styles (Global) ─── */
@media (min-width: 1025px) {
  .nav-links li {
    position: relative;
  }
  .nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-caret {
    transition: transform 0.2s ease;
    color: var(--text-muted);
  }
  .has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
    color: var(--text-primary);
  }

  /* Glassmorphic Dropdown Panel */
  .nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: max-content;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    margin-top: 10px;
  }

  .has-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* Bridge spacing gap */
  .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
  }

  /* 3-column features layout grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 20px;
  }
  .features-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .features-col-title {
    font-family: 'Outfit';
    font-size: 0.72rem;
    font-weight: 800;
    color: #818cf8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    padding-left: 10px;
  }

  /* Dropdown List Items */
  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: normal !important;
  }
  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .dropdown-item:hover .dropdown-icon {
    background: var(--gradient-cta);
    color: #fff;
  }
  .dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dropdown-title {
    font-family: 'Outfit';
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  .dropdown-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* Single column resources layout */
  .resources-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.dropdown-footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-footer-link:hover {
  color: var(--saffron);
}

.dropdown-footer-link:hover i {
  transform: translateX(4px);
}

.dropdown-footer-link i {
  transition: transform 0.2s ease;
}

/* ─── Premium Compare Plans Button Styles ─── */
.btn-compare-plans {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  outline: none;
  text-decoration: none;
}

.btn-compare-plans:hover {
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(59, 130, 246, 0.6);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  transform: translateY(-1.5px);
}

.btn-compare-plans:active {
  transform: translateY(0.5px);
}

.btn-compare-plans-pulse {
  animation: compare-plans-pulse-glow 2.5s infinite ease-in-out;
}

@keyframes compare-plans-pulse-glow {
  0% {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 0px rgba(59, 130, 246, 0);
    background: rgba(59, 130, 246, 0.05);
  }
  50% {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.12);
  }
  100% {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 0px rgba(59, 130, 246, 0);
    background: rgba(59, 130, 246, 0.05);
  }
}

/* ─── Modal overlay styles for landing/pricing pages ─── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 2, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-container {
  max-width: 920px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  background: rgba(15, 14, 6, 0.95);
  border: 1px solid rgba(255, 153, 51, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 153, 51, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: #fff;
}

/* ─── Premium Pricing Redesign Styles ─── */

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 12px;
}

.pricing-toggle-container {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 99px;
  position: relative;
}

.pricing-toggle-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.pricing-toggle-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--saffron) 0%, #e67e22 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.pricing-toggle-save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-card-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: -12px;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Premium CTA buttons */
.plan-cta-new {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.plan-cta-new.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.plan-cta-new.btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.plan-cta-new.btn-saffron {
  background: linear-gradient(135deg, var(--saffron) 0%, #e67e22 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.plan-cta-new.btn-saffron:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* Comparison trigger links */
.compare-trigger-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.compare-trigger-link:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

/* Sticky Comparison Header for pricing page */
.sticky-comparison-header {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 12, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none; /* Controlled via active class */
}

.sticky-comparison-header.active {
  transform: translateY(0);
  display: block;
}

.sticky-comparison-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 38% 19% 2.5% 19% 2.5% 19%;
  align-items: center;
}

.sticky-column-free, .sticky-column-lite, .sticky-column-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sticky-plan-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.03em;
}

.sticky-plan-price {
  font-size: 11.5px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1px;
}

.sticky-cta-btn {
  display: block;
  text-align: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 140px;
  margin: 4px auto 0 auto;
}

.sticky-cta-btn.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.sticky-cta-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sticky-cta-btn.btn-filled {
  background: linear-gradient(135deg, var(--saffron) 0%, #e67e22 100%);
  color: #fff;
}

.sticky-cta-btn.btn-filled:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .sticky-comparison-header {
    display: none !important; /* Hide sticky comparison header on mobile devices */
  }
}

/* Light theme override for sticky header */
.sticky-comparison-header.light-theme {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.sticky-comparison-header.light-theme .sticky-plan-title {
  color: #0f172a;
}
.sticky-comparison-header.light-theme .sticky-plan-price {
  color: #475569;
}
.sticky-comparison-header.light-theme .sticky-cta-btn.btn-outline {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
}
.sticky-comparison-header.light-theme .sticky-cta-btn.btn-outline:hover {
  background: #f1f5f9;
}
.sticky-comparison-header.light-theme .pricing-toggle-container {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.sticky-comparison-header.light-theme .pricing-toggle-btn {
  color: #475569;
}
.sticky-comparison-header.light-theme .pricing-toggle-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--saffron) 0%, #e67e22 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}
