:root {
  --bg: #f4f5f7;
  --bg-2: #fbfbfd;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-ink: rgba(255, 255, 255, 0.96);
  --ink: #1d1d1f;
  --ink-2: #30343a;
  --muted: #636974;
  --teal: #0e7c74;
  --teal-deep: #0b5e59;
  --blue: #0071e3;
  --blue-soft: rgba(0, 113, 227, 0.12);
  --gold: #d39a32;
  --coral: #d96a53;
  --plum: #7b5268;
  --sage: #8ea58f;
  --line: rgba(29, 29, 31, 0.1);
  --line-strong: rgba(29, 29, 31, 0.16);
  --shadow: 0 28px 72px rgba(18, 27, 36, 0.08);
  --shadow-soft: 0 16px 42px rgba(18, 27, 36, 0.05);
  --shadow-lift: 0 36px 88px rgba(18, 27, 36, 0.1);
  --radius: 28px;
  --max: 1240px;
  --reading-max: 760px;
  --heading-font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --body-font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(14, 124, 116, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(211, 154, 50, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 39px,
      rgba(29, 29, 31, 0.018) 40px
    );
  pointer-events: none;
  opacity: 0.18;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  z-index: 1000;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  transition: color 0.18s ease, text-decoration-thickness 0.18s ease, box-shadow 0.18s ease;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid rgba(228, 161, 27, 0.95);
  outline-offset: 4px;
  border-radius: 10px;
  text-decoration-thickness: 2px;
}

.site-nav__links a:focus-visible,
.footer a:focus-visible,
.page-card a:focus-visible,
.hero__copy a:focus-visible,
.panel a:focus-visible,
.story a:focus-visible,
.cards a:focus-visible {
  box-shadow: 0 0 0 4px rgba(228, 161, 27, 0.2);
}

img {
  display: block;
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(14, 124, 116, 0.14);
  box-shadow: var(--shadow);
}

.site-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 24px 0 96px;
  position: relative;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-top: 12px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 14px 40px rgba(18, 27, 36, 0.06);
  position: sticky;
  top: 10px;
  z-index: 20;
}

.site-nav::after {
  content: "";
  position: absolute;
  inset: auto 18px -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 124, 116, 0.2), transparent);
}

.site-nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 420px;
}

.site-nav__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 650;
}

.site-nav__title {
  font-size: 15px;
  font-weight: 650;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav__links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid transparent;
  font-weight: 600;
}

.site-nav__links a:hover {
  background: rgba(14, 124, 116, 0.08);
  color: var(--teal-deep);
  border-color: rgba(14, 124, 116, 0.12);
}

.page-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 12px 28px rgba(18, 27, 36, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.page-context a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.page-context__divider {
  color: rgba(18, 32, 39, 0.32);
}

.page-context [aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 124, 116, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
  padding: 72px 0 52px;
  position: relative;
}

.hero__copy,
.panel,
.story,
.page-hero,
.page-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(160%);
}

.hero__copy {
  padding: 12px 0 8px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__copy::after {
  display: none;
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 124, 116, 0.3), rgba(0, 113, 227, 0.26), transparent 78%);
}

.hero__eyebrow,
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 124, 116, 0.08);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 650;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-family: var(--heading-font);
  text-wrap: balance;
  max-width: 12ch;
}

.hero p,
.page-hero p,
.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: var(--reading-max);
  line-height: 1.72;
}

.hero p + p,
.page-hero p + p {
  margin-top: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(120deg, var(--teal), #0f8e84);
  color: #fff;
  box-shadow: 0 16px 32px rgba(14, 124, 116, 0.18);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border-color: rgba(29, 29, 31, 0.08);
  box-shadow: 0 10px 24px rgba(18, 27, 36, 0.04);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__stat {
  flex: 1 1 220px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 29, 31, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(18, 27, 36, 0.03);
}

.hero__stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.hero__stat strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.panel {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(14, 124, 116, 0.08), transparent 42%);
  position: relative;
}

.panel img {
  box-shadow: var(--shadow-lift);
  border-radius: 24px;
}

.hero > .panel {
  margin-top: 10px;
}

.hero > .panel::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% 22%;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 20, 24, 0.12), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-curation,
.signal-strip,
.timeline-grid {
  display: grid;
  gap: 18px;
}

