/* ============================================
   MERIDIAN — Design Tokens
============================================ */
:root {
  --navy-950: #070f1c;
  --navy-900: #0d1b2e;
  --navy-800: #16283f;
  --navy-700: #223855;
  --navy-600: #33507a;

  --gold-500: #c9a961;
  --gold-400: #d9bd7f;
  --gold-300: #e4ce94;

  --ivory: #f1ede3;
  --ivory-dim: #d8d3c4;
  --slate-400: #8d97aa;
  --slate-500: #6d7893;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --container: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; }
p { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -0.01em; }
.section-title--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: 17px;
  color: var(--slate-400);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.65;
}
.section-sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn--gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--navy-600);
}
.btn--ghost:hover { border-color: var(--gold-500); color: var(--gold-300); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================
   Nav
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--navy-700);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--gold-500); }
.nav__book-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  border: 1px solid var(--navy-700);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav__book-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}
@media (max-width: 900px) {
  .nav__book-link { display: none; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ============================================
   Brand lockup (mark + wordmark + tagline)
============================================ */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  --mark-h: 40px;
  --word-size: 30px;
  --tagline-size: 10.5px;
}
.brand-lockup__mark { height: var(--mark-h); width: auto; display: block; flex-shrink: 0; }
.brand-lockup__text { display: flex; flex-direction: column; }
.brand-lockup__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--word-size);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.brand-lockup__tagline {
  font-family: var(--font-mono);
  font-size: var(--tagline-size);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 5px;
  white-space: nowrap;
}
.brand-lockup--on-light .brand-lockup__word { color: var(--navy-950); }
.brand-lockup--on-light .brand-lockup__tagline { color: var(--gold-500); }
.brand-lockup--on-dark .brand-lockup__word { color: var(--ivory); }
.brand-lockup--on-dark .brand-lockup__tagline { color: var(--gold-400); }

.brand-lockup--footer { --mark-h: 30px; --word-size: 22px; --tagline-size: 8.5px; display: inline-flex; }

@media (max-width: 760px) {
  .brand-lockup { --mark-h: 32px; --word-size: 24px; --tagline-size: 9px; }
}

/* ============================================
   Meridian Line — signature element
============================================ */
.meridian-line__stroke {
  stroke: var(--gold-500);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.meridian-line__stroke.is-drawn { stroke-dashoffset: 0; }

.meridian-line--hero {
  width: 100%;
  height: 40px;
  line-height: 0;
}
.meridian-line--hero svg { width: 100%; height: 40px; display: block; }

/* ============================================
   Hero
============================================ */
.hero {
  padding: 110px 24px 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(201, 169, 97, 0.09), transparent),
    var(--navy-900);
}
.hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}
.hero__headline {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-400);
}
.hero__sub {
  font-size: 19px;
  color: var(--slate-400);
  max-width: 600px;
  margin: 26px auto 0;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================
   Stat row (illustrative ranges — hero + results)
============================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 48px auto 0;
}
.stat-row--context { margin-top: 0; margin-bottom: 40px; max-width: none; }
@media (max-width: 620px) { .stat-row { grid-template-columns: 1fr; } }
.stat-tile {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-top: 2px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.stat-tile__value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.stat-tile__label {
  font-size: 12.5px;
  color: var(--slate-400);
  margin-top: 8px;
  line-height: 1.5;
}
.stat-row__disclaimer {
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ============================================
   Quiz
============================================ */
.quiz {
  padding: 110px 24px;
  background: var(--navy-950);
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
.quiz__inner { max-width: 620px; margin: 0 auto; }

.quiz__card {
  margin-top: 48px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  padding: 40px;
  position: relative;
}
@media (max-width: 560px) { .quiz__card { padding: 28px 22px; } }

.quiz__progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.quiz__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy-600);
  transition: background 0.2s ease, transform 0.2s ease;
}
.quiz__dot.is-active { background: var(--gold-500); transform: scale(1.25); }
.quiz__dot.is-done { background: var(--gold-500); }

.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 22px;
}
.quiz__label:first-child { margin-top: 0; }
.quiz__label-hint { font-weight: 400; color: var(--slate-500); font-size: 13px; }
.quiz__label--sub { font-size: 13px; color: var(--slate-400); margin-top: 24px; }

