/* ═══════════════════════════════════════
   PURDY FINANCIALS — styles.css
   Celestial Trading Intelligence
   ═══════════════════════════════════════ */

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

:root {
  --deep-space: #050a14;
  --nebula-dark: #0a1628;
  --nebula-mid: #0f2035;
  --gold-bright: #d4a846;
  --gold-light: #f0d078;
  --gold-dim: #9a7a2e;
  --cyan-glow: #00e5ff;
  --cyan-dim: #0091a1;
  --emerald: #00c896;
  --magenta: #ff3c8e;
  --white: #f0f0f0;
  --white-dim: #a0aab8;
  --glass: rgba(15, 32, 53, 0.65);
  --glass-border: rgba(212, 168, 70, 0.2);
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep-space);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(5, 10, 20, 0.95);
  border: 1px solid rgba(212, 168, 70, 0.35);
  color: var(--gold-light);
}
.skip-link:focus { left: 12px; }


/* ── Starfield ── */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.starfield .star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--dur) ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.15; transform: scale(0.8); }
  100% { opacity: var(--max-op); transform: scale(1.2); }
}

/* ── Nebula Glows ── */
.nebula-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.nebula-glow.g1 { width: 600px; height: 600px; background: var(--cyan-glow); top: -200px; left: -100px; }
.nebula-glow.g2 { width: 500px; height: 500px; background: var(--gold-bright); bottom: 20%; right: -150px; }
.nebula-glow.g3 { width: 700px; height: 700px; background: var(--magenta); bottom: -300px; left: 30%; opacity: 0.06; }

/* ── Constellation Canvas ── */
#constellation-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout ── */
.content-wrap { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 40px rgba(0, 229, 255, 0.06);
  padding: 10px 0;
}

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

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

.nav-logo .logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  transition: color 0.3s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold-bright);
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-bright) !important;
  transition: all 0.3s;
  background: transparent;
}
.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--deep-space) !important;
  box-shadow: 0 0 24px rgba(212, 168, 70, 0.3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  margin: 5px 0;
  transition: 0.3s;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 96px;
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,168,70,0.08), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 20%, rgba(212, 168, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: calc(24px + env(safe-area-inset-bottom));
  animation: fadeInDown 0.8s ease-out;
}

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

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 200, 150, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

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

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}


.hero-outcomes {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 18px;
  font-size: 13px;
  color: var(--gold-light);
}
.hero-outcomes div {
  background: rgba(212,168,70,0.08);
  border: 1px solid rgba(212,168,70,0.22);
  padding: 8px 12px;
  border-radius: 999px;
}
.hero-disclaimer {
  margin: 0 auto 28px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(160,170,184,0.85);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--deep-space);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212, 168, 70, 0.35); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan-glow);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.35s;
}
.btn-secondary:hover {
  border-color: var(--cyan-glow);
  background: rgba(0, 229, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}



/* ── Scroll Indicator ── */
.scroll-indicator {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease-out 1.2s both;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-dim);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 3px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ═══════════════════════════════════════
   BANNER IMAGE
   ═══════════════════════════════════════ */
.banner-section { padding: 0 24px 64px; }

.banner-img-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 229, 255, 0.04);
}
.banner-img-wrap img { width: 100%; height: auto; display: block; }
/* ═══════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════ */
.section-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan-glow);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 650px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features { padding: 84px 0; position: relative; }
.features .section-header { text-align: center; margin-bottom: 56px; }
.features .section-subtitle { margin: 0 auto; }

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

.feature-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color, var(--gold-bright)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 70, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212,168,70,0.06);
}

.feature-card.card-cerebro { --accent-color: var(--cyan-glow); }
.feature-card.card-indicator { --accent-color: var(--gold-bright); }
.feature-card.card-whale { --accent-color: var(--emerald); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.card-cerebro .feature-icon { background: rgba(0, 229, 255, 0.1); }
.card-indicator .feature-icon { background: rgba(212, 168, 70, 0.1); }
.card-whale .feature-icon { background: rgba(0, 200, 150, 0.1); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}
.feature-card p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.feature-tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid;
}
.card-cerebro .feature-tag { color: var(--cyan-glow); border-color: rgba(0, 229, 255, 0.25); background: rgba(0, 229, 255, 0.06); }
.card-indicator .feature-tag { color: var(--gold-light); border-color: rgba(212, 168, 70, 0.25); background: rgba(212, 168, 70, 0.06); }
.card-whale .feature-tag { color: var(--emerald); border-color: rgba(0, 200, 150, 0.25); background: rgba(0, 200, 150, 0.06); }

