/* ==========================================================================
   Upkit — shared stylesheet
   Design tokens + reset + typography + shared components + section rhythm.
   All values sourced from the live-site DOM dumps in _crawl/ (see SPEC.md).
   ========================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.693b77d4.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset (minimal) ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* The header is sticky and 68px tall, so an anchored section would otherwise
   land underneath it. Keep every in-page jump target (e.g. the header's
   "Download" link → the #download CTA band) clear of the header. */
section[id] {
  scroll-margin-top: calc(68px + 1rem);
}

body,
h1, h2, h3, p,
ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

svg {
  display: block;
}

/* ---- Tokens ---- */
:root {
  --teal: #008080;
  --teal-dark: #006d6d;
  --teal-mid: #007070;
  --teal-deep: #005a5a;
  --teal-logo: #1CAEB0;
  --teal-tint: #e0f2f1;
  --teal-wash: #f0f7f7;
  --teal-mist: #f0fafa;
  --bg-section: #f8fafa;
  --ink: #1a1a2e;
  --muted: #6b7280;
  --muted-footer: #9ca3af;
  --border: rgba(0, 0, 0, 0.06);
  --border-hairline: rgba(0, 0, 0, 0.05);
  --divider: #e5e7eb;
  --header-bg: rgba(255, 255, 255, 0.8);
  --radius: 8px;
  --radius-btn: 10px;
  --radius-sm: 6px;
  --max-w: 72rem;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --shadow-download: 0 4px 12px rgba(0, 128, 128, 0.25);
  --shadow-store-btn: 0 4px 16px rgba(255, 255, 255, 0.2);
}

body {
  font-family: var(--font);
  font-synthesis: none;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

/* ---- Focus ---- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

.container--narrow {
  max-width: 48rem;
}

/* ---- Section rhythm ---- */
.section {
  background: #fff;
  padding-block: 6rem;
}

.section--alt {
  background: var(--bg-section);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section__header .section__title:last-child {
  margin-bottom: 0;
}

.section__lead {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-inline: auto;
}

.section__note {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 3rem auto 0;
  text-align: center;
}

/* Inline prose links, matching .legal-content__blocks a and .faq-more__link. */
.section__note a,
.section__lead a,
.page-hero__lead a,
.card__title a,
.card__body a {
  color: var(--teal);
  text-decoration: none;
}

.section__note a:hover,
.section__note a:focus-visible,
.section__lead a:hover,
.section__lead a:focus-visible,
.page-hero__lead a:hover,
.page-hero__lead a:focus-visible,
.card__title a:hover,
.card__title a:focus-visible,
.card__body a:hover,
.card__body a:focus-visible {
  text-decoration: underline;
}

/* ---- Badge pill ---- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--teal-tint);
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-pill svg {
  width: 0.875rem;
  height: 0.875rem;
}

.section__header .badge-pill {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border-hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0.75rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo img {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-header__logo:hover img {
  transform: scale(1.05);
}

.site-header__tagline-group {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header__divider {
  display: block;
  width: 1px;
  height: 1.25rem;
  background: var(--divider);
}

.site-header__tagline {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 400;
  white-space: nowrap;
}

.site-header__spacer {
  flex: 1;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: var(--ink);
}

.site-nav__link.is-active {
  color: var(--teal);
}

.site-nav__pill {
  position: absolute;
  inset: 0;
  background: var(--teal-tint);
  border-radius: var(--radius-sm);
  z-index: 0;
}

.site-nav__link span {
  position: relative;
  z-index: 1;
}

.header-download-btn {
  display: none;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-download-btn:hover {
  background: var(--teal-dark);
  box-shadow: var(--shadow-download);
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-mobile__download {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.header-mobile__download:hover {
  background: var(--teal-dark);
}

.menu-toggle {
  padding: 0.625rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: background-color 0.2s ease;
}

.menu-toggle:hover {
  background: var(--teal-wash);
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu-panel {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 1.25rem;
  top: calc(68px + 0.5rem);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  z-index: 60;
}

.mobile-menu-panel.is-open {
  display: flex;
}

.mobile-menu-panel__link {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-panel__link:hover {
  background: var(--teal-wash);
  color: var(--ink);
}

.mobile-menu-panel__link.is-active {
  background: var(--teal-tint);
  color: var(--teal);
}

@media (min-width: 900px) {
  .site-header__tagline-group {
    display: flex;
  }

  .site-nav {
    display: flex;
  }

  .header-download-btn {
    display: inline-flex;
  }

  .header-mobile {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #fff, var(--teal-mist), var(--teal-tint));
}

.hero__blob {
  position: absolute;
  border-radius: 9999px;
  background: rgba(0, 128, 128, 0.03);
  filter: blur(64px);
}

.hero__blob--1 {
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
}

.hero__blob--2 {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(0, 128, 128, 0.04);
}

.hero__inner {
  position: relative;
  padding-block: 5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 7rem;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    gap: 4rem;
    padding-block: 8rem;
  }
}

.hero__content {
  max-width: 32rem;
}

.hero__title {
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__title span {
  color: var(--teal);
}

.hero__lead {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__art-blob {
  position: absolute;
  border-radius: 9999px;
  z-index: 0;
}

.hero__art-blob--1 {
  top: -2.5rem;
  right: -2.5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(0, 128, 128, 0.04);
}

.hero__art-blob--2 {
  bottom: -2rem;
  left: -2rem;
  width: 11rem;
  height: 11rem;
  background: rgba(0, 128, 128, 0.06);
}

.hero__mockup {
  position: relative;
  width: 280px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .hero__mockup {
    width: 300px;
  }
}

/* ---- Store buttons ---- */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-buttons--center {
  justify-content: center;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.store-btn--google:hover {
  background: var(--teal-wash);
  box-shadow: var(--shadow-store-btn);
}

.store-btn__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: var(--ink);
}

.store-btn__icon-img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
}

.store-btn__eyebrow {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.85;
}

.store-btn__label {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Card grid
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  list-style: none;
}

.card-grid--2,
.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards must fill their grid cell so every card in a row is the same height,
   however long its copy runs. Grid items already stretch; the card inside
   them has to be told to take that full height. */
.card-grid > li {
  display: flex;
}

.card-grid > li > .card {
  flex: 1;
}

.card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 128, 128, 0.2);
}

