/* Kindred — global design system. Single stylesheet, no framework. */

:root {
  --ink: #1a0f0a;
  --ink-2: #2d1f15;
  --ink-3: #3d2c1f;
  --flame: #ff6b35;
  --flame-glow: #ffaa66;
  --ember: #7a3018;
  --gold: #d4a574;
  --gold-deep: #a37a4a;
  --paper: #fdf8f0;
  --paper-2: #f5e8d8;
  --paper-3: #ece0c9;
  --moss: #3d6b4f;
  --moss-glow: #6fa784;
  --line: rgba(26, 15, 10, 0.10);
  --line-strong: rgba(26, 15, 10, 0.18);
  --line-dark: rgba(253, 248, 240, 0.10);
  --shadow-sm: 0 1px 2px rgba(26, 15, 10, 0.06), 0 1px 3px rgba(26, 15, 10, 0.04);
  --shadow-md: 0 4px 14px rgba(26, 15, 10, 0.08), 0 2px 6px rgba(26, 15, 10, 0.05);
  --shadow-lg: 0 18px 40px -12px rgba(26, 15, 10, 0.20), 0 8px 22px -6px rgba(26, 15, 10, 0.10);
  --shadow-flame: 0 14px 32px -10px rgba(255, 107, 53, 0.45), 0 4px 14px -4px rgba(255, 107, 53, 0.30);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --serif: 'Cormorant Garamond', 'Tiempos Headline', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 240, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo svg { width: 30px; height: 30px; }
.nav-logo .word {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600;
  letter-spacing: -0.015em; color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--flame); }
@media (max-width: 720px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; min-height: 48px;
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s, color 0.18s;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--flame) 0%, var(--ember) 100%);
  color: #fff;
  box-shadow: var(--shadow-flame);
}
.btn-primary:hover { box-shadow: 0 18px 38px -10px rgba(255,107,53,0.55); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--paper-2); border-color: var(--ink); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
}
.btn-lg { padding: 16px 30px; min-height: 56px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; min-height: 38px; font-size: 0.85rem; }
.btn .arrow { transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 88px;
  background:
    radial-gradient(1100px 480px at 78% -10%, rgba(255, 107, 53, 0.18), transparent 60%),
    radial-gradient(800px 400px at 12% 110%, rgba(212, 165, 116, 0.18), transparent 60%),
    var(--paper);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ember);
  background: rgba(255, 107, 53, 0.10);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 107, 53, 0.25);
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--flame);
  box-shadow: 0 0 0 0 rgba(255,107,53, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53, 0); }
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--flame) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-3);
  margin: 8px 0 28px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 0.85rem; color: var(--ink-3);
}
.hero-meta-item { display: flex; align-items: center; gap: 7px; }
.hero-meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--moss); }

