:root {
  --white: #ffffff;
  --navy: #07162f;
  --ink: #172238;
  --muted: #5e6675;
  --red: #c71916;
  --red-dark: #a90f0c;
  --amber: #e59a00;
  --green: #398653;
  --line: rgba(7, 22, 47, 0.22);
  --line-strong: rgba(7, 22, 47, 0.72);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1440px;
  --gutter: clamp(24px, 4vw, 64px);
  --section-pad: clamp(72px, 8vw, 128px);
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.64;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(199, 25, 22, 0.42);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
}

.header-inner,
.hero,
.section-shell,
.closing-section,
.site-footer {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.055em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 15px;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--navy);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform var(--ease);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--red);
  border-radius: 0;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(199, 25, 22, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-outline {
  color: var(--red);
  background: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--red);
}

.button-small {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 14px;
}

h1,
h2,
blockquote {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 680;
  letter-spacing: -0.028em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 4vw, 62px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.04;
}

h3 {
  color: var(--navy);
  line-height: 1.28;
}

p {
  margin-top: 0;
}

.accent-rule {
  width: 94px;
  height: 3px;
  margin: 0 0 28px;
  background: var(--red);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(500px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 3.6vw, 58px);
  padding-top: clamp(40px, 3.4vw, 52px);
  padding-bottom: clamp(44px, 3.8vw, 58px);
  border-bottom: 1px solid var(--line-strong);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.offer-line {
  margin-bottom: 26px;
  color: var(--red);
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 760;
}

.offer-line span {
  display: inline-block;
  padding-inline: 4px;
}

.hero .button-primary {
  min-width: min(100%, 420px);
  font-size: 18px;
}

.hero-fineprint {
  max-width: 600px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::after {
  content: "01";
  position: absolute;
  top: 6%;
  left: 2%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--red);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
}

.hero-visual img {
  width: 100%;
  mix-blend-mode: multiply;
}

.section-shell {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: clamp(34px, 4vw, 72px);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  border-bottom: 1px solid var(--line-strong);
}

.margin-note {
  align-self: stretch;
  padding-right: 28px;
  border-right: 1px dashed var(--red);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
}

.margin-note span,
.closing-number {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.margin-note p {
  margin: 0;
}

.section-content {
  min-width: 0;
}

.section-intro {
  max-width: 810px;
  font-size: 21px;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
  gap: 46px 72px;
}

.question-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.question-list li {
  position: relative;
  padding: 15px 8px 15px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.45;
}

.question-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.problem-conclusion {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.28;
}

.review-list {
  max-width: 1020px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.review-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ordinal,
.process-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.review-list p {
  max-width: 850px;
  margin: 0;
}

.review-list strong {
  color: var(--navy);
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.84fr) minmax(500px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.check-list,
.yes-list,
.no-list,
.plain-ruled-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.yes-list li,
.no-list li,
.plain-ruled-list li {
  position: relative;
  padding: 12px 0 12px 35px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.yes-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 2px;
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.delivery-note {
  margin: 28px 0 14px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--navy);
  font-weight: 650;
}

.muted-copy {
  color: var(--muted);
  font-size: 14px;
}

.deliverables-visual {
  margin: 0;
}

.deliverables-visual img {
  width: 100%;
  mix-blend-mode: multiply;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 34px 72px;
}

.plain-ruled-list {
  border-top: 1px solid var(--line-strong);
}

.plain-ruled-list li {
  padding-left: 0;
}

.full-row {
  grid-column: 1 / -1;
  margin: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  position: relative;
  min-height: 292px;
  padding: 22px 22px 24px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 78px;
  right: -12px;
  color: var(--red);
  background: var(--white);
  font-size: 24px;
  line-height: 1;
}

.process-list h3 {
  min-height: 54px;
  margin: 26px 0 13px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.boundary-grid > div {
  padding: 0 48px 0 0;
}

.boundary-grid > div + div {
  padding: 0 0 0 48px;
  border-left: 1px dashed var(--red);
}

.boundary-grid h3 {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.no-list li::before {
  content: "×";
  position: absolute;
  top: 8px;
  left: 2px;
  color: var(--red);
  font-size: 27px;
  line-height: 1;
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: 20px 70px;
  align-items: start;
}

.beta-layout blockquote {
  position: relative;
  margin: 0;
  padding: 12px 40px 12px 74px;
  border-left: 1px solid var(--navy);
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.17;
}

.beta-layout blockquote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 22px;
  color: var(--red);
  font-family: var(--display);
  font-size: 76px;
  line-height: 1;
}

.beta-layout blockquote em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.beta-layout > p {
  grid-column: 2;
  margin: 0 0 0 74px;
  color: var(--muted);
  font-size: 14px;
}

.closing-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  border-bottom: 1px solid var(--line-strong);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
}

.closing-grid > section {
  min-width: 0;
  padding: 0 clamp(28px, 3vw, 48px);
  border-right: 1px dashed var(--red);
}

.closing-grid > section:first-child {
  padding-left: 0;
}

.closing-grid > section:last-child {
  padding-right: 0;
  border-right: 0;
}

.closing-grid h2 {
  font-size: clamp(35px, 3.25vw, 52px);
}

.terms-ledger {
  margin: 26px 0 0;
  border-top: 1px solid var(--line-strong);
}

.terms-ledger > div {
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.terms-ledger dt {
  color: var(--red);
  font-weight: 720;
}

.terms-ledger dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.42;
  text-align: left;
  cursor: pointer;
}

.chevron {
  width: 10px;
  height: 10px;
  justify-self: end;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--ease);
}

.faq-item button[aria-expanded="true"] .chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-answer {
  padding: 0 28px 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

#faq,
#fit-check {
  scroll-margin-top: 100px;
}

.fit-form {
  margin-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fit-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 680;
}

.fit-form label span {
  color: var(--muted);
  font-weight: 500;
}

.fit-form .field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
}

.fit-form input,
.fit-form select,
.fit-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 22, 47, 0.64);
  border-radius: 0;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.fit-form input,
.fit-form select {
  min-height: 46px;
}

.fit-form textarea {
  min-height: 140px;
  resize: vertical;
}

.fit-form input:focus,
.fit-form select:focus,
.fit-form textarea:focus {
  border-color: var(--red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(199, 25, 22, 0.12);
}

.fit-form [aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(199, 25, 22, 0.12);
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-weight: 520 !important;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-support,
.form-status {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.form-support {
  color: var(--muted);
}

.form-status {
  min-height: 18px;
  color: var(--navy);
  font-weight: 650;
}

.form-status.is-error {
  color: var(--red-dark);
}

.email-preview {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--green);
  background: rgba(57, 134, 83, 0.05);
}

.email-preview[hidden] {
  display: none;
}

.email-preview > p:first-child {
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 700;
}

.email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-actions .button {
  flex: 1 1 180px;
}

.email-fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding-top: 50px;
  padding-bottom: 46px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.footer-wordmark {
  position: relative;
  padding-bottom: 17px;
}

.footer-wordmark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74px;
  height: 3px;
  background: var(--red);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 0;
}

.footer-main nav a {
  padding: 0 24px;
  border-right: 1px solid var(--red);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer-main nav a:last-child {
  padding-right: 0;
  border-right: 0;
}

.site-footer > p {
  margin: 24px 0 0;
  font-size: 13px;
}

/* Legal candidate pages */
.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: clamp(64px, 8vw, 112px) var(--gutter) 110px;
}

.legal-main h1 {
  max-width: 900px;
  font-size: clamp(48px, 6vw, 78px);
}

.candidate-notice {
  margin: 0 0 48px;
  padding: 18px 20px;
  color: var(--navy);
  border: 1px solid var(--red);
  border-left-width: 5px;
  font-size: 14px;
  font-weight: 650;
}

.legal-block {
  padding: 32px 0;
  border-top: 1px solid var(--line-strong);
}

.legal-block h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.legal-block h3 {
  margin-top: 32px;
}

.legal-block ul {
  padding-left: 22px;
}

.legal-ledger {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.legal-ledger > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-ledger dt {
  color: var(--red);
  font-weight: 730;
}

.legal-ledger dd {
  margin: 0;
}

.pending-value {
  color: var(--red-dark);
  font-weight: 730;
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  }

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

  .process-list li {
    min-height: 240px;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li::after {
    display: none;
  }

  .closing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 0;
  }

  .closing-grid > section:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .closing-grid > section:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 70px;
    border-top: 1px solid var(--line-strong);
  }
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px var(--gutter) 40px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .primary-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 66px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 780px;
    margin-inline: auto;
  }

  .section-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .margin-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px dashed var(--red);
  }

  .margin-note span {
    margin: 0;
  }

  .problem-layout,
  .deliverables-layout,
  .split-copy,
  .beta-layout {
    grid-template-columns: 1fr;
  }

  .question-list {
    max-width: 760px;
  }

  .deliverables-visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .beta-layout blockquote {
    grid-column: 1;
  }

  .beta-layout > p {
    grid-column: 1;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-main nav a:first-child {
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section-pad: 72px;
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 70px;
  }

  .wordmark {
    font-size: 30px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero .button-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-visual::after {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .review-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .ordinal {
    font-size: 30px;
  }

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

  .process-list li {
    min-height: auto;
    padding-inline: 0;
    border-right: 0;
  }

  .boundary-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .boundary-grid > div,
  .boundary-grid > div + div {
    padding: 0;
    border-left: 0;
  }

  .boundary-grid > div + div {
    padding-top: 38px;
    border-top: 1px dashed var(--red);
  }

  .beta-layout blockquote {
    padding: 16px 0 16px 48px;
    font-size: 34px;
  }

  .beta-layout blockquote::before {
    left: 8px;
    font-size: 56px;
  }

  .beta-layout > p {
    margin-left: 48px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .closing-grid > section,
  .closing-grid > section:first-child,
  .closing-grid > section:nth-child(2),
  .closing-grid > section:last-child {
    grid-column: auto;
    padding: 0 0 68px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px dashed var(--red);
  }

  .closing-grid > section + section {
    padding-top: 68px;
  }

  .closing-grid > section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .terms-ledger > div,
  .legal-ledger > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-main nav a,
  .footer-main nav a:first-child,
  .footer-main nav a:last-child {
    padding: 0;
    border: 0;
  }
}

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

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