/* ========== ROOT VARIABLES ========== */
:root {
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --ivory: #FFFDF5;
  --ivory-dark: #F5F0E8;
  --charcoal: #111827;
  --charcoal-light: #1F2937;
  --charcoal-lighter: #374151;

  --emerald: #065E46;
  --emerald-dark: #04422F;
  --emerald-light: #059669;
  --emerald-glow: rgba(6, 95, 70, 0.3);

  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-glow: rgba(212, 175, 55, 0.4);

  --amber: #F59E0B;
  --burgundy: #7C2D12;
  --burgundy-light: #9A3E1A;

  --foreground: #1F2937;
  --muted-foreground: #6B7280;
  --background: #FFFFFF;
  --card-bg: #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-gold-glow: 0 0 24px rgba(212, 175, 55, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

[data-theme="dark"] {
  --ivory: #0F172A;
  --ivory-dark: #1E293B;
  --charcoal: #F8FAFC;
  --charcoal-light: #E2E8F0;
  --charcoal-lighter: #CBD5E1;

  --foreground: #F1F5F9;
  --muted-foreground: #94A3B8;
  --background: #0F172A;
  --card-bg: #1E293B;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-gold-glow: 0 0 24px rgba(212, 175, 55, 0.15);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

/* ========== UTILITY ========== */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-gold {
  color: var(--gold) !important;
}

.text-white {
  color: #FFF !important;
}

.text-ivory {
  color: var(--ivory) !important;
}

.text-burgundy-strikethrough {
  color: var(--burgundy);
  text-decoration: line-through;
}

[data-theme="dark"] .text-burgundy-strikethrough {
  color: #FCA5A5;
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 253, 245, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-glow);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(31, 41, 55, 0.9);
  color: var(--gold-light);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 253, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-emblem {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFF;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-brand-text {
  color: var(--foreground);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--muted-foreground);
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .nav-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.nav-link-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1F2937 !important;
  font-weight: 600;
  padding: 8px 20px;
}

.nav-link-cta:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggle span {
  background: var(--foreground);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-backdrop.visible {
    opacity: 1;
    visibility: visible;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    background: rgba(6, 95, 70, 0.98);
    backdrop-filter: blur(12px);
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  }

  [data-theme="dark"] .navbar-menu {
    background: rgba(4, 66, 47, 0.98);
  }

  .navbar-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 12px;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link-cta {
    margin-top: 8px;
    text-align: center;
    color: #1F2937 !important;
  }

  .navbar-toggle {
    display: flex;
  }
}

/* ========== SECTION SHARED ========== */
.section-cream {
  position: relative;
  padding: 96px 0;
  background: var(--ivory);
  overflow: hidden;
}

.section-ivory {
  position: relative;
  padding: 96px 0;
  background: var(--ivory-dark);
  overflow: hidden;
}

.section-emerald {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  overflow: hidden;
  color: #FFF;
}

.section-burgundy {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #4A1A0E, var(--burgundy));
  overflow: hidden;
  color: #FFF;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3.25rem; }
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 15vw;
  max-width: 120px;
  margin: 24px auto 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-star {
  color: var(--gold);
  flex-shrink: 0;
}

/* ========== HERO ========== */
.hero-section {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #065E46 0%, #0D4F3A 35%, #0A3D2C 65%, #065E46 100%);
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #04422F 0%, #083A2A 35%, #062E20 65%, #04422F 100%);
}

.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  display: none;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
}

.hero-overlay-2 {
  display: none;
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.4);
  pointer-events: none;
}

/* Glows */
.hero-glow-left {
  position: absolute;
  left: -128px;
  top: 80px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(64px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero-glow-right {
  position: absolute;
  right: -128px;
  bottom: 40px;
  width: 448px;
  height: 448px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  filter: blur(64px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

@media (max-width: 768px) {
  .hero-glow-left { left: -40%; width: 80vw; height: 80vw; top: 10%; }
  .hero-glow-right { right: -40%; width: 80vw; height: 80vw; bottom: 5%; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .hero-content { padding: 56px 16px; }
}

/* Emblem */
.emblem-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.emblem-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  animation: float-slow 9s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

/* Brand wordmark */
.brand-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.brand-destiny {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.brand-tld {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

/* Launching badge */
.launching-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
  margin-bottom: 32px;
}

.live-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.live-dot-inner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::after {
  content: '';
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.launching-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

.sparkle-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 0;
}

.hero-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 8px;
}

.hero-sub .text-gold {
  color: var(--gold);
}

/* Subheadline */
.hero-subtext {
  max-width: 680px;
  margin: 28px auto 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

/* Hero CTAs */
.hero-ctas {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 575.98px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; justify-content: center; }
}

/* ========== BUTTONS ========== */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1F2937;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  min-height: 48px;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.5);
}

.btn-primary-glow .arrow-right {
  transition: transform 0.3s ease;
}

.btn-primary-glow:hover .arrow-right {
  transform: translateX(4px);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-secondary-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 575.98px) {
  .trust-strip { flex-direction: column; gap: 8px; }
  .trust-dot { display: none; }
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fade-in-down 2s ease 2s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

.scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-bounce 2s ease infinite;
}

/* ========== FEATURE CARDS ========== */
.row.g-4 {
  --bs-gutter-y: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-lg);
}

.card-glow-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent);
  pointer-events: none;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.1), rgba(212, 175, 55, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  color: var(--emerald);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #FFF;
  box-shadow: 0 0 24px rgba(6, 95, 70, 0.3);
}

.icon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-ring {
  border-color: var(--gold);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.card-hover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover .card-hover-bar {
  transform: scaleX(1);
}

/* ========== HOW IT WORKS / TIMELINE ========== */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--emerald), var(--gold));
  opacity: 0.3;
}