/* twin-flame visual on hero */
.hero-visual {
  position: relative; aspect-ratio: 1/1; max-width: 420px; margin-left: auto;
  display: flex; align-items: center; justify-content: center;
}
.hero-aura {
  position: absolute; inset: -6%;
  background: radial-gradient(circle at center, rgba(255,170,102,0.42), rgba(255,107,53,0.18) 40%, transparent 70%);
  filter: blur(18px);
  animation: aura 5.2s ease-in-out infinite;
}
@keyframes aura {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
.hero-card {
  position: relative; z-index: 2;
  width: 86%; padding: 26px;
  background: rgba(253, 248, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}
.hc-header {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 0.72rem; color: var(--ember);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.hc-header .dotline { display: flex; gap: 5px; }
.hc-header .dotline span { width: 5px; height: 5px; border-radius: 50%; background: var(--flame-glow); opacity: 0.4; }
.hc-header .dotline span.on { background: var(--flame); opacity: 1; }
.hc-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.hc-row:last-child { border-bottom: none; }
.hc-key { font-size: 0.78rem; color: var(--ink-3); font-family: var(--mono); }
.hc-val { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.hc-tag { background: rgba(61,107,79,0.14); color: var(--moss); border: 1px solid rgba(61,107,79,0.28); padding: 3px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 600; }
.hc-spark { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--flame); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(253,248,240, 0.78); }
.section-cream { background: var(--paper-2); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .kicker {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ember); margin: 0 0 14px;
}
.section-head p { font-size: 1.08rem; color: var(--ink-3); }

/* ── GAP SECTION ────────────────────────────────────── */
.gap-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 720px) { .gap-grid { grid-template-columns: 1fr; } }
.gap-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.gap-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.gap-card .h { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.gap-card .h-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ember);
  background: rgba(255,107,53,0.08); padding: 3px 9px; border-radius: 6px;
  border: 1px solid rgba(255,107,53,0.20);
}
.gap-card .strike { color: var(--ink-3); text-decoration: line-through; opacity: 0.7; font-size: 0.92rem; }
.gap-card .real { color: var(--ink); font-weight: 600; font-size: 1.02rem; margin-top: 4px; }
.gap-card p { color: var(--ink-3); font-size: 0.96rem; margin-top: 8px; margin-bottom: 0; }

/* ── HOW IT WORKS ──────────────────────────────────── */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
}
.how-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(180deg, var(--flame), var(--gold));
  opacity: 0.85;
}
.how-card .step {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  color: var(--ember); text-transform: uppercase; margin-bottom: 12px;
}
.how-card h3 { margin-bottom: 10px; }
.how-card p { color: var(--ink-3); margin: 0; }

/* ── DEMO PAGE ─────────────────────────────────────── */
.demo-shell { background: var(--paper); padding: 56px 0 96px; }
.demo-banner {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.74rem;
  background: rgba(212,165,116,0.18); color: var(--gold-deep);
  border: 1px solid rgba(212,165,116,0.4);
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.demo-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0 22px;
  padding: 6px;
  background: var(--paper-2);
  border-radius: 999px;
  width: fit-content;
}
.demo-tab {
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  background: transparent; border: none; color: var(--ink-3);
  transition: background 0.15s, color 0.15s;
}
.demo-tab.active {
  background: var(--ink); color: var(--paper);
}
.demo-tab:not(.active):hover { color: var(--ink); }

/* ── PROFILE CARD (the artifact) ───────────────────── */
.profile-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.profile-head {
  background: linear-gradient(135deg, #2d1f15 0%, #1a0f0a 60%, #3d2c1f 100%);
  color: var(--paper);
  padding: 38px 42px 32px;
  position: relative; overflow: hidden;
}
.profile-head::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,107,53,0.30), transparent 70%);
  pointer-events: none;
}
.profile-head .who {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  position: relative;
}
.profile-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: #fff;
  box-shadow: var(--shadow-flame);
  flex-shrink: 0;
}
.profile-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1.05; }
.profile-handle { font-family: var(--mono); font-size: 0.82rem; color: var(--gold); letter-spacing: 0.06em; margin-top: 2px; }
.profile-tagline {
  font-family: var(--serif); font-size: 1.45rem; font-style: italic;
  color: var(--paper); line-height: 1.32; max-width: 600px;
  position: relative;
}
.profile-tagline::before {
  content: '"'; font-family: var(--serif); font-size: 4rem; font-style: italic;
  color: var(--flame); position: absolute; top: -28px; left: -22px; line-height: 1;
  opacity: 0.55;
}
.profile-body { padding: 38px 42px 42px; }
@media (max-width: 600px) {
  .profile-head, .profile-body { padding-left: 24px; padding-right: 24px; }
  .profile-name { font-size: 1.5rem; }
  .profile-tagline { font-size: 1.15rem; }
}

.profile-section { margin-bottom: 32px; }
.profile-section:last-child { margin-bottom: 0; }
.profile-section h4 {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ember); margin: 0 0 14px;
}
.profile-section p { color: var(--ink); font-size: 1rem; margin: 0; line-height: 1.65; }

