/* ==========================================================================
   DIRT — Landing page styles
   --------------------------------------------------------------------------
   Brand: work-truck colors. Black, concrete gray, high-vis safety yellow
   accent, profit-green / loss-red for numbers. Heavy industrial condensed
   display type, clean sans body. "The foreman in your pocket."

   TOKENS:
   A brand sub-agent is creating docs/brand/tokens.css in parallel. It did NOT
   exist when this page was built, so the palette is defined inline below as a
   fallback that matches BRANDING_GUIDE.md.

   TODO(brand): when docs/brand/tokens.css ships, either:
     (a) add  @import url("../docs/brand/tokens.css");  at the very top of this
         file (before any rules), then delete the duplicated vars in :root, or
     (b) reconcile the variable names below with the token names it defines.
   ========================================================================== */

@import url("tokens.css"); /* vendored copy of docs/brand/tokens.css (the source of truth).
   Re-copy with:  cp ../docs/brand/tokens.css ./tokens.css  whenever brand tokens change.
   Vendored (not ../docs) so the page is self-contained when deployed with landing/ as web root. */

:root {
  /* --- Local landing-page aliases mapped to the official brand tokens. ---
     Keep these names so the rest of styles.css stays untouched, but the VALUES
     now come from docs/brand/tokens.css so the page can never drift from brand. */
  --color-black: var(--dirt-black);
  --color-ink: var(--dirt-black);
  --color-asphalt: var(--asphalt);
  --color-steel: var(--steel);
  --color-concrete: var(--concrete-gray);
  --color-concrete-light: var(--concrete-light);
  --color-paper: var(--chalk);
  --color-paper-dim: var(--concrete-light);
  --color-white: var(--pure-white);

  /* High-vis safety accent */
  --color-hi-vis: var(--hi-vis);
  --color-hi-vis-deep: var(--safety-orange);

  /* Money */
  --color-profit: var(--profit-green);
  --color-profit-deep: var(--profit-green-on-light);
  --color-loss: var(--loss-red);

  /* --- Semantic --- */
  --bg: var(--color-black);
  --bg-alt: var(--color-ink);
  --surface: var(--color-asphalt);
  --text: var(--color-paper);
  --text-muted: var(--color-concrete);
  --accent: var(--color-hi-vis);
  --border-dark: var(--color-steel);

  /* --- Type --- (--font-display and --font-body come straight from tokens.css;
     alias the one name landing uses that differs from the token name) --- */
  --font-cond: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;

  /* --- Layout --- */
  --maxw: 1160px;
  --maxw-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --gap: clamp(1rem, 3vw, 2.25rem);
  --header-h: 64px;

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ============================== RESET / BASE ============================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.02; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0; }

/* ============================== UTILITIES ============================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

.text-profit { color: var(--color-profit); }
.text-loss   { color: var(--color-loss); }
.text-muted  { color: var(--text-muted); }

.visually-hidden {
  position: absolute !important;
  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: 50%;
  transform: translateX(-50%) translateY(-150%);
  top: 8px;
  z-index: 200;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.1rem 0.45rem;
  border-radius: 5px;
  vertical-align: middle;
}

/* ============================== DRAFT BAR ============================== */
.draft-bar {
  position: relative;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: repeating-linear-gradient(
    45deg,
    var(--color-hi-vis-deep),
    var(--color-hi-vis-deep) 14px,
    #1a1a1a 14px,
    #1a1a1a 28px
  );
  color: #fff;
  text-align: center;
  font-family: var(--font-cond);
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
}
.draft-bar span {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
}
.draft-bar strong { color: var(--accent); }
.draft-bar__close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 0;
  width: 28px; height: 28px;
  border-radius: 6px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.draft-bar[hidden] { display: none; }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-black) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-black) 96%, transparent);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.wordmark { text-decoration: none; }
.wordmark__mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding-right: 0.55rem;
}
/* high-vis "underline" tick — like spray paint on the truck */
.wordmark__mark::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0.28em;
  width: 0.32em; height: 0.32em;
  background: var(--accent);
}

.nav { display: flex; align-items: center; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.7rem);
  list-style: none;
  padding: 0;
}
.nav__menu a {
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-concrete-light);
  transition: color 0.15s ease;
}
.nav__menu a:hover { color: var(--text); }
.nav__cta-item a { color: #000; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  cursor: pointer;
}
.nav__bar {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================== BUTTONS ============================== */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.9rem; }

.btn--accent {
  background: linear-gradient(180deg, var(--color-hi-vis), var(--color-hi-vis-deep));
  color: #181400;
  box-shadow: 0 8px 22px rgba(245, 163, 0, 0.28);
}
.btn--accent:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--accent:active { transform: translateY(0); }

.btn--ink {
  background: var(--color-black);
  color: var(--color-paper);
}
.btn--ink:hover { transform: translateY(-2px); }

/* ============================== EYEBROW / TITLES ============================== */
.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}
.eyebrow--accent { color: var(--accent); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 1.0;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.section__title--ink { color: var(--color-black); }

.section__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  color: var(--color-concrete-light);
  max-width: 60ch;
  margin: 0 0 1.5rem;
}
.section__lead--ink { color: #222; }

.section__kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  border-left: 5px solid var(--accent);
  padding-left: 1rem;
  margin-top: 2.5rem;
}

