/* MindRank IQ — design system */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f1e36;
  --navy-700: #172a47;
  --navy-600: #243a5e;
  --slate-500: #4a5b7a;
  --slate-400: #6b7c98;
  --slate-300: #94a3bd;
  --slate-200: #c9d3e3;
  --slate-100: #e6ecf5;
  --paper: #ffffff;
  --bg: #f6f8fc;
  --bg-tint: #eef2f9;
  --line: #dde4ef;

  --teal: #14d8c4;
  --teal-deep: #0fa896;
  --teal-soft: #e0fbf6;
  --amber: #ffb547;
  --amber-deep: #e09422;
  --amber-soft: #fff2dc;
  --rose: #ff6b8a;
  --good: #2bb673;
  --warn: #e09422;
  --bad: #e8557a;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10,22,40,.06);
  --shadow: 0 2px 4px rgba(10,22,40,.04), 0 14px 30px -18px rgba(10,22,40,.25);
  --shadow-lg: 0 4px 10px rgba(10,22,40,.06), 0 22px 50px -18px rgba(10,22,40,.30);
  --max: 1180px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --display: 'DM Sans', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--navy-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--navy-900); color: white; padding: 8px 12px; border-radius: 6px; z-index: 100; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--navy-900); text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4, h5 { font-family: var(--display); color: var(--navy-900); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 0 0 .4em; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 1.6em 0 .5em; }
h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; font-weight: 600; }
h4 { font-size: 1.05rem; margin: 1.2em 0 .3em; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
li { margin: .25em 0; }
img { max-width: 100%; height: auto; display: block; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
strong, b { font-weight: 600; color: var(--navy-900); }

/* Header */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 16px 28px; max-width: var(--max); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy-900); text-decoration: none; }
.brand:hover { text-decoration: none; color: var(--navy-900); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--teal); font-weight: 800; font-family: var(--display); font-size: .95rem;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(20,216,196,.4), transparent 60%);
}
.brand-mark span { position: relative; z-index: 1; }
.brand-text { font-family: var(--display); font-size: 1.1rem; letter-spacing: -0.02em; }
.brand-text em { font-style: normal; color: var(--teal-deep); }
.primary-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.primary-nav a { color: var(--slate-500); font-size: .94rem; font-weight: 500; }
.primary-nav a:hover { color: var(--navy-900); text-decoration: none; }
.nav-cta {
  background: var(--navy-900); color: white !important; padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px;
  transition: transform .12s ease, background .12s ease;
}
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; border: 0; cursor: pointer; font-size: 1rem;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-decoration: none; font-family: var(--sans);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--teal); color: var(--navy-900); }
.btn-primary:hover { background: var(--teal-deep); color: white; }
.btn-dark { background: var(--navy-900); color: white; }
.btn-dark:hover { background: var(--navy-700); color: white; }
.btn-ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--slate-200); }
.btn-ghost:hover { background: var(--paper); border-color: var(--navy-900); }
.btn-amber { background: var(--amber); color: var(--navy-900); }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  padding: 64px 0 32px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-soft); color: var(--teal-deep);
  padding: 7px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
}
.hero-eyebrow::before { content: '●'; color: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--teal-deep), var(--amber-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lede { font-size: 1.18rem; color: var(--slate-500); max-width: 36em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { color: var(--navy-900); font-family: var(--display); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.hero-meta span { color: var(--slate-400); font-size: .85rem; margin-top: 4px; }
.hero-art {
  position: relative; background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-art::before {
  content:''; position:absolute; top:-40%; right:-20%; width:80%; height:80%;
  background: radial-gradient(circle, rgba(20,216,196,.25), transparent 60%);
}
.hero-art img { border-radius: 14px; position: relative; z-index: 1; }
.hero-art .badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: rgba(255,255,255,.95); padding: 8px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--navy-900);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-art .badge::before { content:''; width:8px; height:8px; border-radius:50%; background: var(--good); }

/* Sections */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-dark { background: var(--navy-900); color: var(--slate-200); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark a { color: var(--teal); }
.section-tint { background: var(--bg-tint); }
.section-title { text-align: center; max-width: 38em; margin: 0 auto 40px; }
.section-title .eyebrow { color: var(--teal-deep); font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.section-title h2 { margin: 8px 0 12px; }
.section-title p { color: var(--slate-500); font-size: 1.08rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 48px 0; gap: 36px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
  .grid-sidebar { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-5, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  h1 { font-size: 2.2rem; }
}

/* Cards */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--slate-200); }
.card h3 { margin-top: 0; }
.card .meta { color: var(--slate-400); font-size: .85rem; }
.card-link { color: var(--teal-deep); font-weight: 600; margin-top: auto; padding-top: 14px; }
.card-link::after { content: ' →'; transition: transform .12s ease; display: inline-block; }
.card:hover .card-link::after { transform: translateX(4px); }

.card-cat {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: all .15s ease;
}
.card-cat:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.card-cat .cat-symbol {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal-deep);
  font-size: 1.4rem; margin-bottom: 14px;
}

.tag {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-deep);
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.tag.amber { background: var(--amber-soft); color: var(--amber-deep); }
.tag.slate { background: var(--slate-100); color: var(--slate-500); }

/* Quiz */
.quiz-shell {
  max-width: 760px; margin: 36px auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.quiz-progress {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.progress-bar {
  flex: 1; height: 8px; background: var(--slate-100); border-radius: 999px; overflow: hidden;
}
.progress-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width .35s ease;
  border-radius: 999px;
}
.progress-label {
  font-family: var(--mono); font-size: .8rem; color: var(--slate-500); white-space: nowrap;
  font-weight: 600;
}
.q-cat {
  display: inline-block; color: var(--teal-deep); font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.q-prompt { font-family: var(--display); font-size: 1.55rem; margin: 4px 0 22px; line-height: 1.3; color: var(--navy-900); font-weight: 600; }
.q-stem {
  background: var(--bg-tint); border-radius: 12px; padding: 22px;
  font-family: var(--mono); font-size: 1.1rem; white-space: pre-wrap; margin-bottom: 22px;
  border-left: 3px solid var(--teal);
}
.q-options { display: grid; gap: 10px; }
.q-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; background: white;
  transition: border-color .12s ease, background .12s ease, transform .08s ease;
}
.q-option:hover { border-color: var(--teal); background: var(--teal-soft); transform: translateX(2px); }
.q-option input { accent-color: var(--teal-deep); width: 18px; height: 18px; }
.q-option-text { flex: 1; font-size: 1.02rem; }
.q-option-letter {
  width: 28px; height: 28px; border-radius: 8px; background: var(--bg-tint); color: var(--slate-500);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem;
  font-family: var(--mono);
}
.q-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }

/* Result page */
.result-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--teal-deep) 130%);
  color: white; border-radius: var(--radius-lg); padding: 48px;
  margin: 24px 0 36px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.result-hero::before {
  content:''; position:absolute; top:-40%; right:-10%; width:60%; height:120%;
  background: radial-gradient(circle, rgba(20,216,196,.18), transparent 60%);
}
.result-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 700px) { .result-grid { grid-template-columns: 1fr; } }
.gauge { position: relative; width: 280px; height: 280px; margin: 0 auto; }
.gauge-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-bg { stroke: rgba(255,255,255,.1); }
.gauge-fg { stroke: url(#gauge-grad); transition: stroke-dashoffset .8s ease; }
.gauge-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.gauge-number { font-family: var(--display); font-size: 4.6rem; line-height: 1; font-weight: 700; }
.gauge-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-top: 6px; }
.result-info h1 { color: white; font-size: 2.4rem; margin: 0 0 8px; }
.result-info .lede { color: var(--slate-200); font-size: 1.1rem; }
.percentile-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); padding: 8px 16px; border-radius: 999px;
  font-size: .9rem; margin-top: 16px; backdrop-filter: blur(4px);
}
.percentile-pill b { color: var(--amber); font-family: var(--display); }