@media (min-width: 768px) {
  .timeline-line { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-item { justify-content: flex-start; }
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
}

.timeline-icon-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #FFF;
  box-shadow: 0 0 20px rgba(6, 95, 70, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  box-shadow: 0 0 30px rgba(6, 95, 70, 0.5);
  transform: scale(1.05);
}

.timeline-number {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.timeline-card {
  flex: 1;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
  min-width: 0;
}

.timeline-item:hover .timeline-card {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.timeline-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ========== SECTION EMERALD (Built on Experience) ========== */
.section-radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05), transparent);
  pointer-events: none;
}

.ornament-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(6, 95, 70, 0.04), transparent 60%);
  pointer-events: none;
}

.emerald-radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
}

.eyebrow-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
  background: rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ========== BURGUNDY SECTION ========== */
.burgundy-blur-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(124, 45, 18, 0.04), transparent 60%);
  pointer-events: none;
}

.burgundy-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06), transparent 60%);
  pointer-events: none;
}

.eyebrow-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-on-dark svg {
  color: var(--gold-light);
  width: 14px;
  height: 14px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-badge-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ========== PUBLICATIONS ========== */
.pub-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.2);
}

.pub-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 95, 70, 0.05), transparent);
  pointer-events: none;
}

.pub-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.1), rgba(212, 175, 55, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--emerald);
  transition: all 0.3s ease;
}

.pub-card:hover .pub-icon-wrap {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #FFF;
}

.pub-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.pub-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.pub-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ========== WAITLIST ========== */
.waitlist-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(6, 95, 70, 0.04), transparent 60%);
  pointer-events: none;
}

.waitlist-glow-left {
  position: absolute;
  left: -96px;
  top: 20%;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(6, 95, 70, 0.1);
  filter: blur(48px);
  pointer-events: none;
}

.waitlist-glow-right {
  position: absolute;
  right: -96px;
  bottom: 20%;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(48px);
  pointer-events: none;
}