.quiz__checklist { display: flex; flex-direction: column; gap: 8px; }
.quiz__check {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-900);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quiz__check:hover { border-color: var(--gold-500); }
.quiz__check input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--gold-500);
}
.quiz__check span { font-size: 14.5px; color: var(--ivory-dim); }
.quiz__check:has(input:checked) {
  border-color: var(--gold-500);
  background: rgba(201, 169, 97, 0.08);
}
.quiz__check:has(input:checked) span { color: var(--ivory); }

.quiz__input {
  width: 100%;
  background: var(--navy-900);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color 0.15s ease;
}
.quiz__input::placeholder { color: var(--slate-500); }
.quiz__input:focus { outline: none; border-color: var(--gold-500); }
.quiz__textarea { min-height: 90px; resize: vertical; font-family: var(--font-body); }

select.quiz__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d97aa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.quiz__row { display: flex; gap: 12px; margin-top: 28px; }
.quiz__next, .quiz__submit { margin-top: 28px; }

.quiz__result { text-align: center; padding: 20px 0; }
.quiz__score {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-400);
  line-height: 1;
}
.quiz__score-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 10px;
}
.quiz__result-copy {
  font-size: 17px;
  margin-top: 24px;
  color: var(--ivory);
}
.quiz__result-note {
  font-size: 14px;
  color: var(--slate-400);
  margin-top: 16px;
  line-height: 1.6;
}
.quiz__book-btn {
  margin-top: 28px;
}

/* ============================================
   LEVER Framework
============================================ */
.framework { padding: 130px 24px; background: var(--navy-900); }
.framework__inner { max-width: var(--container); margin: 0 auto; }

.lever {
  position: relative;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.lever__line {
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 4px;
}
.lever__node {
  position: relative;
  text-align: center;
  cursor: default;
  outline: none;
  padding-top: 26px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.lever__node:hover,
.lever__node:focus-visible {
  transform: translateY(-6px);
}
.lever__dot {
  display: block;
  width: 12px; height: 12px;
  background: var(--navy-900);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.28s ease, box-shadow 0.28s ease;
}
.lever__node:hover .lever__dot,
.lever__node:focus-visible .lever__dot {
  background: var(--gold-500);
  box-shadow: 0 0 14px 2px rgba(201, 169, 97, 0.55);
}
.lever__letter {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-400);
  margin-bottom: 14px;
  transform-origin: center bottom;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.28s ease, text-shadow 0.28s ease;
}
.lever__node:hover .lever__letter,
.lever__node:focus-visible .lever__letter {
  color: var(--gold-300);
  transform: scale(1.22);
  text-shadow: 0 0 26px rgba(201, 169, 97, 0.45);
}
.lever__name {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 6px;
  transition: color 0.28s ease;
}
.lever__node:hover .lever__name,
.lever__node:focus-visible .lever__name {
  color: var(--gold-300);
}
.lever__node:focus-visible {
  outline: none;
}
.lever__node:focus-visible .lever__dot {
  outline: 2px solid var(--gold-300);
  outline-offset: 4px;
}
.lever__desc {
  font-size: 14px;
  color: var(--slate-400);
  margin-top: 10px;
  line-height: 1.55;
}
@media (max-width: 860px) {
  .lever { grid-template-columns: 1fr; gap: 44px; }
  .lever__line { display: none; }
  .lever__dot { display: none; }
}

/* ============================================
   Scoring transparency
============================================ */
.scoring { padding: 130px 24px; background: var(--navy-950); border-top: 1px solid var(--navy-700); border-bottom: 1px solid var(--navy-700); }
.scoring__inner { max-width: var(--container); margin: 0 auto; }

.formulas {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .formulas { grid-template-columns: 1fr; } }

.formula-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-left: 2px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 28px;
}
.formula-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.formula-card__eq {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ivory);
  line-height: 1.7;
}
.formula-card__note {
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================================
   Services
============================================ */
.services { padding: 130px 24px; background: var(--navy-900); }
.services__inner { max-width: var(--container); margin: 0 auto; }

.service-category { margin-top: 56px; }
.service-category:first-of-type { margin-top: 64px; }
.service-category__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--navy-600);
}