/* Category breakdown bars */
.breakdown { display: grid; gap: 18px; margin: 24px 0; }
.bd-row { display: grid; grid-template-columns: 220px 1fr 80px; gap: 18px; align-items: center; }
.bd-name { font-weight: 600; color: var(--navy-900); }
.bd-name .bd-symbol { color: var(--teal-deep); margin-right: 6px; }
.bd-bar { height: 12px; background: var(--slate-100); border-radius: 999px; overflow: hidden; position: relative; }
.bd-bar > span { display: block; height: 100%; border-radius: 999px; transition: width .8s ease; }
.bd-bar.high > span { background: linear-gradient(90deg, var(--teal), var(--teal-deep)); }
.bd-bar.mid > span { background: linear-gradient(90deg, var(--amber), var(--amber-deep)); }
.bd-bar.low > span { background: linear-gradient(90deg, var(--rose), var(--bad)); }
.bd-score { font-family: var(--mono); font-size: .95rem; color: var(--slate-500); text-align: right; font-weight: 600; }
@media (max-width: 600px) { .bd-row { grid-template-columns: 1fr; gap: 4px; } .bd-score { text-align: left; } }

/* IQ band cards */
.band-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin: 20px 0; }
.band-cell {
  padding: 10px 8px; text-align: center; border-radius: 8px;
  background: var(--bg-tint); font-size: .78rem; font-weight: 600; color: var(--slate-500);
}
.band-cell.active { background: var(--navy-900); color: white; transform: translateY(-3px); box-shadow: var(--shadow); }
.band-cell.active .label { color: var(--teal); }
.band-cell .range { font-family: var(--mono); font-size: .8rem; }
.band-cell .label { display: block; margin-top: 3px; font-size: .72rem; }
@media (max-width: 700px) { .band-strip { grid-template-columns: repeat(4, 1fr); } }

