/* =============================================================
   Phoenix Advisory — Site Styles
   ============================================================= */

:root {
  --blue: #1645D3;
  --blue-deep: #0E2E96;
  --blue-light: #3B82F6;
  --magenta: #E51D6F;
  --orange: #F37120;
  --gold: #F5B017;

  --grey: #64748B;
  --grey-soft: #94A3B8;
  --grey-light: #F1F5F9;
  --paper: #FFFFFF;
  --blue-grey: #EDF2F8;
  --ink: #0E1525;
  --rule: #E2E8F0;

  --display: 'Montserrat', sans-serif;
  --body: 'Source Sans 3', system-ui, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 60px);

  --gradient-warm: linear-gradient(90deg, var(--gold) 0%, var(--orange) 50%, var(--magenta) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
}

a { color: var(--blue); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

.grad-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Top bar */
.topbar {
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.brand-link { display: inline-flex; align-items: center; }
.brand-logo { height: 72px; width: auto; display: block; }

nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.3s ease;
}
nav a:not(.btn):hover { color: var(--blue); }
nav a:not(.btn):hover::after { width: 100%; }
nav a[aria-current="page"] { color: var(--blue); }
nav a[aria-current="page"]::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle { display: none; }
.nav-burger { display: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--body);
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--blue-deep); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white !important; }

.btn--white { background: white; color: var(--ink) !important; }
.btn--white:hover { background: var(--gold); color: var(--ink) !important; }

.btn--ghost-white {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost-white:hover { background: white; color: var(--ink) !important; border-color: white; }

/* Section base */
section { padding: clamp(80px, 12vh, 130px) 0; }

.section-label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--gradient-warm);
}
.section-label--gold { color: var(--gold); }
.section-label--gold::before { background: var(--gold); }

.section-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 820px;
}
.section-lede {
  font-size: 18px;
  color: var(--grey);
  max-width: 680px;
  line-height: 1.6;
}

/* Page header (inner pages) */
.page-header {
  padding: clamp(80px, 12vh, 120px) 0 clamp(40px, 6vh, 60px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 480px; height: 480px;
  background-image: url('assets/pa-mark-logo_transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  transform: rotate(-8deg);
}
.page-header .wrap { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 880px;
}
.page-header .page-strap {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--grey);
  max-width: 720px;
  line-height: 1.55;
}

/* Long-form prose */
.prose { max-width: 760px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 18px; }
.prose p.lede { font-size: 19px; color: var(--ink); }
.prose h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 56px 0 20px;
}
.prose h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.prose ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 16px;
  line-height: 1.65;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
}
.prose ol { counter-reset: prose-counter; }
.prose ol li {
  counter-increment: prose-counter;
  position: relative;
  padding: 8px 0 8px 36px;
  font-size: 16px;
  line-height: 1.65;
}
.prose ol li::before {
  content: counter(prose-counter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.05em;
}

.prose blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid;
  border-image: var(--gradient-warm) 1;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Hero (home) */
.hero {
  padding: clamp(80px, 14vh, 140px) 0 clamp(60px, 10vh, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 540px; height: 540px;
  background-image: url('assets/pa-mark-logo_transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  transform: rotate(-8deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--gradient-warm);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 65px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--grey);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-meta div { font-size: 13px; color: var(--grey); }
.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(22,69,211,0.10), 0 8px 24px rgba(14,21,37,0.05);
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 24px; right: -16px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-warm);
  opacity: 0.18;
  filter: blur(40px);
  z-index: -1;
}

/* Three outcomes */
.outcomes { background: var(--blue-grey); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
}
.outcome {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.outcome:last-child { border-right: 0; padding-right: 0; }
.outcome:not(:first-child) { padding-left: 40px; }
.outcome::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 28px;
  border-radius: 2px;
}
.outcome:nth-child(1)::before { background: var(--gold); }
.outcome:nth-child(2)::before { background: var(--orange); }
.outcome:nth-child(3)::before { background: var(--magenta); }

.outcome-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.outcome:nth-child(1) .outcome-num { color: var(--gold); }
.outcome:nth-child(2) .outcome-num { color: var(--orange); }
.outcome:nth-child(3) .outcome-num { color: var(--magenta); }

.outcome h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.outcome p { color: var(--grey); font-size: 16px; line-height: 1.6; }

/* Who we work with */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 56px;
  align-items: center;
}
.who-cards { display: flex; flex-direction: column; gap: 32px; }
.who-card { padding: 28px 0; border-top: 1px solid var(--rule); }
.who-card:last-child { border-bottom: 1px solid var(--rule); }
.who-card-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.who-card:nth-child(1) .who-card-eyebrow { color: var(--blue); }
.who-card:nth-child(2) .who-card-eyebrow { color: var(--magenta); }
.who-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.who-card p { color: var(--grey); font-size: 16px; line-height: 1.6; }

.who-visual { position: relative; }
.who-visual img { width: 100%; height: auto; display: block; }

/* Blue feature section */
.feature-blue {
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.feature-blue::before {
  content: '';
  position: absolute;
  top: 50%; left: -8%;
  transform: translateY(-50%);
  width: 65vw; height: 130%;
  background-image: url('assets/pa-mark-logo_transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
  z-index: -1;
}
.feature-blue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,176,23,0.18), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(229,29,111,0.12), transparent 60%);
  z-index: -1;
}
.feature-blue .section-label { color: var(--gold); }
.feature-blue .section-label::before { background: var(--gold); }
.feature-blue h2 {
  color: white;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 24px;
}
.feature-blue h2 strong {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.feature-blue .section-lede {
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  font-size: 19px;
}
.feature-blue p { color: rgba(255,255,255,0.78); }
.feature-blue h3 { color: white; }

.feature-pillars {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.pillar:hover {
  border-color: rgba(245,176,23,0.4);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}
.pillar-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}
.pillar h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pillar p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.6; }

