/* ============================================================
   EQhq Design System
   Feminine · Sophisticated · Futuristic · Trustworthy
   ============================================================ */

:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F3EEE6;
  --warm-white:  #FFFEFB;
  --blush:       #EDD5D0;
  --rose:        #C4878A;
  --mauve:       #9B7B9E;
  --lavender:    #B8A9D4;
  --lavender-lt: #E8E2F0;
  --deep-plum:   #1A0F2E;
  --plum-mid:    #2D1B4E;
  --plum-card:   #231540;
  --gold:        #C9A86C;
  --gold-lt:     #E8D5B0;
  --sage:        #7BAF9E;
  --text-primary:#1E1620;
  --text-mid:    #5A4D6E;
  --text-muted:  #9B8FAE;
  --text-light:  #B5ADBE;
  --grad-brand:  linear-gradient(135deg, #C4878A 0%, #9B7B9E 100%);
  --grad-subtle: linear-gradient(135deg, rgba(196,135,138,0.08), rgba(155,123,158,0.08));
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 12px rgba(30,22,32,0.06);
  --shadow-md:   0 8px 32px rgba(30,22,32,0.10);
  --shadow-lg:   0 20px 60px rgba(30,22,32,0.14);
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

strong { font-weight: 600; }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,135,138,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,135,138,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid rgba(155,123,158,0.3);
}
.btn-ghost:hover {
  border-color: var(--mauve);
  color: var(--mauve);
}

.btn-hero {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
}

.btn-arrow { font-size: 18px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── Shared layout ──────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.section-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.12;
}

.section-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════
   LANDING PAGE
═══════════════════════════════════════════════════ */

.landing-page { background: var(--cream); }

/* ─── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

/* ─── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,135,138,0.22), transparent 70%);
  top: -100px; right: -50px;
  animation-delay: 0s;
  opacity: 0.6;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,123,158,0.18), transparent 70%);
  bottom: 50px; left: -80px;
  animation-delay: -4s;
  opacity: 0.5;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,108,0.12), transparent 70%);
  top: 50%; right: 20%;
  animation-delay: -8s;
  opacity: 0.4;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.04); }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(155,123,158,0.1);
  border: 1px solid rgba(155,123,158,0.2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mauve);
  margin-bottom: 32px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-headline {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-headline em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subhead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.score-preview {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196,135,138,0.15);
  border-radius: var(--radius-xl);
  padding: 32px 48px;
  box-shadow: var(--shadow-lg);
}

.preview-ring { width: 160px; height: 160px; }

.preview-labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-domain {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  opacity: 0;
  transform: translateX(-8px);
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: calc(var(--delay) + 0.4s);
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ─── Trust Bar ── */
.trust-bar {
  background: var(--warm-white);
  border-top: 1px solid rgba(155,123,158,0.1);
  border-bottom: 1px solid rgba(155,123,158,0.1);
  padding: 32px 24px;
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 36px;
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}
.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  text-align: center;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(155,123,158,0.2);
}

/* ─── EQ Section ── */
.section-eq {
  text-align: center;
}
.section-eq .section-label,
.section-eq .section-heading { text-align: center; }
.section-eq .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ─── Domains Grid ── */
.section-domains { background: var(--warm-white); }

.section-domains .section-label,
.section-domains .section-heading { text-align: center; }

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.domain-card {
  background: var(--cream);
  border: 1px solid rgba(155,123,158,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: all 0.3s ease;
}
.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,135,138,0.25);
  box-shadow: var(--shadow-md);
}

.domain-icon {
  font-size: 28px;
  color: var(--rose);
  margin-bottom: 20px;
  opacity: 0.7;
}

.domain-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.domain-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── How It Works ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 0 24px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(196,135,138,0.3), transparent);
  flex-shrink: 0;
  margin-top: 24px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── Testimonials ── */
.section-testimonials { background: var(--cream-dark); }
.section-testimonials .section-label,
.section-testimonials .section-heading { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.testimonial-card {
  background: var(--warm-white);
  border: 1px solid rgba(155,123,158,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-featured {
  background: linear-gradient(135deg, rgba(196,135,138,0.06), rgba(155,123,158,0.06));
  border-color: rgba(196,135,138,0.2);
  transform: scale(1.02);
}
.testimonial-featured:hover { transform: scale(1.02) translateY(-3px); }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CTA Section ── */
.section-cta { padding: 80px 24px; }

.cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--deep-plum);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,135,138,0.15), transparent 70%);
  pointer-events: none;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

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

