/* ==========================================================================
   ACL23 — Design System v1 (redesign mock)
   Dark, restrained, editorial. One accent. Hairlines over cards.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Surface ramp — near-black neutrals, no pure black, no blue-tinted glow */
  --bg:            #0a0b0d;
  --bg-sunken:     #08090a;
  --surface:       #101114;
  --surface-2:     #16181c;
  --surface-3:     #1c1f24;

  /* Hairlines do the work that borders + shadows used to do */
  --line:          rgba(255,255,255,.07);
  --line-strong:   rgba(255,255,255,.12);
  --line-accent:   rgba(91,140,255,.35);

  /* Text ramp */
  --text:          #f4f5f7;
  --text-2:        #b3b8c2;
  --text-3:        #7c828d;
  --text-4:        #565b64;

  /* Colour is a signal, not decoration */
  --accent:        #5b8cff;
  --accent-hover:  #7ba0ff;
  --accent-quiet:  rgba(91,140,255,.10);
  --live:          #ff4d3d;
  --good:          #35c98b;
  --warn:          #e0a33a;

  /* Type scale — 1.25 ratio, capped. No arbitrary sizes anywhere. */
  --t-display:     clamp(2.75rem, 1.6rem + 3.6vw, 4.5rem);
  --t-h1:          clamp(2rem, 1.4rem + 2vw, 3rem);
  --t-h2:          clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --t-h3:          1.25rem;
  --t-h4:          1.0625rem;
  --t-body:        0.9375rem;
  --t-sm:          0.8125rem;
  --t-xs:          0.75rem;
  --t-eyebrow:     0.6875rem;

  /* Spacing — 4px base, only these values are legal */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* Radius — small and consistent. No 24px pills. */
  --r-sm: 3px; --r-md: 6px; --r-lg: 10px; --r-full: 999px;

  /* Elevation — two levels, both subtle */
  --e1: 0 1px 2px rgba(0,0,0,.4);
  --e2: 0 8px 24px -8px rgba(0,0,0,.65);

  --measure: 62ch;
  --page:    1200px;
  --page-narrow: 860px;

  --ease: cubic-bezier(.32,.72,0,1);
  --dur:  180ms;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--r-sm); }
::selection { background: rgba(91,140,255,.28); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 3. Typography primitives ------------------------------------- */
.display { font-size: var(--t-display); line-height: 1.02; letter-spacing: -.035em; font-weight: 640; }
h1, .h1  { font-size: var(--t-h1); line-height: 1.08; letter-spacing: -.028em; font-weight: 620; }
h2, .h2  { font-size: var(--t-h2); line-height: 1.15; letter-spacing: -.022em; font-weight: 600; }
h3, .h3  { font-size: var(--t-h3); line-height: 1.25; letter-spacing: -.015em; font-weight: 600; }
h4, .h4  { font-size: var(--t-h4); line-height: 1.35; letter-spacing: -.01em;  font-weight: 600; }

.lede    { font-size: 1.0625rem; line-height: 1.6; color: var(--text-2); max-width: var(--measure); }
.body-2  { font-size: var(--t-sm); line-height: 1.6; color: var(--text-2); }
.muted   { color: var(--text-3); }
.numeric { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* The eyebrow replaces the old decorative pill row: it labels a section
   without pretending to be a control. */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--t-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.eyebrow--accent { color: var(--accent); }

/* ---------- 4. Layout ---------------------------------------------------- */
.container { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--s5); }
.container--narrow { max-width: var(--page-narrow); }
.section { padding-block: var(--s9); }
.section--tight { padding-block: var(--s8); }
.section + .section { border-top: 1px solid var(--line); }
.stack > * + * { margin-top: var(--s4); }
.rule { height: 1px; background: var(--line); border: 0; }

.section-head { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s7); }
.section-head .lede { margin-top: var(--s1); }
.section-head--row {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  gap: var(--s5); flex-wrap: wrap;
}

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  height: 40px; padding-inline: var(--s4);
  border-radius: var(--r-md);
  font-size: var(--t-sm); font-weight: 560; letter-spacing: -.005em;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(.5px); }
