/* About v2 — refreshed. No italic display face. No mascot section.
   Hero is typographic-only (no video). Adds: numbers, stance, press,
   europe-map where. */

/* ── Shared chrome ─────────────────────── */
.av2-page { background: var(--bg-0); }
.av2-page section[id] { scroll-margin-top: 80px; }

.av2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.av2-eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
}
/* (Previously had `.reveal-section { opacity: 1; transform: none; }` here
   which killed all fade-in animations on About. Removed — IntersectionObserver
   from utils.jsx now drives the same reveal animation as the landing.) */

/* ── HERO — typographic. Direction = density + alignment ───── */
.av2-hero.v2 {
  position: relative;
  padding: 96px 56px 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.av2-hero.v2 .hero-bg, .av2-hero.v2 .hero-glow { pointer-events: none; }
.av2-hero.v2 .hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 60%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 60%, black, transparent 75%);
  opacity: 0.35;
}
.av2-hero.v2 .hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, var(--accent-soft), transparent 70%);
}
.av2-hero-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.av2-hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.av2-hero-tag { color: var(--fg-2); }
.av2-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 8px 0 8px;
  color: var(--fg-0);
  text-wrap: balance;
  font-weight: 600;
}
.av2-hero-h1 .accent {
  color: var(--accent);
}
.av2-hero-sub {
  max-width: 720px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0;
}
.av2-hero-stamps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.av2-hero-stamps > div {
  display: flex; flex-direction: column; gap: 6px;
}
.av2-hero-stamps .k {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.av2-hero-stamps .v {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Direction variants — affect density/alignment only */
.av2-hero.v2[data-dir="editorial"] .av2-hero-h1 { letter-spacing: -0.035em; }
.av2-hero.v2[data-dir="terminal"]  {
  padding: 72px 56px 88px;
  background: var(--bg-0);
}
.av2-hero.v2[data-dir="terminal"] .hero-glow { opacity: 0.3; }
.av2-hero.v2[data-dir="terminal"] .av2-hero-h1 {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.av2-hero.v2[data-dir="cinematic"] {
  padding: 120px 56px 140px;
}
.av2-hero.v2[data-dir="cinematic"] .av2-hero-inner { text-align: center; align-items: center; }
.av2-hero.v2[data-dir="cinematic"] .av2-hero-meta { width: 100%; }
.av2-hero.v2[data-dir="cinematic"] .av2-hero-sub { text-align: center; }
.av2-hero.v2[data-dir="cinematic"] .av2-hero-stamps { width: 100%; }

/* ── BY THE NUMBERS ─────────────────────── */
.av2-numbers {
  padding: 80px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.av2-numbers-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.av2-stat {
  padding: 24px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  /* Per-stat staggered fade — kicks in when the parent section gets
     .reveal-visible from IntersectionObserver. --stagger is set inline. */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger, 0ms),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger, 0ms);
}
.reveal-section.reveal-visible .av2-stat {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .av2-stat { opacity: 1; transform: none; transition: none; }
}
.av2-stat:last-child { border-right: none; }
.av2-stat-v {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg-0);
  display: flex; align-items: baseline; gap: 10px;
}
.av2-stat-v .u {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.av2-stat-l {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 22ch;
}

/* ── LETTER — open letter from founder ───── */
.av2-letter {
  padding: 120px 56px;
  border-bottom: 1px solid var(--line);
}
.av2-letter-inner {
  max-width: 820px;
  margin: 0 auto;
}
.av2-letter-paper {
  position: relative;
  padding: 56px 56px 48px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg-1);
}
[data-theme="dark"] .av2-letter-paper {
  background: linear-gradient(180deg, rgba(17,22,20,0.55), rgba(15,20,19,0.55));
}
.av2-letter-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 18px; border-bottom: 1px dashed var(--line);
}
.av2-letter-greeting {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-0);
  margin: 0 0 28px;
}
.av2-letter-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.78;
  color: var(--fg-1);
}
.av2-letter-body p { margin: 0 0 18px; }
.av2-letter-body p:last-of-type { margin-bottom: 0; }
.av2-letter-body strong { font-weight: 600; color: var(--fg-0); }
.av2-letter-sign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.av2-letter-sign-photo {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--accent-line);
  background: var(--bg-2);
}
.av2-letter-sign-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.5) contrast(1.05);
}
.av2-letter-sign-meta { display: flex; flex-direction: column; gap: 4px; }
.av2-letter-sign-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-0);
  letter-spacing: -0.005em;
}
.av2-letter-sign-role {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--fg-3);
  text-transform: uppercase;
}
.av2-letter-sign-stamp {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--fg-3);
  text-transform: uppercase;
  text-align: right;
  padding: 10px 14px;
  border: 1px solid var(--accent-line);
  border-radius: 4px;
  line-height: 1.7;
}
.av2-letter-sign-stamp > div:first-child {
  color: var(--accent);
  letter-spacing: 0.3em;
  font-size: 9px;
}

