:root {
  --ink: #241b35;
  --ink-soft: #554c66;
  --sea: #5a3fc0;
  --sea-bright: #c8b7ff;
  --coral: #ad2e59;
  --coral-dark: #7e1f42;
  --sand: #ffe3a3;
  --cream: #f6f1ff;
  --paper: #fffdf8;
  --line: rgba(36, 27, 53, 0.14);
  --shadow-sm: 0 10px 30px rgba(36, 27, 53, 0.09);
  --shadow-lg: 0 28px 70px rgba(36, 27, 53, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content: 1160px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at 10% 15%, rgba(90, 63, 192, 0.13), transparent 26rem),
    radial-gradient(circle at 90% 60%, rgba(255, 187, 72, 0.15), transparent 28rem);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sea-bright);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--sea);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(246, 241, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(36, 27, 53, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--content));
  min-height: 68px;
  margin-inline: auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  margin-right: 9px;
}

.desktop-nav {
  display: none;
  align-items: center;
  margin-left: auto;
  gap: 26px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--coral-dark);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 999px;
}

.language-switcher a {
  display: grid;
  min-width: 38px;
  min-height: 36px;
  place-items: center;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .brand img {
    margin-right: 0;
  }

  .brand span {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
    padding: 2px;
  }

  .language-switcher a {
    min-width: 34px;
    min-height: 34px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }
}

.hero {
  position: relative;
  padding: 0 0 36px;
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: min(100%, 1440px);
  margin-inline: auto;
  background: var(--paper);
}

.hero-media {
  position: relative;
  min-height: clamp(300px, 42svh, 410px);
  overflow: hidden;
  background: #9b8be8;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 27, 53, 0.01) 35%, rgba(36, 27, 53, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 48% center;
  animation: hero-settle 1.3s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: calc(100% - 24px);
  margin: -28px auto 0;
  padding: 34px 22px 30px;
  background: var(--paper);
  border-radius: 34px 10px 0 0;
  box-shadow: var(--shadow-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 2px;
  margin-right: 9px;
  background: var(--coral);
  border-radius: 99px;
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 12.5vw, 4.15rem);
  line-height: 0.96;
}

h1 .amount {
  color: var(--coral-dark);
  white-space: nowrap;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 4.3vw, 1.16rem);
  line-height: 1.56;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 20px;
  color: #fff;
  border: 0;
  background: var(--sea);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(90, 63, 192, 0.24);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(36, 27, 53, 0.28);
  transform: translateY(-2px);
}

.button svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-left: 10px;
  transition: transform 160ms ease;
}

.button:hover svg {
  transform: translate(2px, -2px);
}

.button--coral {
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(173, 46, 89, 0.27);
}

.button--coral:hover {
  background: var(--coral-dark);
}

.email-warning {
  display: flex;
  align-items: flex-start;
  max-width: 470px;
  margin: 10px 0 0;
  padding: 10px 12px;
  color: #51421f;
  border: 1px solid rgba(126, 31, 66, 0.18);
  background: #fff4c9;
  border-radius: 12px 4px 12px 12px;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.42;
}

.email-warning svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 7px 0 0;
  color: var(--coral-dark);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 6px 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 720;
}

.hero-points svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: var(--sea);
}

.voucher-card {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  min-width: 165px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 240, 184, 0.96);
  border: 2px solid var(--ink);
  border-radius: 22px 8px 22px 22px;
  box-shadow: 8px 8px 0 rgba(90, 63, 192, 0.38);
  backdrop-filter: blur(10px);
}

