/* =====================================================================
   BUILD 2026 — FaithTech London home page
   Forks the build-event UI kit; tuned for a ticket-selling home page.
   ===================================================================== */

/* colors_and_type.css is linked in each page <head> before this file. */

:root { --hero-logo-w: 560px; } /* final hero BUILD wordmark width */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--ft-grey-200);
  color: var(--ft-black);
  font-family: var(--ft-font-sans);
  font-size: 16px;
  line-height: 1.55;
}

.site {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--ft-white);
  overflow: hidden;
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  background: var(--ft-yellow-100);
  position: sticky;
  top: 0;
  border-bottom: 2px solid var(--ft-black);
  z-index: 50;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-yellow) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  gap: 24px;
}
.nav-logo { height: 26px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-black);
  border-bottom: 2px solid transparent;
  padding: 6px 2px;
  transition: border-color 120ms ease;
}
.nav-link:hover { background: transparent; border-bottom-color: var(--ft-black); }
.nav-link[aria-current="page"] { border-bottom-color: var(--ft-black); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-bottom: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--ft-font-sans);
  transition: transform 150ms ease, box-shadow 150ms ease, background 120ms ease;
}
.btn-primary {
  background: var(--ft-black);
  color: var(--ft-white) !important;
  padding: 16px 28px;
  box-shadow: 4px 4px 0 var(--ft-yellow-200);
}
.btn-primary:hover {
  background: var(--ft-black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ft-yellow-200);
}
.btn-primary:active { transform: translate(0, 0); box-shadow: 4px 4px 0 var(--ft-yellow-200); }

.btn-secondary {
  background: transparent;
  color: var(--ft-black) !important;
  padding: 14px 26px;
  border: 2px solid var(--ft-black);
}
.btn-secondary:hover { background: var(--ft-black); color: var(--ft-white) !important; }

/* Compact nav variant */
.btn-sm { padding: 10px 18px; font-size: 14px; box-shadow: 4px 4px 0 var(--ft-yellow-200); }

/* Button on dark / yellow surfaces still keeps its yellow shadow */
.btn-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: var(--ft-yellow-100);
  position: relative;
  padding: 80px 48px 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-yellow) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--ft-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--ft-black); }
.hero-build { margin-bottom: 40px; }
.hero-build img { width: 100%; max-width: var(--hero-logo-w, 600px); display: block; }
[data-logo-align="centre"] .hero-build img { margin-left: auto; margin-right: auto; }
[data-logo-align="right"] .hero-build img { margin-left: auto; }
[data-bits="off"] .bit-abs { display: none; }
.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 620px;
  margin-bottom: 40px;
}

/* facts strip */
.facts {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid var(--ft-black);
  border-bottom: 2px solid var(--ft-black);
  margin-bottom: 40px;
}
.fact {
  flex: 1 1 220px;
  padding: 20px 24px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fact + .fact { padding-left: 24px; border-left: 2px solid var(--ft-black); }
.fact-lbl {
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.fact-val { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }

/* scattered bits */
.bit-abs { position: absolute; width: 8px; height: 8px; background: var(--ft-black); z-index: 1; }
.bit-abs.y { background: var(--ft-yellow-200); }

/* =====================================================================
   SECTION COMMON
   ===================================================================== */
.section { padding: 88px 48px; position: relative; }
.section--white { background: var(--ft-white); }
.section--soft { background: var(--ft-grey-100); }
.section--dark { background: var(--ft-black); color: var(--ft-white); overflow: hidden; }
.section--yellow { background: var(--ft-yellow-100); overflow: hidden; }
.section--yellow::before,
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section--yellow::before {
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-yellow) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}
.section--dark::before {
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-black) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}
.section > * { position: relative; z-index: 1; }