.hero-curation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.signal-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.signal-strip--triad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.curation-card,
.signal-card,
.timeline-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.curation-card {
  position: relative;
  overflow: hidden;
}

.curation-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 252, 251, 0.82)),
    radial-gradient(circle at top right, rgba(14, 124, 116, 0.08), transparent 48%);
}

.curation-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 252, 0.84)),
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 48%);
}

.curation-card::before,
.signal-card::before,
.timeline-card::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  margin-bottom: 18px;
}

.signal-card strong,
.curation-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-family: var(--heading-font);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.signal-card p,
.curation-card p,
.timeline-card p {
  color: var(--muted);
}

.signal-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(14, 124, 116, 0.1), rgba(255, 255, 255, 0.9));
}

.signal-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(211, 154, 50, 0.1), rgba(255, 255, 255, 0.9));
}

.signal-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.9));
}

.signal-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(142, 165, 143, 0.1), rgba(255, 255, 255, 0.9));
}

.timeline-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 18px;
}

.timeline-card .eyebrow-inline {
  display: inline-flex;
  margin-bottom: 10px;
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  font-family: var(--heading-font);
}

.timeline-card--featured {
  background: linear-gradient(160deg, rgba(14, 124, 116, 0.12), rgba(255, 255, 255, 0.94));
  border-color: rgba(14, 124, 116, 0.14);
  box-shadow: 0 24px 54px rgba(14, 124, 116, 0.1);
}

.signal-card {
  min-height: 168px;
}

.signal-card strong,
.timeline-card h3 {
  color: var(--ink-2);
}

.card--accent,
.page-card--accent {
  background:
    linear-gradient(160deg, rgba(14, 124, 116, 0.08), transparent 52%),
    var(--surface-strong);
  border-color: rgba(14, 124, 116, 0.12);
  box-shadow: 0 20px 48px rgba(14, 124, 116, 0.08);
}

.card--warm,
.page-card--warm {
  background:
    linear-gradient(160deg, rgba(211, 154, 50, 0.08), transparent 58%),
    var(--surface-strong);
  border-color: rgba(211, 154, 50, 0.14);
  box-shadow: 0 20px 48px rgba(211, 154, 50, 0.08);
}

.section {
  margin-top: 56px;
  position: relative;
}

.section--feature-ledger {
  padding: 18px 0 8px;
}

.section--fit-split {
  padding: 8px 0 4px;
}

.section--showcase-night {
  margin-top: 72px;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(14, 124, 116, 0.18), transparent 26%),
    linear-gradient(180deg, #13171d, #0f1318);
  box-shadow: 0 32px 80px rgba(12, 16, 24, 0.16);
}

.section--showcase-night .section__eyebrow,
.section--showcase-night .section__header,
.section--showcase-night h2,
.section--showcase-night .lede {
  color: rgba(255, 255, 255, 0.95);
}

.section--showcase-night .section__header::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(0, 113, 227, 0.4));
}

.section--showcase-night .panel {
  background:
    linear-gradient(180deg, rgba(22, 29, 38, 0.92), rgba(17, 23, 31, 0.84)),
    radial-gradient(circle at top right, rgba(14, 124, 116, 0.12), transparent 46%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.section--showcase-night .panel img {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.section--next-shelf {
  margin-top: 72px;
}

.section--next-shelf .cards--routes {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.section--next-shelf .card {
  min-height: 220px;
}

.section--next-shelf .cards--routes > .card:nth-child(1),
.section--next-shelf .cards--routes > .card:nth-child(2) {
  grid-column: span 2;
  min-height: 240px;
}

.section--next-shelf .cards--routes > .card:nth-child(3),
.section--next-shelf .cards--routes > .card:nth-child(4),
.section--next-shelf .cards--routes > .card:nth-child(5) {
  grid-column: span 1;
}

.section--next-shelf .cards--routes > .card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 252, 251, 0.82)),
    radial-gradient(circle at top right, rgba(14, 124, 116, 0.1), transparent 46%);
}

.section--next-shelf .cards--routes > .card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.84)),
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 46%);
}

