/* ============================================================
   Destiny Finder — Light Editorial
   Colour psychology: purple (wisdom, intuition, premium) +
   blue (trust, calm, clarity) + gold (warmth, value)
   on a cream-white editorial canvas.
   ============================================================ */

:root {
  /* Canvas */
  --paper: #fbf9f5;         /* cream white */
  --paper-2: #f4f0e8;       /* warmer sand */
  --line: rgba(46, 32, 80, 0.1);
  --line-strong: rgba(46, 32, 80, 0.18);

  /* Ink */
  --ink: #1a1735;           /* deep navy-violet, near-black */
  --ink-soft: #3d3862;
  --ink-muted: #6b6689;
  --ink-mute-2: #8f8ba9;

  /* Purple family (wisdom, intuition) */
  --violet-50: #f2eeff;
  --violet-100: #e6dcfc;
  --violet-200: #cfbef7;
  --violet-400: #8b6fd8;
  --violet-500: #6b4bc4;
  --violet-600: #533ca6;
  --violet-700: #3f2d84;

  /* Blue family (trust, calm) */
  --blue-50: #eef3fc;
  --blue-100: #dbe6f8;
  --blue-200: #b8ccf0;
  --blue-500: #3d5ba8;
  --blue-600: #2e4487;

  /* Gold accent */
  --gold: #b8935a;
  --gold-soft: #d9b47a;
  --gold-line: rgba(184, 147, 90, 0.35);

  /* Semantic */
  --brand: var(--violet-600);
  --brand-alt: var(--blue-500);
  --accent: var(--gold);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Söhne", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.35rem, 1.6vw + 0.9rem, 1.85rem);
  --text-2xl: clamp(1.9rem, 2.8vw + 1rem, 3rem);
  --text-hero: clamp(2.6rem, 5.5vw + 1rem, 5.5rem);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Subtle paper grain */
  background-image:
    radial-gradient(1400px 800px at 100% -20%, var(--violet-50), transparent 60%),
    radial-gradient(1200px 600px at 0% 40%, var(--blue-50), transparent 50%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--violet-700); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--brand); font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
}
.eyebrow.brand { color: var(--brand); }
.eyebrow.gold { color: var(--gold); }

.lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

.section-title { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.section-lede { font-size: var(--text-lg); color: var(--ink-soft); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: white;
  box-shadow: 0 8px 24px rgba(83, 60, 166, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(83, 60, 166, 0.35);
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  color: white;
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: white; }
.btn-lg { padding: 18px 34px; font-size: var(--text-base); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) clamp(var(--space-6), 4vw, var(--space-12));
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: var(--space-3); color: var(--ink); }
.brand-mark { width: 28px; height: 28px; color: var(--brand); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.site-nav {
  display: flex; align-items: center; gap: var(--space-8);
  font-size: var(--text-sm);
}
.site-nav a { color: var(--ink-soft); }
.site-nav a:hover { color: var(--brand); }
.site-nav .btn-ghost { padding: 10px 20px; }

@media (max-width: 720px) {
  .site-nav a:not(.btn) { display: none; }
}

/* Hero — asymmetric editorial split */
.hero {
  padding: var(--space-24) clamp(var(--space-6), 5vw, var(--space-16)) var(--space-20);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 82vh;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: var(--space-10); min-height: auto; padding-top: var(--space-16); } }
.hero-text { animation: heroRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-8);
}
.hero-lede {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
  max-width: 46ch;
  line-height: 1.6;
}
.hero-cta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.hero-meta { font-size: var(--text-sm); color: var(--ink-muted); }
.hero-image {
  position: relative;
  animation: heroFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.15s;
}
.hero-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 40px 80px -30px rgba(46, 32, 80, 0.2), 0 12px 40px -12px rgba(46, 32, 80, 0.08);
}
@keyframes heroFade {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-badges {
  display: inline-flex;
  gap: var(--space-4);
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.6);
  margin-top: var(--space-10);
}
.hero-badges span:first-child { color: var(--gold); letter-spacing: 0.1em; }