.feature-actions {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Services grid */
.services { background: var(--blue-grey); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 56px;
  background: var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.service-item {
  background: white;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.25s ease;
}
.service-item:hover { background: #FCFCFA; }
.service-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 4px;
  letter-spacing: 0.05em;
}
.service-item:nth-child(1) .service-num { color: var(--blue); }
.service-item:nth-child(2) .service-num { color: var(--gold); }
.service-item:nth-child(3) .service-num { color: var(--orange); }
.service-item:nth-child(4) .service-num { color: var(--magenta); }

.service-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-item p { color: var(--grey); font-size: 15px; line-height: 1.55; }

/* Journey list (numbered, larger) */
.journey-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.journey-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.journey-item:last-child { border-bottom: 1px solid var(--rule); }
.journey-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.journey-item:nth-child(1) .journey-num { color: var(--blue); }
.journey-item:nth-child(2) .journey-num { color: var(--gold); }
.journey-item:nth-child(3) .journey-num { color: var(--orange); }
.journey-item:nth-child(4) .journey-num { color: var(--magenta); }
.journey-item:nth-child(5) .journey-num { color: var(--grey-soft); font-size: 28px; }
.journey-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.journey-item p { color: var(--grey); font-size: 16px; line-height: 1.65; }

/* About */
.about { background: var(--blue-grey); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.about-portrait::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--gradient-warm);
  opacity: 0.18;
  filter: blur(50px);
  z-index: -1;
}
.about-portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid;
  border-image: var(--gradient-warm) 1;
}
.about-credentials {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.credential {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  color: var(--grey);
  background: var(--paper);
}

/* CTA section */
.cta {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background-image: url('assets/pa-mark-logo_transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(229,29,111,0.12), transparent 60%);
}
.cta .wrap { position: relative; z-index: 1; }
.cta h2 {
  color: white;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 760px;
  line-height: 1.1;
}
.cta h2 em {
  font-style: normal;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}
.cta p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-top: 24px;
  max-width: 560px;
}
.cta-actions { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Comparison tables */
.compare-table {
  margin: 32px 0 16px;
  display: grid;
  background: var(--rule);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  gap: 1px;
}
.compare-table.cols-2 { grid-template-columns: 1fr 1fr; }
.compare-table.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.compare-cell {
  background: white;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.55;
}
.compare-cell.is-header {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.compare-cell.is-emphasis {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.compare-cell.col-1.is-header { color: var(--blue); }
.compare-cell.col-2.is-header { color: var(--orange); }
.compare-cell.col-3.is-header { color: var(--magenta); }

/* Reignite grid */
.reignite-grid {
  margin: 56px 0 24px;
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.reignite-cell {
  background: white;
  padding: 20px 18px;
  font-size: 14px;
  line-height: 1.5;
}
.reignite-cell.is-corner { background: var(--blue-grey); }
.reignite-cell.is-col-header {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 14px;
}
.reignite-cell.col-clarity { color: var(--gold); }
.reignite-cell.col-stability { color: var(--orange); }
.reignite-cell.col-momentum { color: var(--magenta); }
.reignite-cell.is-row-header {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.reignite-cell strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.reignite-cell span { color: var(--grey); font-size: 13px; }

/* FAQ accordion */
.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  color: var(--blue);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--blue); }
.faq-item .faq-body {
  padding: 0 0 28px 0;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
}

/* Resource list */
.resource-list { margin-top: 48px; display: flex; flex-direction: column; }
.resource-card {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.resource-card:last-child { border-bottom: 1px solid var(--rule); }
.resource-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.resource-card p { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 8px; }
.resource-card .resource-cta { text-align: right; }

/* Callout */
.callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--blue-grey);
  border-left: 3px solid;
  border-image: var(--gradient-warm) 1;
  border-radius: 4px;
}
.callout h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.callout p { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 0; }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: white;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
  padding-top: 8px;
}
.form-consent input { margin-top: 4px; }

/* Embed wrapper */
.embed-wrap {
  margin: 48px 0 24px;
  background: var(--blue-grey);
  border-radius: 8px;
  padding: 16px;
  min-height: 720px;
}
.embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 24px;
  border: 2px dashed var(--rule);
  border-radius: 4px;
  background: white;
  min-height: 600px;
  color: var(--grey);
}
.embed-placeholder strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.embed-placeholder small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-soft);
}