/* ── TIMELINE ─────────────────────────────── */
.av2-timeline { padding: 120px 56px; border-bottom: 1px solid var(--line); }
.av2-timeline-inner { max-width: 1100px; margin: 0 auto; }
.av2-timeline-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  margin-bottom: 64px; align-items: end;
}
.av2-timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--fg-0);
}
.av2-timeline-rail { position: relative; display: flex; flex-direction: column; gap: 0; }
.av2-timeline-rail::before {
  content: ""; position: absolute;
  left: 132px; top: 18px; bottom: 18px;
  width: 1px; background: var(--line);
}
.av2-step {
  display: grid; grid-template-columns: 120px 24px 1fr;
  gap: 24px; padding: 28px 0;
  align-items: start;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.av2-step:last-child { border-bottom: none; }
.av2-step-date {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-3);
  padding-top: 6px;
}
.av2-step-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg-0); border: 1px solid var(--accent);
  margin: 6px auto 0;
  position: relative; z-index: 1;
}
.av2-step-dot.is-key {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 14px var(--accent);
}
.av2-step h3 {
  font-family: var(--font-display);
  font-size: 17px; margin: 0 0 8px;
  color: var(--fg-0); letter-spacing: -0.005em;
  line-height: 1.3;
  font-weight: 600;
}
.av2-step p {
  margin: 0;
  font-size: 14px; line-height: 1.65;
  color: var(--fg-1);
}
.av2-step-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 10px;
}

/* ── STANCE — yes/no columns ─────────────── */
.av2-stance { padding: 120px 56px; border-bottom: 1px solid var(--line); background: var(--bg-1); }
.av2-stance-inner { max-width: 1200px; margin: 0 auto; }
.av2-stance-head { text-align: center; margin-bottom: 56px; }
.av2-stance-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--fg-0);
}
.av2-stance-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-0);
}
.av2-stance-col {
  padding: 40px;
  border-right: 1px solid var(--line);
}
.av2-stance-col:last-child { border-right: none; }
.av2-stance-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.av2-stance-col.is-yes .av2-stance-tag { color: var(--accent); }
.av2-stance-col.is-no  .av2-stance-tag { color: var(--fg-2); }
.av2-stance-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.av2-stance-row:last-child { border-bottom: none; padding-bottom: 0; }
.av2-stance-row h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg-0);
  margin: 0 0 6px;
}
.av2-stance-row p {
  font-size: 14px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}
.av2-stance-col.is-no .av2-stance-row h3 { color: var(--fg-1); }

/* ── CREW ─────────────────────────────────── */
.av2-crew { padding: 120px 56px; border-bottom: 1px solid var(--line); }
.av2-crew-inner { max-width: 1280px; margin: 0 auto; }
.av2-crew-head { text-align: center; margin-bottom: 16px; }
.av2-crew-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--fg-0);
  text-wrap: balance;
}
.av2-crew-band {
  display: flex; align-items: center; gap: 16px;
  margin: 48px 0 28px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-3);
}
.av2-crew-band::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.av2-crew-band span.label { color: var(--accent); }

