:root {
  color-scheme: light;
  --blinx-navy: #012862;
  --blinx-sky: #9ACAF7;
  --blinx-blue: #037BEC;
  --blinx-red: #CE4741;
  --blinx-rose: #E2918D;
  --blinx-coral: #FF675B;
  --font-brand: Matteo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #07182f;
  --muted: #526073;
  --paper: #f7fbff;
  --surface: #ffffff;
  --line: rgba(1, 40, 98, 0.16);
  --green: var(--blinx-blue);
  --green-dark: var(--blinx-navy);
  --blue: var(--blinx-blue);
  --coral: var(--blinx-coral);
  --amber: var(--blinx-coral);
  --mint: rgba(154, 202, 247, 0.28);
  --shadow: 0 18px 45px rgba(1, 40, 98, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-brand);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(247, 251, 255, 0.94);
  border-bottom: 1px solid rgba(1, 40, 98, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 900;
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: clamp(118px, 13vw, 180px);
}

.brand-logo-footer {
  width: min(100%, 230px);
}

.brand-icon {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--blinx-blue);
  color: var(--blinx-navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(3, 123, 236, 0.28);
}

.brand-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blinx-coral);
  box-shadow: 0 0 0 4px rgba(154, 202, 247, 0.72);
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-wordmark {
  color: var(--blinx-blue);
  font-size: 1.58rem;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-wordmark::first-letter {
  color: var(--blinx-navy);
}

.brand-wordmark::after {
  content: "";
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-left: -0.18em;
  border-radius: 1px;
  background: var(--blinx-coral);
  transform: rotate(36deg) translateY(-0.03em);
}

.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.site-footer nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 64px 20px 88px;
  background: var(--blinx-navy);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 78px;
  background: var(--paper);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(1, 40, 98, 0.96) 0%,
    rgba(1, 40, 98, 0.78) 34%,
    rgba(1, 40, 98, 0.28) 66%,
    rgba(1, 40, 98, 0) 100%
  );
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(100%, 720px);
}

.hero-brand-lockup {
  display: inline-flex;
  width: auto;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(154, 202, 247, 0.28);
  border-radius: 999px;
  background: rgba(1, 40, 98, 0.68);
  box-shadow: 0 18px 40px rgba(1, 40, 98, 0.34);
  backdrop-filter: blur(10px);
}

.hero-tagline-chip {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(1, 40, 98, 0.35);
}

.hero-wordmark {
  color: #ffffff;
  font-size: clamp(4rem, 12vw, 8.4rem);
  line-height: 0.82;
}

.hero-wordmark::first-letter {
  color: #ffffff;
}

.hero-tagline {
  color: var(--blinx-sky);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blinx-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 14px;
  font-size: 4rem;
  line-height: 0.95;
  font-weight: 900;
}

.hero h1 {
  color: #ffffff;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: 1.38rem;
  color: #ffffff;
}

.hero-support {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--blinx-blue), var(--blinx-coral));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(3, 123, 236, 0.25);
}

.button.secondary {
  background: #ffffff;
  color: var(--blinx-navy);
  border-color: rgba(1, 40, 98, 0.18);
}

.button.muted {
  width: 100%;
  background: #edf1eb;
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}

.promise,
.values,
.preview,
.can-do,
.early-access,
.support-privacy,
.site-footer {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.promise {
  display: grid;
  gap: 18px;
  padding: 40px 0 28px;
}

.brand-strip {
  display: grid;
  width: min(100% - 40px, 1120px);
  margin: 0 auto 38px;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(154, 202, 247, 0.3);
  border-radius: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 103, 91, 0.24), transparent 32%),
    linear-gradient(135deg, var(--blinx-navy), #041d44);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.brand-strip .eyebrow,
.brand-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-strip h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.94;
}