/* Footer */
footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--blue-grey);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--blue); }
.footer-grid p { font-size: 14px; color: var(--grey); line-height: 1.5; }
.footer-logo { height: 64px; margin-bottom: 20px; display: block; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom strong {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 980px) {
  .reignite-grid { grid-template-columns: 100px repeat(3, 1fr); }
  .reignite-cell { padding: 14px 12px; font-size: 13px; }
  .reignite-cell.is-row-header { font-size: 12px; }
  .resource-card { grid-template-columns: 1fr; gap: 16px; }
  .resource-card .resource-cta { text-align: left; }
}
@media (max-width: 900px) {
  .hero-grid, .who-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .outcomes-grid, .feature-pillars { grid-template-columns: 1fr; gap: 24px; }
  .outcome { border-right: 0; border-bottom: 1px solid var(--rule); padding: 28px 0 !important; }
  .outcome:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .compare-table.cols-2,
  .compare-table.cols-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 52px; }
  .nav-toggle { display: block; position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); margin: 0; }
  .nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 30px; height: 30px; cursor: pointer; flex: 0 0 auto; }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
  nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: #fff; border-bottom: 1px solid var(--rule); box-shadow: 0 10px 28px rgba(14,21,37,0.10); padding: 4px var(--gutter) 18px; }
  .nav-toggle:checked ~ nav { display: block; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav li { width: 100%; }
  nav a:not(.btn) { display: block; padding: 15px 2px; border-bottom: 1px solid var(--rule); font-size: 15px; }
  nav a:not(.btn)::after { display: none; }
  nav li:last-child { margin-top: 14px; }
  nav .btn { display: flex; width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .reignite-grid {
    grid-template-columns: 1fr;
    border: 0;
    background: transparent;
    gap: 16px;
  }
  .reignite-grid .is-corner { display: none; }
  .reignite-cell { border-radius: 4px; }
  .reignite-cell.is-col-header {
    grid-column: 1 / -1;
    font-size: 16px;
    padding: 16px;
  }
  .reignite-cell.is-row-header { display: none; }
  .journey-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .journey-num { font-size: 28px; }
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; gap: 20px; }
}

/* =============================================================
   Compatibility — page-specific patterns
   ============================================================= */

/* Background helpers */
.bg-blue-grey { background: var(--blue-grey); }