.voucher-card::before,
.voucher-card::after {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(36, 27, 53, 0.7);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.voucher-card::before {
  left: -8px;
}

.voucher-card::after {
  right: -8px;
}

.voucher-card small,
.voucher-card strong,
.voucher-card span {
  display: block;
}

.voucher-card small {
  color: var(--sea);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voucher-card strong {
  margin: 2px 0 0;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.voucher-card span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
}

.section {
  padding: 52px 0;
}

.section--tight {
  padding-top: 20px;
}

.section + .section {
  padding-top: 0;
}

.container {
  width: min(calc(100% - 36px), var(--content));
  margin-inline: auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 9vw, 3.55rem);
  line-height: 1.03;
}

.section-heading p {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding: 26px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 28px 10px 28px 28px;
  box-shadow: 6px 6px 0 rgba(90, 63, 192, 0.1);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.step-card::after {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 115px;
  height: 115px;
  border: 1px dashed rgba(90, 63, 192, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(90, 63, 192, 0.07), 0 0 0 36px rgba(90, 63, 192, 0.04);
  content: "";
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.step-card:nth-child(2) {
  border-radius: 10px 28px 28px 28px;
}

.step-card:nth-child(3) {
  border-radius: 28px 28px 10px 28px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.58;
}

.step-card-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  margin-top: 18px;
  gap: 9px;
}

.step-card-action .button {
  min-height: 50px;
  padding: 13px 16px;
  font-size: 0.88rem;
}

.step-card-action .email-warning {
  margin: 0;
  font-size: 0.7rem;
}

.step-card-copy,
.voucher-field-example {
  position: relative;
  z-index: 1;
}

.step-card .field-warning {
  margin-top: 14px;
  padding: 12px 13px;
  color: var(--ink);
  border-left: 3px solid var(--coral);
  background: var(--cream);
  border-radius: 4px 12px 12px 4px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.voucher-field-example {
  margin: 20px 0 0;
}

.image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px 5px 14px 14px;
  box-shadow: 4px 4px 0 rgba(90, 63, 192, 0.13);
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.image-zoom:hover {
  border-color: var(--sea);
  box-shadow: 6px 6px 0 rgba(90, 63, 192, 0.2);
  transform: translateY(-2px);
}

.voucher-field-example img {
  width: 100%;
  height: auto;
}

.voucher-field-example figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.image-modal {
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 84vh;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  border: 1px solid rgba(200, 183, 255, 0.55);
  background: var(--paper);
  border-radius: 22px 7px 22px 22px;
  box-shadow: 0 30px 90px rgba(20, 12, 34, 0.42);
}

.image-modal::backdrop {
  background: rgba(20, 12, 34, 0.72);
  backdrop-filter: blur(7px);
}

.image-modal-frame {
  position: relative;
  padding: 54px 14px 14px;
}

.image-modal-scroll {
  max-height: calc(84vh - 68px);
  overflow: auto;
  background: #fff;
  border-radius: 12px 4px 12px 12px;
  overscroll-behavior: contain;
}

.image-modal img {
  width: 100%;
  height: auto;
}

.image-modal-close {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 9px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: #fff;
  border: 0;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.image-modal-close:hover {
  background: var(--coral-dark);
  transform: rotate(4deg);
}

.image-modal-close svg {
  width: 20px;
  height: 20px;
}

.eligibility {
  position: relative;
  display: grid;
  padding: 32px 22px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--ink), #3b2855);
  border-radius: 42px 12px 42px 42px;
  box-shadow: var(--shadow-lg);
  gap: 28px;
}

.eligibility::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 183, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(200, 183, 255, 0.07), 0 0 0 88px rgba(200, 183, 255, 0.04);
  content: "";
}

.eligibility-copy,
.eligibility-list {
  position: relative;
  z-index: 1;
}

.eligibility .eyebrow {
  color: var(--sea-bright);
}

.eligibility h2 {
  max-width: 510px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 9vw, 3.35rem);
  line-height: 1.02;
}

.eligibility-copy > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.eligibility-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.eligibility-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 0.87rem;
  font-weight: 680;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.eligibility-list svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  color: var(--ink);
  background: var(--sea-bright);
  border-radius: 50%;
}

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

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

.faq-list summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 16px;
  height: 2px;
  background: var(--sea);
  border-radius: 99px;
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 730px;
  padding: 0 30px 20px 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--sea);
  font-weight: 750;
  text-underline-offset: 3px;
}

.final-cta {
  position: relative;
  display: grid;
  align-items: center;
  padding: 34px 24px;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius-lg);
  gap: 22px;
}

.final-cta::after {
  position: absolute;
  right: -45px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.final-cta h2 {
  max-width: 640px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.03;
}

.final-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.final-cta .button {
  position: relative;
  z-index: 1;
  justify-self: start;
}

.final-cta-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  max-width: 355px;
  gap: 9px;
}

.final-cta-action .email-warning {
  margin: 0;
}

.site-footer {
  padding: 30px 0 100px;
  color: #655e72;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-disclosure {
  max-width: 720px;
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-links a,
.contact-reveal {
  padding: 0;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(85, 76, 102, 0.38);
  text-underline-offset: 4px;
}

.contact-value a {
  color: var(--sea);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  gap: 8px 18px;
}

.mobile-cta {
  position: fixed;
  z-index: 25;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  padding: 7px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(36, 27, 53, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(36, 27, 53, 0.24);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta .button {
  width: 100%;
  min-height: 52px;
}

.mobile-cta-warning {
  margin: 4px 8px 2px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.js .mobile-cta:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 20px));
}

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

.reveal {
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.not-found {
  display: grid;
  min-height: calc(100svh - 69px);
  place-items: center;
  padding: 40px 18px;
  text-align: center;
}

.not-found-card {
  max-width: 650px;
  padding: 40px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.not-found-card strong {
  display: block;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.not-found-card h1 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 9vw, 3.4rem);
}

@keyframes hero-settle {
  from {
    transform: scale(1.025);
  }

  to {
    transform: scale(1);
  }
}

@media (min-width: 700px) {
  .hero {
    padding: 24px 22px 52px;
  }

  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 640px;
    border-radius: 48px 14px 48px 48px;
    box-shadow: var(--shadow-lg);
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
    min-height: 640px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 56px clamp(34px, 5vw, 72px);
    border-radius: 0;
    box-shadow: none;
  }

  h1 {
    font-size: clamp(3.8rem, 6.2vw, 5.5rem);
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .voucher-card {
    right: 30px;
    bottom: 30px;
    min-width: 205px;
    padding: 20px 22px;
  }

  .voucher-card strong {
    font-size: 3rem;
  }

  .section {
    padding: 72px 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .step-card {
    min-height: 270px;
    padding: 28px;
  }

  .step-card::before {
    margin-bottom: 60px;
  }

  .step-card--voucher {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 42px minmax(180px, 0.75fr) minmax(260px, 1.25fr);
    align-items: start;
    min-height: 0;
    gap: 0 22px;
  }

  .step-card--voucher::before {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .step-card--voucher .step-card-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .step-card--voucher .voucher-field-example {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
  }

  .image-modal {
    width: min(72vw, 1100px);
  }

  .eligibility {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    align-items: center;
    padding: 58px;
    gap: 60px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    padding: 48px 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }
}

@media (min-width: 1000px) {
  .desktop-nav {
    display: flex;
  }
}

@media (min-width: 1100px) {
  .hero-shell {
    grid-template-columns: minmax(470px, 0.84fr) minmax(0, 1.16fr);
  }

  .hero-media img {
    object-position: center;
  }
}

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

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