/* ============================================
   GRANNTHALYA — Sacred Night Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700&family=Inter:wght@300;400;500;600&family=Tenor+Sans&family=Noto+Serif+Devanagari:wght@400;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0B1623;
  --bg-secondary: #0E1A2B;
  --bg-card: #1A2837;
  --bg-card-hover: #2A3847;
  --gold: #D4AF37;
  --gold-light: #F4E4B6;
  --gold-dark: #B8941E;
  --saffron: #F59E0B;
  --teal: #0A4D68;
  --purple-nebula: #1B0A3C;
  --text-primary: #F4E4B6;
  --text-muted: #A1A1AA;
  --text-white: #F8F8F2;
  --border-gold: rgba(212, 175, 55, 0.15);
  --glow-gold: rgba(212, 175, 55, 0.3);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-label: 'Tenor Sans', sans-serif;
  --font-sanskrit: 'Noto Serif Devanagari', serif;

  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Nebula/Aurora background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(27, 10, 60, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(10, 77, 104, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.section-label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

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

.sanskrit {
  font-family: var(--font-sanskrit);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--glow-gold), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--glow-gold), 0 8px 25px rgba(0, 0, 0, 0.4);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-light);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(11, 22, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
}

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

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

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Hero logo */
.hero-logo-img {
  width: 440px;
  height: 440px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  animation: omFloat 4s ease-in-out infinite;
  border-radius: 12px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-logo-hindi {
  font-family: var(--font-sanskrit);
  font-weight: 400;
}

/* Language toggle */
.lang-toggle {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

/* Hero title with Antar + मार्ग attached */
.hero-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
}

.hero-hindi {
  font-family: var(--font-sanskrit);
  font-size: 3.2rem;
  color: var(--gold);
  margin-left: 4px;
}

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

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.7rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Om glow background */
.hero-om-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: omPulse 6s ease-in-out infinite;
}

/* God rays */
.hero-god-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: conic-gradient(from 0deg,
      transparent 0deg, rgba(212, 175, 55, 0.03) 10deg, transparent 20deg,
      transparent 40deg, rgba(212, 175, 55, 0.02) 50deg, transparent 60deg,
      transparent 80deg, rgba(212, 175, 55, 0.03) 90deg, transparent 100deg,
      transparent 120deg, rgba(212, 175, 55, 0.02) 130deg, transparent 140deg,
      transparent 160deg, rgba(212, 175, 55, 0.03) 170deg, transparent 180deg,
      transparent 200deg, rgba(212, 175, 55, 0.02) 210deg, transparent 220deg,
      transparent 240deg, rgba(212, 175, 55, 0.03) 250deg, transparent 260deg,
      transparent 280deg, rgba(212, 175, 55, 0.02) 290deg, transparent 300deg,
      transparent 320deg, rgba(212, 175, 55, 0.03) 330deg, transparent 340deg,
      transparent 360deg);
  border-radius: 50%;
  pointer-events: none;
  animation: rotateRays 60s linear infinite;
}

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

.hero-om {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  animation: omFloat 4s ease-in-out infinite;
  display: inline-block;
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-sanskrit {
  font-family: var(--font-sanskrit);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating particles canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Sacred Verse Marquee --- */
.verse-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: rgba(26, 40, 55, 0.5);
}

/* When inside hero, acts as background */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 28%;
  transform: translateY(-50%);
  z-index: 0;
  border: none;
  background: none;
  padding: 0;
  opacity: 0.18;
  pointer-events: none;
}

