/* ============================================================
   B.Y.L.T. BLACK — Design tokens
   Contrast verified against WCAG 2.2 AA
   ============================================================ */
:root {
  --black: #0b0b0b;
  --black-2: #121212;
  --surface: #171717;
  --line: #2a2a2a;
  --line-strong: #3d3d3d;
  --gold: #c8a24a;
  --gold-hi: #dcb862;
  --bone: #f5f3ef;          /* 18.5:1 on --black */
  --muted: #b8b4ac;         /* 9.1:1 on --black */
  --muted-2: #9a968e;       /* 6.2:1 on --black */

  --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
  --text-3xl: clamp(2.25rem, 1.4rem + 3.4vw, 3.5rem);
  --text-hero: clamp(3rem, 1.5rem + 8vw, 6.5rem);

  --shell: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sect: clamp(3.5rem, 7vw, 6rem);
  --r: 4px;
  --r-lg: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
:where(h1,h2,h3) { font-family: var(--font-display); line-height: 1.05; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; }
ul, ol, fieldset { margin: 0; padding: 0; border: 0; }
li { list-style: none; }
svg { width: 100%; height: 100%; }
[hidden] { display: none !important; }

/* Focus — 1.4.11 / 2.4.7 */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:target, [id] { scroll-margin-top: 132px; } /* 2.4.11 Focus Not Obscured */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--gold); color: var(--black); padding: .75rem 1.25rem;
  font-weight: 700; border-radius: var(--r); transition: top .18s var(--ease);
}
.skip-link:focus { top: 1rem; }

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }

/* ---------------- Announcement ---------------- */
.announce {
  background: var(--black-2); border-bottom: 1px solid var(--line);
  text-align: center; font-size: var(--text-xs); letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); padding: .6rem 1rem;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--bone); flex: none; }
.brand-mark { width: 30px; height: 30px; color: var(--gold); }
.brand-word { font-family: var(--font-display); font-weight: 900; font-size: 1.0625rem; letter-spacing: .06em; }
.brand-word em { font-style: normal; color: var(--gold); }

.primary-nav { margin-inline: auto; }
.primary-nav > ul { display: flex; gap: .25rem; }
.primary-nav li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 44px; padding: 0 .9rem;
  font: inherit; font-size: var(--text-sm); font-weight: 500; letter-spacing: .02em;
  color: var(--bone); background: none; border: 0; cursor: pointer; text-decoration: none;
  border-radius: var(--r);
}
.nav-link:hover { color: var(--gold-hi); }
button.nav-link::after {
  content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
  transition: transform .2s var(--ease);
}
button.nav-link[aria-expanded="true"] { color: var(--gold); }
button.nav-link[aria-expanded="true"]::after { transform: rotate(-135deg) translateY(-2px); }

.mega {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--black-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.25rem; min-width: 240px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7); z-index: 120;
}
.mega--wide { display: grid; grid-template-columns: 1fr 200px; gap: 1.5rem; min-width: 470px; }
.mega-list a {
  display: block; padding: .6rem .5rem; min-height: 44px; font-size: var(--text-sm);
  color: var(--muted); text-decoration: none; border-radius: var(--r);
}
.mega-list a:hover { color: var(--bone); background: var(--surface); }
.mega-figure { margin: 0; }
.mega-figure img { border-radius: var(--r); aspect-ratio: 3/4; object-fit: cover; object-position: center 25%; }
.mega-figure figcaption { font-size: var(--text-xs); color: var(--muted); margin-top: .5rem; }

.header-actions { display: flex; align-items: center; gap: .25rem; flex: none; }
.icon-btn {
  width: 44px; height: 44px; display: inline-grid; place-items: center;
  background: none; border: 0; color: var(--bone); cursor: pointer; border-radius: var(--r);
  position: relative; padding: 10px;
}
.icon-btn:hover { color: var(--gold-hi); }
.menu-toggle { display: none; }