.waitlist-subtitle {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.waitlist-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.waitlist-card-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  filter: blur(40px);
  pointer-events: none;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.form-label svg {
  color: var(--emerald);
}

.waitlist-input {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(107, 114, 128, 0.2);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.waitlist-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.15);
  outline: none;
}

.waitlist-input::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.btn-submit-waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #FFF;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
  min-height: 48px;
}

.btn-submit-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(6, 95, 70, 0.4);
}

.waitlist-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Success state */
.waitlist-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 28px rgba(6, 95, 70, 0.3);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 12px;
}

.success-message {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ========== FINAL CTA ========== */
.final-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-dark), #0A3D2C);
}

[data-theme="dark"] .final-cta-section {
  background: linear-gradient(135deg, #04422F, #062E20);
}

.cta-parallax {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-bg-img {
  display: none;
}

.cta-overlay-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(5, 150, 105, 0.1), transparent 70%);
}

.cta-overlay-2 {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 24px;
}

.cta-sparkle {
  color: var(--gold);
  margin-bottom: 24px;
  width: 36px;
  height: 36px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFF;
  margin-bottom: 20px;
}

.cta-italic {
  font-style: italic;
}

.cta-subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.btn-cta-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1F2937;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  overflow: hidden;
  min-height: 52px;
}

.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.5);
}

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

.btn-cta-gold .arrow-right {
  transition: transform 0.3s ease;
}

.btn-cta-gold:hover .arrow-right {
  transform: translateX(4px);
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  padding: 64px 0 32px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.footer-glow-bg {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 95, 70, 0.08), transparent);
  pointer-events: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFF;
}

.footer-brand-tld {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
}

.footer-brand-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 360px;
}

