:root {
  --navy-950: #020b1c;
  --navy-900: #06142b;
  --navy-800: #0a1d3b;
  --blue-600: #1677ff;
  --blue-500: #1f8cff;
  --violet-500: #7157ff;
  --cyan-300: #78d6ff;
  --ink: #08142b;
  --muted: #64708a;
  --line: #dce5f3;
  --paper: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(3, 14, 34, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(2, 11, 28, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-symbol path,
.brand-symbol line {
  fill: none;
  stroke: var(--blue-500);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-symbol path {
  stroke-width: 4.4;
}

.brand-symbol line {
  stroke-width: 1.8;
  opacity: 0.55;
}

.brand-symbol circle {
  fill: var(--blue-500);
}

.brand-symbol circle:nth-of-type(2n) {
  fill: var(--white);
}

.brand-symbol circle:nth-of-type(3n) {
  fill: var(--violet-500);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(58px, 7vw, 104px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 140, 255, 0.28), transparent 32%),
    radial-gradient(circle at 58% 80%, rgba(113, 87, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, var(--navy-800));
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.pill-row span {
  min-height: 34px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-500);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-question {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--cyan-300);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6.4vw, 5.9rem);
  line-height: 1;
  font-weight: 900;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  font-weight: 900;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.hero-subtitle p {
  margin: 0 0 14px;
}

.hero-subtitle strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.7vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.launch-form {
  display: grid;
  gap: 12px;
}

.launch-form-hero {
  width: min(560px, 100%);
  margin-top: 18px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(120, 214, 255, 0.32);
  border-radius: 8px;
}

.launch-form-hero div {
  display: grid;
  gap: 4px;
}

.launch-form-hero span,
.launch-status {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.launch-form-hero strong {
  color: var(--white);
  font-size: 1rem;
}

.launch-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(120, 214, 255, 0.34);
  border-radius: 8px;
  font: inherit;
}

.launch-form input:focus {
  outline: 3px solid rgba(120, 214, 255, 0.2);
  border-color: var(--cyan-300);
}

.launch-status {
  min-height: 20px;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--violet-500));
  box-shadow: 0 18px 40px rgba(22, 119, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgba(22, 119, 255, 0.34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.brand-showcase {
  display: grid;
  min-height: 520px;
  color: #0f2744;
  background: var(--white);
}

.brand-lockup {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 140, 255, 0.12), transparent 30%),
    var(--white);
}

.brand-lockup img {
  width: 100%;
  height: auto;
  aspect-ratio: 805 / 446;
  object-fit: cover;
  object-position: center;
}

.recommendation-preview {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(31, 140, 255, 0.25), transparent 30%),
    linear-gradient(160deg, #0f2744, #06142b);
}

.preview-header {
  display: grid;
  gap: 6px;
}

.preview-header span,
.metric-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-header strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.vehicle-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.vehicle-image {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.analysis-summary {
  display: grid;
  gap: 8px;
  min-width: 150px;
}

.analysis-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.analysis-summary strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.18;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.recommendation-reason {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(120, 214, 255, 0.18);
  border-radius: 8px;
}

.recommendation-reason strong {
  color: var(--white);
  font-size: 0.96rem;
}

.recommendation-reason p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.metric-row strong {
  color: var(--white);
  font-size: 0.95rem;
}

.metric-row i {
  position: relative;
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.metric-row i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: linear-gradient(90deg, #78d6ff, #7157ff);
  border-radius: inherit;
  content: "";
}

.analysis-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analysis-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-columns,
.validation-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section-lead,
.form-copy p,
.validation-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.25rem);
}

.pain-card,
.recommendation-form,
.proof-strip,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pain-card {
  padding: clamp(24px, 4vw, 38px);
}

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

.signal-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.signal-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--violet-500));
  border-radius: 50%;
  content: "✓";
  font-size: 0.82rem;
}

.loss-callout {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.loss-callout span {
  color: var(--blue-600);
  font-weight: 900;
}

.loss-callout strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.how-section,
.solution-section,
.form-section {
  background: var(--white);
}

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

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.feature-card {
  min-height: 272px;
  padding: 26px;
  box-shadow: none;
}

.card-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p {
  color: var(--muted);
}

.methodology-section {
  background: var(--paper);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.method-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 42px rgba(3, 14, 34, 0.06);
}

.method-note {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.comparison-section {
  background: var(--white);
}

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

.comparison-card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-card-positive {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 140, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #0f2744, #06142b);
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-card h3 {
  margin-bottom: 22px;
}

.comparison-card-positive .signal-list li,
.comparison-card-positive .signal-list li::before {
  color: var(--white);
}

.comparison-card-positive .signal-list li::before {
  background: linear-gradient(135deg, var(--blue-600), var(--violet-500));
}

.validation-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(31, 140, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #0f2744, #06142b);
}

.validation-section .eyebrow {
  color: var(--cyan-300);
}

.validation-copy {
  display: grid;
  gap: 16px;
}

.validation-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.validation-copy strong {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.proof-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  background: var(--line);
}

.beta-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.09), rgba(113, 87, 255, 0.08));
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 8px;
}

.beta-note strong {
  color: var(--blue-600);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.beta-note span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.conversion-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.conversion-note span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--paper);
}

.proof-strip strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.recommendation-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.recommendation-form label,
.recommendation-form legend {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.recommendation-form input[type="text"],
.recommendation-form input[type="email"],
.recommendation-form input[type="tel"],
.recommendation-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.recommendation-form input[type="text"],
.recommendation-form input[type="email"],
.recommendation-form input[type="tel"] {
  min-height: 50px;
}

.recommendation-form input:focus,
.recommendation-form textarea:focus {
  outline: 3px solid rgba(22, 119, 255, 0.18);
  border-color: var(--blue-600);
}

.recommendation-form fieldset + label {
  margin-top: 2px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

fieldset label {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue-600);
}

.submit-button {
  width: 100%;
  min-height: 58px;
  text-transform: uppercase;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-600);
  font-weight: 900;
}

.form-status[data-status="error"],
.launch-status[data-status="error"],
.partner-status[data-status="error"] {
  color: #b91c1c;
}

.form-status[data-status="success"],
.launch-status[data-status="success"],
.partner-status[data-status="success"] {
  color: var(--blue-600);
}

.launch-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(70px, 9vw, 124px);
  background: var(--white);
}

.launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(31, 140, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #0f2744, #06142b);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.launch-inner .eyebrow {
  color: var(--cyan-300);
}

.launch-inner h2 {
  max-width: 780px;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
}

.launch-inner p {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.launch-form-footer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.about-inner {
  display: grid;
  gap: 18px;
}

.about-inner p:last-child {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.footer-partner-button {
  min-height: 40px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.footer-partner-button:hover {
  color: var(--white);
  border-color: rgba(120, 214, 255, 0.42);
}

.founder-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 11, 28, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.modal-dialog h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.4rem;
  cursor: pointer;
}

.partner-form {
  display: grid;
  gap: 16px;
}

.partner-form label {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.partner-form textarea {
  resize: vertical;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  outline: 3px solid rgba(22, 119, 255, 0.18);
  border-color: var(--blue-600);
}

.partner-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-600);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .hero,
  .two-columns,
  .validation-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .brand-showcase {
    min-height: auto;
  }

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

  .step-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .form-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand-text small,
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 50px 18px 64px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .brand-lockup,
  .recommendation-preview {
    padding: 28px 20px;
  }

  .vehicle-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 18px;
  }

  .feature-grid,
  .method-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }
}