/* ============================== SECTIONS ============================== */
.section {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.section--dark { background: var(--bg-alt); }
.section--accent {
  background: linear-gradient(160deg, var(--color-hi-vis) 0%, var(--color-hi-vis-deep) 100%);
  color: #1a1500;
}
.section--cta {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 212, 0, 0.08), transparent 60%),
    var(--color-ink);
  border-top: 1px solid var(--border-dark);
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(255, 212, 0, 0.10), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(47, 191, 107, 0.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 1.4rem + 7vw, 5.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 1.2rem;
}
.hero__subhead {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.35rem);
  color: var(--color-concrete-light);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.hero__meta { font-size: 0.95rem; margin-top: 1.2rem; }
.hero__visual-caption { font-size: 0.8rem; margin-top: 1rem; text-align: center; }

/* ----- signup form ----- */
.signup { margin: 0; max-width: 520px; }
.signup--center { margin-inline: auto; }
.signup__label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.signup__row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.signup__input {
  flex: 1 1 220px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.signup__input::placeholder { color: var(--color-concrete); }
.signup__input:focus { border-color: var(--accent); background: #232428; outline: none; }
.signup__input.is-invalid { border-color: var(--color-loss); }
.signup--center .signup__row { justify-content: center; }

.signup__hint { font-size: 0.85rem; color: var(--text-muted); margin: 0.7rem 0 0; }
.signup__status {
  margin: 0.7rem 0 0;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 1.2em;
}
.signup__status.is-success { color: var(--color-profit); }
.signup__status.is-error { color: var(--color-loss); }

.section--accent .signup__input {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.35);
  color: #1a1500;
}
.section--accent .signup__input::placeholder { color: rgba(0,0,0,0.5); }

/* ============================== PHONE + PROFIT CARD ============================== */
.hero__visual { display: flex; flex-direction: column; align-items: center; }

.phone {
  position: relative;
  width: min(310px, 82vw);
  background: #000;
  border: 3px solid #2c2c30;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 42%; height: 22px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone__screen {
  background: radial-gradient(120% 90% at 50% 0%, #17181b, #0d0e10);
  border-radius: 30px;
  padding: 2.2rem 1.1rem 1.4rem;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profit-card {
  width: 100%;
  background: linear-gradient(180deg, #1d1f23, #15161a);
  border: 1px solid #303237;
  border-radius: 18px;
  padding: 1.3rem 1.25rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.4);
}
.profit-card--standalone {
  max-width: 360px;
  box-shadow: var(--shadow-card);
}
.profit-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.profit-card__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.profit-card__tag {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
}
.profit-card__tag--good { background: rgba(47, 191, 107, 0.16); color: var(--color-profit); }

.profit-card__job {
  font-size: 0.92rem;
  color: var(--color-concrete-light);
  margin: 0 0 0.2rem;
}
.profit-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0.1rem 0;
}
.profit-card__margin {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-concrete-light);
  margin: 0 0 1.1rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--good { background: var(--color-profit); box-shadow: 0 0 10px rgba(47,191,107,0.7); }

.profit-card__lines {
  margin: 0;
  border-top: 1px solid #2a2c31;
  padding-top: 0.8rem;
}
.profit-card__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.28rem 0;
}
.profit-card__line dt { color: var(--text-muted); margin: 0; }
.profit-card__line dd { margin: 0; font-variant-numeric: tabular-nums; font-weight: 600; }

.profit-card__footnote {
  margin: 0.9rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-concrete);
}
.profit-card--standalone .profit-card__footnote { text-align: left; }

/* ============================== PROBLEM / LEAKS ============================== */
.leaks {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.leak {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--color-loss);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.leak__amount {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.leak p { margin: 0; color: var(--color-concrete-light); font-size: 0.98rem; }

/* ============================== STEPS ============================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem 1.5rem;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #000;
  background: var(--accent);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.step__title {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.step p { margin: 0; color: var(--color-concrete-light); }

/* ============================== CARD FEATURE ============================== */
.card-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.card-feature__visual { display: flex; justify-content: center; }

/* ============================== TRADES ============================== */
.trades {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem;
}
.trades li {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.trades li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  flex: none;
}

/* ============================== FAQ ============================== */
.faq { margin-top: 2rem; display: grid; gap: 0.8rem; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 0 1.3rem;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  padding: 1.15rem 2rem 1.15rem 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 0;
  padding: 0 0 1.2rem;
  color: var(--color-concrete-light);
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
.site-footer__brand .wordmark__mark { font-size: 1.6rem; }
.site-footer__brand p { margin: 0.5rem 0 0; font-size: 0.9rem; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.site-footer__nav a {
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  color: var(--color-concrete-light);
}
.site-footer__nav a:hover { color: var(--text); }
.site-footer__nav a[aria-disabled="true"] { color: var(--color-concrete); cursor: not-allowed; }
.site-footer__legal { font-size: 0.85rem; color: var(--text-muted); }
.site-footer__legal a { color: var(--color-concrete-light); }
.site-footer__legal p { margin: 0 0 0.4rem; }

/* ============================== RESPONSIVE ============================== */

/* Mobile nav: collapse menu under header */
@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: calc(var(--header-h) + 1px) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-ink);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.5rem clamp(1.1rem, 4vw, 2.5rem) 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { border-bottom: 1px solid var(--border-dark); }
  .nav__menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .nav__cta-item { border-bottom: 0 !important; padding-top: 1rem; }
  .nav__cta-item a { display: block; text-align: center; padding: 0.9rem; }
}

/* Two-column hero + denser grids on larger screens */
@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .leaks { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .card-feature { grid-template-columns: 1.1fr 0.9fr; }
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    align-items: start;
  }
  .hero__visual-caption { text-align: center; }
}

@media (min-width: 1024px) {
  .card-feature__visual { justify-content: flex-end; }
}

/* Honor users who want less motion / high contrast already covered above */
