:root {
  color-scheme: light;
  --ink: #171b1f;
  --muted: #58645f;
  --surface: #ffffff;
  --surface-soft: #f5f7f2;
  --surface-warm: #f8f1df;
  --surface-green: #e9f1ea;
  --line: #d9dfd5;
  --signal: #d5a72c;
  --signal-dark: #8b6617;
  --green: #2f6b62;
  --blue: #17465a;
  --red: #9b463e;
  --link-underline: rgba(213, 167, 44, 0.8);
  --shadow: 0 18px 55px rgba(23, 27, 31, 0.12);
  --card-hover-shadow: 0 16px 32px rgba(23, 27, 31, 0.08);
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-line: rgba(217, 223, 213, 0.9);
  --image-ink: #ffffff;
  --image-muted: rgba(255, 255, 255, 0.9);
  --image-subtle: rgba(255, 255, 255, 0.76);
  --hero-fade: rgba(245, 247, 242, 0.98);
  --band-dark-bg: #192022;
  --band-dark-ink: #f5f7f2;
  --disabled-bg: #e3e0d4;
  --disabled-line: #d2cec0;
  --disabled-ink: #696556;
  --field-line: #cbd3ca;
  --modal-backdrop: rgba(23, 27, 31, 0.64);
  --footer-bg: #171b1f;
  --footer-ink: rgba(255, 255, 255, 0.78);
  --footer-link: rgba(255, 255, 255, 0.88);
  --footer-heading: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.62);
  --footer-line: rgba(255, 255, 255, 0.12);
  --logo-filter: none;
  --icon-filter: none;
  --contrast-bg: #171b1f;
  --contrast-icon-filter: brightness(0) invert(1);
  --radius: 8px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f2f5ef;
  --muted: #b8c4bd;
  --surface: #151a1b;
  --surface-soft: #0e1213;
  --surface-warm: #2a2418;
  --surface-green: #152520;
  --line: #303a38;
  --signal: #e4bb4e;
  --signal-dark: #f0d37d;
  --green: #78c9b9;
  --blue: #89cfe1;
  --red: #e38a82;
  --link-underline: rgba(228, 187, 78, 0.82);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --card-hover-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(18, 22, 23, 0.92);
  --header-line: rgba(48, 58, 56, 0.9);
  --image-ink: #ffffff;
  --image-muted: rgba(255, 255, 255, 0.9);
  --image-subtle: rgba(255, 255, 255, 0.78);
  --hero-fade: rgba(14, 18, 19, 0.98);
  --band-dark-bg: #101516;
  --band-dark-ink: #f2f5ef;
  --disabled-bg: #272d2c;
  --disabled-line: #3a4340;
  --disabled-ink: #8d9791;
  --field-line: #3a4643;
  --modal-backdrop: rgba(0, 0, 0, 0.72);
  --footer-bg: #0b0f10;
  --footer-ink: rgba(255, 255, 255, 0.76);
  --footer-link: rgba(255, 255, 255, 0.9);
  --footer-heading: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.58);
  --footer-line: rgba(255, 255, 255, 0.14);
  --logo-filter: brightness(0) invert(1);
  --icon-filter: brightness(0) invert(1);
  --contrast-bg: #f2f5ef;
  --contrast-icon-filter: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

body.no-scroll {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: var(--link-underline);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--signal);
  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: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img {
  width: 300px;
  height: auto;
  filter: var(--logo-filter);
  transition: filter 180ms ease;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--signal);
  transform: translateY(-1px);
}

.theme-toggle__track {
  position: relative;
  display: block;
  width: 44px;
  height: 24px;
}

.theme-toggle__icon,
.theme-toggle__thumb {
  position: absolute;
  top: 50%;
  border-radius: 999px;
  transform: translateY(-50%);
}

.theme-toggle__icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: opacity 180ms ease;
}

.theme-toggle__sun {
  left: 5px;
  background: currentColor;
  box-shadow:
    0 -5px 0 -4px currentColor,
    0 5px 0 -4px currentColor,
    5px 0 0 -4px currentColor,
    -5px 0 0 -4px currentColor;
}

.theme-toggle__moon {
  right: 5px;
  background: transparent;
  box-shadow: inset -5px 0 0 currentColor;
}

