/* ============ VARIABLES ============ */
:root {
  --void-black: #000000;
  --obsidian: #0A0A0A;
  --deep-space: #050510;
  --charcoal: #1C1C1C;
  --royal-gold: #D4AF37;
  --champagne: #F7E7CE;
  --light-gold: #FFD700;
  --dark-gold: #B8860B;
  --platinum: #E5E4E2;
  --ivory: #FFFFF0;
  --electric-blue: #00D4FF;
  --cosmic-purple: #8B5CF6;
  --emerald: #10B981;
  --ruby: #EF4444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--royal-gold);
  color: var(--void-black);
  padding: 12px 24px;
  z-index: 10001;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--void-black);
  color: var(--platinum);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.08);
}

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

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

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--platinum);
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--ivory);
}

.nav-link-gold {
  color: var(--royal-gold) !important;
  opacity: 1 !important;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--royal-gold);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--royal-gold);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: var(--royal-gold);
  color: var(--void-black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--platinum);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--royal-gold);
  top: -200px;
  right: -200px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--cosmic-purple);
  bottom: 10%;
  left: -100px;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: var(--electric-blue);
  bottom: -100px;
  right: 20%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 1px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4), var(--void-black));
}

.hero-image-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-title-upper {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero-title-gold {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--royal-gold);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--platinum);
  opacity: 0.75;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: var(--void-black);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.cta-glow {
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: var(--royal-gold);
  opacity: 0;
  animation: cta-pulse 3s infinite;
  pointer-events: none;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.05); }
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--royal-gold);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

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

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(229, 228, 226, 0.6);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--royal-gold);
  font-size: 13px;
  opacity: 0.6;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ============ STATS SECTION ============ */
.stats-section {
  position: relative;
  padding: 80px 24px;
  z-index: 1;
}

.stats-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(212,175,55,0.08), rgba(212,175,55,0.02), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-icon {
  font-size: 28px;
  color: var(--royal-gold);
  margin-bottom: 12px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--platinum);
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.featured-label {
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.4;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--platinum);
  opacity: 0.25;
  letter-spacing: 3px;
  transition: opacity 0.3s;
}

.media-logo:hover {
  opacity: 0.5;
}

/* ============ FEATURES SECTION ============ */
.features-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--royal-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--platinum);
  opacity: 0.6;
  max-width: 500px;
  margin: 0 auto;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

.feature-body {
  padding: 24px;
}

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

.feature-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--royal-gold);
  margin-bottom: 8px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--platinum);
  opacity: 0.65;
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.03), transparent);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 16px;
}

.step-image-wrap {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
  color: var(--void-black);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--platinum);
  opacity: 0.6;
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  width: 60px;
  flex-shrink: 0;
}

.step-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--royal-gold), transparent);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 24px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--royal-gold);
  font-size: 14px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--platinum);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
  color: var(--void-black);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
}

.testimonial-role {
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.5;
}

/* ============ AMBASSADOR SECTION ============ */
.ambassador-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.ambassador-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--deep-space), rgba(212,175,55,0.06), var(--deep-space));
  pointer-events: none;
}

.ambassador-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.ambassador-badge {
  font-size: 40px;
  color: var(--royal-gold);
  margin-bottom: 20px;
}

.ambassador-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 12px;
}

.ambassador-subtitle {
  font-size: 16px;
  color: var(--platinum);
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 36px;
}

.promo-input-container {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 32px;
}

.promo-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--ivory);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.promo-input::placeholder {
  color: rgba(212, 175, 55, 0.4);
  text-transform: none;
  letter-spacing: 0;
}

.promo-input:focus {
  border-color: var(--royal-gold);
}

.promo-button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
  border: none;
  border-radius: 12px;
  color: var(--void-black);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.promo-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.promo-button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.5;
}

/* ============ FINAL CTA ============ */
.final-cta-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-size: 16px;
  color: var(--platinum);
  opacity: 0.65;
  margin-bottom: 40px;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  color: var(--void-black);
  transition: all 0.3s;
  margin-bottom: 20px;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.35);
}

.cta-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--void-black);
  color: var(--royal-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-note {
  font-size: 13px;
  color: var(--platinum);
  opacity: 0.4;
}

/* ============ DOWNLOAD SECTION ============ */
.download-section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #0D0D1A, #1A1A2E, #0D0D1A);
}