.service-list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}
@media (max-width: 760px) { .service-list { grid-template-columns: 1fr; } }

.service-row {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--navy-700);
}
/* Strategy group: 4 items in 2 cols — last row is items 3 & 4 */
.service-category--strategy .service-row:nth-child(3),
.service-category--strategy .service-row:nth-child(4) { border-bottom: none; }
@media (max-width: 760px) {
  .service-category--strategy .service-row:nth-child(3) { border-bottom: 1px solid var(--navy-700); }
}
/* Build group: 7 items in 2 cols — last row is item 7 alone */
.service-category--build .service-row:last-child { border-bottom: none; }
.service-row__index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-500);
  padding-top: 3px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.service-row:hover .service-row__index {
  color: var(--gold-300);
}
.service-row__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}
.service-row:hover .service-row__name {
  color: var(--gold-300);
}
.service-row__desc { font-size: 14px; color: var(--slate-400); line-height: 1.6; }

/* ============================================
   Proof of Work
============================================ */
.work { padding: 130px 24px; background: var(--navy-950); border-top: 1px solid var(--navy-700); border-bottom: 1px solid var(--navy-700); }
.work__inner { max-width: var(--container); margin: 0 auto; }

.work-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.work-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
}
.work-card__shot {
  aspect-ratio: 16 / 10;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--navy-700);
}
.work-card__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card__placeholder {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  padding: 0 20px;
  text-align: center;
}
.work-card__name { font-family: var(--font-display); font-size: 17px; font-weight: 600; padding: 20px 22px 6px; }
.work-card__desc { font-size: 13.5px; color: var(--slate-400); line-height: 1.6; padding: 0 22px 22px; }

/* ============================================
   Tiers
============================================ */
.tiers { padding: 130px 24px; background: var(--navy-900); }
.tiers__inner { max-width: var(--container); margin: 0 auto; }

.tier-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 8px;
  padding: 32px 26px;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}
.tier-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 169, 97, 0.15);
}
.tier-card--featured {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, rgba(201,169,97,0.08), var(--navy-800) 60%);
}
.tier-card--featured:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 22px 2px rgba(201, 169, 97, 0.25);
}
.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 600;
}
.tier-card__stage {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.tier-card__name { font-size: 22px; margin-bottom: 12px; }
.tier-card__desc { font-size: 14px; color: var(--slate-400); line-height: 1.6; }

/* ============================================
   FAQ
============================================ */
.faq { padding: 130px 24px; background: var(--navy-900); }
.faq__inner { max-width: 760px; margin: 0 auto; }

.faq__list { margin-top: 48px; }
.faq__item { border-bottom: 1px solid var(--navy-700); }
.faq__item:first-child { border-top: 1px solid var(--navy-700); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ivory);
  cursor: pointer;
}
.faq__question:hover { color: var(--gold-300); }
.faq__question:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; }
.faq__question svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--gold-400);
  transition: transform 0.25s ease;
}
.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer p {
  font-size: 14.5px;
  color: var(--slate-400);
  line-height: 1.7;
  padding: 0 4px 22px;
  max-width: 620px;
}

/* ============================================
   About
============================================ */
.about { padding: 110px 24px; background: var(--navy-950); border-top: 1px solid var(--navy-700); }
.about__inner { max-width: 720px; margin: 0 auto; }
.about__copy { font-size: 19px; line-height: 1.75; color: var(--ivory-dim); font-family: var(--font-display); font-weight: 400; }
.about__copy--second { margin-top: 24px; }
.about__signature {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-400);
}

.beliefs {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .beliefs { grid-template-columns: 1fr; } }
.belief-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-left: 2px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.belief-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.belief-card__note { font-size: 14px; color: var(--slate-400); line-height: 1.6; }

/* ============================================
   Final CTA
============================================ */
.final-cta {
  padding: 130px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 700px 400px at 50% 50%, rgba(201, 169, 97, 0.08), transparent),
    var(--navy-900);
}
.final-cta__inner { max-width: 640px; margin: 0 auto; }
.final-cta .btn { margin-top: 36px; }

/* ============================================
   Footer
============================================ */
.footer { padding: 44px 24px; border-top: 1px solid var(--navy-700); background: var(--navy-950); }
.footer__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.footer__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
