:root {
  --blue-950: #071936;
  --blue-900: #0b2b61;
  --blue-800: #0f3d8e;
  --blue-700: #1156c5;
  --blue-600: #1670ea;
  --blue-100: #dceeff;
  --blue-50: #eef7ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-800: #92400e;
  --green-600: #16a34a;
  --shadow: 0 18px 45px rgba(15, 61, 142, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1d4ed8 0%, #071936 40%, #020617 100%);
  color: var(--slate-900);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.noscript {
  margin: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  color: #b91c1c;
  font-weight: 800;
}

.app-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 16px 14px 32px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 52%, #ffffff 100%);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  padding: 22px 20px 20px;
  margin: -16px -14px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(96, 165, 250, .55), transparent 32%),
    radial-gradient(circle at 0% 95%, rgba(14, 165, 233, .45), transparent 30%),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -35px auto;
  width: 230px;
  height: 145px;
  border: 3px solid rgba(255, 255, 255, .14);
  border-radius: 52% 48% 35% 35%;
  transform: rotate(-4deg);
}

.hero-topline,
.hero-title-row,
.supported-box {
  position: relative;
  z-index: 1;
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255,255,255,.12);
  color: #eaf6ff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.pill.muted {
  color: #bfdbfe;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #bfdbfe;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 9.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin-top: 11px;
  max-width: 280px;
  color: #dbeafe;
  line-height: 1.55;
  font-size: 15px;
}

.hero-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #e0f2fe;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supported-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}

.supported-box strong {
  display: block;
  font-size: 14px;
}

.supported-box p {
  margin-top: 3px;
  color: #dbeafe;
  font-size: 13px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34,197,94,.14);
}

.form-card,
.how-card,
.confirmation {
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.section-heading.vehicle-heading {
  margin-top: 24px;
}

.section-heading > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: var(--blue-700);
  color: #fff;
  font-weight: 950;
}

.section-heading h2 {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.4;
}

.field {
  display: block;
  margin-top: 14px;
}

.field span,
.choice-group legend {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 0 15px;
  background: #fff;
  color: var(--slate-900);
  outline: none;
  font-weight: 750;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(22, 112, 234, .12);
}

.field small {
  display: block;
  margin-top: 7px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.upload-card {
  margin-top: 16px;
  border: 1px solid #c7ddff;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: linear-gradient(180deg, var(--blue-50), #fff);
}

.upload-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.upload-title strong {
  display: block;
  font-size: 14px;
}

.upload-title p {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.45;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--blue-700);
  font-size: 19px;
}

.upload-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 12px;
  border: 2px dashed #93c5fd;
  border-radius: 18px;
  background: #fff;
  color: var(--blue-800);
  font-weight: 950;
}

.upload-box input {
  display: none;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid var(--slate-200);
  border-radius: 17px;
  padding: 0 13px;
  background: #fff;
  color: var(--slate-700);
  font-weight: 750;
}

.choice-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-700);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-card,
.notice-card {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  padding: 14px;
}

.preview-card {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
}

.preview-card strong,
.notice-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.preview-card p {
  color: var(--slate-700);
  font-size: 13px;
  line-height: 1.55;
}

.notice-card {
  border: 1px solid var(--amber-100);
  background: var(--amber-50);
  color: var(--amber-800);
}

.notice-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.65;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--slate-700);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue-700);
}

.submit-button,
.secondary-button {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 18px;
  font-weight: 950;
}

.submit-button {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: #fff;
  box-shadow: 0 16px 25px rgba(17, 86, 197, .22);
}

.submit-button:active,
.secondary-button:active {
  transform: translateY(1px);
}

.confirmation {
  margin-top: 18px;
  text-align: center;
}

.hidden {
  display: none;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 24px;
  background: #dcfce7;
  color: var(--green-600);
  font-size: 34px;
  font-weight: 950;
}

.confirmation h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.1;
}

#confirmText {
  margin-top: 10px;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.55;
}

.confirm-ref {
  margin-top: 16px;
  border-radius: 20px;
  padding: 14px;
  background: var(--blue-50);
}

.confirm-ref span {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.confirm-ref strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-800);
  font-size: 24px;
}

.confirm-note {
  margin-top: 12px;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.55;
}

.secondary-button {
  background: var(--slate-100);
  color: var(--slate-700);
}

.how-card {
  margin-top: 18px;
}

.how-card h2 {
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.steps div {
  min-height: 118px;
  border-radius: 20px;
  padding: 12px 8px;
  background: var(--blue-50);
  text-align: center;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 13px;
  background: var(--blue-700);
  color: #fff;
  font-weight: 950;
}

.steps strong {
  display: block;
  font-size: 12px;
}

.steps p {
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 390px) {
  .split-fields {
    grid-template-columns: 1fr;
  }

  .hero-title-row {
    align-items: flex-start;
  }

  .hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }
}
