@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700&family=IBM+Plex+Sans+Condensed:wght@600;700&display=swap");

:root {
  color-scheme: only light;
  --ink: #050505;
  --signal: #ff5a36;
  --neutral: #f1f2ee;
  --display: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --pad: clamp(1rem, 2.4vw, 2.5rem);
  --rule: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--body);
  line-height: 1.35;
}

main {
  scroll-margin-top: 6.75rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink);
  background: var(--signal);
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 0.9rem;
  border: var(--rule) solid var(--ink);
  color: var(--ink);
  background: var(--neutral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateY(-170%);
  transition: transform 140ms linear;
}

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

.preview-note {
  display: none;
}

.frame {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--ink);
  background: var(--neutral);
  border-bottom: var(--rule) solid var(--ink);
}

.site-header .frame {
  display: flex;
  min-height: 6.75rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0 var(--pad);
}

.wordmark {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  flex-direction: column;
}

.wordmark span:last-child {
  color: var(--signal);
}

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

.site-nav a {
  padding: 0.8rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    color 120ms linear,
    background-color 120ms linear;
}

.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--signal);
}

.dateline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem var(--pad);
  border-bottom: var(--rule) solid var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.subnav {
  display: flex;
  gap: 0.35rem;
  padding: 0.55rem var(--pad);
  color: var(--ink);
  background: var(--neutral);
  border-bottom: var(--rule) solid var(--ink);
}

.subnav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.subnav a:focus-visible,
.subnav a[aria-current="page"] {
  color: var(--ink);
  background: var(--signal);
}

.home-hero {
  min-height: calc(100svh - 6.75rem);
  padding: var(--pad);
  border-bottom: var(--rule) solid var(--ink);
}

.home-hero-main {
  display: grid;
  min-height: calc(100svh - 6.75rem - (var(--pad) * 2));
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.28fr);
  grid-template-rows: auto 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-title,