.download-deco-left, .download-deco-right {
  position: absolute;
  font-size: 80px;
  opacity: 0.05;
  color: var(--royal-gold);
  pointer-events: none;
}

.download-deco-left {
  top: 40px;
  left: 40px;
}

.download-deco-right {
  top: 60px;
  right: 40px;
  font-size: 100px;
}

.download-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--royal-gold);
  letter-spacing: 2px;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 12px;
}

.download-subtitle {
  font-size: 15px;
  color: var(--platinum);
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 36px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  background: var(--ivory);
  border-radius: 14px;
  color: var(--void-black);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 32px;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.app-store-button i {
  font-size: 36px;
}

.app-store-text {
  text-align: left;
}

.app-store-label {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.app-store-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.qr-section {
  margin-bottom: 36px;
}

.qr-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--platinum);
  opacity: 0.4;
}

.qr-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

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

.qr-frame {
  padding: 12px;
  background: white;
  border-radius: 12px;
}

.qr-image {
  width: 120px;
  height: 120px;
}

.qr-hint {
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.4;
}

.app-preview-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.app-preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.app-preview-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ivory);
}

.app-preview-label {
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.5;
}

.app-preview-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(to bottom, #0a0a0a, var(--void-black));
  padding: 80px 24px 40px;
  position: relative;
  z-index: 1;
}

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

.footer-brand {
  text-align: center;
  margin-bottom: 48px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 8px;
}

.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--platinum);
  opacity: 0.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: 1px;
  margin-top: 0;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: var(--platinum);
  opacity: 0.5;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.9;
  color: var(--royal-gold);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--platinum);
  transition: all 0.3s;
}

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

.disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.disclaimer p {
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.4;
  max-width: 500px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--platinum);
  opacity: 0.3;
}

/* ============ DEMO MODAL ============ */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.demo-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.demo-modal-content {
  width: 100%;
  max-width: 500px;
  background: #0D0D1A;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

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

.demo-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--platinum);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.demo-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.demo-header {
  text-align: center;
  margin-bottom: 28px;
}

.demo-header-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
}

.demo-header-subtitle {
  font-size: 14px;
  color: var(--platinum);
  opacity: 0.6;
}

.demo-slide-container {
  min-height: 340px;
}

.demo-slide {
  text-align: center;
  animation: fadeIn 0.4s;
}

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

.demo-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
}

.demo-slide-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
}

.demo-slide-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.demo-slide-description {
  font-size: 14px;
  color: var(--platinum);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 0 10px;
}

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

.demo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: left;
}

.demo-feature-text {
  font-size: 14px;
  color: var(--platinum);
}

.demo-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 20px;
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.demo-dot.active {
  width: 24px;
}

.demo-nav-buttons {
  display: flex;
  gap: 12px;
}

.demo-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--platinum);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.demo-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.demo-nav-next {
  background: var(--royal-gold) !important;
  color: var(--void-black) !important;
}

.demo-nav-next:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.demo-nav-start {
  background: var(--emerald) !important;
  color: var(--void-black) !important;
}

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

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--royal-gold);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--royal-gold);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .demo-slide {
    animation: none;
  }
  .bounce {
    animation: none;
  }
  .badge-dot {
    animation: none;
  }
  .cta-glow {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Print styles */
@media print {
  .navbar,
  #particles-canvas,
  .hero-glow,
  .scroll-indicator,
  .demo-modal-overlay,
  .cta-secondary,
  .mobile-menu-btn {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .section-title,
  .hero-title-upper,
  .hero-title-gold,
  .feature-title {
    color: black;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

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

  .mobile-menu-btn {
    display: block;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-image {
    height: 220px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    width: 60px;
    padding: 0;
    margin: 8px 0;
  }

  .testimonials-scroll {
    padding: 0 16px 16px;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-row {
    gap: 16px;
  }

  .promo-input-container {
    flex-direction: column;
  }

  .security-badges {
    flex-direction: column;
    gap: 12px;
  }

  .app-preview-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-value {
    font-size: 28px;
  }

  .hero-title-upper {
    letter-spacing: 4px;
  }

  .hero-title-gold {
    letter-spacing: 3px;
  }

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