:root {
  --bg: #0b0a10;
  --bg-soft: #131019;
  --ink: #ece7f5;
  --ink-soft: #a89fc0;
  --gold: #d9b46a;
  --gold-soft: #f0d9a8;
  --violet: #6d4b9e;
  --line: rgba(217, 180, 106, 0.18);
  --radius: 18px;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
em { font-style: italic; color: var(--gold-soft); }

/* Aurora background glow */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(109, 75, 158, 0.28), transparent 70%),
    radial-gradient(50% 50% at 85% 20%, rgba(217, 180, 106, 0.12), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(109, 75, 158, 0.2), transparent 70%);
  filter: blur(10px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 10, 16, 0.6);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { color: var(--gold); font-size: 1.2rem; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-soft); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2a1d05;
  box-shadow: 0 10px 30px rgba(217, 180, 106, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(217, 180, 106, 0.35); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* Hero */
.hero { padding: 110px 0 90px; }
.hero-inner { max-width: 880px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 26px; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 620px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: 0.9rem; color: var(--ink-soft); opacity: 0.75; }

/* Sections */
.section { padding: 90px 0; }
.section-dark { background: linear-gradient(180deg, transparent, var(--bg-soft), transparent); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 56px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); }

/* Sources */
.sources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  background: rgba(109, 75, 158, 0.06);
}
.source-card h3 { font-size: 1.45rem; color: var(--gold-soft); margin-bottom: 14px; }
.source-card p { color: var(--ink-soft); }

/* Consultation demo */
.consult-demo { display: flex; flex-direction: column; gap: 18px; margin-bottom: 18px; }
.bubble { padding: 22px 26px; border-radius: var(--radius); font-size: 1.05rem; }
.bubble-user {
  align-self: flex-end;
  max-width: 80%;
  background: rgba(217, 180, 106, 0.12);
  border: 1px solid var(--line);
  font-style: italic;
}
.bubble-soul {
  align-self: flex-start;
  max-width: 92%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.bubble-soul p { margin-bottom: 12px; color: var(--ink); }
.bubble-soul p:last-child { margin-bottom: 0; }
.demo-caption { text-align: center; font-size: 0.9rem; color: var(--ink-soft); opacity: 0.75; }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.tier {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
}
.tier-featured {
  border-color: var(--gold);
  background: rgba(217, 180, 106, 0.08);
  transform: scale(1.04);
}
.tier-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2a1d05;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tier h3 { font-size: 1.7rem; margin-bottom: 6px; }
.price { font-size: 1.1rem; color: var(--gold); margin-bottom: 22px; }
.tier ul { list-style: none; margin-bottom: 28px; flex: 1; }
.tier li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--ink-soft); }
.tier li::before { content: "✦ "; color: var(--gold); }

/* CTA */
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta .lede { margin: 0 auto 32px; }
.cta .btn { margin-bottom: 18px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0; background: var(--bg-soft); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer-fine { color: var(--ink-soft); margin-top: 8px; font-size: 0.9rem; }
.footer-meta { text-align: right; color: var(--ink-soft); font-size: 0.88rem; }
.footer-meta p { margin: 2px 0; }

/* Responsive */
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
  .steps, .sources, .tiers { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
  .bubble-user, .bubble-soul { max-width: 100%; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}
