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

:root {
  --bg: #0c1829;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-card-selected: rgba(201, 168, 76, 0.12);
  --gold: #c9a84c;
  --gold-light: #dfc06e;
  --text: #c8c0b4;
  --text-bright: #ece6dc;
  --text-heading: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 76, 0.4);
}

html { font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Page wrappers ── */
.page {
  min-height: 100vh;
  padding: 60px 0 80px;
}

/* ── Progress Bar ── */
.progress-wrap {
  position: sticky;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(12, 24, 41, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--border);
}
.progress-wrap.hidden { display: none; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.progress-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.progress-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* ── Landing ── */
.landing { text-align: center; padding-top: 120px; }
.landing-badge {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.landing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 24px;
}
.landing-title em {
  font-style: italic;
  color: var(--gold);
}
.landing-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.btn-start {
  display: inline-block;
  background: var(--gold);
  color: #0c1829;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 48px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-start:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-start:active { transform: translateY(0); }

.landing-footer {
  margin-top: 60px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── Question ── */
.question-page { padding-top: 40px; }
.q-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.q-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 36px;
}
.options { display: flex; flex-direction: column; gap: 12px; }
.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--text-bright);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.option-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px);
}
.option-btn.selected {
  background: var(--bg-card-selected);
  border-color: var(--border-gold);
}
.option-btn.disabled { pointer-events: none; opacity: 0.5; }

/* Question fade transitions */
.question-frame { transition: opacity 0.15s ease; }
.question-frame.fading { opacity: 0; }

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 0;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-btn:hover { color: var(--gold); }
.back-btn.hidden { display: none; }
.back-btn .arrow { font-size: 1.1em; line-height: 1; }

/* ── Email Capture ── */
.email-page { text-align: center; padding-top: 120px; }
.email-page .landing-title { margin-bottom: 16px; }
.email-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.email-form { max-width: 400px; margin: 0 auto; }
.form-field {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text-heading);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.form-field::placeholder { color: rgba(255,255,255,0.3); }
.form-field:focus { border-color: var(--gold); }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #0c1829;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.email-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
}

/* ── Outcome ── */
.outcome-page { padding-top: 80px; text-align: center; }
.outcome-badge {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.outcome-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.outcome-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.outcome-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.outcome-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
}
.outcome-meta strong {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}
.outcome-body { text-align: left; }
.outcome-body p {
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 0.98rem;
}
.outcome-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 14px;
}
.outcome-bridge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  margin-top: 48px;
  text-align: left;
}
.outcome-bridge .bridge-hook {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.outcome-bridge p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: #0c1829;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.25s ease forwards; }
.fade-up-d1 { animation-delay: 0.04s; opacity: 0; }
.fade-up-d2 { animation-delay: 0.08s; opacity: 0; }
.fade-up-d3 { animation-delay: 0.12s; opacity: 0; }
.fade-up-d4 { animation-delay: 0.16s; opacity: 0; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .landing { padding-top: 80px; }
  .question-page { padding-top: 32px; }
  .outcome-meta { flex-direction: column; gap: 12px; }
  .option-btn { padding: 16px 16px; font-size: 0.9rem; }
  .outcome-bridge { padding: 24px 20px; }
}

/* ============================================================
   NEW LANDING + RESULTS DESIGN
   ============================================================ */

:root {
  --bg-deep: #08111d;
  --bg-elevated: #0f1e34;
  --gold-bright: #e8c873;
  --hairline: rgba(201, 168, 76, 0.2);
  --container-wide: 1100px;
  --container-narrow: 720px;
}

.container-wide  { max-width: var(--container-wide);  margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(12, 24, 41, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  display: inline-block;
  line-height: 0;
}
.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .site-logo img { height: 28px; }
}

/* ── Hero Section (Landing) ── */
.hero {
  position: relative;
  padding: 110px 0 130px;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg);
}
/* Cinematic Hill portrait, color-treated for the navy palette */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/hill-portrait.jpg') center 28% / cover no-repeat;
  filter: contrast(1.2) brightness(0.4) sepia(0.45) hue-rotate(195deg) saturate(0.55);
  pointer-events: none;
}
/* Layered overlays: stronger dark wash for headline legibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 76, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.85) 0%, rgba(8, 17, 29, 0.5) 30%, rgba(8, 17, 29, 0.65) 65%, rgba(8, 17, 29, 0.97) 100%),
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(8, 17, 29, 0.55) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-title { text-shadow: 0 2px 24px rgba(8, 17, 29, 0.8); }
.hero-subtitle { text-shadow: 0 2px 12px rgba(8, 17, 29, 0.9); }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-block;
  position: relative;
  padding: 0 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.hero-eyebrow::before { left: 0; }
.hero-eyebrow::after { right: 0; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 52px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.25);
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}
.hero-trust {
  margin-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hero-faculty {
  margin-top: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-faculty-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-faculty-text {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Generic Section ── */