.av2-crew-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.av2-crew-grid.extended {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 770px;
}
.av2-crew-grid.extended .av2-crew-photo {
  aspect-ratio: 5 / 6;
}
.av2-crew-card {
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  transition: transform .2s;
}
.av2-crew-card:hover { transform: translateY(-3px); }
.av2-crew-card:hover .av2-crew-name { color: var(--accent); }
/* Non-clickable cards (no linkedin URL) — no lift, no name-accent shift,
   no hover transition on the photo. Keeps the visual but signals
   inertness. */
.av2-crew-card.no-link { cursor: default; }
.av2-crew-card.no-link:hover { transform: none; }
.av2-crew-card.no-link:hover .av2-crew-name { color: var(--fg-0); }
.av2-crew-card.no-link:hover .av2-crew-photo img { filter: grayscale(1) contrast(1.05); }
.av2-crew-photo {
  position: relative;
  aspect-ratio: 5 / 6;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-2);
}
.av2-crew-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 12%;
  filter: grayscale(1) contrast(1.05);
  transition: filter .3s;
}
.av2-crew-card:hover .av2-crew-photo img {
  filter: grayscale(0.5) contrast(1.05);
}

/* Extended crew: silhouette placeholder w/ initials, dashed accent border */
.av2-crew-photo.extended {
  border-style: dashed;
  border-color: var(--accent-line);
  background:
    repeating-linear-gradient(45deg, var(--bg-2) 0 8px, var(--bg-1) 8px 16px);
}
.av2-crew-photo.extended::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 38%, var(--bg-3) 0 13%, transparent 14%),
    radial-gradient(ellipse at 50% 95%, var(--bg-3) 0 32%, transparent 33%);
  opacity: 0.85;
}
.av2-crew-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  z-index: 2;
  mix-blend-mode: normal;
}
.av2-crew-meta-line {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 6px;
}
.av2-crew-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-0);
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color .2s;
}
.av2-crew-bio {
  font-size: 12px; line-height: 1.55;
  color: var(--fg-2);
}

/* Direction: cinematic = larger founder card */
.av2-crew[data-dir="cinematic"] .av2-crew-grid:not(.extended) {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.av2-crew[data-dir="cinematic"] .av2-crew-card:first-of-type .av2-crew-name {
  font-size: 18px;
}

/* ── WHERE — Europe map ──────────────────── */
.av2-where.v2 { padding: 120px 56px; border-bottom: 1px solid var(--line); background: var(--bg-1); }
.av2-where-inner { max-width: 1280px; margin: 0 auto; }
.av2-where-head { margin-bottom: 56px; max-width: 760px; }
.av2-where-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  color: var(--fg-0);
}
.av2-where-head p {
  font-size: 15px; line-height: 1.65;
  color: var(--fg-1); margin: 0;
}
.av2-where-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.av2-map-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-0);
  aspect-ratio: 10 / 7;
}
.av2-locator { width: 100%; height: 100%; display: block; }
.av2-where-meta {
  display: flex; flex-direction: column; gap: 18px;
}
.av2-where-card {
  position: relative;
  padding: 22px 22px 22px 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-0);
}
.av2-where-card.primary {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px var(--accent-line), 0 12px 36px rgba(0,0,0,0.25);
}
.av2-where-card .dot {
  position: absolute; left: 22px; top: 26px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 14px var(--accent);
}
.av2-where-card .dot.small { width: 7px; height: 7px; box-shadow: none; background: var(--fg-3); }
.av2-where-card .tag {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 6px;
}
.av2-where-card.primary .tag { color: var(--accent); }
.av2-where-card .city {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em; color: var(--fg-0);
  margin-bottom: 4px;
}
.av2-where-card .country {
  font-size: 13px; color: var(--fg-1);
  margin-bottom: 8px;
}
.av2-where-card .coords {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--fg-3);
}