/* Text utilities */
.muted { color: var(--grey); }
.text-link {
  color: var(--blue);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.text-link:hover { border-bottom-color: var(--blue); }

/* Two-column block (used on home for Who, About, etc.) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 56px;
}
.two-col--reverse { grid-template-columns: 1fr 1fr; }
.two-col--reverse > *:first-child { order: 2; }
.two-col--top { align-items: start; }
@media (max-width: 900px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; }
  .two-col--reverse > *:first-child { order: 0; }
}

/* Stack cards (alternative to who-cards) */
.stack-cards { display: flex; flex-direction: column; gap: 32px; }
.stack-card { padding: 28px 0; border-top: 1px solid var(--rule); }
.stack-card:last-child { border-bottom: 1px solid var(--rule); }
.stack-card-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--blue);
}
.stack-card:nth-child(2) .stack-card-eyebrow { color: var(--magenta); }
.stack-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stack-card p { color: var(--grey); font-size: 16px; line-height: 1.6; }

/* Step list (alternative journey/path styling) */
.step-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.step:nth-child(1) .step-num { color: var(--blue); }
.step:nth-child(2) .step-num { color: var(--gold); }
.step:nth-child(3) .step-num { color: var(--orange); }
.step:nth-child(4) .step-num { color: var(--magenta); }
.step:nth-child(5) .step-num { color: var(--grey-soft); font-size: 28px; }
.step h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p { color: var(--grey); font-size: 16px; line-height: 1.65; }
@media (max-width: 700px) {
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { font-size: 28px; }
}

/* Portrait frame (about block) */
.portrait-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--gradient-warm);
  opacity: 0.18;
  filter: blur(50px);
  z-index: -1;
}
.portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Credentials row */
.credentials-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Page-link cards (review index) */
.page-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 69, 211, 0.08);
}
.page-card-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}
.page-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page-card p { color: var(--grey); font-size: 14px; line-height: 1.55; }
.page-card-tag {
  margin-top: auto;
  padding-top: 12px;
  font-size: 11px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey-soft);
  text-transform: uppercase;
}