.btn--primary   { background: var(--accent); color: #05070d; font-weight: 600; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--secondary { background: var(--surface-2); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--secondary:hover { background: var(--surface-3); }
.btn--ghost     { color: var(--text-2); padding-inline: var(--s3); }
.btn--ghost:hover { color: var(--text); background: var(--surface-2); }
.btn--lg { height: 46px; padding-inline: var(--s5); font-size: var(--t-body); }
.btn--sm { height: 32px; padding-inline: var(--s3); font-size: var(--t-xs); }

/* Text link with a deliberate, animated underline instead of a floating pill */
.link {
  color: var(--text-2); font-size: var(--t-sm); font-weight: 500;
  box-shadow: inset 0 -1px 0 var(--line-strong);
  transition: color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.link:hover { color: var(--text); box-shadow: inset 0 -1px 0 var(--accent); }
.link--accent { color: var(--accent); box-shadow: inset 0 -1px 0 var(--line-accent); }

/* ---------- 6. Header / nav --------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,13,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex; align-items: center; gap: var(--s5);
  height: 56px; max-width: var(--page); margin-inline: auto; padding-inline: var(--s5);
}
.brand { display: flex; align-items: center; gap: var(--s2); font-weight: 680; letter-spacing: -.03em; font-size: 0.9375rem; }
.brand__mark { width: 26px; height: 26px; border-radius: 7px; flex: none; }
.brand__mark--lg { width: 76px; height: 76px; border-radius: 18px; }
.nav { display: flex; align-items: center; gap: var(--s1); margin-left: var(--s3); }
.nav__link {
  position: relative; padding: var(--s2) var(--s3); border-radius: var(--r-md);
  font-size: var(--t-sm); font-weight: 500; color: var(--text-3);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: var(--s3); right: var(--s3); bottom: -17px;
  height: 2px; background: var(--accent);
}
.masthead__end { margin-left: auto; display: flex; align-items: center; gap: var(--s2); }
.nav-toggle { display: none; }

/* Mobile nav: a plain list, revealed by a disclosure button. Works without JS. */
.nav-mobile { display: none; border-top: 1px solid var(--line); padding: var(--s2) var(--s5) var(--s4); }
.nav-mobile a {
  display: block; padding: var(--s3) 0; font-size: var(--t-body); color: var(--text-2);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav-mobile[hidden] { display: none; }

/* Secondary nav for data sections — real links, real URLs, scrollable on mobile */
.subnav { border-bottom: 1px solid var(--line); background: var(--bg); }
.subnav__inner {
  display: flex; gap: var(--s1); max-width: var(--page); margin-inline: auto;
  padding-inline: var(--s5); overflow-x: auto; scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__link {
  padding: var(--s3) var(--s3); font-size: var(--t-sm); color: var(--text-3);
  white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.subnav__link:hover { color: var(--text-2); }
.subnav__link[aria-current="page"] { color: var(--text); border-bottom-color: var(--accent); font-weight: 550; }

/* ---------- 6b. Language picker ------------------------------------------ */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: var(--s1);
  height: 32px; padding-inline: var(--s2); border-radius: var(--r-md);
  color: var(--text-3); font-size: 15px; line-height: 1;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.lang__btn:hover, .lang__btn.is-active { color: var(--text); background: var(--surface-2); }
.lang__code { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--accent); }
.lang__menu {
  position: absolute; top: calc(100% + var(--s2)); right: 0; z-index: 60;
  width: 190px; max-height: 340px; overflow-y: auto;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); box-shadow: var(--e2); padding: var(--s1);
}
.lang__menu[hidden] { display: none; }
.lang__item {
  display: flex; align-items: center; gap: var(--s2); width: 100%;
  padding: var(--s2) var(--s3); border-radius: var(--r-sm);
  font-size: var(--t-sm); color: var(--text-2); text-align: left;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang__item:hover { background: var(--surface-3); color: var(--text); }
.lang__item.is-active { color: var(--accent); }

/* Google Translate injects its own widget + top banner; keep both out of the
   layout. The picker above is the only control we expose. */
#google_translate_element, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }

/* ---------- 7. Status ---------------------------------------------------- */
.status { display: inline-flex; align-items: center; gap: var(--s2); font-size: var(--t-xs); color: var(--text-3); font-family: var(--mono); letter-spacing: .04em; }
.status__dot { width: 6px; height: 6px; border-radius: var(--r-full); background: var(--good); flex: none; }
.status--live .status__dot { background: var(--live); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

/* ---------- 8. Hero ------------------------------------------------------ */
/* Centred, symmetrical, and given room to breathe. The photograph is a stage,
   not wallpaper: a radial vignette pulls focus to the middle where the type
   sits, and the bottom fades cleanly into the page so there is no hard seam. */
.hero { position: relative; overflow: hidden; background: var(--bg-sunken); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%;
  opacity: .5; filter: grayscale(.2) contrast(1.06);
  transform: scale(1.03);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 42%, rgba(10,11,13,.35) 0%, rgba(10,11,13,.82) 58%, var(--bg-sunken) 100%),
    linear-gradient(180deg, rgba(10,11,13,.75) 0%, transparent 26%, transparent 60%, var(--bg-sunken) 98%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 940px; margin-inline: auto;
  padding: var(--s10) var(--s5) var(--s9);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__logo { margin-bottom: var(--s5); box-shadow: 0 12px 40px -12px rgba(0,0,0,.9); }
.hero .eyebrow { margin-bottom: var(--s4); }
.hero h1 { max-width: 18ch; text-wrap: balance; }
.hero .lede { margin-top: var(--s5); max-width: 56ch; margin-inline: auto; text-wrap: pretty; }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: var(--s3); margin-top: var(--s7); flex-wrap: wrap; }
.hero__note { margin-top: var(--s5); font-size: var(--t-xs); color: var(--text-4); }

/* A hairline divider that fades at both ends — softens the centred composition
   without adding another box. */
.hero__rule {
  width: min(560px, 70%); height: 1px; margin-top: var(--s8);
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- 9. Stat bar -------------------------------------------------- */
/* Replaces the decorative "authority chips". Same claim, but as evidence. */
.statbar { border-top: 1px solid var(--line); background: var(--bg-sunken); }
.statbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--page); margin-inline: auto; padding-inline: var(--s5);
}
.stat { padding: var(--s5) 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: var(--s5); }

/* In-hero variant: sits over the photograph, centred, no slab of colour */
.statbar--hero { position: relative; z-index: 1; background: transparent; border-top: 1px solid var(--line); }
.statbar--hero .stat { text-align: center; padding-block: var(--s5) var(--s6); }
.statbar--hero .stat + .stat { padding-left: 0; }

/* Centred section heading — for marketing sections that should not read as a
   hard left column of text against a wide empty right side */
.section-head--center { align-items: center; text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.stat__n { font-size: 1.625rem; font-weight: 620; letter-spacing: -.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat__l { margin-top: var(--s1); font-size: var(--t-xs); color: var(--text-3); }

/* ---------- 10. Feature list -------------------------------------------- */
/* Not ten identical cards. A hierarchy: one lead, then a dense hairline list. */
.feature-lead {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s8); align-items: center;
  padding: var(--s7); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.feature-lead__figure {
  aspect-ratio: 4/3; border-radius: var(--r-md); background: var(--surface-2);
  border: 1px solid var(--line); overflow: hidden;
}
.feature-lead__figure img { width: 100%; height: 100%; object-fit: cover; }
/* Button rows inside left-aligned blocks keep their natural alignment */
.feature-lead .hero__actions { justify-content: flex-start; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: var(--s7);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.feature {
  padding: var(--s5); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.feature:hover { background: var(--surface); }
.feature__k { font-family: var(--mono); font-size: var(--t-xs); color: var(--text-4); }
.feature h4 { margin-top: var(--s2); }
.feature p { margin-top: var(--s2); font-size: var(--t-sm); color: var(--text-3); line-height: 1.55; }

/* ---------- 11. Cards ---------------------------------------------------- */
.card {
  display: block; padding: var(--s5);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.card:hover, button.card:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateY(-1px); }
.card__meta { display: flex; align-items: center; gap: var(--s2); font-family: var(--mono); font-size: var(--t-xs); color: var(--text-4); }
.card__title { margin-top: var(--s3); font-size: var(--t-h4); font-weight: 600; letter-spacing: -.012em; }
.card__text { margin-top: var(--s2); font-size: var(--t-sm); color: var(--text-3); }
.card__foot { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: var(--t-sm); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }

/* ---------- 12. Tag (used sparingly, for real state only) ---------------- */
.tag {
  display: inline-flex; align-items: center; gap: var(--s1);
  height: 20px; padding-inline: var(--s2); border-radius: var(--r-sm);
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-3); background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line);
}
.tag--accent { color: var(--accent); background: var(--accent-quiet); box-shadow: inset 0 0 0 1px var(--line-accent); }
.tag--live   { color: var(--live); background: rgba(255,77,61,.10); box-shadow: inset 0 0 0 1px rgba(255,77,61,.3); }
.tag--good   { color: var(--good); background: rgba(53,201,139,.10); box-shadow: inset 0 0 0 1px rgba(53,201,139,.28); }

/* ---------- 13. Data table ---------------------------------------------- */
.table-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.table-scroll { overflow-x: auto; }
.data { font-size: var(--t-sm); font-variant-numeric: tabular-nums; }
.data thead th {
  position: sticky; top: 0; z-index: 1;
  padding: var(--s3) var(--s4); text-align: left;
  font-family: var(--mono); font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-4);
  background: var(--surface-2); border-bottom: 1px solid var(--line); white-space: nowrap;
}
.data tbody td { padding: var(--s3) var(--s4); border-bottom: 1px solid var(--line); color: var(--text-2); }
.data tbody tr:last-child td { border-bottom: 0; }
.data tbody tr { transition: background var(--dur) var(--ease); }
.data tbody tr:hover { background: var(--surface-2); }
.data .col-num { width: 56px; color: var(--text-4); font-family: var(--mono); }
.data .col-name { color: var(--text); font-weight: 550; }
.data .num { text-align: right; }
.data .total { color: var(--text); font-weight: 620; }
.data tr.is-self { background: var(--accent-quiet); }
.data tr.is-self td:first-child { box-shadow: inset 2px 0 0 var(--accent); }

/* Position markers: rank colour is meaning, not decoration */
.pos { display: inline-grid; place-items: center; width: 22px; height: 20px; border-radius: var(--r-sm); font-family: var(--mono); font-size: var(--t-xs); color: var(--text-4); }
.pos--1 { background: rgba(224,163,58,.14); color: #e6b45c; }
.pos--2 { background: rgba(255,255,255,.07); color: #cdd2da; }
.pos--3 { background: rgba(186,120,72,.14); color: #cf9264; }

/* ---------- 14. Filter bar ---------------------------------------------- */
.filters { display: flex; gap: var(--s2); flex-wrap: wrap; align-items: center; }
.select, .input {
  height: 34px; padding-inline: var(--s3); border-radius: var(--r-md);
  background: var(--surface-2); color: var(--text); font-size: var(--t-sm);
  border: 1px solid var(--line); transition: border-color var(--dur) var(--ease);
}
.select:hover, .input:hover { border-color: var(--line-strong); }
.input::placeholder { color: var(--text-4); }
.segmented { display: inline-flex; padding: 2px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); }
.segmented button {
  height: 28px; padding-inline: var(--s3); border-radius: var(--r-sm);
  font-size: var(--t-xs); color: var(--text-3); font-weight: 520;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.segmented button:hover { color: var(--text-2); }
.segmented button[aria-pressed="true"] { background: var(--surface-3); color: var(--text); }

/* ---------- 15. Accordion ------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s4) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  font-size: var(--t-h4); font-weight: 550; letter-spacing: -.012em;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--text-4); font-size: 1.125rem; transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding-bottom: var(--s5); font-size: var(--t-sm); color: var(--text-3); max-width: var(--measure); }

/* ---------- 16. Footer --------------------------------------------------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-sunken); padding-block: var(--s8) var(--s6); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s7); }
.footer h5 { font-family: var(--mono); font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); font-weight: 500; margin-bottom: var(--s3); }
.footer ul { list-style: none; padding: 0; display: grid; gap: var(--s2); }
.footer a { font-size: var(--t-sm); color: var(--text-3); transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--text); }
.footer__base { margin-top: var(--s7); padding-top: var(--s4); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--t-xs); color: var(--text-4); }

/* ---------- 17. Utilities ------------------------------------------------ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: var(--s4); top: -60px; z-index: 100; background: var(--accent); color: #05070d; padding: var(--s2) var(--s4); border-radius: var(--r-md); font-size: var(--t-sm); font-weight: 600; transition: top var(--dur) var(--ease); }
.skip-link:focus { top: var(--s3); }

/* ---------- 18. Responsive ---------------------------------------------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile:not([hidden]) { display: block; }
  .masthead__end .status { display: none; }
  .feature-lead { grid-template-columns: 1fr; gap: var(--s5); padding: var(--s5); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .hero__inner { padding-block: var(--s8) var(--s7); }
  .statbar__inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: var(--s4) 0; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .section { padding-block: var(--s7); }
  .feature-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}
