/* ═══════════════════════════════════════════════════════
   ANIMA — Brand Book v4 Design System
   ═══════════════════════════════════════════════════════ */

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

/* ── VARIABLES ── */
:root {
  /* Core palette */
  --cream: #FCF9F5;
  --cosmic: #0C0A18;
  --ink: #1C1528;
  --ink-soft: #3D3545;
  --muted: #7A7580;
  --muted-light: #B0ABB4;
  --border: rgba(28,21,40,0.06);

  /* Ember accent */
  --ember: #D4572A;
  --ember-deep: #A83820;
  --ember-light: #E8944A;
  --ember-tint: rgba(212,87,42,0.08);

  /* Stat bar colors (vivid, for fills) */
  --str: #D4572A;
  --vit: #1A9E6A;
  --int: #2B7AD4;
  --emp: #D44882;
  --eq: #1A9EAA;
  --cre: #C49E0A;
  --awr: #9B5DE5;

  /* Stat text colors (darker, AA-compliant) */
  --str-text: #C0400A;
  --vit-text: #14825A;
  --int-text: #1F6ABF;
  --emp-text: #B83A6E;
  --eq-text: #147E8A;
  --cre-text: #9A7D08;
  --awr-text: #7B42C4;

  /* Surface */
  --surface: #FFFFFF;
  --ghost-light: rgba(28,21,40,0.05);
  --ghost-dark: rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ──
   Scale: 1.25 (Major Third) on base 16px
   Sizes: 12 / 14 / 16 / 20 / 24 / 32 / 40 / 48
   Weights: 400 (body), 600 (emphasis), 700 (display)
── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.15; }
h2 { font-size: clamp(24px, 3.5vw, 32px); line-height: 1.25; }
h3 { font-size: 20px; line-height: 1.3; }

.section-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}
.sub-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
}
.body-text.large {
  font-size: 20px;
}
.caption {
  font-size: 14px;
  color: var(--muted);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(12, 10, 24, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #FCF9F5;
}
.nav-brand .signal-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand .wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #FCF9F5;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-links a.active { color: var(--ember-light); }
.site-nav .btn-primary { background: var(--ember); color: #FFFFFF; }
.site-nav .btn-primary:hover { background: var(--ember-deep); }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FCF9F5;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ember);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--ember-deep); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ember);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--ember);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { color: var(--ember-deep); border-color: var(--ember-deep); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ember-tint);
  color: var(--ember);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(212,87,42,0.14); }