/* ─── Footer ── */
.footer {
  background: var(--text-primary);
  padding: 60px 24px;
  text-align: center;
}
.footer-inner { max-width: 500px; margin: 0 auto; }
.footer .nav-logo, .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}


/* ═══════════════════════════════════════════════════
   ASSESSMENT PAGE
═══════════════════════════════════════════════════ */

.assessment-page {
  background: var(--deep-plum);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Progress */
.assessment-progress-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 100;
}
.assessment-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--grad-brand);
  transition: width 0.4s ease;
}

/* Assessment header */
.assessment-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 40px;
  position: relative;
  z-index: 10;
}
.assessment-header .nav-prev {
  justify-self: start;
}
.assessment-header .assessment-logo {
  grid-column: 2;
  text-align: center;
}
.assessment-header .assessment-counter {
  grid-column: 3;
  text-align: right;
  justify-self: end;
}

.assessment-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}

.assessment-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.counter-sep { margin: 0 4px; }

/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--deep-plum);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loading-inner { text-align: center; }

.loading-spinner { margin: 0 auto 40px; width: 100px; height: 100px; }

.spinner-svg { width: 100%; height: 100%; animation: spinnerRotate 1.5s linear infinite; }
@keyframes spinnerRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.loading-messages { height: 32px; position: relative; }
.loading-msg {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.loading-msg.active { opacity: 1; }

/* Questions stage */
.questions-stage {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 24px 120px;
  position: relative;
}

.question-slide {
  position: absolute;
  width: 100%;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.question-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.question-body {
  text-align: center;
}

.question-domain-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,135,138,0.7);
  margin-bottom: 24px;
}

.question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Answer choices */
.answer-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.answer-btn {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(200,180,220,0.14);
  border-radius: 14px;
  color: rgba(255,255,255,0.68);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  transition: all 0.22s ease;
  position: relative;
}
.answer-btn:hover {
  background: rgba(196,135,138,0.07);
  border-color: rgba(196,135,138,0.35);
  color: rgba(255,255,255,0.88);
  transform: translateX(3px);
}
.answer-btn.selected {
  background: rgba(196,135,138,0.12);
  border-color: rgba(196,135,138,0.55);
  color: rgba(255,255,255,0.95);
}
.answer-btn.selected .answer-marker {
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(196,135,138,0.25);
}

.answer-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,180,220,0.25);
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.answer-choices.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-10px); }
  75%       { transform: translateX(10px); }
}

/* Nav buttons */

.nav-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-btn:hover {
  color: rgba(255,255,255,0.65);
}




/* ═══════════════════════════════════════════════════
   RESULTS PAGE
═══════════════════════════════════════════════════ */

.results-page { background: var(--cream); }

/* Results nav */
.results-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid rgba(155,123,158,0.1);
}
.results-nav-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.results-nav-link:hover { color: var(--mauve); }

/* Hero */
.results-hero {
  background: linear-gradient(160deg, var(--deep-plum) 0%, var(--plum-mid) 60%, #3D1F5E 100%);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,135,138,0.12), transparent 60%);
  pointer-events: none;
}
.results-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,123,158,0.1), transparent 60%);
  pointer-events: none;
}

.results-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Score circle */
.score-column { text-align: center; }

.score-label-top {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.score-circle-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.score-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(196,135,138,0.25));
}

#scoreArc {
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-number-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.score-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.score-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  align-self: flex-end;
  margin-bottom: 10px;
}

.score-percentile {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* Archetype */
.archetype-column {}

.archetype-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.archetype-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.archetype-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
}

/* Results shared */
.results-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.results-section { padding: 80px 0; }

.section-label-sm {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.results-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 48px;
  line-height: 1.15;
}

/* Domain bars */
.domains-section { background: var(--warm-white); }

.domain-bars { display: flex; flex-direction: column; gap: 28px; }

.domain-bar-row {
  animation: fadeUp 0.5s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.domain-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.domain-bar-label {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
}
.domain-bar-score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.domain-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(155,123,158,0.12);
  border-radius: 100px;
  overflow: hidden;
}

.domain-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-brand);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-bar-level {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.04em;
}

/* Insights */
.insights-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(155,123,158,0.1);
}

.insights-list { display: flex; flex-direction: column; gap: 24px; }

