:root {
  --blue: #6297a6;
  --blue-soft: #a3d1d3;
  --mint: #d6e8e0;
  --paper: #e8e8e3;
  --gold: #a57d23;
  --lime: #d8ff33;
  --black: #000000;
  --ink: #222326;
  --muted: #5e625f;
  --line: rgba(34, 35, 38, 0.14);
  --font-body: "PP Telegraf", "Helvetica Neue", Arial, sans-serif;
  --font-title: "GT Ultra Median Bold", "GT Ultra Median", Georgia, serif;
  --font-subtitle: "PP Telegraf Bold", "PP Telegraf", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.nav-actions a {
  text-decoration: none;
}

.nav-actions a[aria-current="page"] {
  color: var(--gold);
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-nav[open] summary span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] summary span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(310px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: white;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu .mobile-menu-apply {
  justify-content: center;
  margin-top: 8px;
  border: 1px solid var(--black);
  border-radius: 6px;
  color: var(--black);
  background: var(--lime);
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(3px);
  box-shadow: 0 5px 0 var(--black);
}

.button-small {
  min-height: 38px;
  padding: 0 18px;
  box-shadow: 0 5px 0 var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 42px;
}

.hero-copy {
  min-height: 610px;
  padding: 58px;
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(34, 35, 38, 0.7)),
    linear-gradient(145deg, var(--black), #24393e 60%, var(--blue));
  overflow: hidden;
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: white;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-underline-offset: 6px;
}

.hero-panel {
  position: relative;
  min-height: 610px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--blue-soft);
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  top: -70px;
  right: -92px;
  width: 330px;
  height: auto;
  aspect-ratio: 2272 / 2594;
  object-fit: contain;
  opacity: 0.55;
}

.stat-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.primary-stat {
  margin-top: 198px;
  background: var(--black);
  color: white;
}

.stat-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-transform: uppercase;
}

.primary-stat span,
.primary-stat p {
  color: rgba(255, 255, 255, 0.68);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  line-height: 1.45;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.stat-grid .stat-card strong {
  font-size: 30px;
}

.panel-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(34, 35, 38, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
  border: 1px solid var(--black);
  border-radius: 22px;
  background: white;
  overflow: hidden;
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-family: var(--font-subtitle);
  font-size: 15px;
  font-weight: 700;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.brand-story {
  padding-top: 42px;
}

.brand-story-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.brand-image-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.78fr 0.78fr;
  gap: 16px;
}

.brand-image-card {
  position: relative;
  min-height: 460px;
  margin: 0;
  border-radius: 24px;
  background: var(--black);
  overflow: hidden;
}

.brand-image-card.wide {
  min-height: 460px;
}

.brand-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.brand-image-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  color: white;
  background: rgba(0, 0, 0, 0.66);
  font-size: 14px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: start;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-list div,
.partner-list a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: white;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration: none;
}

.partner-list a {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.partner-list a:hover {
  transform: translateY(-2px);
  border-color: var(--black);
  background: var(--lime);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: center;
  width: 100%;
  padding: 82px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--ink);
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.6;
}

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

.feature-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--lime);
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.feature-grid strong {
  font-family: var(--font-subtitle);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.process h2 {
  max-width: 820px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.steps article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border-radius: 50%;
  color: var(--black);
  background: var(--lime);
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 12px;
  font-family: var(--font-subtitle);
  font-size: 22px;
  font-weight: 700;
}

.steps p,
.credibility p,
.compliance p,
.final-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.credibility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.image-tile {
  display: flex;
  align-items: center;
  min-height: 0;
  width: 100%;
  border-radius: 0;
  background: var(--black);
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  opacity: 0.96;
}

.credibility > div:last-child {
  max-width: 940px;
  margin: 0 auto;
}

.credibility ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.credibility li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.media-proof {
  padding-top: 40px;
}

.media-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.media-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

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

.video-card,
.media-tile {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  overflow: hidden;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card-copy {
  padding: 24px;
}

.video-card-copy span,
.media-tile span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-card-copy strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 24px;
}

.video-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-tile {
  position: relative;
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.media-tile::after {
  content: "Open";
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-size: 12px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.media-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.38);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.media-tile:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.media-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-tile span {
  padding: 18px 20px 20px;
}

.feature-media span {
  font-size: 14px;
}

.media-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.guideline-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.guideline-grid h3 {
  margin-bottom: 10px;
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.products-section {
  border: 1px solid var(--line);
  background: #f5f6f2;
  color: var(--ink);
}

.products-page {
  margin-bottom: 20px;
  padding: 64px 48px;
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.products-heading h2,
.products-heading p {
  margin: 0;
}

.products-heading > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-item {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.product-item:nth-child(2),
.product-item:nth-child(5) {
  background: var(--mint);
}

.product-item:nth-child(3),
.product-item:nth-child(6) {
  background: #edf4f5;
}

.product-item span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--font-subtitle);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-item h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-subtitle);
  font-size: 22px;
}

.product-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-top: 30px;
}

.product-paths strong {
  color: var(--ink);
}

.product-paths a {
  color: #3f7787;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.product-disclaimer {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-credit {
  display: flex;
  justify-content: center;
  width: min(100% - 48px, 1180px);
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: 13px;
}

.site-credit a {
  color: inherit;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration: none;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.terms-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--ink);
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-underline-offset: 6px;
}