/* tempo bar */
.tempo {
  position: relative;
  background: var(--paper-2);
  height: 56px; border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.tempo-track {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(123, 174, 211, 0.18) 0%,
    rgba(255, 170, 102, 0.20) 50%,
    rgba(255, 107, 53, 0.30) 100%);
}
.tempo-marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-flame);
}
.tempo-labels {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* archetype spectrum */
.spectrum-row { margin-bottom: 16px; }
.spectrum-labels {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.spectrum-bar {
  position: relative; height: 8px; border-radius: 999px;
  background: var(--paper-2);
}
.spectrum-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--flame) 100%);
  border-radius: 999px;
}
.spectrum-dot {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-sm);
}

/* trait grid */
.trait-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (max-width: 600px) { .trait-grid { grid-template-columns: 1fr; } }
.trait-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.trait-card .label {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 8px;
}
.trait-card .value { font-weight: 600; color: var(--ink); font-size: 0.98rem; line-height: 1.4; }

/* deal-breaker cards */
.dealbreaker {
  background: rgba(122, 48, 24, 0.06);
  border: 1px solid rgba(122, 48, 24, 0.20);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 12px;
}
.dealbreaker .x {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--ember); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.dealbreaker .text { color: var(--ink); font-size: 0.95rem; line-height: 1.5; }

/* bring/need lists */
.bn-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 640px) { .bn-grid { grid-template-columns: 1fr; } }
.bn-card {
  border-radius: var(--radius);
  padding: 22px;
}
.bn-card.bring { background: rgba(61, 107, 79, 0.08); border: 1px solid rgba(61, 107, 79, 0.25); }
.bn-card.need { background: rgba(255, 107, 53, 0.06); border: 1px solid rgba(255, 107, 53, 0.22); }
.bn-card h5 {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 14px;
}
.bn-card.bring h5 { color: var(--moss); }
.bn-card.need h5 { color: var(--ember); }
.bn-card ul { margin: 0; padding-left: 0; list-style: none; }
.bn-card li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 0.95rem; color: var(--ink); line-height: 1.55;
}
.bn-card li:last-child { margin-bottom: 0; }
.bn-card.bring li::before { content: "+"; position: absolute; left: 0; top: 0; color: var(--moss); font-weight: 700; }
.bn-card.need li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--ember); font-weight: 700; }

/* ── MATCH CARD ────────────────────────────────────── */
.match-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.match-head {
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1f15 50%, #7a3018 100%);
  color: var(--paper);
  padding: 36px 42px 30px;
  position: relative; overflow: hidden;
}
.match-head::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,170,102,0.40), transparent 60%);
  pointer-events: none;
}
.match-pair {
  display: flex; align-items: center; gap: 14px;
  position: relative; margin-bottom: 18px;
  flex-wrap: wrap;
}
.match-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff;
  box-shadow: var(--shadow-flame);
  flex-shrink: 0;
}
.match-avatar.a { background: linear-gradient(135deg, #ff6b35, #d4574a); }
.match-avatar.b { background: linear-gradient(135deg, #d4a574, #a37a4a); }
.match-pair .vs {
  font-family: var(--serif); font-size: 1.4rem; color: var(--flame-glow);
  font-style: italic;
}
.match-pair .who {
  flex: 1; min-width: 0;
}
.match-pair .who .name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--paper); line-height: 1.1; }
.match-pair .who .role { font-family: var(--mono); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em; margin-top: 2px; }
.match-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; line-height: 1.18; color: var(--paper);
  margin: 0; max-width: 600px; position: relative;
}
.match-meta {
  position: relative;
  display: flex; align-items: center; gap: 18px; margin-top: 18px;
  font-family: var(--mono); font-size: 0.74rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}
.match-score {
  background: rgba(255, 170, 102, 0.18);
  border: 1px solid rgba(255, 170, 102, 0.35);
  padding: 5px 12px; border-radius: 999px; color: var(--paper);
}
.match-body { padding: 38px 42px 42px; }
@media (max-width: 600px) {
  .match-head { padding: 24px; }
  .match-body { padding: 24px; }
}

.overlap-list { margin-bottom: 32px; }
.overlap-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.overlap-row:last-child { border-bottom: none; }
.overlap-num {
  font-family: var(--serif); font-size: 1.6rem; font-style: italic;
  color: var(--flame);
}
.overlap-row h4 {
  font-family: var(--sans); font-size: 1.02rem; font-weight: 600;
  margin: 0 0 6px; letter-spacing: 0; line-height: 1.3;
}
.overlap-row p { margin: 0; color: var(--ink-3); font-size: 0.96rem; line-height: 1.6; }

.divergence {
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.30);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.divergence h5 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); margin: 0 0 10px;
}
.divergence p { margin: 0; color: var(--ink); font-size: 0.95rem; line-height: 1.6; }