/* Article / Prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose p, .prose li { font-size: 1.06rem; color: var(--slate-500); }
.prose p { color: #2a3548; }
.prose blockquote {
  border-left: 4px solid var(--teal); background: var(--teal-soft);
  padding: 12px 0 12px 22px; margin: 1.5em 0;
  color: var(--navy-700); font-style: italic; border-radius: 0 8px 8px 0;
}
.prose code {
  font-family: var(--mono); background: var(--bg-tint); padding: 2px 6px; border-radius: 4px; font-size: .9em;
}
.prose figure { margin: 2em 0; padding: 22px; background: var(--bg-tint); border-radius: 12px; }
.prose figure figcaption { color: var(--slate-400); font-size: .88rem; margin-top: 10px; text-align: center; }
.prose h2, .prose h3 { margin-top: 1.8em; }

/* Sidebar */
.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; margin-bottom: 18px;
}
.sidebar-card h4 { margin: 0 0 12px; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); font-family: var(--sans); font-weight: 700; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.sidebar-card li:last-child { border-bottom: 0; }
.sidebar-card a { color: var(--navy-700); }
.sidebar-card a:hover { color: var(--teal-deep); }

/* Related resources block (PBN slots) */
.resources {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.resources h4 { margin: 0 0 4px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); font-family: var(--sans); font-weight: 700; }
.resources .resources-sub { color: var(--slate-400); font-size: .82rem; margin: 0 0 14px; }
.resources ul { list-style: none; padding: 0; margin: 0; }
.resources li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.resources li:last-child { border-bottom: 0; }
.resources a { color: var(--navy-700); font-size: .94rem; font-weight: 500; display: block; }
.resources a small { display: block; color: var(--slate-400); font-size: .78rem; font-weight: 400; margin-top: 2px; }
.resources a:hover { color: var(--teal-deep); }

/* Testimonials */
.quote {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.quote::before {
  content:'"'; font-family: var(--display); font-size: 3rem; line-height: 0;
  color: var(--teal); display: block; margin: 18px 0 0;
}
.quote p { font-family: var(--display); font-size: 1.08rem; color: var(--navy-900); margin: 12px 0; font-weight: 500; }
.quote .who { color: var(--slate-400); font-size: .88rem; }
.quote .who b { color: var(--navy-900); }

/* Footer */
.site-footer { background: var(--navy-900); color: var(--slate-200); margin-top: 100px; padding: 64px 0 32px; }
.site-footer h4 { color: white; margin: 0 0 14px; font-family: var(--sans); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; font-size: .92rem; }
.site-footer a { color: var(--slate-200); }
.site-footer a:hover { color: var(--teal); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-blurb { color: var(--slate-300); font-size: .92rem; max-width: 28em; line-height: 1.6; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--navy-700); color: var(--slate-400); font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.brand-footer { color: white !important; }
.brand-footer .brand-text { color: white; }

/* Helpers */
.muted { color: var(--slate-400); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--slate-500); }
.divider { height: 1px; background: var(--line); margin: 36px 0; }
.adslot {
  display: block; border: 1px dashed var(--slate-200); border-radius: 12px;
  padding: 24px; text-align: center; color: var(--slate-400);
  font-size: .78rem; margin: 28px 0; background: var(--paper); letter-spacing: .04em;
}
.crumbs { color: var(--slate-400); font-size: .88rem; margin: 24px 0 8px; }
.crumbs a { color: var(--slate-500); }
.crumbs a:hover { color: var(--teal-deep); text-decoration: none; }
.crumbs span { margin: 0 8px; opacity: .5; }
.list-bare { list-style: none; padding: 0; }
.list-bare li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.list-bare li:last-child { border-bottom: 0; }

/* Matrix display (questions) */
.matrix-grid {
  display: grid; grid-template-columns: repeat(3, 64px); gap: 6px;
  background: var(--paper); padding: 12px; border: 1px solid var(--line); border-radius: 12px;
  margin: 16px 0; width: fit-content;
}
.matrix-cell {
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); border-radius: 8px; font-family: var(--mono); font-size: 1.4rem; font-weight: 700; color: var(--navy-900);
}
.matrix-cell.q { background: var(--navy-900); color: var(--teal); }

/* Page header (subpages) */
.page-header { padding: 48px 0 16px; }
.page-header .eyebrow { color: var(--teal-deep); font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.page-header h1 { margin: 8px 0 14px; font-size: clamp(2rem, 4vw, 3rem); }
.page-header .lead { max-width: 36em; }

/* Stats strip */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  margin: 32px 0;
}
.stats > div { background: var(--paper); padding: 24px; }
.stats b { display: block; font-family: var(--display); font-size: 2rem; color: var(--navy-900); line-height: 1; font-weight: 700; }
.stats span { color: var(--slate-400); font-size: .85rem; margin-top: 8px; display: block; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white; border-radius: var(--radius-lg); padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  margin: 48px 0;
}
.cta-strip h2 { color: white; margin: 0 0 8px; }
.cta-strip p { color: var(--slate-200); margin: 0; max-width: 36em; }
@media (max-width: 700px) { .cta-strip { grid-template-columns: 1fr; padding: 32px; } }

/* Score bands legend */
.legend { display: flex; gap: 16px; flex-wrap: wrap; margin: 18px 0; }
.legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--slate-500); }
.legend-swatch { width: 14px; height: 14px; border-radius: 4px; }
