.early-access-page {
  background: #fff;
}
.early-access-page [hidden] {
  display: none !important;
}
.access-header-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.early-back {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #c3ceca;
  font-size: 12px;
}
.early-back > .lucide {
  width: 16px;
  height: 16px;
  transform: rotate(-135deg);
}
.early-back:hover {
  color: var(--logo);
}
.access-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
  color: white;
}
.access-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: access-arrive 1.1s ease-out both;
}
.access-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, #03100fe6, #03100f80 40%, transparent 72%);
}
.access-banner-inner {
  padding-block: 49px;
}
.access-banner .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 10px;
}
.access-banner h1 {
  font-size: 60px;
  font-weight: 750;
  margin-bottom: 17px;
}
.access-tagline {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 500;
}
.access-tagline span {
  color: var(--logo);
}
.access-description {
  max-width: 330px;
  margin-top: 18px;
  color: #b8c9c0;
  font-size: 12px;
  line-height: 1.8;
}
.access-form-width {
  width: calc(100% - 64px);
  max-width: 820px;
  margin-inline: auto;
}
.access-assurances {
  background: var(--mint);
  border-bottom: 1px solid #dceae2;
}
.access-assurances > div {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.access-assurances span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
}
.access-assurances .lucide {
  color: var(--green);
  width: 16px;
  height: 16px;
}
.early-access-layout {
  padding-block: 48px 56px;
}
.access-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.access-form-heading .eyebrow {
  font-size: 10px;
  margin-bottom: 12px;
}
.access-form-heading h2 {
  font-size: 30px;
  font-weight: 600;
}
.form-required-note {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.role-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.role-choice legend {
  padding: 0;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.role-choice label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.role-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.role-option {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.role-option > .lucide {
  width: 25px;
  height: 25px;
  color: var(--muted);
}
.role-option strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.role-option small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.radio-indicator {
  margin-left: auto;
  width: 17px;
  height: 17px;
  border: 1px solid #a1b2a8;
  border-radius: 50%;
  flex-shrink: 0;
  background: white;
}
.role-choice input:checked + .role-option {
  background: var(--mint);
  border-color: var(--green);
}
.role-choice input:checked + .role-option > .lucide {
  color: var(--green);
}
.role-choice input:checked + .role-option .radio-indicator {
  border: 5px solid var(--green);
}
.role-choice input:focus-visible + .role-option {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.role-option:hover {
  border-color: var(--green);
}
.account-type-warning {
  margin: 10px 0 26px;
  font-size: 11px;
  color: var(--muted);
}
.driver-type-choice {
  margin-bottom: 27px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.field-grid label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.field-grid small {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.field-grid input {
  width: 100%;
  height: 48px;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 13px;
  background: white;
  color: var(--ink);
  font:
    400 16px Inter,
    Arial,
    sans-serif;
}
.field-grid input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: transparent;
}
.field-grid input::placeholder {
  color: #77847c;
  font-size: 13px;
}
.address-finder {
  grid-column: 1 / -1;
}
.address-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.address-search-row button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: white;
  color: #107348;
  font-size: 12px;
  font-weight: 600;
}
.address-search-row .lucide {
  width: 17px;
  height: 17px;
}
.address-search-row button:hover {
  background: var(--mint);
}
.address-search-row button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.address-help {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.address-results {
  max-height: 240px;
  overflow: auto;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.address-result {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
}
.address-result:last-child {
  border-bottom: 0;
}
.address-result:hover,
.address-result:focus-visible {
  background: var(--mint);
  outline-offset: -3px;
}
.address-result-message {
  margin: 0;
  padding: 14px 16px;
  font-size: 12px;
  color: #963d31;
}
.selected-address {
  margin-top: 10px;
  border-left: 2px solid var(--green);
  padding: 10px 14px;
  background: var(--mint);
  font-size: 12px;
  color: #107348;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.consent-area {
  margin-top: 27px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.8;
  cursor: pointer;
}
.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--green);
}
.consent-field input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.privacy-note {
  margin: 10px 0 0 30px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.privacy-note a,
.access-form-footnote a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #107348;
}
.form-error {
  padding: 12px 15px;
  background: #fff0ec;
  color: #963d31;
  border-left: 2px solid #963d31;
  font-size: 12px;
  margin-top: 22px;
}
.early-submit {
  width: 100%;
  justify-content: center;
  margin-top: 27px;
  min-height: 54px;
  gap: 18px;
}
.early-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.access-form-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  margin-top: 17px;
}
.early-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 310px);
  text-align: center;
  padding: 40px 0;
}
.success-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  background: var(--mint);
  color: var(--green);
  border-radius: 50%;
  margin-bottom: 25px;
}
.success-mark .lucide {
  width: 30px;
  height: 30px;
}
.early-success h2 {
  font-size: 44px;
}
.early-success > p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 380px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.early-success .button {
  margin-top: 28px;
}
.access-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}
.access-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
  font-size: 11px;
}
.access-footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.access-footer a:hover {
  color: var(--green);
}
.access-footer .lucide {
  width: 14px;
  height: 14px;
}
@keyframes access-arrive {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 850px) {
  .access-backdrop {
    object-position: 62% center;
  }
  .access-banner h1 {
    font-size: 52px;
  }
  .access-shade {
    background: linear-gradient(90deg, #03100fe6, #03100f99 40%, transparent);
  }
}
@media (max-width: 650px) {
  .access-header-links {
    gap: 17px;
  }
  .early-back {
    font-size: 11px;
  }
  .early-back span {
    display: none;
  }
  .early-back {
    width: 32px;
    height: 32px;
    justify-content: center;
  }
  .access-banner-inner {
    padding-block: 35px 32px;
  }
  .access-banner .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .access-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .access-tagline {
    font-size: 19px;
  }
  .access-description {
    max-width: 240px;
    font-size: 11px;
    margin-top: 18px;
  }
  .access-backdrop {
    object-position: 72% center;
  }
  .access-shade {
    background: linear-gradient(90deg, #03100ff5, #03100fcc 48%, #03100f33);
  }
  .access-form-width {
    width: calc(100% - 40px);
  }
  .access-assurances > div {
    gap: 10px;
    padding-block: 15px;
  }
  .access-assurances span {
    font-size: 9px;
    gap: 5px;
    line-height: 1.4;
  }
  .access-assurances .lucide {
    width: 13px;
    height: 13px;
  }
  .early-access-layout {
    padding-block: 34px 40px;
  }
  .access-form-heading {
    align-items: flex-start;
    margin-bottom: 24px;
    flex-direction: column;
    gap: 10px;
  }
  .access-form-heading h2 {
    font-size: 26px;
  }
  .access-form-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .role-choice {
    gap: 10px;
  }
  .role-option {
    padding: 14px 12px;
    gap: 8px;
    min-height: 96px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .role-option > .lucide {
    width: 21px;
    height: 21px;
  }
  .role-option > span:not(.radio-indicator) {
    order: 3;
    flex-basis: 100%;
  }
  .role-option strong {
    font-size: 13px;
  }
  .role-option small {
    font-size: 10px;
  }
  .radio-indicator {
    margin-top: 2px;
    width: 16px;
    height: 16px;
  }
  .account-type-warning {
    font-size: 10px;
    line-height: 1.7;
    margin-bottom: 23px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .address-search-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .address-search-row button {
    padding-inline: 11px;
    font-size: 11px;
  }
  .address-search-row .lucide {
    display: none;
  }
  .field-grid input::placeholder {
    font-size: 11px;
  }
  .consent-field {
    font-size: 11px;
  }
  .privacy-note {
    font-size: 10px;
  }
  .early-submit {
    font-size: 13px;
  }
  .early-success h2 {
    font-size: 36px;
  }
  .access-footer > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    font-size: 10px;
  }
  .access-footer nav {
    gap: 22px;
  }
}
@media (max-width: 370px) {
  .access-form-width {
    width: calc(100% - 32px);
  }
  .access-banner h1 {
    font-size: 38px;
  }
  .access-assurances span {
    font-size: 8px;
  }
  .access-form-heading h2 {
    font-size: 24px;
  }
}