.brand-strip-mark {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-strip-logo {
  width: min(100%, 430px);
  filter: drop-shadow(0 18px 34px rgba(1, 40, 98, 0.2));
}

.brand-icon-large {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  font-size: 5.4rem;
}

.brand-accent-x {
  color: var(--blinx-coral);
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 900;
}

.section-heading h2,
.early-access h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

.promise > p,
.early-access > p {
  color: var(--muted);
  font-size: 1rem;
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 14px 0 54px;
}

.value-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 31, 26, 0.06);
}

.value-card-image {
  display: block;
  width: 100%;
  height: clamp(190px, 18vw, 240px);
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #eef6ef;
}

.value-card h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.preview {
  display: grid;
  gap: 24px;
  padding: 44px 0 58px;
  border-top: 1px solid var(--line);
}

.preview-stack {
  display: grid;
  gap: 16px;
}

.screen-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 31, 26, 0.06);
}

.screen-card-featured {
  padding: 0;
  overflow: hidden;
}

.preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.screen-card .preview-image {
  border: 1px solid var(--line);
}

.screen-card-featured .preview-image {
  border: 0;
  border-radius: 0;
}

.screen-card figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.screen-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.state-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(154, 202, 247, 0.28);
  color: var(--blinx-navy);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.state-label.testing {
  background: rgba(3, 123, 236, 0.13);
  color: var(--blinx-navy);
}

.state-label.soon {
  background: rgba(255, 103, 91, 0.15);
  color: #8b221b;
}

.preview-brand-badge {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--blinx-navy);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.can-do {
  display: grid;
  gap: 22px;
  padding: 6px 0 58px;
}

.section-visual {
  margin: 22px 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(23, 31, 26, 0.1);
}

.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.action-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(23, 31, 26, 0.05);
}

.action-card h3 {
  margin: 14px 0 8px;
  font-size: 1.22rem;
}

.action-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.early-access {
  display: grid;
  gap: 18px;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
}

.tester-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tester-status span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interest-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 31, 26, 0.06);
}

.interest-copy h3,
.form-state h3,
.info-panel h2 {
  margin-bottom: 8px;
}

.interest-copy p,
.form-state p,
.info-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.field-shell {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-shell input,
.field-shell textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8faf5;
  color: var(--muted);
  font: inherit;
}

.field-shell textarea {
  min-height: 112px;
  resize: vertical;
}

.platform-group {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf5;
}

.platform-group p {
  margin-bottom: 0;
  font-weight: 900;
}

.platform-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.form-state-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-state,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfcf8;
}

.form-state .state-label {
  margin-bottom: 12px;
}

.support-privacy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 8px 0 56px;
}

.support-privacy-visual {
  margin-top: 0;
}

.info-panel a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand-block {
  display: grid;
  max-width: 390px;
  gap: 12px;
}

.footer-brand-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer nav {
  flex-wrap: wrap;
}

.route-page {
  background:
    linear-gradient(180deg, rgba(223, 243, 230, 0.58), transparent 360px),
    var(--paper);
}

.route-main {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 48px 0 58px;
}

.route-hero {
  max-width: 760px;
  padding: 22px 0 30px;
}