/* Trusted-by strip */
.trust-strip {
  padding: var(--space-8) 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-12));
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-8); flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.trust-inner strong { color: var(--ink); font-weight: 500; letter-spacing: 0.02em; }

/* Sections */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-24) clamp(var(--space-6), 5vw, var(--space-12));
}
.section-head { margin-bottom: var(--space-16); max-width: 62ch; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Steps */
.steps {
  list-style: none; padding: 0;
  display: grid; gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step {
  padding: var(--space-10) var(--space-8);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--violet-200);
  box-shadow: 0 24px 48px -18px rgba(83, 60, 166, 0.18);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--violet-500);
  display: block;
  margin-bottom: var(--space-4);
  line-height: 1;
}
.step h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.step p { color: var(--ink-soft); }

/* Feature block */
.feature-block {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-16) clamp(var(--space-6), 5vw, var(--space-12));
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-16);
  align-items: center;
}
.feature-block.reversed { grid-template-columns: 1.05fr 1fr; }
.feature-block.reversed .feature-image { order: 2; }
@media (max-width: 900px) {
  .feature-block, .feature-block.reversed { grid-template-columns: 1fr; }
  .feature-block.reversed .feature-image { order: 0; }
}
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(46, 32, 80, 0.2), 0 8px 24px -8px rgba(46, 32, 80, 0.08);
}
.feature-image img { width: 100%; height: auto; display: block; }
.check-list {
  list-style: none; padding: 0;
  margin-top: var(--space-8);
  display: grid; gap: var(--space-3);
}
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 2px;
  background: var(--gold);
}

/* Science */
.science-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.science-card {
  padding: var(--space-10) var(--space-8);
  background: linear-gradient(180deg, white, var(--violet-50));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease;
}
.science-card:hover { border-color: var(--violet-200); }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-100), var(--blue-100));
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-4);
}
.science-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.science-card p { color: var(--ink-soft); }

/* Upsell */
.upsell-preview {
  padding: var(--space-24) clamp(var(--space-6), 5vw, var(--space-12));
  background:
    linear-gradient(180deg, transparent, var(--violet-50) 40%, var(--blue-50));
  border-block: 1px solid var(--line);
}
.upsell-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 900px) { .upsell-inner { grid-template-columns: 1fr; } }
.price {
  display: flex; align-items: baseline;
  gap: var(--space-4);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}
.price-strike {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
}
.price-now {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--gold-line);
  background: rgba(184, 147, 90, 0.08);
  border-radius: var(--radius-full);
  color: var(--gold);
}
.fine-print {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  margin-top: var(--space-3);
}
.report-mock {
  perspective: 1400px;
  display: grid; place-items: center;
}
.report-cover {
  width: min(320px, 80%);
  aspect-ratio: 3/4;
  border-radius: 6px;
  padding: var(--space-10) var(--space-8);
  background:
    radial-gradient(500px 300px at 20% -10%, var(--violet-100), transparent 60%),
    linear-gradient(180deg, white, var(--paper-2));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -20px rgba(46, 32, 80, 0.3);
  transform: rotate(-4deg) rotateY(-6deg);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.report-cover::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  pointer-events: none;
}
.report-star {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.report-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.report-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--ink);
  margin-top: auto;
}
.report-meta {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

/* Testimonials */
.testimonials {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-24) clamp(var(--space-6), 5vw, var(--space-12));
}
.quotes {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--violet-200);
  line-height: 1;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--space-4);
  padding-top: var(--space-2);
}
.quote figcaption {
  font-size: var(--text-sm);
  color: var(--brand);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* FAQ */
.faq-list { max-width: 780px; }
.faq-list details {
  border-top: 1px solid var(--line-strong);
  padding: var(--space-6) 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  color: var(--brand);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  font-family: var(--sans);
  font-weight: 300;
}
.faq-list details[open] summary { color: var(--brand); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Final CTA */
.final-cta {
  padding: var(--space-32) clamp(var(--space-6), 5vw, var(--space-12));
  text-align: center;
  position: relative;
  background: radial-gradient(700px 400px at 50% 50%, var(--violet-50), transparent 60%);
}
.final-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  line-height: 1.15;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-12) clamp(var(--space-6), 5vw, var(--space-12));
  background: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--ink); font-family: var(--serif); font-size: 1rem;
}
.footer-brand svg { color: var(--brand); }
.footer-nav {
  display: flex; gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-muted); flex-wrap: wrap;
}
.footer-nav a { color: var(--ink-muted); }
.footer-nav a:hover { color: var(--brand); }
.footer-fine {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  width: 100%;
  margin-top: var(--space-6);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}

