@font-face {
  font-family: "Onest";
  src: url("assets/Onest-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("assets/Unbounded-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --ink: #05070b;
  --paper: #f4f7fb;
  --white: #ffffff;
  --mist: #e9eef5;
  --muted: #5e6672;
  --mint: #31f3ad;
  --cyan: #08c9f2;
  --blue: #1261ff;
  --line: rgba(5, 7, 11, 0.13);
  --panel-radius: 18px;
  --section-radius: 28px;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Onest", sans-serif;
  --body: "Onest", sans-serif;
  --label: "Unbounded", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 7%, rgba(8, 201, 242, 0.1), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 12px 0 8px;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(5, 7, 11, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
}

.brand-logo-frame {
  width: 42px;
  height: 42px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #020814;
}

.brand-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand-name {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  gap: clamp(22px, 3.2vw, 42px);
  align-items: center;
  font-size: 13px;
  font-weight: 720;
}

.primary-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 140ms ease-out;
}

.primary-nav a:hover {
  border-color: var(--ink);
}

.nav-connect {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  border-color: #171c24;
  background: #171c24;
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 15px;
}

.header-cta {
  min-width: 164px;
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(20px, 4vw, 62px);
  align-items: center;
  min-height: 650px;
  padding: 54px 10px 34px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: hero-copy-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: #3f4753;
  font-family: var(--label);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(49, 243, 173, 0.14);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(66px, 6.9vw, 106px);
  line-height: 0.84;
}

.hero-lead {
  max-width: 530px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.text-link {
  padding: 10px 0 8px;
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.text-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-note {
  margin: 15px 0 0;
  color: #858d99;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  isolation: isolate;
  animation: hero-art-in 780ms 90ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.logo-halo {
  position: absolute;
  z-index: -1;
  width: min(74%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 97, 255, 0.17);
  border-radius: 50%;
}

.logo-halo::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(8, 201, 242, 0.16);
  border-radius: 50%;
  content: "";
}

.portal-image {
  width: min(96%, 570px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(18, 97, 255, 0.17));
  transform: rotate(-5deg);
  transition: transform 220ms ease-out;
}

.hand-note {
  position: absolute;
  right: 0;
  bottom: 21%;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.8vw, 25px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  transform: rotate(-7deg);
}

.benefit-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 104px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: rgba(255, 255, 255, 0.68);
}

.benefit-rail article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.benefit-rail article:last-child {
  border-right: 0;
}

.benefit-rail article > img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.benefit-rail strong,
.benefit-rail small {
  display: block;
}

.benefit-rail strong {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.15;
}

.benefit-rail small {
  color: var(--muted);
  font-size: 11px;
}

.route-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
  margin-bottom: 112px;
}

.section-copy h2,
.focus-copy h2,
.closing h2 {
  margin-bottom: 22px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.9;
}

.section-copy > p {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.route-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--section-radius);
  background: var(--ink);
  color: var(--white);
}

.route-board article {
  display: flex;
  min-height: 390px;
  padding: 27px 24px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.route-board article:last-child {
  border-right: 0;
}

.route-number {
  margin-bottom: auto;
  color: var(--mint);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 650;
}

.route-board h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.route-board p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.focus-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 540px;
  overflow: hidden;
  margin-bottom: 112px;
  border-radius: var(--section-radius);
  background: var(--ink);
  color: var(--white);
}

.focus-art {
  position: relative;
  min-height: 540px;
}

.focus-art::before {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(49, 243, 173, 0.28);
  border-radius: 50%;
  content: "";
}

.focus-art img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 570px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(18, 97, 255, 0.26));
  transform: translate(-52%, -50%) rotate(9deg);
}

.focus-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(44px, 6vw, 76px) clamp(34px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.62);
}

.focus-copy > p {
  max-width: 430px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
}

.focus-copy .button {
  align-self: flex-start;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 27px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 780;
  letter-spacing: -0.035em;
  text-align: left;
  cursor: pointer;
}

.faq-item button img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform 160ms ease-out;
}

.faq-item button[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.faq-answer p {
  max-width: 700px;
  margin: -7px 44px 28px 0;
  color: var(--muted);
}

.inline-link {
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 720;
}

.inline-link:hover {
  border-color: transparent;
}

.support-page {
  padding-top: 24px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 58px;
  color: #747d89;
  font-size: 12px;
  font-weight: 680;
}

.breadcrumbs a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.support-hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 36px 10px 80px;
}

.support-hero::after {
  position: absolute;
  top: 44px;
  right: 4%;
  width: min(35vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 97, 255, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 243, 173, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.support-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(64px, 7.8vw, 112px);
}

.support-lead {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
  margin-bottom: 112px;
}

.support-intro {
  position: sticky;
  top: 112px;
}

.support-intro h2,
.support-note h2,
.support-final h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.support-intro > p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.checklist li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 30px 0 31px;
  border-bottom: 1px solid var(--line);
}

.checklist li > span {
  padding-top: 5px;
  color: var(--blue);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
}

.checklist h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.checklist p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
}

.support-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 92px);
  align-items: end;
  min-height: 470px;
  margin-bottom: 112px;
  padding: clamp(42px, 6vw, 76px);
  border-radius: var(--section-radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(8, 201, 242, 0.22), transparent 38%),
    var(--ink);
  color: var(--white);
}

.support-note h2 {
  margin-bottom: 0;
}

.support-note p {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.support-final {
  display: grid;
  grid-template-columns: 1.08fr 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 290px;
  margin-bottom: 28px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--section-radius);
  background: rgba(255, 255, 255, 0.64);
}

.support-final h2 {
  margin-bottom: 0;
}