/* ---------------- Drawer ---------------- */
.drawer {
  position: fixed; top: 108px; left: 0; right: 0; bottom: 0;
  overflow-y: auto; z-index: 95;
  background: var(--black-2); border-bottom: 1px solid var(--line);
  padding: 1rem var(--pad) 1.75rem;
}
.drawer a { display: block; text-decoration: none; }
.drawer nav a {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 1.25rem; display: flex; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 56px; padding: 0 1.75rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--r); cursor: pointer; border: 2px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: var(--black); }        /* 8.4:1 */
.btn--primary:hover { background: var(--gold-hi); }
.btn--ghost { border-color: var(--bone); color: var(--bone); background: transparent; }
.btn--ghost:hover { background: var(--bone); color: var(--black); }
.btn--outline { border-color: var(--line-strong); color: var(--bone); background: transparent; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn--onGold { background: var(--black); color: var(--bone); }
.btn--onGold:hover { background: #1d1d1d; }
.btn--onGoldOutline { border-color: var(--black); color: var(--black); }
.btn--onGoldOutline:hover { background: rgba(11,11,11,.1); }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 24px;
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .04em;
  color: var(--gold-hi); text-decoration: none; text-underline-offset: 4px;
}
.text-link:hover { text-decoration: underline; }

.eyebrow {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}

/* ---------------- Hero ---------------- */
.hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero h1 {
  font-size: var(--text-hero); font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: .75rem;
}
.hero-tagline {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-sub { font-size: var(--text-lg); color: var(--muted); max-width: 44ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; }
.cta-row--center { justify-content: center; }

.trust { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.trust-rating { display: flex; align-items: center; gap: .625rem; font-size: var(--text-sm); color: var(--muted); }
.trust-rating strong { color: var(--bone); }
.stars { color: var(--gold); letter-spacing: .12em; font-size: var(--text-sm); }
.trust-press {
  margin-top: .875rem; font-size: var(--text-xs); font-weight: 500;
  letter-spacing: .16em; color: var(--muted-2);
}
.trust-label { color: var(--muted-2); text-transform: uppercase; margin-right: .5rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 6%;
  border-radius: var(--r-lg);
}
.hero-media::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(100deg, var(--black) 0%, rgba(11,11,11,.45) 35%, transparent 70%);
  pointer-events: none;
}

/* ---------------- Sections ---------------- */
.section { padding-block: var(--sect); }
.section--alt { background: var(--black-2); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: var(--text-2xl); }
.section-head--split {
  display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: space-between;
  align-items: flex-end; max-width: none;
}
.section-note {
  font-size: var(--text-sm); letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
}

/* Value cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex; flex-direction: column; gap: .875rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card-icon { width: 40px; height: 40px; color: var(--gold); flex: none; }
.card h3 { font-size: var(--text-xl); }
.card p { color: var(--muted); font-size: var(--text-base); }
.card .text-link { margin-top: auto; }

/* Longevity Code */
.code-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.code-inner h2 { font-size: var(--text-2xl); margin-bottom: 2.25rem; }
.steps { display: grid; gap: 1.5rem; }
.steps li { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1rem; align-items: start; }
.step-n { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 900; color: var(--gold); }
.steps h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; margin-bottom: .25rem; }
.steps p { color: var(--muted); font-size: var(--text-base); }

.capture {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  position: sticky; top: 132px;
}
.capture-title { font-size: var(--text-xl); margin-bottom: .5rem; }
.capture-sub { color: var(--muted); font-size: var(--text-sm); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.125rem; }
.field label, .footer-signup label {
  display: block; font-size: var(--text-sm); font-weight: 700;
  letter-spacing: .04em; margin-bottom: .5rem;
}
input[type="email"], input[type="text"] {
  width: 100%; min-height: 56px; padding: 0 1rem;
  background: var(--black); border: 1px solid var(--line-strong);
  border-radius: var(--r); color: var(--bone);
  font-family: inherit; font-size: var(--text-base);
}
input[type="email"]::placeholder, input[type="text"]::placeholder { color: #8b8880; }
input[type="email"]:focus-visible, input[type="text"]:focus-visible { border-color: var(--gold); }
.help { font-size: var(--text-xs); color: var(--muted); margin-top: .5rem; }
.error { font-size: var(--text-sm); color: #ff9b8a; margin-top: .5rem; font-weight: 500; }
input[aria-invalid="true"] { border-color: #ff9b8a; }
.form-status { font-size: var(--text-sm); color: var(--gold-hi); margin-top: .875rem; min-height: 1.2em; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.rating { display: flex; align-items: center; gap: .5rem; }
.rating-num { font-size: var(--text-sm); font-weight: 700; color: var(--bone); }
.review blockquote { margin: 0; }
.review blockquote p { color: var(--bone); font-size: var(--text-base); }
.review-by { font-size: var(--text-sm); color: var(--muted); margin-top: auto; }

.aggregate {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: var(--text-base); color: var(--muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: .625rem;
}
.aggregate strong { color: var(--bone); }

.press { margin-top: 3rem; }
.press-label {
  font-size: var(--text-xs); letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 1.125rem;
}
.press ul { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; }
.press a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  letter-spacing: .1em; color: var(--muted); text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.press a:hover { color: var(--bone); }

/* Founder */
.founder-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.founder-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); }
.founder-inner h2 { font-size: var(--text-2xl); margin-bottom: 1.25rem; }
.founder-copy { color: var(--muted); max-width: 52ch; margin-bottom: 1.25rem; }
.signature {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--bone); margin-bottom: 1rem;
}

/* Closing */
.closing { background: var(--gold); color: var(--black); }
.closing-inner { padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.closing h2 { font-size: var(--text-3xl); color: var(--black); margin-bottom: .875rem; }
.closing p { color: #2a2208; font-weight: 500; font-size: var(--text-lg); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-h {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 1rem;
}
.footer-cols a {
  display: inline-flex; align-items: center; min-height: 40px;
  font-size: var(--text-base); color: var(--muted); text-decoration: none;
}
.footer-cols a:hover { color: var(--bone); text-decoration: underline; text-underline-offset: 4px; }

.footer-brandrow {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.brand--footer { align-self: center; }
.footer-signup { min-width: 300px; }
.footer-signup-row { display: flex; gap: .5rem; }
.footer-signup input { min-width: 0; }
.social { display: flex; gap: .375rem; align-self: center; }
.social a {
  width: 44px; height: 44px; display: grid; place-items: center; padding: 11px;
  color: var(--muted); border: 1px solid var(--line); border-radius: var(--r);
}
.social a:hover { color: var(--gold-hi); border-color: var(--line-strong); }

.footer-legal {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: grid; gap: .875rem;
  font-size: var(--text-sm); color: var(--muted);
}
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--bone); }
.disclaimer { color: var(--muted-2); max-width: 62ch; font-size: var(--text-sm); }

/* ---------------- Motion ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .card:hover, .tl:hover { transform: none; }
}

/* ================= Launch-page components ================= */

/* Header waitlist counter + small button */
.header-counter {
  font-size: var(--text-sm); color: var(--muted); white-space: nowrap; margin-right: .5rem;
}
.header-counter strong { color: var(--bone); }
.btn--sm { min-height: 40px; padding: 0 1.125rem; font-size: var(--text-xs); }

/* Hero stat row */
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
.hero-stats li { display: grid; gap: .125rem; }
.hero-stats strong {
  font-family: var(--font-display); font-weight: 900; font-size: var(--text-2xl);
  color: var(--bone); line-height: 1;
}
.hero-stats span {
  font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2);
}

/* Method media pair */
.method-media { display: grid; gap: 1rem; }
.method-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

/* What's included */
.included-grid {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.incl-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
.incl-list li {
  padding-top: 1.125rem; border-top: 1px solid var(--line);
}
.incl-list h3 {
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 700;
  color: var(--bone); margin-bottom: .375rem;
}
.incl-list p { color: var(--muted); font-size: var(--text-sm); }

/* Founding offer card */
.offer {
  position: sticky; top: 132px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
}
.offer-tag {
  font-size: var(--text-xs); letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.offer h3 { font-size: var(--text-xl); margin-bottom: 1rem; }
.offer-price { display: flex; align-items: baseline; gap: .375rem; }
.offer-amount {
  font-family: var(--font-display); font-weight: 900; font-size: var(--text-3xl);
  color: var(--bone); line-height: 1;
}
.offer-per { color: var(--muted); font-size: var(--text-base); }
.offer-was { color: var(--muted); font-size: var(--text-sm); margin-top: .75rem; }
.offer-list { display: grid; gap: .625rem; margin: 1.25rem 0 1.5rem; }
.offer-list li {
  position: relative; padding-left: 1.5rem; font-size: var(--text-sm); color: var(--muted);
}
.offer-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold);
}

/* Pilot stats */
.section-lede { color: var(--muted); font-size: var(--text-base); margin-top: 1rem; max-width: 60ch; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.stats li {
  padding: 1.5rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.stat-n {
  font-family: var(--font-display); font-weight: 900; font-size: var(--text-3xl);
  color: var(--gold); line-height: 1; display: flex; align-items: baseline; gap: .3rem;
}
.stat-n span {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; color: var(--muted);
}
.stat-l { margin-top: .75rem; font-size: var(--text-sm); color: var(--muted); }

/* Timeline */
.timeline {
  max-width: 46rem;
  display: grid; gap: 2rem; position: relative; padding-left: 2.25rem;
  border-left: 1px solid var(--line);
}
.tl { position: relative; }
.tl::before {
  content: ""; position: absolute; left: calc(-2.25rem - 6px); top: .3rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--line-strong);
}
.tl.done::before { background: var(--muted-2); border-color: var(--muted-2); }
.tl.now::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(200,162,74,.18); }
.tl-date {
  font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: .375rem;
}
.tl.now .tl-date { color: var(--gold); }
.tl h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; margin-bottom: .25rem; }
.tl p:last-child { color: var(--muted); font-size: var(--text-sm); max-width: 52ch; }

/* Waitlist */
.waitlist-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.waitlist-inner h2 { font-size: var(--text-2xl); margin-bottom: 1.125rem; }
.waitlist-copy { color: var(--muted); max-width: 50ch; }
.waitlist-points { display: grid; gap: .75rem; margin-top: 1.75rem; }
.waitlist-points li {
  position: relative; padding-left: 1.75rem; color: var(--bone); font-size: var(--text-base);
}
.waitlist-points li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: .875rem; height: .5rem;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* Select control matches inputs */
.field select {
  width: 100%; min-height: 56px; background: var(--black); color: var(--bone);
  border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 0 1rem; font: inherit; font-size: var(--text-base);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 25px, calc(100% - 14px) 25px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* FAQ */
.faq-inner { max-width: 52rem; }
.faq-list { display: grid; }
.faq { border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem 0; min-height: 44px;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg); color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: .625rem; height: .625rem;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--gold-hi); }
.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r); }
.faq-body { padding: 0 0 1.5rem; }
.faq-body p { color: var(--muted); max-width: 62ch; }