/* ============================================================
   Intake
   ============================================================ */

.intake-main {
  flex: 1;
  display: grid; place-items: center;
  padding: var(--space-16) clamp(var(--space-4), 5vw, var(--space-12));
  min-height: calc(100vh - 100px);
}
.intake-shell {
  width: 100%;
  max-width: 640px;
  padding: var(--space-12) clamp(var(--space-6), 5vw, var(--space-12));
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(46, 32, 80, 0.2), 0 12px 24px -12px rgba(46, 32, 80, 0.05);
}
.progress {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: var(--space-10);
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.progress-bar {
  flex: 1;
  height: 2px;
  background: var(--line-strong);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--violet-500), var(--blue-500));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.q-step { display: none; animation: qFade 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.q-step.active { display: block; }
@keyframes qFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.q-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-4);
}
.q-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
  color: var(--ink);
}
.q-hint {
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
  max-width: 55ch;
}

.field {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.field label {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.input, .textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px var(--violet-50);
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

/* DOB row: Day / Month / Year */
.dob-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
@media (max-width: 480px) {
  .dob-row { grid-template-columns: 1fr; }
}
.dob-field { margin-bottom: 0; }
.dob-field select.input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%236b6689' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.dob-error {
  font-size: var(--text-sm);
  color: var(--violet-600);
  margin-bottom: var(--space-4);
  padding-left: 2px;
}

/* ============ NARRATIVE ============ */
.narrative-body p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.narrative-body p:last-child { margin-bottom: 0; }

.narrative-body.one-thing {
  padding: var(--space-6);
  background: linear-gradient(180deg, rgba(184,147,90,0.06), rgba(184,147,90,0.02));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}
.narrative-body.one-thing p { color: var(--ink); }

/* SWOT — editorial two-column layout, quiet and readable */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-7);
  margin-top: var(--space-5);
}
@media (max-width: 720px) {
  .swot-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
.swot-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.swot-label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--violet-600);
  margin-bottom: var(--space-3);
  letter-spacing: 0;
  text-transform: none;
}
.swot-card.swot-watch .swot-label {
  color: var(--blue-600);
}
.swot-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.swot-card li {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0;
  border: none;
  position: relative;
  padding-left: var(--space-4);
}
.swot-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-400);
  opacity: 0.55;
}
.swot-card.swot-watch li::before {
  background: var(--blue-500);
}