/* ── LAYOUT ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 48px 64px;
  gap: 64px;
  background: var(--cosmic);
  color: #FCF9F5;
}
.hero-copy {
  flex: 1;
  max-width: 460px;
}
.hero-copy h1 {
  margin-bottom: 16px;
  color: #FCF9F5;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ember-light);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(252,249,245,0.65);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero .btn-secondary {
  color: rgba(252,249,245,0.7);
  border-color: rgba(252,249,245,0.2);
}
.hero .btn-secondary:hover {
  color: #FCF9F5;
  border-color: rgba(252,249,245,0.4);
}
.hero-proof {
  font-size: 14px;
  color: rgba(252,249,245,0.5);
  margin-top: 16px;
}
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  position: relative;
}
/* Phone mockup in hero */
.hero-phone {
  width: 380px;
  background: var(--cream);
  border-radius: 36px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px rgba(212,87,42,0.08);
  transform: perspective(800px) rotateY(-4deg);
  transition: transform 0.4s ease;
}
.hero-phone:hover {
  transform: perspective(800px) rotateY(0deg);
}
.hero-phone-notch {
  width: 80px;
  height: 4px;
  background: var(--muted-light);
  border-radius: 3px;
  margin: 0 auto 8px;
  opacity: 0.25;
}
.hero-phone-screen {
  border-radius: 24px;
  overflow: hidden;
  padding: 8px 12px 12px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  position: relative;
}
/* Hero animation stages */
.hero-stage {
  position: absolute;
  inset: 8px 12px 12px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hero-stage.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-stage-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.hs-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
/* Waveform */
.hero-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 48px;
}
.hero-waveform .wbar {
  width: 3px;
  border-radius: 2px;
  background: var(--ember);
  animation: hwave 1s ease-in-out infinite;
}
@keyframes hwave {
  0%, 100% { height: 6px; opacity: 0.3; }
  50% { height: 36px; opacity: 1; }
}
.hero-mic-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(212,87,42,0.3);
  animation: pulse-ember 2s ease-in-out infinite;
}
@keyframes pulse-ember {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,87,42,0.3); }
  50% { box-shadow: 0 4px 24px rgba(212,87,42,0.5); }
}
.hero-timer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
/* Transcript */
.hero-transcript {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}
.hero-transcript .cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--ember);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.6s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
/* XP list */
.hero-xp-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-xp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-xp-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-xp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-xp-activity {
  flex: 1;
  color: var(--ink-soft);
}
.hero-xp-val {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.03em;
}
/* Stat pills */
.hero-stat-pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.hero-stat-pill {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
/* Council */
.hero-council-q {
  padding: 8px 10px;
  background: var(--ember-tint);
  border-radius: 10px 10px 2px 10px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5;
  align-self: flex-end;
  max-width: 85%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-council-q.visible { opacity: 1; transform: translateY(0); }
.hero-council-a {
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 2px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 90%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-council-a.visible { opacity: 1; transform: translateY(0); }
.hc-name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ── MANDALA CONTAINER ── */
.mandala-wrap {
  position: relative;
  width: 400px;
  height: 400px;
}
.mandala-wrap canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.mandala-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  white-space: nowrap;
  transition: opacity 0.5s ease;
}

/* ── ACTIVITY BUBBLES ── */
.activity-bubble {
  position: absolute;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  color: var(--ink-soft);
}
.activity-bubble .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

/* ── STAT CARDS ── */
.stat-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.stat-card-header .stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card-header .stat-icon svg { width: 18px; height: 18px; }
.stat-card-name {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  margin-left: 12px;
}
.stat-bar-track {
  height: 8px;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.stat-card-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ── COMPARISON ── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-col {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.comparison-col.faded { opacity: 0.65; }
.comparison-col h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.comparison-col.highlight h3 { color: var(--ember); }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.comparison-item .check {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ember);
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
}
.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── TIER STRIP ── */
.tier-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tier-item {
  text-align: center;
}
.tier-item canvas {
  border-radius: 50%;
  margin-bottom: 10px;
}
.tier-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.tier-range {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.tier-arrow {
  font-size: 20px;
  color: var(--muted-light);
  align-self: center;
  padding-bottom: 40px;
}

/* ── TITLES SHOWCASE ── */
.titles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.title-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.title-card:hover { transform: translateY(-2px); }
.title-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.title-card-stats {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── EVIDENCE BLOCKS ── */
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.evidence-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.evidence-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 8px;
}
.evidence-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.evidence-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}
.evidence-card .source {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--ember);
  padding: 24px 32px;
  margin: 48px 0;
  background: var(--ember-tint);
  border-radius: 0 14px 14px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.pull-quote .attribution {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── PRIVACY BLOCK ── */
.privacy-block {
  background: rgba(43,122,212,0.04);
  border: 1px solid rgba(43,122,212,0.1);
  border-radius: 16px;
  padding: 32px;
}
.privacy-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── INSIGHT CARD ── */
.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--ember-tint);
  border: 1px solid rgba(212,87,42,0.08);
  margin-bottom: 12px;
}
.insight-card .icon { color: var(--ember); flex-shrink: 0; font-size: 20px; }
.insight-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ── FEATURE ROW ── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .feature-copy {
  flex: 1;
}
.feature-row .feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.feature-copy .section-num { margin-bottom: 12px; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-copy p { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }

/* ── DARK SHOWCASE ── */
.dark-showcase {
  background: var(--cosmic);
  border-radius: 24px;
  padding: 48px;
}
.dark-showcase h2, .dark-showcase h3 { color: #F0ECF8; }
.dark-showcase p { color: #AAA0C3; }
.dark-showcase .section-num { color: var(--ember-light); }

/* ── FOOTER ── */
.site-footer {
  padding: 56px 48px 40px;
  background: var(--cosmic);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.footer-brand-col {}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #FCF9F5;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(252,249,245,0.5);
  margin-bottom: 16px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
  overflow: hidden;
}
.footer-socials a:hover { background: rgba(255,255,255,0.12); }
.footer-socials a svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252,249,245,0.35);
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(252,249,245,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--ember-light); }
/* Legacy flat footer-links (fallback) */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px 32px;
  list-style: none;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(252,249,245,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ember-light); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-size: 12px;
  color: rgba(252,249,245,0.3);
}
.footer-cta-link {
  color: var(--ember-light);
  text-decoration: none;
}
.footer-cta-link:hover { color: #FCF9F5; }
@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .site-footer { padding: 40px 24px 32px; }
}

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 80px 48px;
  position: relative;
  background: var(--cosmic);
  color: #FCF9F5;
}
.cta-banner h2 { margin-bottom: 16px; color: #FCF9F5; }
.cta-banner p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(252,249,245,0.6);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta-banner .section-num { color: var(--ember-light); }
/* Button contrast on dark backgrounds */
.cta-banner .btn-secondary,
.section-cosmic .btn-secondary {
  color: var(--ember-light);
  border-color: var(--ember-light);
}
.cta-banner .btn-secondary:hover,
.section-cosmic .btn-secondary:hover {
  color: #FCF9F5;
  border-color: #FCF9F5;
}
.cta-banner .btn-ghost,
.section-cosmic .btn-ghost {
  background: rgba(212,87,42,0.2);
  color: var(--ember-light);
}
.cta-banner .btn-ghost:hover,
.section-cosmic .btn-ghost:hover {
  background: rgba(212,87,42,0.35);
  color: #FCF9F5;
}

/* ── WAITLIST FORM ── */
.waitlist-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form input {
  flex: 1;
  min-width: 160px;
  padding: 16px 24px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input:focus {
  border-color: var(--ember);
}
.waitlist-form input::placeholder {
  color: var(--muted-light);
}
.waitlist-form .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}
.waitlist-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.waitlist-success {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26,158,106,0.12);
  color: #1A9E6A;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.waitlist-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.success-msg {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.waitlist-share {
  background: var(--ghost-light);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 8px;
}
.share-prompt {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.share-btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-twitter {
  background: #0C0A18;
  color: #fff;
}
.share-copy {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

/* ── FLOATING CTA BAND ── */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 24px;
  background: rgba(252, 249, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.floating-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.floating-cta-btn {
  padding: 10px 24px !important;
  font-size: 13px !important;
  flex-shrink: 0;
}

/* ── BLOG ARTICLE ── */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.blog-article-meta .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}
.blog-article-meta .reading-time,
.blog-article-meta .date {
  font-size: 12px;
  color: var(--muted);
}
.blog-article-meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-light);
}
.blog-article h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 24px;
}
.blog-article .answer-block {
  background: var(--ember-tint);
  border-left: 3px solid var(--ember);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
}
.blog-article h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
}
.blog-article h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-article p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.blog-article strong {
  font-weight: 600;
  color: var(--ink);
}
.blog-article ul, .blog-article ol {
  margin: 0 0 24px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-soft);
}
.blog-article li {
  margin-bottom: 8px;
}
.blog-article blockquote {
  border-left: 3px solid var(--ember);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--ember-tint);
  border-radius: 0 14px 14px 0;
}
.blog-article blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 0;
}
.blog-article a {
  color: var(--ember);
  text-decoration: underline;
  text-decoration-color: rgba(212,87,42,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.blog-article a:hover {
  text-decoration-color: var(--ember);
}

/* Blog FAQ */
.blog-faq {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.blog-faq h2 {
  margin-top: 0;
  margin-bottom: 32px;
}
.blog-faq-item {
  margin-bottom: 24px;
}
.blog-faq-item summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}
.blog-faq-item summary::-webkit-details-marker { display: none; }
.blog-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.blog-faq-item[open] summary::after {
  content: '-';
}
.blog-faq-item .faq-answer {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Blog CTA */
.blog-cta {
  margin-top: 56px;
  padding: 40px 32px;
  background: var(--cosmic);
  border-radius: 20px;
  text-align: center;
}
.blog-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #F0ECF8;
  margin-bottom: 12px;
  margin-top: 0;
}
.blog-cta p {
  font-size: 14px;
  color: #AAA0C3;
  margin-bottom: 24px;
}
.blog-cta .btn-primary {
  display: inline-flex;
  color: white;
}

/* Blog Author */
.blog-author {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ember-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--ember);
  flex-shrink: 0;
}
.blog-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.blog-author-role {
  font-size: 12px;
  color: var(--muted);
}

/* Blog internal links */
.blog-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.blog-related h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  margin-top: 0;
}
.blog-related-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-related-link:hover {
  transform: translateX(4px);
  border-color: var(--ember);
}
.blog-related-link .arrow {
  color: var(--ember);
  font-size: 16px;
}