/* ── PRESS / BRAND KIT ───────────────────── */
.av2-press { padding: 120px 56px; border-bottom: 1px solid var(--line); }
.av2-press-inner { max-width: 1100px; margin: 0 auto; }
.av2-press-head { margin-bottom: 40px; max-width: 700px; }
.av2-press-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  color: var(--fg-0);
}
.av2-press-head p {
  font-size: 15px; line-height: 1.65;
  color: var(--fg-1); margin: 0;
}
.av2-press-head a { color: var(--accent); text-decoration: none; }
.av2-press-head a:hover { text-decoration: underline; }
.av2-press-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.av2-press-list li { border-bottom: 1px solid var(--line); }
.av2-press-list a {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.av2-press-list a:hover { background: var(--bg-1); }
.av2-press-list .ext {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 4px;
  text-align: center;
}
.av2-press-list .meta { display: flex; flex-direction: column; gap: 4px; }
.av2-press-list .name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--fg-0); letter-spacing: -0.005em;
}
.av2-press-list .desc {
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
}
.av2-press-list .weight {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-3); letter-spacing: 0.1em;
}
.av2-press-list .dl {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-2); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.av2-press-list a:hover .dl { color: var(--accent); }

/* ── BACKED / HELP wrappers ──────────────── */
.av2-backed { padding: 120px 56px; border-bottom: 1px solid var(--line); }
.av2-backed-inner { max-width: 1280px; margin: 0 auto; }
.av2-help { padding: 120px 56px; }
.av2-help-inner { max-width: 1280px; margin: 0 auto; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .av2-hero.v2, .av2-numbers, .av2-letter, .av2-timeline, .av2-stance,
  .av2-crew, .av2-where.v2, .av2-press, .av2-backed, .av2-help {
    padding-left: 24px !important; padding-right: 24px !important;
  }
  .av2-numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .av2-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .av2-stat:nth-child(2) { border-right: none; }
  .av2-stat:nth-last-child(-n+2) { border-bottom: none; }
  .av2-hero-stamps { grid-template-columns: repeat(2, 1fr); }
  .av2-timeline-head { grid-template-columns: 1fr; gap: 24px; }
  .av2-stance-grid { grid-template-columns: 1fr; }
  .av2-stance-col { border-right: none; border-bottom: 1px solid var(--line); }
  .av2-stance-col:last-child { border-bottom: none; }
  .av2-crew-grid { grid-template-columns: repeat(3, 1fr); }
  .av2-where-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .av2-letter-paper { padding: 32px 24px 28px; }
  .av2-letter-sign { grid-template-columns: auto 1fr; }
  .av2-letter-sign-stamp { grid-column: 1 / -1; text-align: left; }
  .av2-step { grid-template-columns: 80px 16px 1fr; gap: 14px; }
  .av2-timeline-rail::before { left: 88px; }
  .av2-crew-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .av2-crew-grid.extended { grid-template-columns: repeat(2, 1fr); }
  .av2-numbers-inner { grid-template-columns: 1fr; }
  .av2-press-list a { grid-template-columns: 56px 1fr auto; }
  .av2-press-list .dl { display: none; }
}
@media (max-width: 540px) {
  .av2-hero.v2, .av2-numbers, .av2-letter, .av2-timeline, .av2-stance,
  .av2-crew, .av2-where.v2, .av2-press, .av2-backed, .av2-help {
    padding-left: 16px !important; padding-right: 16px !important;
    padding-top: 72px !important; padding-bottom: 72px !important;
  }
  .av2-hero.v2 { padding-top: 48px !important; padding-bottom: 64px !important; }
  .av2-hero-stamps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .av2-hero-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .av2-crew-grid, .av2-crew-grid.extended { grid-template-columns: 1fr; }
}