.northstar {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(212,165,116,0.10));
  border: 1px solid rgba(255,107,53,0.18);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 12px;
}
.northstar h5 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ember); margin: 0 0 12px;
}
.northstar p {
  margin: 0; color: var(--ink); font-size: 1.05rem;
  line-height: 1.55; font-family: var(--serif); font-style: italic;
}

.match-actions {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}

/* ── PRICING ───────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 30px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--flame);
  box-shadow: var(--shadow-flame);
  transform: translateY(-4px);
}
.price-card.featured::before {
  content: "Recommended";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--flame); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-tier { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); }
.price-amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; margin: 14px 0 4px; line-height: 1; }
.price-amount .per { font-size: 0.95rem; color: var(--ink-3); font-weight: 400; font-family: var(--sans); }
.price-card .desc { color: var(--ink-3); font-size: 0.95rem; margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-card li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  font-size: 0.94rem; line-height: 1.5;
}
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px;
  border-left: 2px solid var(--moss); border-bottom: 2px solid var(--moss);
  transform: rotate(-45deg);
}

/* ── INTERVIEW SURFACE ─────────────────────────────── */
.interview-shell {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(255, 107, 53, 0.18), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(212, 165, 116, 0.10), transparent 60%),
    var(--ink);
  color: var(--paper);
  padding: 24px;
  position: relative; overflow: hidden;
}
.interview-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.10em;
  color: var(--gold);
  max-width: 720px; margin: 0 auto 18px; width: 100%;
}
.interview-top a { color: var(--gold); text-decoration: none; }
.phase-pill {
  background: rgba(212,165,116, 0.16);
  border: 1px solid rgba(212,165,116, 0.30);
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.progress {
  max-width: 720px; margin: 0 auto 16px; width: 100%;
  height: 4px; background: rgba(253,248,240,0.10);
  border-radius: 999px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--flame), var(--gold));
  width: 0%; transition: width 0.35s ease;
}
.interview-stage {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  max-width: 720px; margin: 0 auto; width: 100%;
  text-align: center;
}
.flame-orb {
  position: relative;
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.flame-orb::before, .flame-orb::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,170,102,0.55), rgba(255,107,53,0.18) 40%, transparent 70%);
  filter: blur(14px);
}
.flame-orb::after { animation: aura 4s ease-in-out infinite; }
.flame-orb.listening::after { animation: aura 1.4s ease-in-out infinite; background: radial-gradient(circle, rgba(255,107,53,0.65), rgba(255,170,102,0.20) 40%, transparent 70%); }
.flame-orb.thinking::after { animation: spin 2.8s linear infinite; background: conic-gradient(from 0deg, rgba(255,107,53,0.70), rgba(212,165,116,0.40), rgba(255,107,53,0)); filter: blur(12px); }
@keyframes spin { to { transform: rotate(360deg); } }
.flame-orb svg { position: relative; z-index: 2; width: 140px; height: 140px; }

.q-text {
  font-family: var(--serif); font-size: clamp(1.45rem, 3.4vw, 1.95rem);
  line-height: 1.4; font-weight: 500;
  max-width: 600px; color: var(--paper);
  margin: 0 0 36px;
}
.q-meta {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}

