/* ============================================
   AstralWise — Hellenistic Astrology Portal
   Design: Premium, mystical, celestial
   Inspired by: Co-Star, Chani Nicholas, Sanctuary
   ============================================ */

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

:root {
  --bg-deep: #08061A;
  --bg-mid: #0E0C24;
  --bg-card: rgba(18, 15, 42, 0.8);
  --bg-card-solid: #120F2A;
  --bg-card-hover: rgba(30, 25, 60, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.03);

  --accent-gold: #C9A84C;
  --accent-gold-light: #E4CD82;
  --accent-gold-glow: rgba(201, 168, 76, 0.4);
  --accent-purple: #7C5CFC;
  --accent-purple-light: #A78BFA;
  --accent-purple-glow: rgba(124, 92, 252, 0.25);
  --accent-rose: #E85D8A;
  --accent-teal: #34D9B3;
  --accent-blue: #4A8FE7;

  --text-primary: #EDE8DC;
  --text-secondary: #9B96AD;
  --text-muted: #5E586F;
  --text-bright: #FFFFFF;

  --border-subtle: rgba(201, 168, 76, 0.1);
  --border-glow: rgba(124, 92, 252, 0.35);

  --gradient-hero: linear-gradient(180deg, #08061A 0%, #110E30 40%, #0D0A22 70%, #08061A 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C, #E4CD82);
  --gradient-purple: linear-gradient(135deg, #7C5CFC, #5B3FD4);
  --gradient-cosmic: radial-gradient(ellipse at 50% 0%, rgba(124,92,252,0.12) 0%, transparent 60%);

  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(124, 92, 252, 0.12);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== ANIMATED STARS CANVAS ===== */
.stars-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Layer 1: Dense tiny stars */
.stars-bg::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background-image:
    radial-gradient(1px 1px at 5% 15%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 12% 42%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 18% 78%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 32% 55%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 38% 90%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 45% 25%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 52% 62%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 58% 5%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 65% 38%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 72% 72%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 85% 48%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 92% 82%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 8% 95%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 35% 3%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 62% 88%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 15% 58%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 48% 45%, rgba(255,255,255,0.3), transparent);
  animation: starsDrift 120s linear infinite;
}

/* Layer 2: Brighter scattered stars with twinkle */
.stars-bg::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(201,168,76,0.6), transparent),
    radial-gradient(2px 2px at 30% 65%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 55% 12%, rgba(124,92,252,0.5), transparent),
    radial-gradient(2px 2px at 75% 45%, rgba(201,168,76,0.5), transparent),
    radial-gradient(2px 2px at 90% 78%, rgba(255,255,255,0.6), transparent),
    radial-gradient(3px 3px at 20% 80%, rgba(201,168,76,0.4), transparent),
    radial-gradient(2px 2px at 42% 35%, rgba(255,255,255,0.5), transparent),
    radial-gradient(3px 3px at 68% 88%, rgba(124,92,252,0.35), transparent),
    radial-gradient(2px 2px at 85% 22%, rgba(255,255,255,0.55), transparent),
    radial-gradient(2px 2px at 50% 55%, rgba(201,168,76,0.45), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes starsDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(-25%, -15%); }
}

@keyframes twinkle {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

a { color: var(--accent-gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--accent-gold-light); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 0.75rem 0;
  background: rgba(8, 6, 26, 0.75);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  z-index: 100;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 6, 26, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-gold);
  display: flex; align-items: center; gap: 0.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-logo .star {
  font-size: 1rem;
  display: inline-block;
  animation: starPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px var(--accent-gold-glow));
}

@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-lang {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px; padding: 3px;
  border: 1px solid rgba(255,255,255,0.06);
}

.nav-lang a {
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 500; transition: all 0.3s;
}
.nav-lang a::after { display: none; }
.nav-lang a.active { background: var(--accent-purple); color: white; }
.nav-lang a:hover:not(.active) { color: var(--text-primary); background: rgba(255,255,255,0.05); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--accent-gold);
  position: absolute; left: 0;
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* ===== HERO ===== */
.hero {
  padding: 10rem 0 6rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

/* Cosmic glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(124,92,252,0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 40%, rgba(201,168,76,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Zodiac wheel decoration */
.hero::after {
  content: '♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓';
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 1.5rem;
  color: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.04);
  border-radius: 50%;
  animation: zodiacSpin 180s linear infinite;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-gold);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social proof */