.section--next-shelf .cards--routes > .card:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 244, 0.8));
  border-color: rgba(29, 29, 31, 0.05);
  box-shadow: 0 14px 34px rgba(18, 27, 36, 0.04);
}

.section--story .page-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 246, 241, 0.86)),
    radial-gradient(circle at top right, rgba(211, 154, 50, 0.08), transparent 44%);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  max-width: var(--reading-max);
}

.section__eyebrow {
  color: var(--teal);
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.05em;
  font-family: var(--heading-font);
  line-height: 1.02;
}

.section__header::after {
  content: "";
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.cards,
.faq-list,
.two-col,
.proof-grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--routes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.faq-item,
.proof-card,
.callout {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 16px 44px rgba(18, 27, 36, 0.05);
}

.section--feature-ledger .card {
  min-height: 240px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 251, 253, 0.76));
}

.section--feature-ledger .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section--feature-ledger .card p {
  line-height: 1.7;
}

.section--fit-split .callout {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 250, 252, 0.76));
}

.card,
.proof-card,
.callout,
.page-card {
  position: relative;
}

.page-card::before,
.card::before,
.callout::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(14, 124, 116, 0.34), rgba(0, 113, 227, 0.22), transparent 72%);
  opacity: 1;
}

.card:hover,
.proof-card:hover,
.callout:hover,
.curation-card:hover,
.signal-card:hover,
.timeline-card:hover {
  transform: translateY(-3px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 24px 56px rgba(18, 27, 36, 0.08);
}

.card::before,
.page-card::before,
.callout::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 124, 116, 0.22), transparent 60%);
}

.card h3,
.faq-item h3,
.proof-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.eyebrow-inline {
  color: var(--coral);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 650;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.callout {
  border-left: 0;
}

.page-hero {
  padding: 40px;
  margin-top: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 46%);
}

.page-card {
  padding: 32px;
  margin-top: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)),
    linear-gradient(160deg, rgba(14, 124, 116, 0.03), transparent 52%);
}

.page-card h2,
.section h2,
.page-card h3,
.step h3 {
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.page-card + .page-card {
  margin-top: 18px;
}

.section-note {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(29, 29, 31, 0.12);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px 22px 22px 80px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-soft);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, var(--teal), #16a394);
  color: #fff;
  font-weight: 800;
}

pre,
code {
  font-family: "SFMono-Regular", "SF Mono", Consolas, monospace;
}

pre {
  margin: 16px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: #10161e;
  color: #edf8f7;
  overflow-x: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 36px rgba(18, 27, 36, 0.04);
}

tbody tr:nth-child(odd) {
  background: rgba(29, 29, 31, 0.018);
}

tbody tr:hover {
  background: rgba(14, 124, 116, 0.05);
}

th,
td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  background: rgba(29, 29, 31, 0.025);
}

.footer {
  margin-top: 64px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  color: var(--muted);
  font-size: 14px;
  max-width: var(--reading-max);
}

@media (max-width: 980px) {
  .hero,
  .cards,
  .two-col,
  .proof-grid,
  .hero-curation,
  .signal-strip,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .section--next-shelf .cards--routes {
    grid-template-columns: 1fr;
  }

  .section--feature-ledger .cards {
    grid-template-columns: 1fr;
  }

  .section--showcase-night {
    padding: 24px;
  }

  .site-nav {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
    position: static;
  }

  .hero__stats {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, var(--max));
    padding-bottom: 56px;
  }

  .hero__copy,
  .panel,
  .page-hero,
  .page-card,
  .card,
  .faq-item,
  .proof-card,
  .callout,
  .step {
    padding: 22px;
  }

  .step {
    padding-left: 22px;
  }

  .step::before {
    position: static;
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .card:hover,
  .proof-card:hover,
  .callout:hover,
  .curation-card:hover,
  .signal-card:hover,
  .timeline-card:hover {
    transform: none;
    box-shadow: 0 16px 36px rgba(18, 32, 39, 0.08);
  }
}