.final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 420px;
  margin: 20px auto 64px;
  padding: 76px 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
  color: var(--ink);
  background: white;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}

.terms-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 30px;
}

.terms-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
}

.terms-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.terms-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  color: white;
  background: var(--black);
  overflow: hidden;
}

.terms-sidebar img {
  display: block;
  width: 92px;
  height: auto;
  margin: 0 0 8px auto;
  object-fit: contain;
  opacity: 0.88;
}

.terms-sidebar strong {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 28px;
}

.terms-sidebar span {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

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

.terms-content article,
.terms-cta {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.terms-content h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.terms-cta {
  grid-column: 1 / -1;
}

.state-coverage {
  grid-column: 1 / -1;
}

.state-coverage-copy {
  max-width: 960px;
  margin-bottom: 22px;
}

.state-list {
  font-size: 16px;
}

.coverage-map {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}

.coverage-map img {
  width: 100%;
  height: auto;
}

.coverage-map figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.terms-content p {
  color: var(--muted);
  line-height: 1.65;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.terms-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.terms-cta {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(34, 35, 38, 0.78)),
    var(--blue);
}

.terms-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--font-subtitle);
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.94;
}

.cta-mark {
  position: absolute;
  top: 50%;
  width: 320px;
  height: auto;
  aspect-ratio: 2272 / 2594;
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.5) hue-rotate(52deg) brightness(1.18);
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-mark-left {
  left: -160px;
  transform: translateY(-50%) scaleX(-1);
}

.cta-mark-right {
  right: -160px;
}

.cta-apply-row {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: 14px;
  width: min(680px, 100%);
  align-items: stretch;
}

.cta-apply-row span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 6px;
  color: white;
  background: #b9b9b9;
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-align: left;
}

.cta-apply-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 6px;
  color: var(--black);
  background: var(--lime);
  font-family: var(--font-subtitle);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .split,
  .feature-band,
  .credibility,
  .terms-layout,
  .media-grid,
  .media-grid.two-up {
    grid-template-columns: 1fr;
  }

  .products-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .brand-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-image-card.wide {
    grid-column: 1 / -1;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
    padding: 34px;
  }

  .primary-stat {
    margin-top: 130px;
  }

  .trust-strip,
  .steps,
  .guideline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .terms-sidebar {
    position: static;
  }

  .terms-content {
    grid-template-columns: 1fr;
  }

  .terms-cta {
    grid-column: auto;
  }

  .state-coverage {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .trust-strip,
  .section,
  .final-cta,
  .terms-hero,
  .terms-layout {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-copy,
  .hero-panel,
  .final-cta {
    border-radius: 22px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-text,
  .feature-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    text-align: center;
  }

  .trust-strip,
  .partner-list,
  .brand-image-grid,
  .feature-grid,
  .steps,
  .guideline-grid {
    grid-template-columns: 1fr;
  }

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

  .products-page {
    padding: 42px 22px;
  }

  .brand-image-card,
  .brand-image-card.wide {
    min-height: 420px;
  }

  .terms-content article,
  .terms-cta {
    padding: 24px;
  }

  .final-cta {
    min-height: 500px;
    padding: 70px 18px;
  }

  .cta-mark {
    width: 240px;
    opacity: 0.28;
  }

  .cta-mark-left {
    left: -150px;
  }

  .cta-mark-right {
    right: -150px;
  }

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

  .cta-apply-row span,
  .cta-apply-row a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