/* ================= Editorial / blog components ================= */

/* ---- Masthead + featured ---- */
.masthead { border-bottom: 1px solid var(--line); padding-block: clamp(2.75rem, 6vw, 5rem); }
.masthead .shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.masthead h1 {
  font-size: var(--text-hero, clamp(2.75rem, 7vw, 4.75rem));
  line-height: .92; letter-spacing: -0.035em; color: var(--bone);
}
.masthead-tagline {
  margin-top: 1.25rem; font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-lg); color: var(--gold-hi); letter-spacing: -0.01em;
}
.masthead-sub { margin-top: .875rem; color: var(--muted); font-size: var(--text-base); max-width: 40ch; }
.masthead-copy { position: sticky; top: 8.5rem; }

.featured { display: grid; gap: 1.5rem; }
.featured-media { display: block; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.featured-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.featured:hover .featured-media img { transform: scale(1.02); }
.featured-body h2 { font-size: var(--text-2xl); letter-spacing: -0.025em; margin-bottom: .875rem; }
.featured-body h2 a { color: var(--bone); text-decoration: none; }
.featured-body h2 a:hover { color: var(--gold-hi); }

/* ---- Kickers, tags, bylines ---- */
.kicker {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: .75rem;
}
.tag { color: var(--gold); font-weight: 700; }
.soon { color: var(--muted); }
.dot-sep { color: var(--line-strong); }
.dek { color: var(--muted); font-size: var(--text-base); max-width: 62ch; }
.byline {
  margin-top: 1rem; font-size: var(--text-sm); color: var(--muted-2);
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
}

/* ---- Post grid ---- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 3vw, 2.75rem) 1.75rem; }
.post { display: flex; flex-direction: column; }
.post-media { display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.125rem; }
.post-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.post:hover .post-media img { transform: scale(1.03); }
.post h3 { font-size: var(--text-xl); letter-spacing: -0.02em; margin-bottom: .625rem; }
.post h3 a { color: var(--bone); text-decoration: none; }
.post h3 a:hover { color: var(--gold-hi); }
.post .dek { font-size: var(--text-sm); }
.post .byline { margin-top: auto; padding-top: 1rem; }

/* ---- Stat sources ---- */
.stat-src { margin-top: .875rem; font-size: var(--text-xs); }
.stat-src a { color: var(--muted-2); text-decoration: underline; text-underline-offset: 3px; }
.stat-src a:hover { color: var(--gold-hi); }

/* ---- Topic cards ---- */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.topics a {
  display: flex; flex-direction: column; gap: .625rem; height: 100%; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.topics a:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.topics h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; color: var(--bone); }
.topics p { color: var(--muted); font-size: var(--text-sm); }
.topic-more {
  margin-top: auto; padding-top: .5rem; color: var(--gold);
  font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}

/* ---- Wide numbered steps ---- */
.steps--wide { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 3rem; }

/* ================= Article pages ================= */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 60; background: transparent; pointer-events: none; }
.progress span {
  display: block; height: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: 0 50%;
}