.hero-proof {
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.proof-item strong { color: var(--accent-gold); font-weight: 500; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border: none; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--accent-gold-glow);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  color: var(--bg-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-premium {
  background: var(--gradient-purple);
  color: white;
  box-shadow: 0 4px 20px var(--accent-purple-glow);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 92, 252, 0.45);
  color: white;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 1.2rem;
  letter-spacing: 1rem;
  opacity: 0.3;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0;
  position: relative;
}

.how-it-works h2 { text-align: center; color: var(--accent-gold); margin-bottom: 3rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
}

.step h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  padding: 5rem 0;
}

.features h2 { text-align: center; color: var(--text-primary); margin-bottom: 0.75rem; }
.features-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1rem;
}

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

.feature-card {
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 0 8px var(--accent-gold-glow));
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

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

.feature-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ===== FORM SECTION ===== */
.chart-form-section {
  padding: 5rem 0;
  position: relative;
}

.chart-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -20%);
  background: radial-gradient(circle, rgba(124,92,252,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  opacity: 0.6;
}

.form-card h2 {
  text-align: center;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  font-weight: 400;
}

.form-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px var(--accent-purple-glow);
  background: rgba(124, 92, 252, 0.04);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
}

/* ===== RESULTS ===== */
.results-section {
  padding: 6rem 0 4rem;
}

.big-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.big-three-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.big-three-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-gold);
}

.big-three-symbol {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px var(--accent-gold-glow));
}

.big-three-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.big-three-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-gold);
  font-weight: 400;
}

.chart-visual {
  max-width: 500px;
  margin: 0 auto 3rem;
}

.chart-visual svg { width: 100%; height: auto; }

/* ===== INTERPRETATION SECTIONS ===== */
.interpretation-section {
  margin-bottom: 1.5rem;
}

.interpretation-section .section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  font-size: 1.25rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 400;
}

.section-content {
  color: var(--text-secondary);
  line-height: 1.85;
}

.section-content p { margin-bottom: 1rem; }
.section-content strong { color: var(--accent-gold); font-weight: 500; }

/* ===== LOCKED PREMIUM ===== */
.locked-section {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.locked-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 0%, var(--bg-deep) 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  z-index: 2;
}

.locked-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-purple);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.locked-text {
  color: var(--text-secondary);
  text-align: center;
  max-width: 400px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ===== PLANET TABLE ===== */
.planet-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.planet-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

.planet-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.88rem;
}

.planet-table tr:hover td { background: rgba(255,255,255,0.02); }
.planet-table .planet-symbol { font-size: 1.2rem; }
.planet-table .retrograde { color: var(--accent-rose); font-weight: 500; }
.planet-table .dignity-positive { color: var(--accent-teal); }
.planet-table .dignity-negative { color: var(--accent-rose); }

/* ===== PREMIUM CTA ===== */
.premium-cta {
  padding: 4rem 0;
  text-align: center;
}

.premium-card {
  background: linear-gradient(135deg, rgba(18,15,42,0.9) 0%, rgba(124,92,252,0.08) 100%);
  border: 1px solid rgba(124, 92, 252, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 30%; right: 30%;
  height: 2px;
  background: var(--gradient-purple);
  border-radius: 2px;
}

.premium-card h2 { color: var(--text-primary); font-weight: 300; }

.premium-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin: 1rem 0;
  font-weight: 400;
}

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

.premium-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.premium-features li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem;
}

.premium-features li::before {
  content: '✦';
  color: var(--accent-purple-light);
  font-size: 0.7rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.footer-links a:hover { color: var(--accent-gold); }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-gold);
}

.blog-card-body { padding: 1.75rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.blog-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.blog-card-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ===== LOADING ===== */
.spinner {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.06);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text { color: var(--text-secondary); font-style: italic; font-weight: 300; }

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8, 6, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero { padding: 7rem 0 4rem; }
  .hero::after { width: 300px; height: 300px; font-size: 1rem; }
  .big-three { grid-template-columns: 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .premium-card { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .form-card { padding: 1.5rem 1.25rem; }
  .hero-badge { font-size: 0.7rem; }
  .steps { grid-template-columns: 1fr; }
}