.support-final > p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
}

.support-final > .button {
  min-width: 190px;
}

.closing {
  display: grid;
  grid-template-columns: 1.08fr 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 290px;
  margin-bottom: 28px;
  padding: 38px 42px;
  border-radius: var(--section-radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(8, 201, 242, 0.23), transparent 32%),
    var(--ink);
  color: var(--white);
}

.eyebrow-dark {
  color: rgba(255, 255, 255, 0.63);
}

.closing h2 {
  margin-bottom: 0;
}

.closing > p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.closing > .button {
  min-width: 178px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  color: #747d89;
  font-size: 11px;
}

.site-footer .brand-logo-frame {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.site-footer .brand-name {
  color: var(--ink);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-connect {
  justify-self: end;
  border-bottom: 1px solid currentColor;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-art-in {
  from {
    opacity: 0;
    transform: scale(0.97) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 860px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-icon {
    grid-area: 1 / 1;
    width: 23px;
    height: 23px;
    filter: invert(1);
    transition: opacity 140ms ease-out;
  }

  .menu-icon-close,
  .menu-toggle[aria-expanded="true"] .menu-icon-open {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon-close {
    opacity: 1;
  }

  .primary-nav {
    position: fixed;
    top: 87px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--panel-radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(5, 7, 11, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-out, transform 150ms ease-out;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .primary-nav .nav-connect {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
    min-height: 600px;
  }

  h1 {
    font-size: clamp(58px, 8.6vw, 78px);
  }

  .hero-visual {
    min-height: 480px;
  }

  .benefit-rail article {
    padding-inline: 16px;
  }

  .route-section,
  .faq-section,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading,
  .support-intro {
    position: static;
  }

  .focus-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .support-final {
    grid-template-columns: 1fr 1fr;
  }

  .closing > .button,
  .support-final > .button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 24px);
    --section-radius: 24px;
  }

  body {
    background:
      radial-gradient(circle at 90% 6%, rgba(8, 201, 242, 0.1), transparent 17rem),
      var(--paper);
  }

  .site-header {
    padding-top: 9px;
  }

  .header-inner {
    min-height: 58px;
    padding: 7px 7px 7px 12px;
  }

  .brand-logo-frame {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .brand-name {
    font-size: 20px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-nav {
    top: 79px;
    right: 12px;
    left: 12px;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 46px 4px 22px;
    flex-direction: column;
  }

  .support-page {
    padding-top: 8px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .support-hero {
    min-height: 540px;
    padding: 26px 4px 68px;
  }

  .support-hero::after {
    top: 22%;
    right: -30%;
    width: 86vw;
  }

  .support-hero h1 {
    font-size: clamp(49px, 14vw, 66px);
  }

  .support-lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 8px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(48px, 14.2vw, 61px);
    letter-spacing: -0.078em;
    line-height: 0.86;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.43;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
  }

  .button-large {
    width: 100%;
    min-height: 58px;
  }

  .text-link {
    width: max-content;
  }

  .hero-note {
    margin-top: 13px;
  }

  .hero-visual {
    width: 100%;
    min-height: 350px;
    margin-top: 8px;
  }

  .logo-halo {
    width: 73%;
  }

  .portal-image {
    width: min(92%, 360px);
    max-height: 350px;
    transform: rotate(-5deg);
  }

  .hand-note {
    right: 1%;
    bottom: 17%;
    font-size: 17px;
  }

  .benefit-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
  }

  .benefit-rail article {
    min-height: 102px;
    padding: 16px 14px;
    border-bottom: 1px solid var(--line);
  }

  .benefit-rail article:nth-child(2) {
    border-right: 0;
  }

  .benefit-rail article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .benefit-rail article > img {
    width: 27px;
    height: 27px;
  }

  .benefit-rail strong {
    font-size: 12px;
  }

  .benefit-rail small {
    font-size: 10px;
  }

  .route-section,
  .faq-section,
  .focus-section,
  .support-grid,
  .support-note {
    margin-bottom: 82px;
  }

  .section-copy h2,
  .focus-copy h2,
  .closing h2,
  .support-intro h2,
  .support-note h2,
  .support-final h2 {
    font-size: clamp(48px, 14.8vw, 64px);
  }

  .section-copy > p,
  .focus-copy > p {
    font-size: 16px;
  }

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

  .route-board article {
    min-height: 220px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .route-board article:last-child {
    border-bottom: 0;
  }

  .focus-section {
    display: flex;
    min-height: 720px;
    flex-direction: column;
  }

  .focus-art {
    min-height: 360px;
  }

  .focus-art img {
    width: min(95%, 420px);
    max-height: 360px;
  }

  .focus-copy {
    padding: 16px 24px 32px;
  }

  .focus-copy .button {
    width: 100%;
  }

  .faq-item button {
    padding: 23px 0;
  }

  .faq-answer p {
    margin-right: 26px;
  }

  .checklist li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 24px 0 25px;
  }

  .checklist h3 {
    font-size: 21px;
  }

  .support-note {
    display: flex;
    min-height: 610px;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .support-note .button {
    width: 100%;
  }

  .closing {
    display: flex;
    min-height: 480px;
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .support-final {
    display: flex;
    min-height: 500px;
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .support-final > p {
    margin-bottom: 22px;
  }

  .support-final > .button {
    width: 100%;
  }

  .closing > p {
    margin-bottom: 22px;
  }

  .closing > .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 0 34px;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-connect {
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-visual {
    min-height: 326px;
  }

  .portal-image {
    max-height: 326px;
  }

  .benefit-rail article {
    gap: 10px;
    padding-inline: 11px;
  }
}

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

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