/* ── BLOG INDEX ── */
.blog-hero {
  padding: 120px 48px 48px;
  text-align: center;
}
.blog-hero h1 {
  margin-bottom: 12px;
}
.blog-hero p {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}
.blog-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.blog-card .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.blog-card .card-meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ── QUEST TOGETHER ── */
.quest-hero {
  text-align: center;
  padding: 120px 48px 64px;
}
.quest-hero h1 { margin-bottom: 16px; }
.quest-hero .hero-tagline { margin-bottom: 16px; }
.quest-hero p { font-size: 16px; font-weight: 400; color: var(--ink-soft); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.quest-hero .hero-ctas { justify-content: center; }

/* Quest type cards */
.quest-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quest-type-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.quest-type-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.quest-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.quest-type-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.quest-type-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}
.quest-type-card .suitability {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Summary mockup */
.summary-mockup {
  background: var(--cosmic);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  color: #F0ECF8;
  position: relative;
}
.summary-mandalas {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.summary-mandalas canvas {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.summary-mandalas .mandala-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #AAA0C3;
  margin-top: 8px;
}
.summary-mockup h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #F0ECF8;
  margin-bottom: 24px;
}
.summary-mockup .highlight {
  font-size: 14px;
  font-weight: 400;
  color: #C8C0DA;
  line-height: 1.6;
  margin-bottom: 8px;
}
.summary-mockup .combined-xp {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ember-light);
  margin: 20px 0 8px;
}
.summary-mockup .combined-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AAA0C3;
  margin-bottom: 24px;
}
.summary-mockup .narrative {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: #C8C0DA;
  line-height: 1.6;
  margin-bottom: 24px;
}
.summary-mockup .mock-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.summary-mockup .mock-btn {
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}
.summary-mockup .mock-btn.primary { background: var(--ember); color: white; }
.summary-mockup .mock-btn.ghost { background: rgba(255,255,255,0.08); color: #C8C0DA; }
.summary-mockup .watermark {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  margin-top: 20px;
}

/* Growth Circle preview */
.circle-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.circle-entry {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.circle-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.circle-info { flex: 1; }
.circle-info .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.circle-info .detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.circle-bond {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(26,158,106,0.08);
  color: var(--vit-text);
}

/* Vision cards */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vision-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.vision-card::after {
  content: 'COMING SOON';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--ember-tint);
  color: var(--ember);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.vision-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.vision-card .vision-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--ember);
  margin-bottom: 12px;
}
.vision-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
}
.vision-card .vision-req {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Privacy grid for quest page */
.privacy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.privacy-col h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.privacy-col .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.privacy-col .icon { flex-shrink: 0; font-size: 14px; margin-top: 2px; }

/* ── COLOUR-BLOCKED SECTIONS ── */
.section-cosmic {
  background: var(--cosmic);
  color: #F0ECF8;
}
.section-cosmic h2,
.section-cosmic h3 { color: #F0ECF8; }
.section-cosmic p { color: #C8C0DA; }
.section-cosmic .section-num { color: var(--ember-light); }

.section-ember-tint {
  background: var(--ember-tint);
}

.section-aqua-tint {
  background: rgba(13,234,186,0.04);
}

.section-violet-tint {
  background: rgba(155,93,229,0.04);
}

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── HERO CHARACTER CARD (shareable output) ── */
.nowrap { white-space: nowrap; }
.hero-visual { position: relative; }
.hero-character-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px rgba(212,87,42,0.08);
  width: 300px;
  position: relative;
  z-index: 2;
}
.hero-card-mandala {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: block;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-card-tier {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-card-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-bar {
  height: 6px;
  border-radius: 3px;
  flex: 1;
  display: block;
}
.hero-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 42px;
  text-align: right;
  flex-shrink: 0;
}
.label-str { color: var(--str-text); }
.label-vit { color: var(--vit-text); }
.label-int { color: var(--int-text); }
.label-emp { color: var(--emp-text); }
.label-eq  { color: var(--eq-text); }
.label-cre { color: var(--cre-text); }
.label-awr { color: var(--awr-text); }

/* Phone floats beside the card */
.hero-phone-float {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 180px;
  z-index: 3;
  transform: perspective(800px) rotateY(-8deg);
}
.hero-phone-float .hero-phone-screen {
  min-height: 200px;
}

/* ── COUNCIL SECTION ── */
.council-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.council-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.council-agent-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.council-example {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── LIFE GRAPH SECTION ── */
.lifegraph-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.lifegraph-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.lifegraph-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lifegraph-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #F0ECF8;
  margin-bottom: 6px;
}
.lifegraph-desc {
  font-size: 14px;
  font-weight: 400;
  color: #C8C0DA;
  line-height: 1.7;
}

/* ── ANTI-PATTERN SECTION ── */
.antipattern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.antipattern-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}
.antipattern-card-highlight {
  background: rgba(212,87,42,0.08);
  border-color: rgba(212,87,42,0.2);
}
.antipattern-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #C8C0DA;
  line-height: 1;
  margin-bottom: 16px;
}
.antipattern-card p {
  font-size: 14px;
  font-weight: 400;
  color: #C8C0DA;
  line-height: 1.7;
}

/* ── COMPARISON DARK THEME ── */
.comparison-col-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.comparison-col-dark h3 { color: #C8C0DA; }
.comparison-col-dark .comparison-item { color: #C8C0DA; }
.comparison-col-faded { opacity: 1; }
.comparison-col-highlight { opacity: 1; }
.comparison-col-highlight h3 { color: var(--ember-light) !important; }
.comparison-col-highlight .check { color: var(--ember-light); }

/* ── UTILITY CLASSES ── */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.section-micro {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.section-cosmic .section-micro { color: rgba(252,249,245,0.45); }

/* ── BUTTON VARIANTS ── */
.btn-primary-lg { padding: 16px 40px; font-size: 16px; }

/* ── STAT CARD DARK THEME (for cosmic sections) ── */
.stat-card-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.stat-card-name-light { color: #F0ECF8; }
.stat-card-desc-light { color: #C8C0DA; }
.stat-bar-track-dark { background: rgba(255,255,255,0.06); }

/* Stat icon backgrounds */
.stat-icon-str { background: rgba(212,87,42,0.15); }
.stat-icon-vit { background: rgba(26,158,106,0.15); }
.stat-icon-int { background: rgba(43,122,212,0.15); }
.stat-icon-emp { background: rgba(212,72,130,0.15); }
.stat-icon-eq  { background: rgba(26,158,170,0.15); }
.stat-icon-cre { background: rgba(196,158,10,0.15); }
.stat-icon-awr { background: rgba(155,93,229,0.15); }

/* Title card colors */
.title-color-str { color: var(--str-text); }
.title-color-vit { color: var(--vit-text); }
.title-color-int { color: var(--int-text); }
.title-color-emp { color: var(--emp-text); }
.title-color-eq  { color: var(--eq-text); }
.title-color-cre { color: var(--cre-text); }
.title-color-awr { color: var(--awr-text); }

/* ── STATS STRIP ── */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 24px 0;
  text-align: center;
}
.stats-strip-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ember);
}
.stats-strip-label {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.testimonial-stars {
  color: var(--ember);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── EMAIL CAPTURE NOTE ── */
.email-capture-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 32px 48px;
    gap: 40px;
  }
  .hero-copy { max-width: 560px; }
  .hero-ctas { justify-content: center; }
  .mandala-wrap { width: 320px; height: 320px; }
  .hero-phone { width: 220px; transform: none; }
  .hero-phone:hover { transform: none; }
  .hero-character-card { width: 260px; }
  .hero-phone-float { display: none; }
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    gap: 32px;
  }
  .container { padding: 0 32px; }
}

@media (max-width: 700px) {
  .container { padding: 0 24px; }
  .hero { padding: 88px 24px 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 24px; }
  .council-grid { grid-template-columns: 1fr; }
  .antipattern-grid { grid-template-columns: 1fr; }
  .mandala-wrap { width: 280px; height: 280px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { min-width: 0; }
  .floating-cta-text { font-size: 12px; }
  .floating-cta-inner { gap: 12px; }
  .site-nav { padding: 10px 16px; }
  .nav-toggle { display: block; }
  .site-nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cosmic);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 20px; font-weight: 500; color: #E8E4DF; }
  .nav-links .btn-primary {
    padding: 16px 40px !important;
    font-size: 16px !important;
    margin-top: 12px;
  }
  section { padding: 56px 0; }
  .cta-banner { padding: 56px 24px; }
  .tier-strip { gap: 8px; }
  .tier-arrow { display: none; }
  .quest-types-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .privacy-cols { grid-template-columns: 1fr; }
  .quest-hero { padding: 100px 24px 40px; }
  .steps-grid.four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .quest-types-grid { grid-template-columns: 1fr; }
  .steps-grid.four-col { grid-template-columns: 1fr; }
}