.section-marker {
  font-family: var(--ft-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-marker::before { content: ""; width: 10px; height: 10px; background: var(--ft-yellow-100); }
.section--white .section-marker::before,
.section--soft .section-marker::before { background: var(--ft-black); }
.section--yellow .section-marker::before { background: var(--ft-yellow-200); }
.section--dark .section-marker::before { background: var(--ft-yellow-100); }

.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
}
.section-title .accent { background: var(--ft-yellow-100); padding: 0 0.16em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.section--yellow .section-title .accent { background: var(--ft-yellow-200); }
.section--dark .section-title .accent { background: var(--ft-yellow-100); color: var(--ft-black); }

.section-lead { font-size: 20px; line-height: 1.5; font-weight: 500; max-width: 760px; }
.section-body { font-size: 17px; line-height: 1.6; max-width: 680px; }
.section-body + .section-body { margin-top: 16px; }
.muted { opacity: 0.72; }

/* =====================================================================
   SPLIT (text + photo)
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo--framed::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  background: var(--ft-yellow-100);
  z-index: -1;
}

/* photo placeholder (David Gardner) */
.photo-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ft-grey-100);
  border: 2px solid var(--ft-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-ph::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  background: var(--ft-yellow-100);
  z-index: -1;
}
.photo-ph span {
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* =====================================================================
   WHY — modular step blocks
   ===================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.step {
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-300);
  border-top: 6px solid var(--ft-yellow-100);
  padding: 26px 24px 24px;
}
.step-num {
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.5;
  margin-bottom: 16px;
}
.step-title { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.1; }
.step-body { font-size: 15px; line-height: 1.55; }

/* =====================================================================
   GUEST (David Gardner)
   ===================================================================== */
.guest { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.guest-name { font-size: 40px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 18px; }
.guest-role {
  display: inline-block;
  background: var(--ft-yellow-100);
  padding: 4px 10px;
  font-family: var(--ft-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.guest-cv { list-style: none; }
.guest-cv li {
  font-size: 16.5px;
  line-height: 1.5;
  padding: 14px 0 14px 28px;
  border-bottom: 1px dashed var(--ft-grey-300);
  position: relative;
}
.guest-cv li:last-child { border-bottom: none; }
.guest-cv li::before { content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 8px; background: var(--ft-black); }

/* =====================================================================
   WEEKEND — day-grouped timeline
   ===================================================================== */
.weekend { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 12px; }
.day {
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-300);
  border-top: 6px solid var(--ft-yellow-100);
  padding: 28px 28px 26px;
}
.day-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.day-name { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; }
.day-date {
  font-family: var(--ft-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ft-black);
  color: var(--ft-yellow-100);
  padding: 4px 8px;
}
.run { list-style: none; counter-reset: step; }
.run li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--ft-grey-300);
  font-size: 15.5px;
  line-height: 1.45;
}
.run li:last-child { border-bottom: none; }
.run li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  opacity: 0.45;
  padding-top: 3px;
}
.run b { font-weight: 800; }

/* Timed variant: show the clock time as the left marker instead of an ordinal */
.run--timed li { grid-template-columns: 64px 1fr; }
.run--timed li::before { content: none; }
.run-t {
  font-family: var(--ft-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.55;
  padding-top: 3px;
}

/* =====================================================================
   CHALLENGE BAND (signpost)
   ===================================================================== */
.band {
  background: var(--ft-yellow-100);
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-yellow) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.band > * { position: relative; z-index: 1; }
.band-title { font-size: 30px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 12px; }
.band-body { font-size: 17px; line-height: 1.5; max-width: 620px; }

/* =====================================================================
   IMPACT (dark)
   ===================================================================== */
.impact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
/* 2x2 layout: row 1 = narrative | themes, row 2 = big stat | partners */
.impact-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 64px; align-items: start; }
/* Top-align the first list item with the narrative's first line */
.impact-2x2 .impact-list { margin-top: 0; }
.impact-2x2 .impact-list li:first-child { padding-top: 0; }
.impact-2x2 .impact-list li:first-child::before { top: 6px; }
.impact-num {
  font-size: 132px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--ft-yellow-100);
  font-variant-numeric: tabular-nums;
}
.impact-num small { font-size: 56px; font-weight: 800; }
.impact-cap {
  font-family: var(--ft-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0.7;
}
.impact-list { list-style: none; margin-top: 8px; }
.impact-list li {
  font-size: 18px;
  line-height: 1.45;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.impact-list li:last-child { border-bottom: none; }
.impact-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 8px; height: 8px; background: var(--ft-yellow-100); }

/* Past-impact stat with the Kingdom Code heritage logo to its right */
.impact-stat { display: flex; align-items: center; gap: 32px; }
.impact-stat .kc-logo { height: 104px; width: auto; display: block; }

/* =====================================================================
   FINAL CALL
   ===================================================================== */
.final {
  background: var(--ft-yellow-100);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-yellow) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}