/* Careers list */
.careers-list {
  counter-reset: careers;
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
}
.careers-list li {
  counter-increment: careers;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.careers-list li:first-child { border-top: none; }
.careers-list li::before {
  content: counter(careers, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  background: linear-gradient(180deg, var(--violet-600), var(--blue-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  padding-top: 2px;
}
.career-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.career-why {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 620px) {
  .careers-list li { grid-template-columns: 32px 1fr; gap: var(--space-3); }
  .careers-list li::before { font-size: 1.25rem; }
  .career-title { font-size: 1rem; }
}

/* ============ PASS IT FORWARD ============ */
.pass-forward {
  margin: var(--space-16) 0 var(--space-12);
  padding: var(--space-12) var(--space-6);
  background: linear-gradient(180deg, rgba(184,147,90,0.05), rgba(83,60,166,0.04));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
}
.pass-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pass-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-8);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pass-story {
  max-width: 620px;
  margin: 0 auto var(--space-10);
  text-align: left;
}
.pass-story p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.pass-story p:last-child { margin-bottom: 0; }
.pass-story p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--violet-600);
  background: linear-gradient(180deg, var(--violet-600), var(--blue-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pass-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 620px;
  margin: 0 auto var(--space-6);
}
@media (max-width: 560px) {
  .pass-tiers { grid-template-columns: 1fr; gap: var(--space-4); padding-top: 8px; }
}
.pass-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--space-5) var(--space-4);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  color: inherit;
}
.pass-tier:hover {
  border-color: var(--violet-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(83,60,166,0.10);
}
.pass-tiers { padding-top: 22px; align-items: stretch; }
.pass-tier-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(184,147,90,0.06), white);
  position: relative;
  overflow: visible;
}
.pass-tier-featured::before {
  content: 'Most chosen';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  background: var(--gold);
  color: white;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 500;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(184,147,90,0.25);
}
.pass-tier.pass-tier-selected {
  border-color: var(--violet-600);
  background: linear-gradient(180deg, rgba(83,60,166,0.06), white);
}
@media (max-width: 560px) {
  .pass-tier-featured::before {
    position: static;
    display: inline-block;
    transform: none;
    margin-bottom: 6px;
    box-shadow: none;
  }
  .pass-tier-featured { align-items: center; }
}
.pass-amt {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}
.pass-note {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.pass-skip {
  margin: var(--space-6) 0 var(--space-8);
}
.pass-skip a {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  text-decoration: underline;
  text-decoration-color: rgba(107,102,137,0.3);
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}
.pass-skip a:hover { color: var(--ink-soft); }

.pass-closer {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  max-width: 480px;
  margin: 0 auto;
}

.pass-thanks {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(180deg, rgba(83,60,166,0.05), white);
  border: 1px solid var(--violet-200, rgba(83,60,166,0.15));
  border-radius: var(--radius);
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ============ COMING SOON: DEEP REPORT ============ */
.deep-report-soon {
  margin-top: var(--space-8);
}
.soon-inner {
  padding: var(--space-8);
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.soon-inner h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-4);
  font-weight: 400;
}
.soon-inner p {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.soon-inner .email-form {
  max-width: 420px;
  margin: 0 auto;
}

/* Skeleton loaders */
.skeleton {
  background: linear-gradient(90deg, rgba(83,60,166,0.05) 0%, rgba(83,60,166,0.12) 50%, rgba(83,60,166,0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}
.skel-line { height: 14px; margin-bottom: 12px; }
.skel-line.short { width: 60%; }
.skel-block { height: 120px; margin-bottom: 0; border-radius: var(--radius); }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.choice-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-8);
}
@media (min-width: 560px) {
  .choice-grid.two-col { grid-template-columns: 1fr 1fr; }
}
.choice {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--paper);
  transition: border 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: left;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: var(--text-base);
}
.choice:hover { border-color: var(--violet-200); background: white; transform: translateY(-1px); }
.choice.selected {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--violet-50), white);
  color: var(--ink);
  box-shadow: 0 0 0 4px var(--violet-50);
}
.choice-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
  margin-top: 5px;
  transition: background 0.2s, border-color 0.2s;
}
.choice.selected .choice-dot {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--violet-100);
}
.choice-label { display: flex; flex-direction: column; gap: 2px; }
.choice-title { color: var(--ink); font-weight: 500; }
.choice-desc { color: var(--ink-muted); font-size: var(--text-sm); }

.value-grid {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--space-6);
}
@media (min-width: 560px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }
.value-chip {
  padding: 12px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
}
.value-chip:hover { border-color: var(--violet-200); background: white; }
.value-chip.selected {
  border-color: var(--brand);
  color: white;
  background: linear-gradient(135deg, var(--violet-600), var(--blue-500));
  box-shadow: 0 6px 16px -4px rgba(83, 60, 166, 0.35);
}
.value-chip .rank {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  color: var(--brand);
  font-size: 12px;
  font-family: var(--serif);
  font-weight: 600;
  display: none;
  align-items: center; justify-content: center;
  border: 1px solid var(--brand);
}
.value-chip.selected .rank { display: flex; }
.hint {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}

.q-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.link-back {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  cursor: pointer;
}
.link-back:hover { color: var(--brand); }