.footer-powered {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 0.875rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-verse {
  font-style: italic;
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.75rem;
}

/* Dark mode footer */
[data-theme="dark"] .footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .footer-brand-name {
  color: #F1F5F9;
}

[data-theme="dark"] .footer-brand-tagline,
[data-theme="dark"] .footer-desc,
[data-theme="dark"] .footer-powered,
[data-theme="dark"] .footer-list li,
[data-theme="dark"] .footer-contact li {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-heading {
  color: #F1F5F9;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .footer-verse {
  color: rgba(212, 175, 55, 0.6);
}

[data-theme="dark"] .footer .text-ivory {
  color: #E2E8F0 !important;
}

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

/* ========== ANIMATIONS ========== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

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

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.5; }
}

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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.fade-in-up,
.fade-in,
.stagger-children > .fade-in-up,
.stagger-children > .fade-in {
  opacity: 0;
}

.fade-in-up.visible,
.fade-in.visible,
.stagger-children > .fade-in-up.visible,
.stagger-children > .fade-in.visible {
  animation-fill-mode: forwards;
}

.fade-in-up.visible {
  animation: fade-in-up 0.7s ease both;
}

.fade-in.visible {
  animation: fade-in 0.7s ease both;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 575.98px) {
  .hero-content { padding: 80px 16px; }
  .btn-primary-glow, .btn-secondary-outline, .btn-cta-gold { padding: 14px 24px; font-size: 0.875rem; }
  .waitlist-card { padding: 32px 20px; }
  .section-cream, .section-ivory, .section-emerald, .section-burgundy { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .brand-destiny { font-size: 1.25rem; }
  .emblem-img { width: 72px; height: 72px; }
  .feature-card { padding: 28px 20px; }
  .stat-value { font-size: 2rem; }
  .footer { padding: 48px 0 24px; }
  .trust-grid { gap: 10px; }
  .trust-badge { padding: 12px 18px; font-size: 0.75rem; }
  .timeline-item { gap: 16px; }
  .timeline-card { padding: 18px; }
  .timeline-icon { width: 44px; height: 44px; }
  .timeline-icon svg { width: 22px; height: 22px; }
  .timeline-line { left: 36px; }
  .theme-toggle { top: 12px; right: 12px; width: 40px; height: 40px; }
}

@media (max-width: 399.98px) {
  .hero-headline { font-size: 1.65rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-subtext { font-size: 0.9375rem; }
  .brand-wordmark { flex-direction: column; gap: 4px; }
  .btn-primary-glow svg:first-child, .btn-primary-glow svg:last-child { display: none; }
  .theme-toggle { width: 36px; height: 36px; top: 10px; right: 10px; }
  .theme-toggle svg { width: 16px; height: 16px; }
  .gold-divider { width: 40%; }
  .trust-strip { margin-top: 40px; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-headline { font-size: 2.5rem; }
  .brand-destiny { font-size: 1.35rem; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-headline { font-size: 3rem; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section { min-height: 120dvh; }
  .hero-content { padding: 60px 24px 80px; }
  .emblem-img { width: 56px; height: 56px; }
  .brand-wordmark { margin-bottom: 16px; }
  .brand-destiny { font-size: 1rem; }
  .hero-headline { font-size: 1.5rem; }
  .hero-sub { font-size: 0.875rem; }
  .hero-subtext { font-size: 0.8125rem; margin-top: 12px; }
  .hero-ctas { margin-top: 24px; gap: 10px; }
  .trust-strip { display: none; }
  .launching-badge { margin-bottom: 16px; padding: 6px 16px; }
  .scroll-indicator { display: none; }
}

@media (max-width: 575.98px) {
  .footer-contact li { font-size: 0.8125rem; }
  .footer-emblem { width: 40px; height: 40px; }
  .social-link { width: 36px; height: 36px; }
  .cta-content { padding: 60px 16px; }
  .cta-sparkle { width: 28px; height: 28px; }
  .pub-card { padding: 24px 20px; }
  .trust-badge { width: 100%; justify-content: center; }
  .section-header .text-gradient-emerald,
  .section-header .text-gradient-gold { font-size: inherit; }
}

@media (max-width: 575.98px) {
  .timeline-icon-wrap .timeline-number { font-size: 0.55rem; }
  .footer-heading { margin-top: 24px; }
  .footer-contact { margin-bottom: 0; }
  .navbar-emblem { width: 28px; height: 28px; }
  .navbar-brand-text { font-size: 1rem; }
}

@media (max-width: 399.98px) {
  .hero-content { padding: 48px 12px; }
  .launching-badge { padding: 6px 14px; gap: 6px; }
  .launching-text { font-size: 10px; letter-spacing: 0.2em; }
  .sparkle-icon { width: 12px; height: 12px; }
  .trust-item { font-size: 0.6rem; }
  .cta-heading { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .feature-title { font-size: 1.0625rem; }
  .stat-value { font-size: 1.75rem; }
  .waitlist-input { padding: 12px 14px; font-size: 0.875rem; }
  .btn-submit-waitlist { padding: 14px 20px; font-size: 0.875rem; }
  .final-cta-section { min-height: 400px; }
  .navbar-toggle span { width: 20px; }
  .navbar-menu { width: 100%; }
  .modal-card { padding: 28px 20px; margin: 12px; }
  .modal-title { font-size: 1.25rem; }
  #waitlistModal .modal-content .form-control { background: var(--background); color: var(--foreground); }
  #waitlistModal .modal-content .form-control:focus { border-color: var(--emerald) !important; box-shadow: 0 0 0 3px rgba(6,95,70,0.15) !important; }
  #waitlistModal .modal-content .btn-close { filter: var(--btn-close-filter, none); }
}

[data-theme="dark"] #waitlistModal .modal-content { background: #1E293B !important; }
[data-theme="dark"] #waitlistModal .modal-content .form-control { background: #0F172A; color: #F1F5F9; border-color: rgba(148,163,184,0.2) !important; }
[data-theme="dark"] #waitlistModal .modal-content .btn-close { filter: brightness(0) invert(1); }