.final > * { position: relative; z-index: 1; }
.final .corner { position: absolute; width: 10px; height: 10px; background: var(--ft-black); z-index: 1; }
.final .corner.tl { top: 16px; left: 16px; }
.final .corner.tr { top: 16px; right: 16px; }
.final .corner.bl { bottom: 16px; left: 16px; }
.final .corner.br { bottom: 16px; right: 16px; }
.final-title { font-size: 60px; font-weight: 900; letter-spacing: -0.035em; line-height: 0.98; margin-bottom: 32px; }
.final .facts { max-width: 760px; margin: 0 auto 40px; justify-content: center; }
.final .fact { flex: 0 1 auto; padding-right: 28px; text-align: left; }
.final .fact:first-child { padding-left: 0; }
.final .fact + .fact { padding-left: 28px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.foot {
  background: var(--ft-black);
  color: var(--ft-white);
  padding: 64px 48px 28px;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-black) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.foot-inner { position: relative; z-index: 1; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.foot-brand img { height: 60px; width: auto; display: block; margin-bottom: 22px; background: var(--ft-yellow-100); padding: 14px 16px; }
.foot-brand p { font-size: 14.5px; line-height: 1.55; opacity: 0.7; max-width: 380px; }
.foot-col h4 {
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.55;
}
.foot-col ul { list-style: none; }
.foot-col li + li { margin-top: 9px; }
.foot-col a { color: var(--ft-white); border-bottom: none; font-size: 14.5px; }
.foot-col a:hover { color: var(--ft-yellow-100); background: transparent; }
.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  opacity: 0.55;
  font-family: var(--ft-font-mono);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

/* =====================================================================
   BIT LIST — bullet list with the 8px black bit marker
   ===================================================================== */
.bitlist { list-style: none; max-width: 760px; }
.bitlist li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px dashed var(--ft-grey-300);
  font-size: 17px;
  line-height: 1.5;
}
.bitlist li:last-child { border-bottom: none; }
.bitlist li::before { content: ""; position: absolute; left: 0; top: 23px; width: 8px; height: 8px; background: var(--ft-black); }
.bitlist li b { font-weight: 800; }
.lead-in { font-family: var(--ft-font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-bottom: 4px; }

/* =====================================================================
   CALLOUT — note card with yellow top band
   ===================================================================== */
.callout {
  background: var(--ft-grey-100);
  border: 1px solid var(--ft-grey-300);
  border-top: 5px solid var(--ft-yellow-100);
  padding: 22px 24px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
}
.callout + .callout { margin-top: 16px; }
.callout b { font-weight: 800; }

.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 880px; margin-top: 24px; }
.note-grid .callout + .callout { margin-top: 0; } /* side-by-side: cancel the stacked-callout top margin */

/* =====================================================================
   CARDS — accepted-challenges grid
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card {
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-300);
  border-top: 6px solid var(--ft-yellow-100);
  padding: 24px 22px 22px;
  position: relative;
}
.card-meta {
  font-family: var(--ft-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
}
.card-title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 10px; }
.card-body { font-size: 14.5px; line-height: 1.5; opacity: 0.85; }
.card--empty {
  background: transparent;
  border: 2px dashed var(--ft-grey-500);
  border-top: 2px dashed var(--ft-grey-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card--empty .card-title { margin-bottom: 6px; }
.card--empty .card-body { opacity: 0.6; }

/* =====================================================================
   FAQ — sharp accordion
   ===================================================================== */
.faq { max-width: 840px; border-top: 2px solid var(--ft-black); }
.faq details { border-bottom: 1px solid var(--ft-grey-300); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 20px;
  font-family: var(--ft-font-mono);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 48px 26px 0; font-size: 16.5px; line-height: 1.6; max-width: 740px; }

/* =====================================================================
   STATS — dark four-up modular panel
   ===================================================================== */
.stats {
  background: var(--ft-black);
  color: var(--ft-white);
  position: relative;
  overflow: hidden;
  margin: 36px 0;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 4px 4px, var(--ft-grid-dot-on-black) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  pointer-events: none;
}
.stats-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 34px 26px 30px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 54px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ft-yellow-100);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.stat-num small { font-size: 26px; font-weight: 800; }
.stat-label { font-size: 14px; line-height: 1.4; color: rgba(255,255,255,0.85); }

/* =====================================================================
   MAP EMBED — responsive Google map in a sharp black frame
   ===================================================================== */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ft-black);
  background: var(--ft-grey-100);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .hero { padding: 56px 28px 48px; }
  .hero-title { font-size: 48px; }
  .section { padding: 64px 28px; }
  .section-title { font-size: 34px; }
  .split, .guest, .impact-grid, .impact-2x2, .weekend, .band { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .note-grid { grid-template-columns: 1fr; }
  .band { gap: 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .impact-num { font-size: 96px; }
  .final-title { font-size: 40px; }
  .final { padding: 64px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { gap: 16px; }
  .nav-links .nav-link { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 38px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child { border-bottom: none; }
  .facts { display: block; }
  .fact + .fact { border-left: none; border-top: 2px solid var(--ft-black); padding-left: 0; }
  .foot-grid { grid-template-columns: 1fr; }
}