.card__icon-tile {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.card:hover .card__icon-tile {
  background: var(--teal);
}

.card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--teal);
  transition: color 0.3s ease;
}

.card:hover .card__icon {
  color: #fff;
}

.card__title {
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card__body {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==========================================================================
   How it works — steps
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  text-align: center;
}

.step__connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 1px;
  border-top: 2px dashed rgba(0, 128, 128, 0.15);
}

@media (min-width: 640px) {
  .step__connector {
    display: block;
  }
}

.step__icon-frame {
  width: 5rem;
  height: 5rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__icon-frame svg {
  width: 2rem;
  height: 2rem;
  color: var(--teal);
}

.step__number {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(0, 128, 128, 0.3);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.step__title {
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step__body {
  color: var(--muted);
  max-width: 20rem;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 600;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--teal);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  margin: 0;
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Inline prose links, matching .section__note a and .legal-content__blocks a. */
.faq-item__answer a {
  color: var(--teal);
  text-decoration: none;
}

.faq-item__answer a:hover,
.faq-item__answer a:focus-visible {
  text-decoration: underline;
}

.faq-more {
  margin-top: 2rem;
  text-align: center;
}

.faq-more__link {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.faq-more__link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* ==========================================================================
   Download CTA
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--teal), var(--teal-mid), var(--teal-deep));
}

.cta__blob {
  position: absolute;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(64px);
}

.cta__blob--1 {
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
}

.cta__blob--2 {
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
}

.cta__inner {
  position: relative;
  padding-block: 6rem;
  text-align: center;
}

.cta__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta__lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 28rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-hairline);
}

.site-footer__inner {
  padding-block: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__brand {
    grid-column: span 1;
  }
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-footer__logo:hover img {
  transform: scale(1.05);
}

.site-footer__tagline {
  color: var(--muted-footer);
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer__heading {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--teal);
}

.site-footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

.site-footer__copy {
  color: var(--muted-footer);
  font-size: 0.8125rem;
}

.site-footer__copy a {
  color: var(--muted-footer);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__copy a:hover {
  color: var(--teal);
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-footer);
  font-size: 0.8125rem;
}

.site-footer__credit svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--teal);
  fill: var(--teal);
}

/* ==========================================================================
   404 page
   ========================================================================== */
.not-found {
  padding-block: 8rem;
  text-align: center;
}

.not-found__code {
  color: var(--teal);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.not-found__title {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.not-found__lead {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.not-found__link {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.not-found__link:hover {
  background: var(--teal-dark);
  box-shadow: var(--shadow-download);
}

/* ==========================================================================
   Reveal-on-scroll animation (JS-gated: only hides content when <html> has
   the `js` class, added immediately by site.js; without JS the page is
   fully visible and static).
   ========================================================================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

html.js .reveal--scale {
  transform: translateY(20px) scale(0.92);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Page hero — compact, single-column sub-page hero (title + lead only, no
   store buttons/mockup, no two-column grid). Shared by features/, support/
   and faq/, which previously each invented their own name for this
   (.page-hero__*, .subhero__*, .faq-hero__*). Reuses .hero/.hero__bg from
   the marketing hero above; only the blob position/size and inner content
   differ from the home hero. Values verified identical across
   _crawl/features.html, _crawl/support.html and _crawl/faq.html.
   ========================================================================== */
.hero__blob--page {
  top: 2.5rem;
  right: 0;
  width: 500px;
  height: 500px;
}

.page-hero__inner {
  position: relative;
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .page-hero__inner {
    padding-block: 5rem;
  }
}

.page-hero__title {
  color: var(--ink);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero__title span {
  color: var(--teal);
}

.page-hero__lead {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Features' lead paragraph is longer copy and was shipped wider
   (max-w-2xl/42rem vs support's and faq's max-w-xl/36rem) — a genuine
   per-page content difference, not drift, per _crawl/features.html. */
.page-hero__lead--wide {
  max-width: 42rem;
}