.section {
  padding: 90px 0;
  position: relative;
}
.section-alt { background: var(--bg-deep); }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-intro {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── Discovery Grid (3 benefits) ── */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.discovery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.discovery-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.discovery-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.discovery-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.discovery-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
}
@media (max-width: 800px) {
  .discovery-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Archetypes Preview Card ── */
.archetypes-card {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-deep));
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 48px 40px;
  margin-top: 60px;
}
.archetypes-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 36px;
}
.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.archetype-tile { text-align: center; }
.archetype-symbol {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.archetype-tile-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.archetype-tile-desc {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 700px) {
  .archetypes-card { padding: 36px 24px; }
  .archetypes-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ── About Section (Hill + NHI) ── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  border-radius: 6px;
  filter: grayscale(0.2) sepia(0.15);
  display: block;
}
.about-image-frame {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  z-index: -1;
}
.about-content { text-align: left; }
.about-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 20px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}
.about-quote-cite {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}
.about-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text);
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { max-width: 320px; margin: 0 auto; }
}

/* ── Final CTA Section ── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201, 168, 76, 0.08), transparent 65%);
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-title em { color: var(--gold); font-style: italic; }

/* ── Footer ── */
.site-footer {
  padding: 40px 0 32px;
  text-align: center;
  background: var(--bg-deep);
}
.site-footer img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  margin-bottom: 16px;
}
.site-footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}
.site-footer-text a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-text a:hover { color: var(--gold); }

/* ============================================================
   IMPROVED OUTCOME / RESULTS PAGES
   ============================================================ */

/* ── Outcome Hero (full-width, dramatic, cinematic bg) ── */
.outcome-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
}
.outcome-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: contrast(1.15) brightness(0.45) sepia(0.4) hue-rotate(195deg) saturate(0.65);
  pointer-events: none;
}
.outcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 25%, rgba(201, 168, 76, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.65) 0%, rgba(8, 17, 29, 0.3) 30%, rgba(8, 17, 29, 0.55) 70%, rgba(8, 17, 29, 0.97) 100%),
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(8, 17, 29, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.outcome-hero > .container-narrow {
  position: relative;
  z-index: 1;
}
.outcome-hero .outcome-hero-name,
.outcome-hero .outcome-hero-subtitle { text-shadow: 0 2px 16px rgba(8, 17, 29, 0.85); }

/* Per-archetype hero image (positioning tuned per photo composition) */
.outcome-hero--visionary::before  { background-image: url('/assets/img/hero-visionary.jpg');  background-position: center 35%; }
.outcome-hero--strategist::before { background-image: url('/assets/img/hero-strategist.jpg'); background-position: center center; }
.outcome-hero--operator::before   { background-image: url('/assets/img/hero-operator.jpg');   background-position: center 40%; }
.outcome-hero--magnetic::before   { background-image: url('/assets/img/hero-magnetic.jpg');   background-position: center 65%; }
.outcome-hero-badge {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.outcome-hero-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.outcome-hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.outcome-hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 40px;
}

/* ── Trait Cards (Strengths / Gap / Habit) ── */
.trait-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.trait-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 18px;
  text-align: center;
}
.trait-card-highlight {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--border-gold);
}
.trait-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.trait-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-bright);
  line-height: 1.4;
}
.trait-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .trait-cards { grid-template-columns: 1fr; gap: 10px; }
}

/* ── Outcome Body Sections (numbered) ── */
.outcome-intro {
  padding: 60px 0 30px;
}
.outcome-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--text-bright);
  font-weight: 400;
  margin-bottom: 24px;
}
.outcome-intro p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.outcome-pullquote {
  padding: 60px 0 56px;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.outcome-pullquote::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.outcome-pullquote-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid var(--gold);
  margin: 0 auto 32px;
  display: block;
  filter: sepia(0.25) contrast(1.05);
  box-shadow: 0 0 0 6px rgba(12, 24, 41, 1), 0 0 0 7px rgba(201, 168, 76, 0.25);
}
.outcome-pullquote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  line-height: 1.4;
  color: var(--gold);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
.outcome-pullquote blockquote::before,
.outcome-pullquote blockquote::after {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  position: absolute;
  font-family: 'Playfair Display', serif;
}
.outcome-pullquote blockquote::before { content: "\201C"; left: 0; top: -8px; }
.outcome-pullquote blockquote::after  { content: "\201D"; right: 0; bottom: -28px; }
.outcome-pullquote cite {
  display: block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.outcome-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-section:last-of-type { border-bottom: none; }
.outcome-section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
.outcome-section-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  font-style: italic;
}
.outcome-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  flex: 1;
}
.outcome-section-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 18px;
  margin-top: -8px;
}
.outcome-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text);
}

/* ── Bridge Section (premium card) ── */
.bridge-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.bridge-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.bridge-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  max-width: 620px;
  margin: 0 auto 24px;
}
.bridge-setup {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-bright);
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}
.bridge-includes-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 14px;
}
.bridge-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bridge-includes li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
}
.bridge-includes li:last-child { border-bottom: none; }
.bridge-includes li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 0.95rem;
}
.bridge-includes li strong {
  color: var(--text-bright);
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  display: block;
  margin-bottom: 4px;
}
.bridge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 40px 36px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.bridge-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 10px 10px 0 0;
}
.bridge-product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.bridge-product-meta {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.bridge-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
.bridge-faculty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.bridge-faculty strong {
  color: var(--text-heading);
  font-weight: 500;
}
.bridge-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 700px) {
  .outcome-section-head { gap: 14px; }
  .outcome-section-num { font-size: 2rem; }
  .bridge-card { padding: 32px 24px; }
}

