/* ===== Problem section ===== */
#problem {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
}

.problem-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@media (max-width: 920px) {
  .problem-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.problem-copy {
  display: flex;
  flex-direction: column;
}
.problem-copy .section-head { margin-bottom: 28px; }
/* Push bullet list to bottom so left column bottoms-out level with the diag card */
.problem-list { margin-top: auto; }
@media (max-width: 920px) {
  .problem-list { margin-top: 0; }
}

.hero-sub strong { color: var(--white); font-weight: 600; }
.problem-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.problem-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px; line-height: 1.55;
  color: rgba(250,250,250,0.85);
}
.problem-list li .bullet {
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}

/* Diagnostic card on the right */
.diag-card {
  background: linear-gradient(180deg, var(--gray-700) 0%, var(--gray-800) 100%);
  border: 1px solid var(--gray-600);
  border-radius: var(--r-card);
  padding: 30px 32px 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 60px -30px rgba(0,0,0,0.7);
}
.diag-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.diag-head .label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-on-dark);
}
.diag-head .flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--loss);
}
.diag-head .flag::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--loss);
  box-shadow: 0 0 0 4px rgba(214,88,74,0.18);
  animation: diagPulse 1.6s ease-in-out infinite;
}
@keyframes diagPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(214,88,74,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(214,88,74,0.04); }
}

.diag-rows { display: flex; flex-direction: column; gap: 16px; }
.diag-row .top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.diag-row .name {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.diag-row .delta {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--loss);
  white-space: nowrap;
}
.diag-row .delta::before {
  content: "↓ ";
  margin-right: 2px;
}
.diag-row.up .delta::before { content: "↑ "; }
.diag-row.flat .delta::before { content: "↓ "; }
.diag-row.flat .delta { color: var(--loss); opacity: 0.85; font-style: italic; }
.diag-row .delta::before {
  content: "↓ ";
  margin-right: 2px;
}
.diag-row.up .delta::before { content: "↑ "; }
.diag-row.flat .delta::before { content: "— "; }
.diag-bar {
  position: relative;
  height: 6px;
  background: var(--gray-700);
  border-radius: 999px;
  overflow: hidden;
}
.diag-bar .fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 14px -2px rgba(201,162,75,0.45);
}

.diag-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-on-dark);
}
.diag-foot .label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 10px;
  display: block;
}
.diag-foot .verdict {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.035em;
  color: var(--loss);
  line-height: 1;
  margin: 0;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 2px;
  text-shadow: 0 0 24px rgba(214, 88, 74, 0.28);
}
.diag-foot .verdict .unit {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-on-dark);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.diag-foot .verdict .suffix {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--muted-on-dark);
  margin-left: 4px;
  letter-spacing: -0.01em;
}
.diag-foot .unit-line {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-on-dark);
  margin: 6px 0 0;
}
.diag-foot .note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted-on-dark);
}

/* ===== Breakdowns grid ===== */
.breakdowns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1100px) { .breakdowns-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px)  { .breakdowns-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .breakdowns-grid { grid-template-columns: 1fr; } }

.breakdown-card {
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.breakdown-card:hover { border-color: var(--black); transform: translateY(-1px); }
.breakdown-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
  overflow: hidden;
}
.breakdown-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.breakdown-thumb .play-mark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.breakdown-thumb .play-mark::after {
  content: ""; width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); box-shadow: 0 0 0 6px rgba(250,250,250,0.10);
}
.breakdown-thumb .play-tri {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  border-left: 14px solid var(--black);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  transform: translate(-40%, -50%);
  z-index: 2;
}
.breakdown-thumb .num-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); background: rgba(10,10,10,0.7);
  padding: 4px 8px; border-radius: 4px; backdrop-filter: blur(6px);
}
.breakdown-thumb .soon-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,250,0.7); background: rgba(250,250,250,0.10);
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid rgba(250,250,250,0.2);
}
.breakdown-meta { padding: 18px 18px 20px; }
.breakdown-meta h3 {
  font-weight: 600;
  font-size: 19px; line-height: 1.25; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.breakdown-meta p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted-on-light); }

/* ===== Disclaimer bar ===== */
.disclaimer-bar {
  display: flex; gap: 14px;
  padding: 14px 18px;
  border-left: 2px solid var(--black);
  background: var(--gray-100);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  margin-bottom: 32px;
  max-width: 760px;
}
.disclaimer-bar .label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); flex-shrink: 0;
}
.disclaimer-bar p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted-on-light); }