/* Reignite grid - rg-* alternate naming */
.rg-cell {
  background: white;
  padding: 20px 18px;
  font-size: 14px;
  line-height: 1.5;
}
.rg-corner { background: var(--blue-grey); }
.rg-col-head {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 14px;
}
.rg-col-head.col-clarity { color: var(--gold); }
.rg-col-head.col-stability { color: var(--orange); }
.rg-col-head.col-momentum { color: var(--magenta); }
.rg-row-head {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.rg-strategy h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.rg-strategy p {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Pricing tier grid */
.tier-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}
.tier {
  background: white;
  padding: 36px 32px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.tier:nth-child(2)::before { background: var(--gold); }
.tier:nth-child(3)::before { background: var(--orange); }
.tier:nth-child(4)::before { background: var(--magenta); }
.tier-name {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.tier h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tier p { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 12px; }
.tier .price {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 12px 0 18px;
  letter-spacing: -0.015em;
}
.tier ul { list-style: none; padding: 0; margin: 16px 0; }
.tier ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.tier ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
}
.tier .best-for {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--grey);
}
.tier .best-for strong {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Comparison block (inner pages) */
.comparison {
  margin: 32px 0 16px;
  display: grid;
  background: var(--rule);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}
.comparison.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.comparison > div {
  background: white;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.55;
}
.comparison .label-blue {
  background: var(--blue-grey);
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.comparison .label-blue:nth-child(2) { color: var(--orange); }
.comparison .label-blue:nth-child(3) { color: var(--magenta); }
@media (max-width: 900px) {
  .comparison, .comparison.cols-3 { grid-template-columns: 1fr; }
}

/* FAQ alt naming */
.faq-q {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.005em;
}
.faq-q:first-child { margin-top: 0; }
.faq-a {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Notes / inline callouts */
.note {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--blue-grey);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey);
}
.note strong { color: var(--ink); font-family: var(--display); font-weight: 600; }

/* Disclosure (resources affiliate) */
.disclosure {
  margin: 56px 0 24px;
  padding: 24px 28px;
  background: var(--blue-grey);
  border-left: 3px solid;
  border-image: var(--gradient-warm) 1;
  border-radius: 4px;
}
.disclosure h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.disclosure p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Reference link tags (resources) */
.ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}
.ref-link:hover { color: var(--magenta); border-bottom-color: var(--magenta); }
.ref-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--grey-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* SDG cards (Impact placeholder) */
.sdg-grid {
  margin: 48px 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sdg-card {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px;
  color: white;
  font-family: var(--display);
}
.sdg-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.sdg-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
/* Official UN SDG colours */
.sdg-3 { background: #4C9F38; }
.sdg-6 { background: #26BDE2; }
.sdg-7 { background: #FCC30B; color: #0E1525; }
.sdg-10 { background: #DD1367; }
.sdg-11 { background: #FD9D24; }
.sdg-12 { background: #BF8B2E; }
.sdg-13 { background: #3F7E44; }
.sdg-15 { background: #56C02B; }
@media (max-width: 700px) {
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
}

.sdg-placeholder-note {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--blue-grey);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
}

/* Form / contact */
.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: white;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}
.checkbox-field input { margin-top: 4px; }
@media (max-width: 700px) {
  .field-row { grid-template-columns: 1fr; }
}

/* Calendly placeholder */
.calendly-placeholder {
  margin: 48px 0 24px;
  background: var(--blue-grey);
  border-radius: 8px;
  padding: 16px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--grey);
}
.calendly-placeholder strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.calendly-placeholder small {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-soft);
}

/* Checklist (book a call page) */
.checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.prose ul.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--blue);
}
.prose ul.checklist li::after {
  content: '';
  position: absolute;
  left: 6px; top: 19px;
  width: 5px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Crosslist — grey × cross, used for "doesn't fit" lists */
.crosslist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.crosslist li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.prose ul.crosslist li::before {
  content: '';
  position: absolute;
  left: 1px; top: 19px;
  width: 14px;
  height: 2px;
  background: var(--grey-soft);
  border-radius: 1px;
  transform: rotate(45deg);
}
.prose ul.crosslist li::after {
  content: '';
  position: absolute;
  left: 1px; top: 19px;
  width: 14px;
  height: 2px;
  background: var(--grey-soft);
  border-radius: 1px;
  transform: rotate(-45deg);
}

/* Review index page (the wrapper for all-pages-on-one) */
.review-wrap {
  background: var(--blue-grey);
  min-height: 100vh;
  padding: 48px clamp(20px, 5vw, 64px);
  font-family: var(--body);
}
.review-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.review-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 16px;
}
.review-header p { font-size: 18px; color: var(--grey); max-width: 720px; }
.review-section { max-width: 1280px; margin: 0 auto 48px; }
.review-section-title {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Role comparison cards (Why Portfolio FD)
   ============================================================= */
.role-cards {
  margin: 32px 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-cards--two { grid-template-columns: repeat(2, 1fr); }

.role-card {
  background: white;
  padding: 32px 28px;
  border-radius: 8px;
  border: 2px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.role-card--gold { border-color: var(--gold); }
.role-card--orange { border-color: var(--orange); }
.role-card--magenta { border-color: var(--magenta); }
.role-card--blue { border-color: var(--blue); }
.role-card--neutral { border-color: var(--rule); }

.role-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.role-card h3 span {
  font-weight: 400;
  color: var(--grey);
  font-size: 16px;
}

.role-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 16px;
}

.role-card-tag {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 4px 0 16px;
}
.role-card--gold .role-card-tag { color: var(--gold); }
.role-card--orange .role-card-tag { color: var(--orange); }
.role-card--magenta .role-card-tag { color: var(--magenta); }

.role-card-emphasis {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink) !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.005em;
}

.role-card-question {
  font-style: italic;
  font-size: 14px !important;
  color: var(--grey) !important;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  margin-bottom: 0 !important;
}

.role-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-card-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  border-top: 1px solid var(--rule);
}
.role-card-list li:first-child { border-top: 0; padding-top: 0; }
.role-card-list li:last-child { padding-bottom: 0; }
.role-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
}
.role-card-list li:first-child::before { top: 8px; }
.role-card--blue .role-card-list li::before { background: var(--blue); }
.role-card--neutral .role-card-list li::before { background: var(--grey-soft); }

@media (max-width: 900px) {
  .role-cards,
  .role-cards--two { grid-template-columns: 1fr; }
}

/* =============================================================
   Legal pages — scoped overrides
   ============================================================= */
.legal-body .prose h2 {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 32px 0 10px;
}
.legal-body .prose h2:first-child { margin-top: 0; }
.legal-body .prose h3 {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  margin: 24px 0 8px;
}