/* ═══════════════════════════════════════
   SHOWCASE
   ═══════════════════════════════════════ */
.showcase { padding: 72px 0 84px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}
.showcase-image img { width: 100%; height: auto; display: block; }
.showcase-image .overlay-label {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 14px;
  background: rgba(5, 10, 20, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.showcase-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}
.showcase-text p:not(.section-label) {
  color: var(--white-dim);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: calc(24px + env(safe-area-inset-bottom));
}
.stat-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.stat-item .stat-label {
  font-size: 11px;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   CHART SECTION
   ═══════════════════════════════════════ */
.chart-section { padding: 72px 0; }
.chart-section .section-header { text-align: center; margin-bottom: 40px; }
.chart-section .section-subtitle { margin: 0 auto; }

.chart-frame {
  background: var(--deep-space);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}
.chart-frame img { width: 100%; height: auto; display: block; }
.chart-frame .chart-caption {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: rgba(5, 10, 20, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chart-frame .chart-caption .astral { color: var(--magenta); }
.chart-frame .chart-caption .galaxy { color: var(--cyan-glow); }

.chart-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}
.chart-indicator-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.chart-indicator-badge .ci-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ci-astral { background: var(--magenta); box-shadow: 0 0 10px var(--magenta); }
.ci-galaxy { background: var(--cyan-glow); box-shadow: 0 0 10px var(--cyan-glow); }
.ci-moby { background: var(--emerald); box-shadow: 0 0 10px var(--emerald); }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works { padding: 84px 0; }
.how-it-works .section-header { text-align: center; margin-bottom: 56px; }
.how-it-works .section-subtitle { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-dim), transparent);
  opacity: 0.4;
}

.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold-bright);
  background: var(--deep-space);
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 84px 0; position: relative; }
.testimonials .section-header { text-align: center; margin-bottom: 56px; }
.testimonials .section-subtitle { margin: 0 auto; }

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

.testimonial-card {
  padding: 36px 28px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 70, 0.3);
}

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--glass-border);
}
.t-avatar-1 { background: rgba(0, 229, 255, 0.12); color: var(--cyan-glow); }
.t-avatar-2 { background: rgba(212, 168, 70, 0.12); color: var(--gold-bright); }
.t-avatar-3 { background: rgba(0, 200, 150, 0.12); color: var(--emerald); }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--white-dim); }

/* ═══════════════════════════════════════
   MARKETS TICKER
   ═══════════════════════════════════════ */
.markets-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.markets-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.markets-track span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.5;
}
.markets-track span .sep { margin: 0 24px; color: var(--gold-dim); }

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

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 168, 70, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}
.final-cta p:not(.section-label) {
  font-size: 18px;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-cta .btn-primary { font-size: 17px; padding: 18px 48px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-dim);
  font-weight: 600;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════ */
.celestial-divider {
  padding: 18px 0;
}
.celestial-divider img {
  display: block;
  width: min(980px, 92%);
  height: auto;
  margin: 0 auto;
  opacity: 0.85;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}


/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq { padding: 72px 0 56px; }
.faq .section-header { text-align: center; margin-bottom: 40px; }
.faq .section-subtitle { margin: 0 auto; }

.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(212,168,70,0.18);
  background: rgba(15, 32, 53, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: transparent;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--cyan-glow);
  font-size: 18px;
  flex: 0 0 auto;
}
.faq-a {
  padding: 0 18px 18px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ═══════════════════════════════════════
   Floating CTA
   ═══════════════════════════════════════ */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(5, 10, 20, 0.85);
  border: 1px solid rgba(212,168,70,0.35);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover { box-shadow: 0 0 24px rgba(212,168,70,0.22); }

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-image { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .mobile-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .showcase-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-item .stat-number { font-size: 22px; }
  .hero { padding-top: 100px; }
  .chart-indicators { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .showcase-stats { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}


/* Mobile: keep scroll indicator in flow so it doesn't overlap CTAs */
@media (max-width: 640px) {
  .scroll-indicator {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 18px auto 0;
    align-self: center;
    width: fit-content;
  }
}