/* ===== Pain grids (problem + tried) ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 700px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-card);
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.on-light .pain-item { border-color: var(--border-on-light); }
.pain-item .pain-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  color: currentColor; opacity: 0.7;
}
.pain-item .pain-mark svg { width: 18px; height: 18px; display: block; }
.pain-item p {
  margin: 0;
  font-size: 15.5px; line-height: 1.5;
  color: rgba(250,250,250,0.86);
}
.on-light .pain-item p { color: var(--black); }
.on-light .pain-item p strong { color: var(--black); font-weight: 600; }

/* ===== Section heads (used by new sections) ===== */
.eyebrow-light, .eyebrow-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-label { color: var(--accent); }
.eyebrow-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow-light { color: var(--accent); }
.eyebrow-light::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.section-head { margin-bottom: clamp(32px, 4vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow-label,
.section-head.center .eyebrow-light { margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  text-wrap: balance;
}
.section-head h2 .italic-line { display: block; font-weight: 500; }
.section-head p {
  margin: 20px 0 0;
  max-width: 60ch;
  font-size: 17px; line-height: 1.55;
  color: var(--muted-on-light);
}
.section-head.center p { margin-left: auto; margin-right: auto; }
section:not(.on-light) .section-head p { color: rgba(250,250,250,0.72); }

/* ===== Offer cards ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-card);
  padding: 26px 24px;
}
.offer-card .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; color: var(--muted-on-light);
}
.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 10px 0 10px;
}
.offer-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted-on-light); }

/* ===== Mechanism (80/20) ===== */
.mechanism-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .mechanism-grid { grid-template-columns: 1fr; } }
.mechanism-bar {
  display: flex; flex-direction: column; gap: 10px;
}
.mechanism-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 16px;
}
.mechanism-row .pct {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px; line-height: 1;
  color: var(--white);
}
.on-light .mechanism-row .pct { color: var(--black); }
.mechanism-row .bar {
  height: 18px;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  position: relative; overflow: hidden;
}
.on-light .mechanism-row .bar { border-color: var(--border-on-light); }
.mechanism-row .bar-fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  background: var(--white);
}
.on-light .mechanism-row .bar-fill { background: var(--black); }
.mechanism-row .lab {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,250,0.6);
  margin-top: 4px;
  grid-column: 2;
}
.on-light .mechanism-row .lab { color: var(--muted-on-light); }

.mechanism-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.mechanism-text p {
  margin: 0 0 12px;
  font-size: 16px; line-height: 1.6;
  color: rgba(250,250,250,0.78);
}
.on-light .mechanism-text p { color: var(--muted-on-light); }

/* ===== How The 80/20 Works ===== */
#how-it-works.on-cream { background: var(--cream); color: var(--black); }
#how-it-works .section-head h2 { font-weight: 600; letter-spacing: -0.025em; }
#how-it-works .section-head h2 strong { font-weight: 700; color: var(--accent); }
#how-it-works .section-head p { color: var(--muted-on-light); max-width: 56ch; margin: 0 auto; }
#how-it-works .section-head p strong { color: var(--black); font-weight: 600; }

.split8020 {
  max-width: 1080px;
  margin: clamp(36px, 4vw, 56px) auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.08);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.25);
}
.split8020-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
}
@media (max-width: 820px) { .split8020-row { grid-template-columns: 1fr; } }

.split-col-80 {
  background: var(--black);
  color: var(--white);
  padding: 0;
}
.split-col-20 {
  background: #FBF8F0;
  color: var(--black);
  padding: 0;
}