.route-hero h1 {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.route-hero p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.route-grid,
.share-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.beta-hero {
  max-width: 820px;
}

.beta-hero .hero-actions {
  margin-top: 24px;
}

.beta-loop {
  display: grid;
  gap: 20px;
  padding: 8px 0 34px;
}

.beta-interest-shell {
  gap: 20px;
}

.beta-capture-form {
  display: grid;
  min-width: 0;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 31, 26, 0.06);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label,
.preference-block h3 {
  color: var(--ink);
  font-weight: 900;
}

.field-group input[type="email"] {
  min-width: 0;
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.field-group input[type="email"]:focus,
.choice-grid label:focus-within,
.consent-row label:focus-within {
  outline: 3px solid rgba(8, 119, 88, 0.24);
  outline-offset: 2px;
  border-color: var(--green);
}

.field-help {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.preference-block {
  display: grid;
  gap: 12px;
}

.preference-block h3 {
  margin-bottom: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.choice-grid label {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8faf5;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.choice-grid input,
.consent-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.consent-row label {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf5;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.form-status {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #f8faf5;
  color: var(--muted);
  font-weight: 800;
}

.form-status[data-state="error"] {
  border-color: #c7533b;
  background: #fff3ee;
  color: #8b2c1d;
}

.form-status[data-state="pending"] {
  border-color: #8ab5d6;
  background: #f1f8ff;
  color: #25526f;
}

.form-status[data-state="success"] {
  border-color: var(--green);
  background: #edf8f1;
  color: var(--green-dark);
}

.form-status[data-state="stubbed"] {
  border-color: #d0b870;
  background: #fff9e8;
  color: #665012;
}

.beta-capture-form .button {
  width: min(100%, 280px);
}

.beta-capture-form .button:disabled,
.beta-capture-form .button[data-pending="true"] {
  background: #7c8d83;
  cursor: wait;
}

.beta-proof-grid {
  padding-bottom: 58px;
}

.route-card,
.share-placeholder {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 31, 26, 0.06);
}

.route-card h2,
.share-placeholder h2 {
  margin: 14px 0 8px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.route-card p,
.share-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
}

.route-card .button {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compact-grid {
  align-content: start;
}

.share-placeholder {
  display: grid;
  gap: 14px;
}

.mini-map {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(15, 107, 87, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 107, 87, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.mini-route {
  position: absolute;
  top: 52%;
  left: 8%;
  width: 86%;
  height: 5px;
  border-radius: 8px;
  background: var(--blue);
  transform: rotate(-18deg);
}

.mini-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--shadow);
}

.mini-pin-one {
  top: 34%;
  left: 20%;
}

.mini-pin-two {
  top: 44%;
  right: 22%;
  background: var(--coral);
}

.mini-pin-three {
  bottom: 22%;
  left: 44%;
  background: var(--amber);
}

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

  .nav-links {
    width: auto;
    justify-content: flex-end;
  }

  .nav-links a:not(.nav-create) {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .button {
    width: 100%;
  }

  .route-hero h1 {
    font-size: 2.15rem;
  }

  .beta-capture-form {
    padding: 16px;
  }

  .beta-page .hero-actions {
    flex-direction: column;
  }

  .beta-page .hero-actions .button,
  .beta-capture-form .button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero-art img {
    object-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(1, 40, 98, 0.1) 0%,
      rgba(1, 40, 98, 0.72) 48%,
      rgba(1, 40, 98, 0.98) 100%
    );
  }
}

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

  .nav-links {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.84rem;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo-header {
    width: 122px;
  }

  .hero-brand-lockup {
    padding: 8px 10px;
  }

  .hero-content,
  .hero-copy,
  .hero-support {
    max-width: 350px;
  }

  .promise,
  .values,
  .preview,
  .can-do,
  .early-access,
  .support-privacy,
  .site-footer {
    width: min(100% - 40px, 350px);
    margin-right: auto;
    margin-left: 20px;
  }
}

@media (min-width: 720px) {
  .site-header {
    padding: 18px 40px;
  }

  .hero {
    padding-right: 40px;
    padding-left: 40px;
  }

  .promise,
  .early-access {
    grid-template-columns: 0.95fr 1fr;
    align-items: start;
  }

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

  .preview {
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
  }

  .screen-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .platform-group {
    grid-column: 1 / -1;
  }

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

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

  .support-privacy-visual {
    grid-column: 1 / -1;
  }

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

  .share-layout {
    grid-template-columns: 0.95fr 1fr;
    align-items: start;
  }

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

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

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 710px;
    padding-left: calc((100vw - 1120px) / 2);
  }

  h1 {
    font-size: 6rem;
  }

  .route-hero h1 {
    font-size: 4.4rem;
  }

  .hero-copy {
    font-size: 1.55rem;
  }

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