.insight-card {
  background: var(--warm-white);
  border: 1px solid rgba(155,123,158,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative;
  transition: all 0.3s ease;
}
.insight-card:hover {
  border-color: rgba(196,135,138,0.2);
  box-shadow: var(--shadow-sm);
}

.insight-card.insight-strength { border-left: 3px solid var(--sage); }
.insight-card.insight-growth   { border-left: 3px solid var(--gold); }
.insight-card.insight-pattern  { border-left: 3px solid var(--lavender); }
.insight-card.insight-shadow   { border-left: 3px solid var(--rose); }
.insight-card.insight-hidden   { border-left: 3px solid var(--mauve); }
.insight-card.insight-relationship { border-left: 3px solid #7BAF9E; }
.insight-card.insight-path     { border-left: 3px solid var(--gold); }

.insight-card.insight-locked {
  filter: none;
  position: relative;
  overflow: hidden;
}

.insight-card.insight-locked .insight-text {
  color: transparent;
  text-shadow: 0 0 10px rgba(90,77,110,0.5);
  user-select: none;
  filter: blur(7px);
}

.insight-lock-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(155,123,158,0.08);
  border: 1px solid rgba(155,123,158,0.15);
  border-radius: 100px;
  padding: 4px 12px;
}

.insight-type-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.insight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.insight-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
}

/* Email unlock */
.unlock-section { background: var(--cream-dark); padding: 60px 0; }

.unlock-card {
  background: var(--warm-white);
  border: 1px solid rgba(155,123,158,0.15);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.unlock-icon {
  font-size: 36px;
  color: var(--mauve);
  opacity: 0.6;
  margin-bottom: 24px;
}

.unlock-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.unlock-subhead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 40px;
}

.unlock-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.unlock-email-input {
  padding: 16px 24px;
  border: 1.5px solid rgba(155,123,158,0.2);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--cream);
  width: 300px;
  outline: none;
  transition: border-color 0.2s;
}
.unlock-email-input:focus { border-color: var(--mauve); }
.unlock-email-input::placeholder { color: var(--text-light); }

.unlock-footnote {
  font-size: 12px;
  color: var(--text-muted);
}

/* Paywall */
.paywall-section { background: var(--text-primary); }
.paywall-section .results-container { padding: 0 24px; }

.paywall-card {
  background: linear-gradient(160deg, #241535 0%, #1A0F2E 50%, #1E1428 100%);
  border: 1px solid rgba(196,135,138,0.15);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.paywall-card::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,135,138,0.1), transparent 60%);
}

.paywall-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.paywall-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.paywall-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-style: italic;
}

.paywall-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin-bottom: 52px;
}

.paywall-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.paywall-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196,135,138,0.15);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.paywall-feature strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin-bottom: 4px;
}
.paywall-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

.paywall-cta-block { margin-bottom: 48px; }

.paywall-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.price-was {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
}
.price-now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.btn-paywall { font-size: 17px; padding: 20px 44px; }

.paywall-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.paywall-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mini-testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px;
}

.mini-testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.mini-testimonial span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-results {
  background: #0D0A16;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero-content { padding: 40px 20px 20px; }
  .score-preview { flex-direction: column; gap: 24px; padding: 28px 32px; }
  .preview-ring { width: 120px; height: 120px; }
  .trust-bar-inner { gap: 0; }
  .trust-stat { padding: 12px 18px; }
  .trust-divider { display: none; }
  .steps-row { flex-direction: column; }
  .step-line { display: none; }
  .step { padding: 0; margin-bottom: 32px; }
  .cta-card { padding: 48px 28px; }
  .section { padding: 64px 0; }

  /* Results */
  .results-nav { padding: 20px 24px; }
  .results-hero { padding: 60px 24px 80px; }
  .results-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .archetype-desc { margin: 0 auto; }
  .score-circle-wrap { width: 180px; height: 180px; margin: 0 auto; }
  .paywall-card { padding: 48px 28px; }
  .paywall-testimonials { grid-template-columns: 1fr; }
  .unlock-card { padding: 48px 28px; }
  .unlock-form { flex-direction: column; align-items: center; }
  .unlock-email-input { width: 100%; max-width: 320px; }
  .insight-card { padding: 32px 28px; }

  /* Assessment */
  .assessment-header { padding: 20px 24px; }
  .question-text { font-size: 20px; margin-bottom: 28px; }
  .answer-btn { font-size: 14px; padding: 15px 18px; }
}

@media (max-width: 480px) {
  .answer-btn { font-size: 13px; padding: 13px 16px; gap: 12px; }
  .domains-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
}
