/* ── Celestia Design System v2 — Conversion Machine ── */
:root {
  --void: #050508;
  --void-deep: #0a0a0f;
  --cosmic-purple: #7c3aed;
  --hot-pink: #ec4899;
  --aura-gold: #fbbf24;
  --neon-lime: #a3e635;
  --ethereal-blue: #818cf8;
  --cyber-lavender: #c084fc;
  --soft-magenta: #e879f9;
  --warm-white: #faf5ff;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --card-radius: 24px;
  --section-gap: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Rounded', 'Helvetica Neue', sans-serif;
  background: var(--void);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Animated Background — Dramatic Orbs ── */
.bg-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
  top: -300px; right: -200px;
  animation: orbit1 25s ease-in-out infinite;
}

.bg-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  bottom: -200px; left: -150px;
  animation: orbit2 30s ease-in-out infinite;
}

.bg-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit3 20s ease-in-out infinite;
}

@keyframes orbit1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.1); }
  50% { transform: translate(30px, -30px) scale(0.9); }
  75% { transform: translate(50px, 60px) scale(1.05); }
}
@keyframes orbit2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.92); }
}
@keyframes orbit3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-40%, -60%) scale(1.3); opacity: 0.8; }
}

/* ── Layout ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Glass ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav .logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #fff 30%, var(--aura-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav .nav-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav .nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 80px 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(163, 230, 53, 0.08);
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neon-lime);
  margin-bottom: 32px;
}

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

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

.hero h1 {
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 30%, var(--cyber-lavender) 60%, var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-sub em {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.hero .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--hot-pink), var(--cosmic-purple));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.4s;
  position: relative;
}

.btn-glow {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.35), 0 0 80px rgba(124, 58, 237, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(236, 72, 153, 0.5), 0 0 120px rgba(124, 58, 237, 0.25);
}

.btn-large {
  padding: 22px 48px;
  font-size: 15px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
}

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

/* ── Social Proof Strip ── */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 80px;
}

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

.proof-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, var(--aura-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Section Typography ── */
.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hot-pink);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.section-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 20px;
}

.section-callout {
  font-size: 18px;
  font-weight: 700;
  color: var(--aura-gold);
  line-height: 1.5;
  margin-top: 32px;
}

/* ── Problem Section ── */
.problem {
  padding: var(--section-gap) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Features Grid ── */
.features {
  padding: var(--section-gap) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.feature-card {
  padding: 40px 32px;
  background: var(--void);
  transition: background 0.4s;
  position: relative;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.feature-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── Mid CTA ── */
.mid-cta {
  padding: var(--section-gap) 0;
}

.mid-cta-inner {
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.06));
  border-color: rgba(124, 58, 237, 0.15);
}

.mid-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 40%, var(--cyber-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mid-cta p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ── Testimonials ── */
.testimonials {
  padding: var(--section-gap) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-stars {
  color: var(--aura-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Premium / Pricing ── */
.premium {
  padding: var(--section-gap) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pricing-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

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

.pricing-popular {
  border-color: var(--cosmic-purple);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.12), inset 0 0 60px rgba(124, 58, 237, 0.04);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--hot-pink), var(--cosmic-purple));
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.pricing-amount span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
  line-height: 1.5;
}

.premium-perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.premium-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.perk-icon {
  color: var(--aura-gold);
  font-size: 12px;
}

/* ── Final CTA ── */
.final-cta {
  padding: var(--section-gap) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.final-cta h2 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 40%, var(--aura-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Footer ── */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 8px;
}

footer .footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  margin-bottom: 24px;
}

footer .footer-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

footer .footer-links a:hover { color: #fff; }

footer .copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}

/* ── Legal Pages ── */
.legal {
  padding: 80px 0 60px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--cyber-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal .last-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--aura-gold);
  margin-top: 36px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal p,
.legal li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal a {
  color: var(--cyber-lavender);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

/* ── Support / FAQ ── */
.faq-item {
  padding: 28px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s, background 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-item ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.faq-item li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 4px;
}

.support-contact {
  margin: 24px 0 40px;
}

.contact-card {
  padding: 32px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  nav .nav-links { display: none; }
  .nav-cta { font-size: 11px; padding: 8px 16px; }

  .hero { padding: 60px 0 30px; }
  .hero h1 { letter-spacing: -1px; }

  .proof-strip { gap: 24px; padding: 30px 0 60px; }
  .proof-value { font-size: 22px; }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .premium-perks {
    grid-template-columns: 1fr;
  }

  .section-headline {
    font-size: clamp(24px, 6vw, 36px);
  }

  .mid-cta-inner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .proof-strip { flex-direction: column; gap: 16px; }
  .proof-divider { width: 40px; height: 1px; }
}
