/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  /* From the cover */
  --navy-900: #07111F;      /* deepest navy, page bg */
  --navy-800: #0B1A2E;      /* card bg */
  --navy-700: #0F2040;      /* borders, dividers */
  --navy-600: #18305A;
  --steel:    #7AAAC8;      /* steel blue — secondary */
  --steel-2:  #4E7E9C;
  --gold:     #E8B422;      /* primary accent */
  --gold-2:   #B68A12;
  --cream:    #F5EFD6;
  --bone:     #E9E4D2;
  --ink-1:    #FFFFFF;
  --ink-2:    #D6D8DE;
  --ink-3:    #9098A6;
  --ink-4:    #5B6477;

  --radius:   10px;
  --radius-lg: 16px;
  --shadow-md: 0 10px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.45);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-900);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffd35a; }

/* Reusable */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 14px;
}
.muted { color: var(--ink-3); }
.small { font-size: 13px; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 18px;
}
h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(30px, 3.6vw, 46px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.gold { color: var(--gold); }
em { color: var(--gold); font-style: italic; font-family: var(--serif); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
}
.btn--primary:hover { background: #ffc94d; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--ink-1);
}
.btn--ghost:hover { border-color: var(--steel); color: var(--steel); }
.btn--full { width: 100%; }
.btn:disabled, .btn[disabled] {
  opacity: .35;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 17, 31, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--navy-700);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .01em;
}
.brand:hover { color: var(--gold); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.nav__links a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .nav__links { gap: 16px; }
  .nav__links a:first-child { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* faint gold grid behind hero */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,180,34,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,180,34,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.hero__copy h1 { margin-bottom: 22px; }
.hero__copy h1 .gold { display: block; }
.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}
.hero__cover {
  position: relative;
  text-align: center;
}
.hero__cover img {
  margin: 0 auto;
  max-width: min(420px, 100%);
  border-radius: 6px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.5),
    0 2px 6px rgba(0,0,0,.4);
  transform: perspective(900px) rotateY(-4deg);
  transition: transform .4s ease;
}
.hero__cover img:hover { transform: perspective(900px) rotateY(0deg); }
.byline {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__cover { order: -1; margin-bottom: 12px; }
  .hero__cover img { transform: none; max-width: 280px; }
}

/* ─── Stat band ────────────────────────────────────────────────────────── */
.band {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
  padding: 56px 0;
}
.band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.band__card {
  border-left: 2px solid var(--gold);
  padding: 10px 0 10px 20px;
}
.band__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--ink-1);
  margin: 0 0 6px;
  line-height: 1;
}
.band__lbl {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  max-width: 32ch;
}
@media (max-width: 720px) {
  .band__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Quiz ─────────────────────────────────────────────────────────────── */
.quiz {
  padding: clamp(60px, 8vw, 110px) 0;
}
.quiz__head {
  text-align: center;
  margin-bottom: 36px;
}
.quiz__head .sub {
  color: var(--ink-3);
  max-width: 56ch;
  margin: 0 auto;
}
.quiz__card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.quiz__progress {
  height: 6px;
  background: var(--navy-700);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
}
.quiz__progress-bar {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--gold), #ffd35a);
  border-radius: 99px;
  transition: width .35s ease;
}
.quiz__counter {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.question { margin-bottom: 8px; }
.question__text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink-1);
  line-height: 1.3;
  margin: 0 0 24px;
}
.options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.options label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--navy-900);
  border: 1.5px solid var(--navy-700);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.45;
  transition: border-color .12s ease, background .12s ease;
}
.options label:hover {
  border-color: var(--steel-2);
  background: #0a1730;
}
.options input { display: none; }
.opt-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--steel);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
  transition: background .12s ease, color .12s ease;
}
.options label.is-selected {
  border-color: var(--gold);
  background: rgba(232, 180, 34, .07);
  color: var(--ink-1);
}
.options label.is-selected .opt-letter {
  background: var(--gold);
  color: var(--navy-900);
}
.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