.split-head {
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 32px;
  background: var(--accent);
  color: var(--black);
}
.split-head.light {
  background: transparent;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.split-head .pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.split-head .pct .sym {
  font-size: 0.8em;
  margin-left: -2px;
}
.split-head .role {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(10,10,10,0.6);
}
.split-head.light .role { color: var(--muted-on-light); }

.split-list, .split-list-light {
  list-style: none; margin: 0;
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.split-list li, .split-list-light li {
  position: relative;
  padding-left: 22px;
  font-size: 15px; line-height: 1.55;
}
.split-list li { color: rgba(245,241,232,0.86); }
.split-list-light li { color: var(--muted-on-light); }
.split-list .bullet, .split-list-light .bullet {
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.split-result {
  margin: -8px 32px 28px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(10,10,10,0.1);
  font-size: 14px; line-height: 1.5;
  color: var(--black);
}
.split-result strong { font-weight: 700; }

.split8020-cta {
  display: flex; justify-content: center;
  margin-top: clamp(28px, 3vw, 40px);
}
#how-it-works .btn { background: var(--black); color: var(--cream); border-color: var(--black); }
#how-it-works .btn:hover { background: var(--gray-700); border-color: var(--gray-700); }
/* "What We Actually Deliver" — 2-col layout: intro+doc left, cards right */
.deliver-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .deliver-wrap { grid-template-columns: 1fr; } }

.deliver-intro .eyebrow-light { margin-bottom: 14px; }
.deliver-intro h2 { margin: 0 0 18px; }
.deliver-intro p {
  margin: 0 0 32px;
  color: var(--muted-on-light);
  font-size: 16px; line-height: 1.6;
  max-width: 36ch;
}

/* Doc mock — visual placeholder for the master research file */
.deliver-doc {
  background: var(--white);
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-card);
  box-shadow: 0 24px 48px -24px rgba(10,10,10,0.18), 0 2px 6px rgba(10,10,10,0.04);
  padding: 28px 26px 36px;
  position: relative;
  max-width: 320px;
  aspect-ratio: 8.5 / 11;
}
.deliver-doc .doc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.deliver-doc .doc-tag::before { content: "•"; color: var(--gray-400); }
.deliver-doc .doc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--black);
}
.deliver-doc .doc-icon {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px;
  background: var(--gray-100);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray-500);
}
.deliver-doc .doc-icon svg { width: 16px; height: 16px; display: block; }
.deliver-doc .doc-section {
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 20px;
}
.deliver-doc .doc-line {
  height: 6px; border-radius: 3px;
  background: var(--gray-200);
  margin-top: 8px;
}
.deliver-doc .doc-line.short { width: 62%; }
.deliver-doc .doc-line.med   { width: 84%; }
.deliver-doc .doc-foot {
  position: absolute; bottom: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid var(--border-on-light);
  border-radius: var(--r-card);
  overflow: hidden;
}
@media (max-width: 700px) { .deliverables { grid-template-columns: 1fr; } }
.deliverable {
  padding: 22px 24px;
  border-top: 1px solid var(--border-on-light);
  border-right: 1px solid var(--border-on-light);
  display: flex; gap: 14px; align-items: flex-start;
}
.deliverable:nth-child(1), .deliverable:nth-child(2) { border-top: 0; }
.deliverable:nth-child(2n) { border-right: 0; }
@media (max-width: 700px) {
  .deliverable { border-right: 0; }
  .deliverable:nth-child(2) { border-top: 1px solid var(--border-on-light); }
}
.deliverable .d-icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201, 162, 75, 0.12);
  border-radius: 8px;
  color: var(--accent);
  margin-top: 2px;
}
.deliverable .d-icon svg { width: 20px; height: 20px; display: block; }
.deliverable .body { display: flex; flex-direction: column; min-width: 0; }
.deliverable .label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 2px;
  order: 2;
}
.deliverable h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.005em;
  margin: 0 0 4px;
  order: 1;
}
.deliverable p {
  margin: 8px 0 0;
  font-size: 14px; line-height: 1.5;
  color: var(--muted-on-light);
  order: 3;
}

/* ===== Story section ===== */
.story-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.story-wrap p {
  font-size: 17px; line-height: 1.7;
  color: var(--muted-on-light);
  margin: 0 0 18px;
}
.story-wrap p strong { color: var(--black); font-weight: 600; }
.story-wrap p:last-child { margin: 0; }
.story-sig {
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  color: var(--black);
}

/* ===== FAQ ===== */
.faq-item { border-top: 1px solid rgba(10,10,10,0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(10,10,10,0.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px; line-height: 1.3;
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-text { flex: 1; }
.faq-item summary .q-toggle { width: 16px; height: 16px; position: relative; flex-shrink: 0; opacity: 0.7; }
.faq-item summary .q-toggle::before, .faq-item summary .q-toggle::after {
  content: ""; position: absolute; background: var(--black);
  transition: opacity 200ms var(--ease);
}
.faq-item summary .q-toggle::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-0.5px); }
.faq-item summary .q-toggle::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-0.5px); }
.faq-item[open] summary .q-toggle::after { opacity: 0; }
.faq-item .answer {
  padding: 0 4px 24px 4px;
  font-size: 15px; line-height: 1.65;
  color: var(--muted-on-light);
}
.faq-item .answer p { margin: 0 0 12px; }
.faq-item .answer p:last-child { margin: 0; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; }
.final-cta h2 { color: var(--white); margin: 12px auto 18px; max-width: 22ch; }
.final-cta .sub { color: rgba(250,250,250,0.74); max-width: 56ch; margin: 0 auto 28px; font-size: 17px; }
.final-cta .row {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-on-dark);
  padding: 32px 0;
}
.footer-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,250,0.5);
}
.footer-row a { color: rgba(250,250,250,0.5); }
.footer-row a:hover { color: var(--white); }
.footer-row .links { display: flex; gap: 28px; }