.theme-toggle__thumb {
  left: 2px;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: var(--signal);
  box-shadow: 0 2px 8px rgba(23, 27, 31, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

:root[data-theme="dark"] .theme-toggle__thumb {
  transform: translate(20px, -50%);
}

:root[data-theme="dark"] .theme-toggle__moon,
:root[data-theme="light"] .theme-toggle__sun {
  opacity: 0.95;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--ink);
  background: var(--surface-warm);
}

.site-nav .social-link {
  width: 42px;
  justify-content: center;
  padding: 0.55rem;
  margin-left: 0.25rem;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.site-nav .social-link:hover {
  background: var(--contrast-bg);
  border-color: var(--contrast-bg);
}

.site-nav .social-link img {
  width: 19px;
  height: 19px;
  filter: var(--icon-filter);
  transition: filter 180ms ease, transform 180ms ease;
}

.site-nav .social-link:hover img {
  filter: var(--contrast-icon-filter);
  transform: translateY(-1px);
}

.site-main {
  overflow: hidden;
}

.section,
.page-section {
  padding: 5.5rem 0;
}

.section.tight {
  padding: 3.25rem 0;
}

.band {
  background: var(--surface);
}

.band-dark {
  background: var(--band-dark-bg);
  color: var(--band-dark-ink);
}

.band-green {
  background: var(--surface-green);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 8rem 0 4.5rem;
  color: var(--image-ink);
  background:
    linear-gradient(90deg, rgba(12, 18, 20, 0.9), rgba(12, 18, 20, 0.58) 48%, rgba(12, 18, 20, 0.18)),
    url("../images/hero-cockpit.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--hero-fade));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--signal);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1.1rem;
  color: inherit;
  font-size: 1.18rem;
  max-width: 720px;
}

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

.hero .lead {
  color: var(--image-muted);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn.secondary:hover {
  color: var(--ink);
}

.btn.signal {
  background: var(--signal);
  border-color: var(--signal);
  color: #19150d;
}

.btn.subtle {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  background: var(--disabled-bg);
  border-color: var(--disabled-line);
  color: var(--disabled-ink);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.hero .btn.secondary,
.hero .btn.subtle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--image-ink);
  border-color: rgba(255, 255, 255, 0.36);
}

.stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stat {
  padding: 1.4rem;
  background: var(--surface);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
}

.stat-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.stat-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.stat-link:hover {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--signal);
}

.stat-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 36px;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.stat-icon-link img {
  width: 20px;
  height: 20px;
  filter: var(--icon-filter);
  transition: filter 180ms ease;
}

.stat-icon-link:hover {
  background: var(--contrast-bg);
  border-color: var(--contrast-bg);
  color: var(--surface);
  transform: translateY(-2px);
}

.stat-icon-link:hover img {
  filter: var(--contrast-icon-filter);
}

.stat-icon-link strong {
  display: inline;
  font-size: 1.25rem;
  white-space: nowrap;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-panel img,
.media-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 167, 44, 0.6);
  color: var(--ink);
  box-shadow: var(--card-hover-shadow);
}

.card h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 800;
}

.card .card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.card h3 .card-title-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: 1em;
  flex: 0 0 auto;
  filter: var(--icon-filter);
  object-fit: contain;
  transition: filter 180ms ease;
  vertical-align: -0.12em;
}

.card p + .link-list,
.card p + .action-row {
  margin-top: 1rem;
}

.numbered {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 4.6rem;
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.35rem;
  color: var(--green);
  font-weight: 900;
}

.notice {
  padding: 1.25rem;
  border-left: 5px solid var(--signal);
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.notice.danger {
  border-left-color: var(--red);
}

.pill-list,
.link-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list li,
.check-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.link-list {
  display: grid;
  gap: 0.5rem;
}

.link-list a {
  font-weight: 750;
}

.page-hero {
  padding: 5.5rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(23, 27, 31, 0.92), rgba(23, 27, 31, 0.68)),
    url("../images/hero-cockpit.webp") center / cover no-repeat;
  color: var(--image-ink);
}

.page-hero .lead {
  color: var(--image-muted);
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--image-subtle);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: inherit;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 0;
}

.vendor-card {
  min-height: 100%;
}

.vendor-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 800;
}

details > div {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

.form-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.label {
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.1rem;
  min-height: 1.1rem;
  margin: 0.18rem 0 0;
}

.choice-group {
  display: grid;
  gap: 0.65rem;
}

.choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: var(--muted);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--green);
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 70px;
  margin-top: 0.75rem;
}

.legal-box {
  max-height: 220px;
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.92rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(86vh, 900px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.modal-close {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.modal-body {
  display: grid;
  gap: 1rem;
  max-height: calc(min(86vh, 900px) - 120px);
  overflow: auto;
  padding: 1.5rem;
}

.modal-body h3 {
  margin-top: 0.4rem;
}

.modal-body ul {
  margin: 0;
  padding-left: 1.2rem;
}

.modal-details {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.modal-details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.modal-details dt {
  font-weight: 800;
}

.modal-details dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  background: var(--footer-bg);
  color: var(--footer-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(150px, 0.7fr));
  gap: 2rem;
}

.site-footer img {
  width: 210px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.site-footer a {
  color: var(--footer-link);
}

.site-footer h2,
.site-footer h3 {
  color: var(--footer-heading);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .social-link {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .split,
  .split.reverse,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 164px;
  }

  .hero {
    min-height: 76vh;
    padding: 6rem 0 4rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section,
  .page-section {
    padding: 3.5rem 0;
  }

  .section-head {
    display: grid;
    gap: 0.8rem;
  }

  .stat-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding-left: 1.4rem;
  }

  .step::before {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