.breadcrumb { font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; }

.article-hero { padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.article-hero .shell { max-width: 54rem; }
.article-hero h1 {
  font-size: clamp(2.125rem, 4.6vw, 3.5rem); letter-spacing: -0.03em; line-height: 1.02;
  margin-block: 1.25rem .875rem; color: var(--bone);
}
.article-standfirst { font-size: var(--text-lg); color: var(--muted); max-width: 58ch; }
.article-meta {
  margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: var(--text-sm); color: var(--muted-2);
}
.article-meta strong { color: var(--bone); font-weight: 500; }
.lede-figure { margin: clamp(2rem, 4vw, 3rem) 0 0; }
.lede-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--line); display: block; }
.lede-figure figcaption { margin-top: .75rem; font-size: var(--text-xs); color: var(--muted-2); max-width: 62ch; }

.article-body { padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(3rem, 6vw, 5rem); }
.article-body .shell { max-width: 54rem; }
.article-body h2 {
  font-size: var(--text-2xl); letter-spacing: -0.025em;
  margin-top: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem;
}
.article-body h3 {
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg);
  margin-top: 2rem; margin-bottom: .5rem; color: var(--bone);
}
.article-body p, .article-body li { color: var(--bone); font-size: 1.0625rem; line-height: 1.75; }
.article-body p { margin-bottom: 1.25rem; max-width: 68ch; }
.article-body > .shell > ul, .article-body > .shell > ol { margin: 0 0 1.5rem 1.25rem; display: grid; gap: .625rem; max-width: 66ch; }
.article-body > .shell > ul li { list-style: disc; }
.article-body > .shell > ol li { list-style: decimal; }
.article-body li::marker { color: var(--gold); }
.article-body a:not(.btn):not(.text-link) {
  color: var(--bone); text-decoration: underline; text-decoration-color: var(--gold);
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.article-body a:not(.btn):not(.text-link):hover { color: var(--gold-hi); }

.pullquote {
  margin: clamp(2rem, 4vw, 2.75rem) 0; padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.pullquote p {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  line-height: 1.3; letter-spacing: -0.02em; color: var(--bone); margin: 0;
}

.callout {
  margin: clamp(2rem, 4vw, 2.75rem) 0; padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  border-left: 3px solid var(--gold);
}
.callout h3 { margin-top: 0; font-size: var(--text-base); letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.callout ul { display: grid; gap: .5rem; margin: .75rem 0 0 1.25rem; }
.callout li { list-style: disc; font-size: var(--text-sm); color: var(--muted); }
.callout--alert { border-left-color: #ff9b8a; }
.callout--alert h3 { color: #ffb4a6; }

.keytable { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: var(--text-sm); }
.keytable caption { text-align: left; color: var(--muted-2); font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; padding-bottom: .75rem; }
.keytable th, .keytable td { text-align: left; padding: .875rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.keytable thead th { color: var(--gold); font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; border-bottom-color: var(--line-strong); }
.keytable td { color: var(--muted); }
.keytable th[scope="row"] { color: var(--bone); font-weight: 700; white-space: nowrap; }

.sources { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.75rem; border-top: 1px solid var(--line-strong); }
.sources h2 { font-size: var(--text-lg) !important; margin-top: 0 !important; font-family: var(--font-body); }
.sources ol { margin: 1rem 0 0 1.25rem; display: grid; gap: .75rem; }
.sources li { list-style: decimal; font-size: var(--text-sm); color: var(--muted); }
.sources a { color: var(--muted); }

.review-note { margin-top: 1.5rem; font-size: var(--text-sm); color: var(--muted-2); max-width: 68ch; }

.related { border-top: 1px solid var(--line); }
.related .posts { grid-template-columns: repeat(3, 1fr); }

/* ---------------- B.Y.L.T. framework ---------------- */
.section-head--center { text-align: center; max-width: 62rem; margin-left: auto; margin-right: auto; }
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

.framework { position: relative; }
.pillars { display: grid; gap: 0; margin-top: 3.5rem; border-top: 1px solid var(--line); }
.pillar {
  display: grid; padding: 2.25rem 0; border-bottom: 1px solid var(--line);
  transition: background-color .25s ease;
}
.pillar:hover { background: rgba(200, 162, 74, .035); }
.pillar-body {
  display: grid; grid-template-columns: minmax(0, 1fr) 17rem;
  grid-template-rows: auto auto auto; column-gap: 3rem; align-items: start;
}
.pillar-body h3 { grid-column: 1; grid-row: 1; font-size: var(--text-xl); margin: 0 0 .5rem; }
.pillar-body h3::before { content: ""; display: block; width: 2rem; height: 2px; background: var(--gold); margin-bottom: 1rem; }
.pillar-dek { grid-column: 1; grid-row: 2; }
.pillar-body > .text-link { grid-column: 1; grid-row: 3; margin-top: 1.25rem; justify-self: start; }
.pillar-tags { grid-column: 2; grid-row: 1 / span 3; }
.pillar-word { color: var(--bone); }
.pillar-dek { color: var(--muted); font-size: var(--text-base); margin: 0; max-width: 62ch; }
.pillar-tags { display: flex; flex-wrap: wrap; align-content: start; gap: .5rem; margin: .4rem 0 0; padding: 0; }
.pillar-tags li {
  list-style: none; font-size: .75rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem;
}

/* ---------------- Build from here pathway ---------------- */
.pathway { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; padding: 0; }
.path-step {
  list-style: none; background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; padding: 2rem 1.75rem; display: flex; flex-direction: column;
}
.path-n {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
  letter-spacing: .14em; color: var(--gold); margin: 0 0 1rem;
}
.path-step h3 { font-size: var(--text-xl); margin: 0 0 .75rem; color: var(--bone); }
.path-dek { color: var(--muted); font-size: var(--text-sm); margin: 0; }
.path-list { margin: 1.25rem 0 1.5rem; padding: 0; display: grid; gap: .7rem; }
.path-list li {
  list-style: none; position: relative; padding-left: 1.4rem;
  color: var(--muted); font-size: var(--text-sm); line-height: 1.55;
}
.path-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .45rem; height: .45rem; border: 1px solid var(--gold); border-radius: 50%;
}
.path-status {
  margin: auto 0 0; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2);
}
.path-status--live { color: var(--gold); }
.path-status--live a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- Programs grid ---------------- */
.topics--four { grid-template-columns: repeat(4, 1fr); }
.topic-kicker {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .6rem;
}
.topics--four h3 { font-size: var(--text-base); }
.mega-list b { color: var(--gold); font-weight: 800; display: inline-block; width: 1.1rem; }

.masthead-h2 {
  font-size: var(--text-2xl); color: var(--bone); margin: 1.75rem 0 .9rem;
  letter-spacing: -.01em;
}
.masthead-copy .masthead-sub + .masthead-sub { margin-top: .9rem; }

/* ---------------- Assessment page ---------------- */
.callout--warn { border-left-color: var(--gold); }
.callout h2 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}
.keytable--label tbody td:first-child { color: var(--bone); font-weight: 700; }
.fieldline { color: var(--bone); }
.ruleline {
  display: inline-block;
  min-width: 14rem;
  border-bottom: 1px solid var(--line-strong);
  vertical-align: baseline;
}

.path-status--live { color: var(--gold); }
.path-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: .2rem;
  text-decoration: none;
}
.path-link:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }

.src-note {
  font-size: var(--text-sm);
  color: var(--muted-2);
  max-width: 68ch;
  border-left: 2px solid var(--line-strong);
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.src-note a { color: var(--muted); }
.src-note a:hover { color: var(--gold-hi); }
.sources-list { margin: 1rem 0 0 1.25rem; display: grid; gap: .75rem; }
.sources-list li { list-style: decimal; font-size: var(--text-sm); color: var(--muted); }
.sources-list a { color: var(--muted); }
.sources-list a:hover { color: var(--gold-hi); }

a.ref {
  display: inline-block;
  font-size: .62em;
  font-weight: 700;
  vertical-align: super;
  line-height: 1;
  color: var(--gold);
  text-decoration: none;
  padding: 0 .12em;
}
a.ref:hover { color: var(--gold-hi); text-decoration: underline; }

/* ---------------- Featured story ---------------- */
.section--featured { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.feature-media { display: block; overflow: hidden; border-radius: 2px; min-height: 22rem; }
.feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-media:hover img { transform: scale(1.03); }
.feature-body > * { margin: 0; }
.feature-body h3 {
  font-size: var(--text-2xl);
  line-height: 1.06;
  margin: .85rem 0 .9rem;
}
.feature-body h3 a { color: var(--bone); text-decoration: none; }
.feature-body h3 a:hover { color: var(--gold-hi); }
.feature-body .dek { color: var(--muted); font-size: var(--text-base); }
.tag--gold {
  color: var(--gold);
  border-color: var(--gold);
}
.feature-points {
  display: grid;
  gap: .5rem;
  margin: 1.25rem 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.feature-points li {
  list-style: none;
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--muted);
}
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .5rem;
  height: 1px;
  background: var(--gold);
}
.feature-cta { margin-top: 1.25rem; }

.soon--live { color: var(--gold); border-color: var(--gold); }

/* Submitting state for signup buttons */
.btn[aria-busy="true"],
.btn:disabled {
  opacity: .6;
  cursor: progress;
  pointer-events: none;
}

/* Deliverability note under signup forms */
.form-note {
  margin: .85rem 0 0;
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--muted-2);
}
.form-note strong { color: var(--muted); font-weight: 500; }
.form-note--sm { font-size: .75rem; margin-top: .6rem; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-actions { margin-left: auto; }
  .header-counter { display: none; }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .cards > :last-child { grid-column: span 2; }
  .code-inner, .founder-inner, .waitlist-inner, .included-grid { grid-template-columns: 1fr; }
  .founder-media { max-width: 26rem; }
  .method-media { grid-template-columns: 1fr 1fr; }
  .capture, .offer { position: static; }
  .footer-brandrow { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .incl-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
  .hero-media img { aspect-ratio: 4/3; object-position: 50% 15%; }
  .hero-media::after { background: linear-gradient(180deg, rgba(11,11,11,.5), transparent 45%); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .timeline { padding-left: 1.5rem; }
}

@media (max-width: 640px) {
  .brand-word { font-size: 1rem; }
  .trust-press { letter-spacing: .08em; line-height: 1.9; }
  .header-actions .btn--sm { display: none; }
}

@media (max-width: 560px) {
  .cards, .reviews, .stats, .incl-list { grid-template-columns: 1fr; }
  .cards > :last-child { grid-column: auto; }
  .cta-row .btn { width: 100%; }
  .hero-stats { gap: 1.25rem 1.75rem; }
  .footer-signup { min-width: 0; }
  .footer-signup-row { flex-direction: column; }
  .press ul { gap: .5rem 1.5rem; }
  .method-media { grid-template-columns: 1fr; }
}


.masthead-list { margin-top: 2rem; border-top: 1px solid var(--line); display: grid; }
.masthead-list li { border-bottom: 1px solid var(--line); }
.masthead-list a {
  display: grid; gap: .25rem; padding: .875rem 0; text-decoration: none;
  color: var(--bone); font-size: var(--text-sm); font-weight: 500;
}
.masthead-list a span {
  font-size: var(--text-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
}
.masthead-list a:hover { color: var(--gold-hi); }
.masthead-list a:hover span { color: var(--gold); }
.masthead-copy > .text-link { margin-top: 1.25rem; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap .keytable { min-width: 30rem; }

/* ---- Editorial responsive ---- */
@media (max-width: 1080px) {
  .masthead .shell { grid-template-columns: 1fr; }
  .masthead-copy { position: static; }
  .posts, .related .posts { grid-template-columns: repeat(2, 1fr); }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .steps--wide { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .article-body h2 { margin-top: 2.25rem; }
  .keytable { font-size: var(--text-xs); }
  .keytable th, .keytable td { padding: .75rem .625rem; }
}
@media (max-width: 640px) {
  .posts, .related .posts, .topics { grid-template-columns: 1fr; }
  .masthead h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .article-body p, .article-body li { font-size: 1rem; }
  .pullquote { padding-left: 1rem; }
}

@media (max-width: 1024px) {
  .pillar-body { grid-template-columns: 1fr; }
  .pillar-body h3, .pillar-dek, .pillar-body > .text-link, .pillar-tags { grid-column: 1; grid-row: auto; }
  .pillar-tags { margin: 1.1rem 0 0; }
  .pathway { grid-template-columns: 1fr; }
  .topics--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pillar { padding: 1.75rem 0; }
  .pillar-body { grid-template-columns: 1fr; }
  .pillar-body h3, .pillar-dek, .pillar-body > .text-link, .pillar-tags { grid-column: 1; grid-row: auto; }
  .pillar-tags { margin: 1.1rem 0 0; }
  .pillars { margin-top: 2.25rem; }
  .pathway { margin-top: 2.25rem; }
  .topics--four { grid-template-columns: 1fr; }
  .section-head--center { text-align: left; }
}

@media (max-width: 720px) {
  .masthead-h2 { font-size: var(--text-xl); margin-top: 1.4rem; }
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-body h3 { font-size: var(--text-xl); }
}

@media (max-width: 900px) {
  .feature-media { min-height: 14rem; }
}