.verse-marquee::before,
.verse-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.verse-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.verse-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track+.marquee-track {
  margin-top: 16px;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-left {
  animation: scrollLeft 120s linear infinite;
}

.marquee-left:hover {
  animation-play-state: paused;
}

.marquee-right {
  animation: scrollRight 140s linear infinite;
}

.marquee-right:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-verse {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 48px;
}

.verse-sanskrit {
  font-family: var(--font-sanskrit);
  font-size: 2.1rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.verse-ref {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.marquee-divider {
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 0 16px;
}

/* --- App Preview / Phone Mockup --- */
.app-preview {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* --- Phone Marquee Carousel --- */
.phone-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.carousel-container {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent);
}

.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-carousel 45s linear infinite;
  padding: 0 20px;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-phone {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-phone:hover {
  transform: translateY(-10px) scale(1.02);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.3),
    0 0 40px rgba(212, 175, 55, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0a0a14;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 22px;
  width: 8px;
  height: 8px;
  background: #1a2a3a;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(45, 95, 135, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #0a0a14;
  position: relative;
}

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

/* Responsive phone */
@media (max-width: 480px) {
  .phone-frame {
    width: 240px;
    height: 500px;
    border-radius: 36px;
    padding: 10px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-slide {
    border-radius: 28px;
  }

  .phone-notch {
    width: 90px;
    height: 22px;
    border-radius: 0 0 14px 14px;
  }
}

/* --- Image Modal --- */
.image-modal {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-modal.show .image-modal-content {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
  z-index: 2001;
}

.image-modal-close:hover {
  color: var(--gold);
}

.phone-slide {
  cursor: pointer;
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: rgba(26, 40, 55, 0.4);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Section Divider (Lotus wave) --- */
.section-divider {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

/* --- Features Section --- */
.features {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-card .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feature-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  color: var(--gold);
}

/* --- Journeys Section --- */
.journeys {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: rgba(26, 40, 55, 0.3);
}

.journeys-live {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.journey-card-featured {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.journey-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.journey-badge.live {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.journey-badge.coming-soon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.journey-card-featured h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.journey-card-featured p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* --- Timeline & Task Progress UI --- */
.journey-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.journey-points {
  font-family: var(--font-label);
  font-size: 0.7rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  margin-top: 4px;
}

.points-icon {
  font-size: 0.9rem;
}

.points-number {
  font-weight: 700;
  color: var(--gold);
}

.journey-timeline {
  margin: 24px 0;
  position: relative;
  padding-left: 20px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: rgba(212, 175, 55, 0.2);
}

.timeline-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--gold);
  z-index: 2;
  transition: var(--transition);
}

.timeline-item.completed .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.timeline-item.completed::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: -24px;
  left: -14px;
  width: 2px;
  background: var(--gold);
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  animation: omPulse 2s infinite;
}

.timeline-content h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.timeline-item.completed .timeline-content h4 {
  color: var(--text-muted);
  text-decoration: line-through;
}

.timeline-content p {
  font-size: 0.8rem !important;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

.journey-progress-container {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.journey-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}

.journey-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  position: relative;
  transition: width 1s ease-in-out;
}

.journey-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: translateXInfinite 2s infinite linear;
}

@keyframes translateXInfinite {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.journey-progress-text {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--gold-light);
  display: block;
  text-align: right;
}

/* --- Interactive Japa UI --- */
.japa-card-feature {
  display: flex;
  flex-direction: column;
}

.japa-ui-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px;
}

.japa-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 80%);
  border: 2px solid var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  animation: omPulse 3s infinite;
  user-select: none;
}

.japa-circle:active {
  transform: scale(0.95);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 80%);
}

.journeys-coming {
  margin-top: 48px;
}

.journeys-coming h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.coming-soon-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.coming-soon-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.coming-soon-item .cs-icon {
  font-size: 1.2rem;
}

/* --- AI Guru Section --- */
.ai-guru {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.guru-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.guru-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guru-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  transition: var(--transition);
}

.guru-feature:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.guru-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.guru-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gold-light);
}

.guru-feature p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Chat mockup */
.guru-chat-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-gold);
  background: rgba(212, 175, 55, 0.05);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-header-info h4 {
  font-size: 0.95rem;
  color: var(--gold-light);
}

.chat-header-info p {
  font-size: 0.7rem;
  color: #4ade80;
}

.chat-messages {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-primary);
  border-bottom-right-radius: 4px;
}

.chat-msg.guru {
  align-self: flex-start;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border-gold);
  background: rgba(212, 175, 55, 0.03);
}

.chat-input input {
  flex: 1;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 10px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.chat-input input::placeholder {
  color: var(--text-muted);
}

.chat-input button {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-input button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--glow-gold);
}

/* --- Audio Section --- */
.audio-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: rgba(26, 40, 55, 0.3);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.audio-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.audio-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.audio-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.audio-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Pricing Section --- */
.pricing {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-primary);
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* --- Social Proof / Community --- */
.community {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: rgba(26, 40, 55, 0.3);
}

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

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.community-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.community-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.community-stat {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.community-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-gold);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-gold);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Sacred Geometry Overlay --- */
.sacred-geometry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 50px);
}

/* --- Animations --- */
@keyframes omPulse {

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

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
}

@keyframes omFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotateRays {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.7s;
}

.stagger-children .reveal:nth-child(8) {
  transition-delay: 0.8s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .guru-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 22, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-cta {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero-om {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .journeys-live {
    grid-template-columns: 1fr;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ============================================
   WAITLIST MODAL
   ============================================ */
.waitlist-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 22, 35, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.waitlist-overlay.open {
  display: flex;
}

.waitlist-modal {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
  animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.waitlist-close:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

/* Steps indicator */
.waitlist-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 24px 0;
}

.waitlist-step {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
}

.waitlist-step span {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  font-size: 0.65rem;
  font-weight: 600;
}

.waitlist-step.active {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.1);
}

.waitlist-step.active span {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg-primary);
}

.waitlist-step.completed {
  color: #4ade80;
}

.waitlist-step.completed span {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

/* Panels */
.waitlist-panel {
  display: none;
  padding: 32px;
}

.waitlist-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.waitlist-header {
  margin-bottom: 24px;
}

.waitlist-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.waitlist-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form elements */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Checkbox card grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.checkbox-card {
  cursor: pointer;
  display: block;
}

.checkbox-card input[type="checkbox"] {
  display: none;
}

.checkbox-content {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.checkbox-card input:checked+.checkbox-content {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.checkbox-icon {
  font-size: 1.8rem;
  display: block;
}

.checkbox-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.checkbox-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.checkbox-content:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Nav buttons */
.waitlist-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.waitlist-nav-buttons .btn {
  flex: 1;
}

.waitlist-next {
  width: 100%;
}

/* Error message */
.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Loading state */
.waitlist-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Responsive waitlist */
@media (max-width: 480px) {
  .waitlist-modal {
    border-radius: 16px;
  }

  .waitlist-panel {
    padding: 24px 20px;
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .waitlist-steps {
    gap: 4px;
    padding: 20px 16px 0;
  }

  .waitlist-step {
    font-size: 0.55rem;
    padding: 4px 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}