.page-hero h1,
.detail-heading h1,
.section-title h2,
.gateway-link h2,
.split-panel h2,
.scope h2,
.signup-heading h2,
.route-name,
.problem-name,
.brief-copy blockquote,
.footer-top {
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.hero-title {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  margin: 0 0 -0.055em;
  font-size: clamp(5.2rem, 14.4vw, 15rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.hero-title span {
  display: block;
}

.hero-support {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: 0.25rem;
  border-top: var(--rule) solid var(--ink);
}

.hero-support p {
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.3;
}

.route-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rule);
  margin: 0;
  padding: 0;
  background: var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  list-style: none;
}

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

.route-list-three li:nth-child(3) .route-row {
  color: var(--signal);
  background: var(--neutral);
}

.route-row {
  display: flex;
  min-height: 38svh;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  padding: var(--pad);
  color: var(--ink);
  background: var(--signal);
  transition:
    color 140ms linear,
    background-color 140ms linear;
}

.route-row:focus-visible {
  color: var(--ink);
  background: var(--neutral);
}

.route-list li:first-child .route-row {
  color: var(--signal);
  background: var(--neutral);
}

.route-list li:first-child .route-row:focus-visible {
  color: var(--ink);
  background: var(--signal);
}

.route-name {
  min-width: 0;
  font-size: clamp(3.7rem, 8vw, 8.5rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.route-arrow {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.8;
  transition: transform 140ms linear;
}

.gateway-link > span:last-child,
.problem-arrow {
  transition: transform 140ms linear;
}

.route-row:focus-visible .route-arrow,
.gateway-link:focus-visible > span:last-child,
.problem-row:focus-visible .problem-arrow {
  transform: translate(0.18rem, -0.18rem);
}

.meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-hero,
.detail-hero {
  display: grid;
  grid-template-columns: minmax(8rem, 0.18fr) minmax(0, 1fr);
  min-height: 68svh;
  color: var(--signal);
  background: var(--neutral);
  border-bottom: var(--rule) solid var(--ink);
}

.page-rail,
.detail-number {
  display: flex;
  justify-content: space-between;
  padding: var(--pad);
  border-right: var(--rule) solid var(--ink);
  flex-direction: column;
}

.page-rail strong,
.detail-number strong {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.88;
}

.page-hero-copy,
.detail-heading {
  display: flex;
  justify-content: flex-end;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  flex-direction: column;
}

.page-hero h1,
.detail-heading h1 {
  max-width: 100%;
  min-width: 0;
  margin: 0 0 -0.055em;
  font-size: clamp(5rem, 12.5vw, 13rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.page-hero h1 em {
  color: inherit;
  font-style: normal;
}

.detail-heading h1 {
  font-size: clamp(4.3rem, 10vw, 10.5rem);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.25fr) minmax(0, 1fr);
  border-bottom: var(--rule) solid var(--ink);
  background: var(--neutral);
}

.page-intro-label {
  padding: var(--pad);
  border-right: var(--rule) solid var(--ink);
}

.page-intro-copy {
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
}

.page-intro-copy p {
  max-width: 68rem;
  margin: 0;
  font-size: clamp(1.8rem, 4.1vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.page-intro-copy p + p {
  max-width: 38rem;
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--rule) solid var(--ink);
}

.split-panel article {
  display: flex;
  min-height: 32rem;
  justify-content: space-between;
  padding: var(--pad);
  flex-direction: column;
}

.split-panel article:first-child {
  border-right: var(--rule) solid var(--ink);
  background: var(--signal);
}

.split-panel article.dark {
  color: var(--signal);
  background: var(--neutral);
}

.split-panel h2 {
  max-width: 92%;
  margin: 3rem 0 0;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.service-gateway {
  display: grid;
  grid-template-columns: minmax(9rem, 0.18fr) minmax(0, 1fr);
  border-bottom: var(--rule) solid var(--ink);
}

.gateway-label {
  display: flex;
  justify-content: space-between;
  padding: var(--pad);
  border-right: var(--rule) solid var(--ink);
  flex-direction: column;
}

.gateway-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.35fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  transition:
    color 140ms linear,
    background-color 140ms linear;
}

.gateway-link:focus-visible {
  color: var(--signal);
  background: var(--neutral);
}

.gateway-link h2 {
  min-width: 0;
  margin: 0 0 -0.06em;
  font-size: clamp(4.5rem, 11vw, 11rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.gateway-link p {
  max-width: 30rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.gateway-link span:last-child {
  font-size: 2.8rem;
  line-height: 0.8;
}

.section-head,
.brief-section {
  display: grid;
  grid-template-columns: minmax(9rem, 0.18fr) minmax(0, 1fr);
  border-bottom: var(--rule) solid var(--ink);
}

.section-index,
.brief-label {
  display: flex;
  justify-content: space-between;
  padding: var(--pad);
  border-right: var(--rule) solid var(--ink);
  flex-direction: column;
}

.section-title,
.brief-copy {
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
}

.section-title h2,
.brief-copy blockquote {
  max-width: 70rem;
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.brief-copy cite {
  display: block;
  margin-top: 2rem;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 10rem;
  padding: 1.5rem var(--pad);
  border-bottom: var(--rule) solid var(--ink);
  transition:
    color 130ms linear,
    background-color 130ms linear;
}

.problem-row:focus-visible {
  color: var(--signal);
  background: var(--neutral);
}

.problem-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.problem-name {
  min-width: 0;
  font-size: clamp(2.6rem, 5.6vw, 6rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.problem-arrow {
  font-size: 2.2rem;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--rule) solid var(--ink);
}

.detail-intro,
.scope {
  min-height: 28rem;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
}

.detail-intro {
  border-right: var(--rule) solid var(--ink);
  background: var(--neutral);
}

.detail-intro p {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.5rem, 3.1vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.scope {
  color: var(--signal);
  background: var(--neutral);
}

.scope h2 {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--rule) solid var(--ink);
}

.detail-nav a {
  display: flex;
  min-height: 9rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: var(--pad);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
  transition:
    color 130ms linear,
    background-color 130ms linear;
}

.detail-nav a:first-child {
  border-right: var(--rule) solid var(--ink);
}

.detail-nav a:focus-visible {
  color: var(--signal);
  background: var(--neutral);
}

.signup {
  display: grid;
  grid-template-columns: minmax(18rem, 0.45fr) minmax(0, 1fr);
  color: var(--signal);
  background: var(--neutral);
  border-bottom: var(--rule) solid var(--ink);
}

.signup-heading {
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  border-right: var(--rule) solid var(--ink);
}

.signup-heading h2 {
  max-width: 45rem;
  margin: 1rem 0 0;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.signup-form {
  display: flex;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  flex-direction: column;
}

.signup-form label {
  margin-bottom: 0.75rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.input-row input,
.input-row textarea {
  width: 100%;
  min-width: 0;
  padding: 1rem;
  border: var(--rule) solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--neutral);
  outline: 0;
}

.input-row input::placeholder,
.input-row textarea::placeholder {
  color: var(--ink);
  opacity: 0.6;
}

.input-row input:focus,
.input-row textarea:focus {
  box-shadow: inset 0 0 0 3px var(--ink);
}

.input-row button {
  padding: 1rem 1.4rem;
  border: var(--rule) solid var(--ink);
  border-left: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--signal);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.input-row button:focus-visible {
  color: var(--ink);
  background: var(--neutral);
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  font-size: 0.64rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.4em;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.25fr) minmax(0, 1fr);
  border-bottom: var(--rule) solid var(--ink);
  background: var(--neutral);
}

.content-section-dark {
  color: var(--signal);
  background: var(--neutral);
}

.content-label {
  display: flex;
  justify-content: space-between;
  padding: var(--pad);
  border-right: var(--rule) solid currentColor;
  flex-direction: column;
}

.content-copy {
  min-width: 0;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
}

.content-copy h2,
.info-card h3,
.timeline-list h3,
.statement-band p,
.offer-card h2,
.method-card h2 {
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.content-copy h2 {
  max-width: 65rem;
  margin: 0 0 2rem;
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-wrap: balance;
}

.content-copy p {
  max-width: 48rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.content-copy p + p {
  margin-top: 1.5rem;
}

.content-copy .lede {
  max-width: 68rem;
  font-size: clamp(1.5rem, 3vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.home-manifesto .content-copy {
  padding-block: clamp(3.5rem, 7vw, 8rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--rule) solid currentColor;
  border-left: var(--rule) solid currentColor;
}

.info-card {
  min-width: 0;
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: var(--rule) solid currentColor;
  border-bottom: var(--rule) solid currentColor;
}

.info-card h3 {
  max-width: 34rem;
  margin: clamp(4rem, 8vw, 8rem) 0 1.25rem;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  letter-spacing: -0.01em;
  line-height: 0.92;
}

.info-card p {
  max-width: 34rem;
}

.timeline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: var(--rule) solid currentColor;
}

.timeline-list li:last-child {
  border-bottom: var(--rule) solid currentColor;
}

.timeline-marker {
  padding-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-list h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.01em;
  line-height: 0.94;
}

.timeline-list p {
  max-width: 54rem;
}

.statement-band {
  display: grid;
  grid-template-columns: minmax(9rem, 0.2fr) minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  color: var(--ink);
  background: var(--signal);
  border-bottom: var(--rule) solid var(--ink);
}

.statement-band p {
  max-width: 64rem;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 0.92;
}

.statement-band a,
.offer-card a,
.offer-status {
  padding-bottom: 0.2rem;
  border-bottom: var(--rule) solid currentColor;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
  gap: var(--rule);
  border-bottom: var(--rule) solid var(--ink);
}

.offer-card {
  display: flex;
  min-width: 0;
  min-height: 36rem;
  padding: var(--pad);
  background: var(--neutral);
  flex-direction: column;
}

.offer-card-dark {
  color: var(--signal);
  background: var(--neutral);
}

.offer-card-signal {
  color: var(--ink);
  background: var(--signal);
}

.offer-card h2 {
  margin: auto 0 1.5rem;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  letter-spacing: -0.01em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.offer-card p {
  max-width: 31rem;
  margin: 0 0 2rem;
  font-weight: 600;
}

.offer-card a,
.offer-status {
  align-self: flex-start;
  margin-top: auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: var(--rule) solid var(--ink);
}

.method-card {
  min-width: 0;
  min-height: 34rem;
  padding: clamp(2.5rem, 5vw, 6rem) var(--pad);
  background: var(--signal);
}

.method-card + .method-card {
  border-left: var(--rule) solid var(--ink);
}

.method-card-dark {
  color: var(--signal);
  background: var(--neutral);
}

.method-card h2 {
  max-width: 44rem;
  margin: clamp(5rem, 10vw, 10rem) 0 2rem;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  letter-spacing: -0.01em;
  line-height: 0.89;
}

.method-card p {
  max-width: 38rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.plain-list,
.check-list,
.scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li,
.scope-list li {
  padding: 0.8rem 0;
  border-top: var(--rule) solid currentColor;
  font-weight: 700;
}

.plain-list li:last-child,
.check-list li:last-child,
.scope-list li:last-child {
  border-bottom: var(--rule) solid currentColor;
}

.check-list {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.check-list li {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
}

.scope h2 {
  margin-bottom: 2rem;
}

.scope-list {
  max-width: 44rem;
}

.scope-list li {
  font-size: 0.9rem;
}

.site-footer {
  color: var(--ink);
  background: var(--neutral);
}

.site-footer .frame {
  padding: var(--pad);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 6vw, 6rem);
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.94;
}

.footer-top span:last-child {
  max-width: 34rem;
  color: var(--signal);
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: var(--rule) solid var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-note {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-size: 0.58rem;
  font-weight: 700;
  opacity: 0.68;
}

.intro-motion {
  animation: hard-entry 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes hard-entry {
  from {
    opacity: 0;
    transform: translateY(3vh);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: var(--ink);
    background: var(--signal);
  }

  .subnav a:hover {
    color: var(--ink);
    background: var(--signal);
  }

  .route-row:hover {
    color: var(--ink);
    background: var(--neutral);
  }

  .route-list li:first-child .route-row:hover {
    color: var(--ink);
    background: var(--signal);
  }

  .route-row:hover .route-arrow,
  .gateway-link:hover > span:last-child,
  .problem-row:hover .problem-arrow {
    transform: translate(0.18rem, -0.18rem);
  }

  .gateway-link:hover,
  .problem-row:hover,
  .detail-nav a:hover {
    color: var(--signal);
    background: var(--neutral);
  }

  .input-row button:hover {
    color: var(--ink);
    background: var(--neutral);
  }
}

@media (min-width: 981px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .hero-title {
    font-size: clamp(6rem, calc(10.56vw - 2.45rem), 10rem);
  }

  .route-row {
    min-height: clamp(15rem, 32svh, 19rem);
  }

  .route-name {
    font-size: clamp(4.9rem, 5.5vw, 6.5rem);
  }

  .route-arrow {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
  }

  .page-rail strong,
  .detail-number strong {
    font-size: clamp(4.9rem, 5vw, 6rem);
  }

  .page-hero h1 {
    font-size: clamp(7.65rem, 7.5vw, 9rem);
  }

  .detail-heading h1 {
    font-size: clamp(6.125rem, 6.5vw, 8rem);
  }

  .page-intro-copy p {
    font-size: clamp(2.5rem, 2.6vw, 3rem);
  }

  .split-panel h2,
  .section-title h2,
  .brief-copy blockquote,
  .signup-heading h2 {
    font-size: clamp(4.9rem, 5vw, 6rem);
  }

  .gateway-link h2 {
    font-size: clamp(6.75rem, 6.5vw, 8rem);
  }

  .problem-name {
    font-size: clamp(3.45rem, 3.2vw, 4rem);
  }

  .detail-intro p {
    font-size: clamp(1.9rem, 2vw, 2.5rem);
  }

  .scope h2 {
    font-size: clamp(4.3rem, 4vw, 5rem);
  }

  .detail-nav a {
    font-size: clamp(2.33rem, 2.2vw, 3rem);
  }

  .footer-top {
    font-size: clamp(2.45rem, 2.4vw, 3rem);
  }

  .content-copy h2,
  .method-card h2 {
    font-size: clamp(4.6rem, 4.8vw, 6rem);
  }

  .content-copy .lede {
    font-size: clamp(2rem, 2.4vw, 3rem);
  }

  .info-card h3 {
    font-size: clamp(2.8rem, 2.9vw, 3.6rem);
  }

  .statement-band p {
    font-size: clamp(3.2rem, 3.5vw, 4.5rem);
  }

  .offer-card h2 {
    font-size: clamp(4rem, 4.2vw, 5.25rem);
  }
}

@media (max-width: 980px) {
  .home-hero-main {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.38fr);
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .route-list-three {
    grid-template-columns: 1fr;
  }

  .route-row {
    min-height: 32svh;
  }

  .hero-title,
  .route-name,
  .page-hero h1,
  .detail-heading h1,
  .gateway-link h2,
  .split-panel h2,
  .scope h2,
  .signup-heading h2,
  .problem-name {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .route-name {
    white-space: nowrap;
  }

  .gateway-link {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gateway-link p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .page-hero,
  .detail-hero {
    grid-template-columns: 7rem minmax(0, 1fr);
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .hero-title {
    font-size: clamp(6rem, 10vw, 6.25rem);
  }
}

@media (min-width: 701px) and (max-height: 700px) {
  .hero-title {
    font-size: clamp(5rem, 15svh, 6rem);
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 1rem;
    --rule: 2px;
  }

  .site-header .frame {
    min-height: 4.9rem;
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }

  .wordmark {
    min-height: 2.75rem;
    font-size: 1rem;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.65rem 0.44rem;
    font-size: 0.56rem;
  }

  .site-nav a {
    padding-inline: 0.34rem;
  }

  .home-hero {
    min-height: auto;
    padding-block: 1rem 1.25rem;
  }

  .home-hero-main {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: clamp(3.5rem, 16vw, 4.75rem);
  }

  .hero-support {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 20rem);
    justify-self: end;
  }

  .hero-title {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    font-size: clamp(3.3rem, 15vw, 6.2rem);
    line-height: 0.8;
    overflow-wrap: normal;
    word-break: normal;
  }

  .route-list,
  .split-panel,
  .detail-body,
  .detail-nav,
  .signup,
  .offer-grid,
  .method-grid,
  .card-grid,
  .statement-band {
    grid-template-columns: 1fr;
  }

  .route-row {
    position: relative;
    min-height: clamp(11rem, 24svh, 14rem);
    padding-right: 3.75rem;
  }

  .route-name {
    max-width: 100%;
    font-size: clamp(2.3rem, 11.5vw, 4.2rem);
    letter-spacing: -0.01em;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: normal;
  }

  .route-arrow {
    position: absolute;
    right: var(--pad);
    bottom: var(--pad);
    font-size: 2rem;
  }

  .subnav {
    overflow-x: auto;
    white-space: nowrap;
  }

  .subnav a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .dateline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.55rem;
  }

  .page-hero,
  .detail-hero,
  .page-intro,
  .service-gateway,
  .section-head,
  .brief-section,
  .content-section {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .detail-hero {
    min-height: auto;
  }

  .page-rail,
  .detail-number,
  .page-intro-label,
  .gateway-label,
  .section-index,
  .brief-label,
  .content-label {
    min-height: auto;
    border-right: 0;
    border-bottom: var(--rule) solid currentColor;
    flex-direction: row;
  }

  .page-rail strong,
  .detail-number strong {
    font-family: var(--body);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .page-hero-copy,
  .detail-heading {
    min-width: 0;
    min-height: auto;
    padding-block: clamp(3rem, 13vw, 4.5rem);
  }

  .page-hero h1,
  .detail-heading h1,
  .gateway-link h2,
  .split-panel h2,
  .scope h2,
  .signup-heading h2,
  .problem-name,
  .brief-copy blockquote {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 12vw, 5.4rem);
    letter-spacing: -0.025em;
  }

  .detail-heading h1 {
    font-size: clamp(2.7rem, 11vw, 4.8rem);
  }

  .split-panel article {
    min-width: 0;
    min-height: clamp(14rem, 42svh, 18rem);
  }

  .split-panel h2 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .split-panel article:first-child,
  .detail-intro,
  .detail-nav a:first-child,
  .signup-heading {
    border-right: 0;
    border-bottom: var(--rule) solid currentColor;
  }

  .gateway-link {
    grid-template-columns: 1fr auto;
  }

  .gateway-link h2 {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }

  .problem-row {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 8.5rem;
  }

  .problem-name {
    font-size: clamp(2rem, 8.7vw, 3.3rem);
  }

  .detail-intro,
  .scope {
    min-height: auto;
  }

  .detail-nav a {
    min-height: 7rem;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row button {
    border-top: 0;
    border-left: var(--rule) solid var(--ink);
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-top {
    font-size: clamp(1.35rem, 6.8vw, 2rem);
    line-height: 0.86;
  }

  .footer-top span {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .footer-top span:last-child {
    max-width: 100%;
    text-align: left;
  }

  .footer-bottom a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .content-copy h2,
  .method-card h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .brief-copy blockquote {
    font-size: clamp(2.5rem, 10.5vw, 4rem);
    overflow-wrap: anywhere;
  }

  .content-copy .lede {
    font-size: clamp(1.35rem, 6vw, 2.2rem);
  }

  .card-grid {
    border-left: 0;
  }

  .info-card {
    min-height: 20rem;
    border-right: 0;
  }

  .info-card h3 {
    margin-top: 5rem;
  }

  .timeline-list li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .statement-band {
    align-items: start;
  }

  .statement-band p {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .statement-band a {
    justify-self: start;
  }

  .offer-card,
  .method-card {
    min-height: 28rem;
  }

  .offer-card h2,
  .method-card h2 {
    overflow-wrap: normal;
    word-break: normal;
  }

  .method-card + .method-card {
    border-left: 0;
    border-top: var(--rule) solid var(--ink);
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .signup-heading h2 {
    font-size: clamp(2.15rem, 4.4vw, 2.65rem);
  }
}

@media (max-width: 380px) {
  .site-header .frame {
    gap: 0.25rem;
    padding-inline: 0.625rem;
  }

  .wordmark {
    font-size: 0.88rem;
  }

  .site-nav a {
    padding-inline: 0.3rem;
    font-size: 0.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 14.5vw, 4rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .intro-motion {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* v39 layout scale */

:root {
  --header-h: 6rem;
  --rail-w: clamp(12rem, 20vw, 22rem);
  --section-y: clamp(3rem, 5.5vw, 6.5rem);
  --display-home: clamp(5rem, 7.5vw, 9rem);
  --display-page: clamp(4.75rem, 6.7vw, 8rem);
  --display-detail: clamp(4.25rem, 5.8vw, 7rem);
  --display-section: clamp(3rem, 4vw, 4.75rem);
  --display-card: clamp(2.25rem, 2.7vw, 3.25rem);
  --lede: clamp(1.65rem, 2.15vw, 2.55rem);
}

html {
  scroll-padding-top: 1rem;
}

body {
  overflow-x: clip;
}

.site-header {
  position: relative;
  top: auto;
}

.site-header .frame {
  min-height: var(--header-h);
}

.home-hero-main > *,
.page-hero > *,
.detail-hero > *,
.page-intro > *,
.content-section > *,
.service-gateway > *,
.section-head > *,
.brief-section > *,
.split-panel > *,
.detail-body > *,
.signup > *,
.offer-grid > *,
.method-grid > *,
.route-list > *,
.card-grid > *,
.statement-band > * {
  min-width: 0;
}

.hero-title,
.page-hero h1,
.detail-heading h1,
.route-name,
.gateway-link h2,
.split-panel h2,
.section-title h2,
.brief-copy blockquote,
.content-copy h2,
.info-card h3,
.timeline-list h3,
.statement-band p,
.offer-card h2,
.method-card h2,
.scope h2,
.signup-heading h2,
.problem-name {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home-hero {
  min-height: calc(100svh - var(--header-h));
}

.home-hero-main {
  min-height: calc(100svh - var(--header-h) - (var(--pad) * 2));
}

.hero-title {
  font-size: var(--display-home);
  line-height: 0.86;
}

.route-row {
  min-height: clamp(15rem, 30svh, 18rem);
}

.route-name {
  font-size: clamp(3rem, 3.1vw, 4.25rem);
  line-height: 0.9;
}

.page-hero,
.detail-hero {
  grid-template-columns: var(--rail-w) minmax(0, 1fr);
  min-height: clamp(30rem, 62svh, 42rem);
}

.page-hero-copy,
.detail-heading,
.page-intro-copy,
.content-copy,
.section-title,
.brief-copy,
.signup-heading,
.signup-form {
  padding-block: var(--section-y);
}

.page-hero h1 {
  max-width: 76rem;
  font-size: var(--display-page);
  line-height: 0.9;
}

.detail-heading h1 {
  max-width: 72rem;
  font-size: var(--display-detail);
  line-height: 0.91;
}

.page-rail strong,
.detail-number strong {
  font-size: clamp(4rem, 4.6vw, 5.5rem);
}

.page-intro,
.content-section {
  grid-template-columns: var(--rail-w) minmax(0, 1fr);
}

.page-intro-copy p {
  max-width: 72rem;
  font-size: clamp(1.85rem, 2.25vw, 2.7rem);
  line-height: 1.08;
}

.page-intro-copy p + p {
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.5;
}

.content-copy h2,
.method-card h2,
.split-panel h2,
.section-title h2,
.brief-copy blockquote,
.signup-heading h2 {
  font-size: var(--display-section);
  line-height: 0.94;
}

.content-copy .lede {
  max-width: 62rem;
  font-size: var(--lede);
  line-height: 1.13;
}

.content-copy p,
.method-card p,
.info-card p,
.timeline-list p,
.offer-card p,
.detail-intro p {
  line-height: 1.5;
}

.card-grid {
  gap: 0;
}

.info-card {
  min-height: clamp(19rem, 24vw, 24rem);
}

.info-card h3 {
  margin-top: clamp(3rem, 5vw, 5.5rem);
  font-size: var(--display-card);
  line-height: 0.96;
}

.timeline-list li {
  gap: clamp(1rem, 2vw, 2rem);
  padding-block: clamp(1.75rem, 2.5vw, 2.75rem);
}

.timeline-list h3 {
  font-size: clamp(2.15rem, 2.5vw, 3rem);
  line-height: 0.98;
}

.statement-band p {
  font-size: clamp(2.6rem, 3.1vw, 3.75rem);
  line-height: 0.97;
}

.offer-card {
  min-height: clamp(27rem, 34vw, 32rem);
}

.offer-card h2 {
  font-size: clamp(3.2rem, 3.4vw, 4rem);
  line-height: 0.92;
}

.method-card {
  min-height: clamp(25rem, 32vw, 30rem);
}

.method-card h2 {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.detail-intro,
.scope {
  min-height: clamp(23rem, 30vw, 29rem);
}

.detail-intro p {
  font-size: clamp(1.6rem, 1.8vw, 2.15rem);
  line-height: 1.16;
}

.scope h2 {
  font-size: clamp(3rem, 3.3vw, 4rem);
  line-height: 0.95;
}

.problem-name {
  font-size: clamp(2.6rem, 2.85vw, 3.4rem);
  line-height: 0.95;
}

.detail-nav a {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
}

.footer-top {
  font-size: clamp(2.1rem, 2.35vw, 2.8rem);
}

@media (min-width: 701px) and (max-width: 1179px) {
  :root {
    --rail-w: clamp(9rem, 18vw, 12rem);
    --display-page: clamp(4.5rem, 7.5vw, 5.75rem);
    --display-detail: clamp(4rem, 6.7vw, 5.25rem);
  }

  .route-list,
  .route-list-three {
    grid-template-columns: 1fr;
  }

  .route-row {
    min-height: clamp(12rem, 24svh, 15rem);
  }

  .route-name {
    font-size: clamp(3.5rem, 6.5vw, 4.5rem);
    white-space: normal;
  }

  .page-hero,
  .detail-hero {
    grid-template-columns: var(--rail-w) minmax(0, 1fr);
    min-height: clamp(28rem, 58svh, 36rem);
  }

  .page-hero h1 {
    font-size: var(--display-page);
  }

  .detail-heading h1 {
    font-size: var(--display-detail);
  }

  .page-intro,
  .content-section {
    grid-template-columns: var(--rail-w) minmax(0, 1fr);
  }

  .page-intro-copy p {
    font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  }

  .info-card h3 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card:last-child {
    grid-column: 1 / -1;
  }

  .offer-card,
  .method-card {
    min-height: 25rem;
  }

  .signup {
    grid-template-columns: minmax(15rem, 0.4fr) minmax(0, 1fr);
  }

  .signup-heading h2 {
    font-size: clamp(2.7rem, 4.8vw, 4rem);
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: auto;
    --section-y: clamp(2.5rem, 10vw, 4rem);
    --display-home: clamp(3.2rem, 14vw, 4.8rem);
    --display-page: clamp(2.65rem, 11.5vw, 4rem);
    --display-detail: clamp(2.65rem, 10.7vw, 3.8rem);
    --display-section: clamp(2.35rem, 9.5vw, 3.5rem);
    --display-card: clamp(2rem, 8.5vw, 3rem);
    --lede: clamp(1.35rem, 5.6vw, 1.85rem);
  }

  .site-header .frame {
    display: grid;
    min-height: 7.4rem;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    align-content: center;
    padding: 0.65rem var(--pad);
  }

  .wordmark {
    min-height: auto;
    justify-self: start;
    padding: 0;
    font-size: 1rem;
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
  }

  .site-nav a {
    min-height: 2.75rem;
    justify-content: center;
    padding: 0.55rem 0.2rem;
    font-size: clamp(0.56rem, 2.4vw, 0.64rem);
    text-align: center;
  }

  .site-nav a:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .site-nav a:nth-child(n + 4) {
    grid-column: span 3;
  }

  .home-hero,
  .home-hero-main {
    min-height: auto;
  }

  .home-hero-main {
    gap: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-title {
    font-size: var(--display-home);
    line-height: 0.84;
  }

  .route-row {
    min-height: clamp(10rem, 22svh, 12.5rem);
  }

  .route-name {
    font-size: clamp(2.5rem, 10.5vw, 3.6rem);
    white-space: normal;
  }

  .page-hero,
  .detail-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .detail-heading {
    padding-block: clamp(2.75rem, 12vw, 4.25rem);
  }

  .page-hero h1 {
    font-size: var(--display-page);
    line-height: 0.92;
  }

  .detail-heading h1 {
    font-size: var(--display-detail);
    line-height: 0.93;
  }

  .page-intro,
  .content-section {
    grid-template-columns: 1fr;
  }

  .page-intro-copy p {
    font-size: clamp(1.6rem, 6.7vw, 2.05rem);
    line-height: 1.12;
  }

  .page-intro-copy p + p {
    font-size: 1rem;
  }

  .content-copy h2,
  .method-card h2,
  .split-panel h2,
  .section-title h2,
  .brief-copy blockquote,
  .signup-heading h2 {
    font-size: var(--display-section);
    line-height: 0.96;
  }

  .content-copy .lede {
    font-size: var(--lede);
    line-height: 1.18;
  }

  .info-card {
    min-height: 16rem;
  }

  .info-card h3 {
    margin-top: clamp(3rem, 14vw, 4.5rem);
    font-size: var(--display-card);
    line-height: 0.98;
  }

  .timeline-list h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    line-height: 1;
  }

  .statement-band p {
    font-size: clamp(2.05rem, 8.7vw, 3rem);
    line-height: 0.99;
  }

  .offer-card,
  .method-card {
    min-height: 22rem;
  }

  .offer-card h2,
  .method-card h2 {
    font-size: clamp(2.7rem, 11vw, 3.7rem);
    line-height: 0.94;
  }

  .method-card h2 {
    margin-top: clamp(3.5rem, 18vw, 6rem);
  }

  .detail-intro,
  .scope {
    min-height: auto;
  }

  .detail-intro p {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    line-height: 1.2;
  }

  .scope h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 0.97;
  }

  .problem-name {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
    line-height: 1;
  }

  .detail-nav a {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .footer-top {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 0.96;
  }
}

/* v40 integrated section headers and readable labels */

:root {
  --micro: clamp(0.75rem, 0.68vw, 0.86rem);
  --body-copy: clamp(1.05rem, 1vw, 1.2rem);
}

.skip-link,
.site-nav a,
.subnav a,
.dateline,
.meta-label,
.brief-copy cite,
.problem-number,
.signup-form label,
.signup-form button,
.form-note,
.form-status,
.timeline-marker,
.statement-band a,
.offer-status,
.footer-bottom,
.source-note {
  font-size: var(--micro);
  line-height: 1.3;
}

.dateline,
.meta-label,
.subnav a,
.signup-form label,
.signup-form button,
.statement-band a,
.offer-status,
.footer-bottom {
  letter-spacing: 0.065em;
}

.page-intro,
.content-section {
  display: block;
}

.page-intro-label,
.content-label {
  display: flex;
  min-height: clamp(5rem, 7vw, 7rem);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.25rem, 2vw, 2rem) var(--pad);
  border-right: 0;
  border-bottom: var(--rule) solid currentColor;
  flex-direction: row;
}

.page-intro-label .meta-label,
.content-label .meta-label:first-child {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.1vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.94;
}

.page-intro-label .meta-label {
  color: var(--signal);
}

.content-label .meta-label:last-child:not(:first-child) {
  margin-left: auto;
  padding: 0.55rem 0.75rem;
  color: var(--neutral);
  background: var(--ink);
  white-space: nowrap;
}

.content-section-dark .content-label {
  color: var(--ink);
  background: var(--signal);
  border-bottom-color: var(--ink);
}

.content-section-dark .content-label .meta-label:last-child:not(:first-child) {
  color: var(--signal);
  background: var(--ink);
}

.page-intro-copy,
.content-copy {
  padding-inline: clamp(var(--pad), 8vw, 9rem);
}

.page-intro-copy p + p,
.content-copy > p:not(.lede),
.method-card p,
.info-card p,
.timeline-list p,
.offer-card p,
.detail-intro p {
  font-size: var(--body-copy);
}

.page-intro-copy p + p {
  max-width: 54rem;
}

.timeline-list p {
  max-width: 58rem;
}

.method-card {
  display: grid;
  min-height: clamp(24rem, 29vw, 28rem);
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.method-card > .meta-label {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: var(--rule) solid currentColor;
  font-size: clamp(0.82rem, 0.78vw, 0.94rem);
}

.method-card h2 {
  align-self: end;
  margin: 0;
  font-size: clamp(2.9rem, 3.65vw, 4.5rem);
  line-height: 0.94;
}

.method-card p {
  max-width: 42rem;
}

@media (max-width: 700px) {
  :root {
    --micro: clamp(0.7rem, 3vw, 0.78rem);
    --body-copy: clamp(1rem, 4.3vw, 1.12rem);
  }

  .site-nav a {
    font-size: clamp(0.66rem, 2.8vw, 0.74rem);
  }

  .dateline {
    font-size: var(--micro);
  }

  .page-intro-label,
  .content-label {
    min-height: 4.5rem;
    flex-wrap: wrap;
    padding-block: 1.15rem;
  }

  .page-intro-label .meta-label,
  .content-label .meta-label:first-child {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  .content-label .meta-label:last-child:not(:first-child) {
    display: none;
  }

  .page-intro-copy,
  .content-copy {
    padding-inline: var(--pad);
  }

  .method-card {
    min-height: 21rem;
    gap: 1.5rem;
  }

  .method-card h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

@media (max-width: 340px) {
  :root {
    --display-page: clamp(2.45rem, 11vw, 3rem);
  }

  .route-name {
    font-size: clamp(2.25rem, 9.8vw, 3rem);
  }
}

/* v44 launch clarity */

.route-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: clamp(0.85rem, 1.4vw, 1.35rem);
}

.route-desc {
  max-width: 25rem;
  font-size: clamp(1rem, 1vw, 1.18rem);
  font-weight: 600;
  line-height: 1.35;
}

.signup-static {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}

.signup-static > p:first-child {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.signup-static .form-note {
  margin: 0;
}

.signup-static a {
  align-self: flex-start;
  border-bottom: 2px solid currentColor;
  font-size: var(--micro);
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .route-copy {
    max-width: calc(100% - 2.75rem);
    gap: 0.75rem;
  }

  .route-desc {
    max-width: 20rem;
    font-size: clamp(0.95rem, 4vw, 1.08rem);
  }

  .signup-static > p:first-child {
    font-size: clamp(1.2rem, 5vw, 1.55rem);
  }
}

@media (min-width: 701px) and (max-width: 1179px) {
  .signup .signup-heading h2 {
    font-size: clamp(2rem, 3.6vw, 2.75rem);
  }
}

@media (max-width: 340px) {
  .route-name {
    font-size: 2rem;
  }

  .subnav {
    overflow-x: visible;
    flex-wrap: wrap;
    white-space: normal;
  }

  .subnav a {
    width: 100%;
  }

  .offer-card h2 {
    overflow-wrap: anywhere;
  }
}

/* v47 production symmetry audit */

.card-grid,
.offer-grid,
.method-grid {
  grid-auto-rows: 1fr;
}