/* Calc */
.calc-page {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: var(--space-16) var(--space-6);
  text-align: center;
}
.calc-orb {
  width: 220px; height: 220px;
  border-radius: 50%;
  margin: 0 auto var(--space-10);
  position: relative;
  animation: orbFloat 4s ease-in-out infinite;
}
.calc-orb::before, .calc-orb::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
}
.calc-orb::before {
  background:
    radial-gradient(circle at 30% 30%, var(--violet-200), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--blue-200), transparent 60%);
  filter: blur(24px);
  animation: orbPulse 3s ease-in-out infinite;
}
.calc-orb::after {
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 65%);
  opacity: 0.4;
  animation: orbSpin 8s linear infinite;
}
@keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes orbPulse { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes orbSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.calc-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw + 0.8rem, 2.4rem);
  color: var(--ink);
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}
.calc-status {
  color: var(--ink-soft);
  font-size: var(--text-lg);
  min-height: 1.8em;
  font-style: italic;
  transition: opacity 0.3s ease;
}

/* ============================================================
   Reveal
   ============================================================ */

.reveal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-16) clamp(var(--space-6), 5vw, var(--space-12));
}
.reveal-hero {
  text-align: center;
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--line);
}
.reveal-hero .eyebrow.brand { margin-bottom: var(--space-6); }
.number-display {
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--brand);
  line-height: 1;
  margin-bottom: var(--space-6);
  font-style: italic;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--violet-600), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal-hero h1 {
  font-size: clamp(1.7rem, 3vw + 0.8rem, 2.4rem);
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.number-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--brand);
}

.reveal-section { margin-bottom: var(--space-16); }
.reveal-section h2 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: var(--space-3);
}
.reveal-section h2::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-500), var(--blue-500));
  flex-shrink: 0;
}
.reveal-section p, .reveal-section li {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.reveal-section p em { color: var(--brand); font-style: italic; }

.trio {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-top: var(--space-6);
}
@media (min-width: 640px) { .trio { grid-template-columns: repeat(3, 1fr); } }
.trio-card {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, white, var(--violet-50));
}
.trio-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
  line-height: 1;
}
.trio-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.trio-card p { color: var(--ink-soft); font-size: var(--text-sm); line-height: 1.55; margin: 0; }

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  padding: var(--space-8);
  border-left: 2px solid var(--brand);
  margin: var(--space-8) 0;
  line-height: 1.4;
  max-width: 60ch;
  background: linear-gradient(90deg, var(--violet-50), transparent);
}

/* Email gate */
.email-gate {
  margin-top: var(--space-16);
  padding: var(--space-12) clamp(var(--space-6), 4vw, var(--space-10));
  background:
    linear-gradient(135deg, var(--violet-50), var(--blue-50));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.email-gate::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), transparent 60%);
  opacity: 0.2;
}
.email-gate h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2rem);
  color: var(--ink);
  margin-bottom: var(--space-4);
  border: none;
  padding: 0;
  justify-content: center;
}
.email-gate h2::before { display: none; }
.email-gate p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
  position: relative;
}

.email-form {
  display: flex; gap: var(--space-3);
  max-width: 480px; margin: 0 auto var(--space-4);
  flex-wrap: wrap;
  position: relative;
}
.email-form .input {
  flex: 1; min-width: 200px;
  background: white;
}

.upsell-inline {
  margin-top: var(--space-10);
  padding: var(--space-8);
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
  text-align: left;
  position: relative;
}
.upsell-inline-text { flex: 1; min-width: 260px; }
.upsell-inline h3 {
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--ink); margin-bottom: var(--space-2);
}
.upsell-inline p {
  font-size: var(--text-sm); color: var(--ink-soft);
  margin: 0; max-width: none;
}
.upsell-inline .price-inline {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--brand);
  margin-right: var(--space-4);
  font-weight: 500;
}
.upsell-inline .price-inline s {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-right: 8px;
  font-weight: 400;
}

/* Scroll reveal — stays visible by default, subtle lift when scrolled into view */
.reveal-on-scroll {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll:not(.in-view) { transform: translateY(6px); }
.reveal-on-scroll.in-view { transform: translateY(0); }

/* Utilities */
.center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-16); }