/* Results */
.quiz__results {
  max-width: 760px;
  margin: 32px auto 0;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.quiz__results .kicker { justify-content: center; }
.quiz__results h3 { margin: 4px 0 18px; }
.score {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(54px, 7vw, 84px);
  color: var(--gold);
  line-height: 1;
  margin: 6px 0 14px;
}
.score__total {
  color: var(--ink-4);
  font-size: .5em;
  font-weight: 600;
  margin-left: 4px;
}
.score__bar {
  width: min(360px, 100%);
  margin: 0 auto 28px;
  height: 8px;
  background: var(--navy-700);
  border-radius: 99px;
  overflow: hidden;
}
.score__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffd35a);
  border-radius: 99px;
  width: 0%;
  transition: width 1.1s cubic-bezier(.2, .8, .2, 1);
}
.result-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.result-cta {
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.result-cta__head {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-1);
  margin: 0 0 8px;
}
.result-cta__sub {
  color: var(--ink-3);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.result-cta__skip {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
}

/* Forms */
/* `display: grid/flex` overrides the default `hidden` attribute behaviour
   in most browsers, so re-assert it for any element. */
[hidden] { display: none !important; }
.form { display: grid; gap: 12px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.form__label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}
.form input[type="text"],
.form input[type="email"] {
  width: 100%;
  padding: 13px 14px;
  background: var(--navy-900);
  border: 1.5px solid var(--navy-700);
  border-radius: var(--radius);
  color: var(--ink-1);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color .12s ease;
}
.form input::placeholder { color: var(--ink-4); }
.form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,180,34,.15);
}
.form__fineprint {
  font-size: 12px;
  color: var(--ink-4);
  margin: 4px 0 0;
  text-align: center;
}
.form__success {
  text-align: center;
  padding: 24px 8px 8px;
  color: var(--gold);
}
.form__success p { color: var(--ink-2); margin: 8px 0 4px; }
.form__success p.muted { font-size: 14px; }

/* ─── Free chapter ─────────────────────────────────────────────────────── */
.chapter {
  background: linear-gradient(180deg, var(--navy-900), #050a13 70%);
  border-top: 1px solid var(--navy-700);
  padding: clamp(60px, 8vw, 110px) 0;
}
.chapter__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.chapter__bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.chapter__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
}
.chapter__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 10px; height: 2px;
  background: var(--gold);
}
.chapter__card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}
.chapter__card-kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.chapter__download {
  display: grid;
  gap: 14px;
  text-align: center;
}
.chapter__download-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.chapter__download-title em {
  font-style: italic;
  color: var(--gold);
}
.chapter__download-meta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--steel);
  margin: 0 0 4px;
}
.chapter__download-note {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.62);
  margin: 0;
}
@media (max-width: 880px) {
  .chapter__grid { grid-template-columns: 1fr; }
}

/* ─── TOC ──────────────────────────────────────────────────────────────── */
.book {
  padding: clamp(60px, 8vw, 110px) 0;
}
.toc {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
}
.toc__part {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--navy-700);
}
.toc__part:first-child { margin-top: 0; }
.toc ol {
  padding-left: 22px;
  margin: 6px 0 18px;
  color: var(--ink-2);
}
.toc li {
  padding: 6px 0;
  font-size: 15.5px;
  font-family: var(--serif);
}
.toc li::marker {
  color: var(--ink-4);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 720px) { .toc { grid-template-columns: 1fr; } }

/* ─── Author ───────────────────────────────────────────────────────────── */
.author {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--navy-800);
  border-top: 1px solid var(--navy-700);
}
.author__grid p {
  max-width: 64ch;
  font-size: 16.5px;
  color: var(--ink-2);
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--navy-700);
  background: #050a13;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer__brand {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--ink-1);
  margin: 0 0 4px;
}
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--ink-2);
  font-size: 14px;
}
.footer__legal {
  border-top: 1px solid var(--navy-700);
  padding-top: 22px;
}
.footer__legal p { max-width: 80ch; }

/* ─── EAOS quiz extensions ─────────────────────────────────────────────── */

/* Header pill at top of each screen */
.quiz__head-pill {
  background: var(--navy-700);
  border: 1px solid #1a2c4d;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  margin-bottom: 22px;
}
.quiz__head-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  margin: 0 0 4px;
  letter-spacing: .01em;
}
.quiz__head-sub {
  font-size: 13px;
  color: var(--steel);
  margin: 0;
  letter-spacing: .04em;
}