.mic-stack { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mic-btn {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--flame) 0%, var(--ember) 100%);
  border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-flame);
  transition: transform 0.15s, box-shadow 0.18s;
  cursor: pointer; touch-action: manipulation;
}
.mic-btn svg { width: 40px; height: 40px; }
.mic-btn:active { transform: scale(0.96); }
.mic-btn.listening {
  background: linear-gradient(135deg, #fff 0%, #ffaa66 100%);
  color: var(--ember);
  animation: pulse-strong 1.2s ease-in-out infinite;
}
@keyframes pulse-strong {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55), var(--shadow-flame); }
  50% { box-shadow: 0 0 0 22px rgba(255, 107, 53, 0), var(--shadow-flame); }
}
.mic-hint {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.10em; color: var(--gold);
  text-transform: uppercase;
}
.text-fallback {
  width: 100%; max-width: 540px; margin-top: 14px;
  display: flex; gap: 8px;
  background: rgba(253,248,240, 0.06);
  border: 1px solid rgba(253,248,240,0.14);
  border-radius: var(--radius-lg); padding: 8px;
}
.text-fallback textarea {
  flex: 1; resize: none;
  background: transparent; color: var(--paper);
  border: none; outline: none;
  font-family: var(--sans); font-size: 1rem;
  padding: 10px 14px; min-height: 44px; max-height: 120px;
  line-height: 1.5;
}
.text-fallback textarea::placeholder { color: rgba(253,248,240,0.42); }
.text-fallback button {
  border: none; background: var(--flame); color: #fff;
  border-radius: 999px; padding: 0 22px;
  font-weight: 600; font-size: 0.92rem;
  white-space: nowrap;
}
.transcript-feed {
  width: 100%; max-width: 600px; margin: 24px auto 0;
  font-size: 0.92rem; color: rgba(253, 248, 240, 0.62);
  font-style: italic; min-height: 28px;
  text-align: center; line-height: 1.5;
}

/* interview footer skip */
.interview-foot {
  max-width: 720px; margin: 24px auto 0; width: 100%;
  display: flex; justify-content: center; gap: 18px;
  font-family: var(--mono); font-size: 0.78rem; color: rgba(253,248,240,0.5);
}
.interview-foot button {
  background: transparent; border: none; color: rgba(253,248,240,0.5);
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.10em; text-transform: uppercase; cursor: pointer;
}
.interview-foot button:hover { color: var(--gold); }

/* completion screen */
.complete-shell {
  text-align: center; padding: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1;
}
.complete-shell .badge {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss-glow); margin-bottom: 12px;
}
.complete-shell h1 { color: var(--paper); margin-bottom: 14px; }
.complete-shell p { color: rgba(253,248,240, 0.78); max-width: 500px; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ember); font-size: 1rem; font-weight: 700;
  transition: transform 0.18s;
}
.faq-item[open] .plus { transform: rotate(45deg); background: var(--flame); color: #fff; }
.faq-item .ans { padding-top: 14px; color: var(--ink-3); line-height: 1.65; }

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(253,248,240,0.78);
  padding: 60px 0 32px;
}
.footer .foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 34px;
}
@media (max-width: 720px) {
  .footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
.footer h5 {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
.footer a { color: rgba(253,248,240,0.70); text-decoration: none; display: block; padding: 4px 0; font-size: 0.92rem; }
.footer a:hover { color: var(--paper); }
.footer .brandline {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer .brandline svg { width: 28px; height: 28px; }
.footer .brandline span { font-family: var(--serif); font-size: 1.4rem; color: var(--paper); }
.footer-foot {
  border-top: 1px solid rgba(253,248,240,0.10);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 0.78rem;
  color: rgba(253,248,240,0.5); letter-spacing: 0.06em;
}

/* ── FOUNDER NOTE ──────────────────────────────────── */
.founder-note {
  max-width: 720px; margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--flame);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.founder-note h3 { margin-top: 0; }
.founder-note p { color: var(--ink-3); }
.founder-note .signoff {
  font-family: var(--serif); font-style: italic; color: var(--ink);
  margin-top: 18px;
}

/* ── UTIL ──────────────────────────────────────────── */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.dim { color: var(--ink-3); }

/* ── SUBTLE FONT FALLBACK NICETIES ─────────────────── */
.serif-italic { font-family: var(--serif); font-style: italic; }