/* Profile form (screen 1) */
.quiz__section {
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.quiz__section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.quiz__field-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.quiz__field-row:last-child { margin-bottom: 0; }
.quiz__field-row--2 { grid-template-columns: 1fr 1fr; }
.quiz__field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) {
  .quiz__field-row--2,
  .quiz__field-row--3 { grid-template-columns: 1fr; }
}
.quiz__field { display: flex; flex-direction: column; gap: 6px; }
.quiz__field label {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
}
.quiz__field select,
.quiz__field input {
  width: 100%;
  padding: 11px 12px;
  background: var(--navy-800);
  border: 1.5px solid var(--navy-700);
  border-radius: var(--radius);
  color: var(--ink-1);
  font-family: var(--sans);
  font-size: 14.5px;
  outline: none;
  transition: border-color .12s ease;
}
.quiz__field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%), linear-gradient(135deg, var(--steel) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 32px; }
.quiz__field select:focus,
.quiz__field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,180,34,.15);
}
.quiz__finepre {
  font-size: 13px;
  color: var(--ink-4);
  margin: 4px 0 18px;
  text-align: center;
  line-height: 1.5;
}

/* Per-question category label */
.q-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 10px;
}

/* Result cards */
.result-card {
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
  text-align: left;
}
.result-card--cta { background: linear-gradient(180deg, var(--navy-900), #050a13); }
.result-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-1);
  margin: 0 0 16px;
  letter-spacing: 0;
}
.result-note {
  font-size: 14px;
  color: var(--ink-3);
  margin: 14px 0 0;
  line-height: 1.6;
}

/* Score ring */
.score-ring-wrap {
  text-align: center;
  margin: 8px 0 24px;
}
.score-ring {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: relative;
}
.score-ring svg { width: 100%; height: 100%; }
#scoreArc { transition: stroke-dashoffset 1.1s cubic-bezier(.2,.8,.2,1); }
.score-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-big {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 44px;
  color: var(--ink-1);
  line-height: 1;
}
.score-lbl {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 4px;
}
.tier-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.tier-badge.tier-green   { background: rgba(16,185,129,.12); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.tier-badge.tier-blue    { background: rgba(122,170,200,.12); color: var(--steel); border: 1px solid rgba(122,170,200,.3); }
.tier-badge.tier-gold    { background: rgba(232,180,34,.12); color: var(--gold); border: 1px solid rgba(232,180,34,.35); }
.tier-badge.tier-red     { background: rgba(220,38,38,.12); color: #fb7185; border: 1px solid rgba(220,38,38,.3); }

/* Sub-scores */
.sub-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 520px) { .sub-scores { grid-template-columns: 1fr; } }
.sub-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.sub-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 6px;
}
.sub-score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-1);
  margin: 0 0 8px;
  line-height: 1;
}
.sub-bar {
  height: 5px;
  background: var(--navy-700);
  border-radius: 99px;
  overflow: hidden;
}
.sub-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  transition: width 1s cubic-bezier(.2,.8,.2,1);
}

/* Projection grid */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card {
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--navy-700);
}
.proj-card.proj-a { background: rgba(232,180,34,.06); border-color: rgba(232,180,34,.35); }
.proj-card.proj-b { background: rgba(122,170,200,.07); border-color: rgba(122,170,200,.45); }
.proj-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.proj-a .proj-lbl { color: var(--gold); }
.proj-b .proj-lbl { color: var(--steel); }
.proj-val {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink-1);
  line-height: 1;
  margin: 0 0 6px;
}
.proj-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
}

/* Gap items */
.gap-item {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.gap-item:last-child { margin-bottom: 0; }
.gap-item.gap-warn { border-left-color: #f59e0b; }
.gap-item.gap-good { border-left-color: #10b981; }
.gap-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 4px;
}
.gap-lbl.lbl-gold { color: var(--gold); }
.gap-lbl.lbl-warn { color: #fbbf24; }
.gap-lbl.lbl-good { color: #34d399; }
.gap-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-1);
  margin: 0 0 4px;
}
.gap-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0 0 8px;
  line-height: 1.55;
}
.gap-amt {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* Action steps */
.action {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.action:last-child { margin-bottom: 0; }
.action__num {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.action__txt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.chapter__chapter-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  margin: -6px 0 18px;
  letter-spacing: -0.005em;
}
