.open-beta-page {
  background: #07090b;
  animation: none;
}

.beta-back-link {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.beta-back-link:hover {
  color: var(--text);
}

.beta-main {
  width: 100%;
  margin: 0;
}

.beta-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(88vh - 58px));
  align-items: end;
  overflow: hidden;
  padding: 72px max(24px, calc((100vw - 1120px) / 2));
  background: url("assets/hero-route-dark.png") center 38% / cover no-repeat;
}

.beta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 9, .82);
}

.beta-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.beta-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .9;
}

.beta-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  color: #d1d7df;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.beta-intro,
.beta-product-strip,
.beta-process {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.beta-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: end;
  padding: 72px 0 44px;
}

.beta-intro h2,
.beta-process h2,
.beta-form-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.beta-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.beta-product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 76px;
}

.beta-product-strip figure {
  margin: 0;
}

.beta-product-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.beta-product-strip figcaption {
  padding: 12px 2px 0;
  color: var(--muted);
  font-size: .82rem;
}

.beta-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 80px;
  align-items: start;
  padding: 76px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.beta-process-copy {
  padding-top: 14px;
}

.beta-process ol {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.beta-process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.beta-process li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.beta-process li span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
}

.beta-process li p {
  margin: 0;
  color: #d7dce3;
  line-height: 1.45;
}

.beta-form-panel {
  display: grid;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111519;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.beta-form-panel > div > span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.beta-form-panel h2 {
  margin: 7px 0 12px;
}

.beta-form-panel > div > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

#betaApplicationForm {
  display: grid;
  gap: 9px;
}

#betaApplicationForm > label:not(.beta-consent, .beta-honeypot) {
  margin-top: 6px;
  color: #d5dae1;
  font-size: .76rem;
  font-weight: 700;
}

#betaApplicationForm input[type="text"],
#betaApplicationForm input[type="email"] {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #343b43;
  border-radius: 6px;
  outline: none;
  background: #090c0f;
  color: var(--text);
  font: inherit;
}

#betaApplicationForm input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .12);
}

.beta-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}

.beta-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.beta-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.beta-form-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

.beta-form-status.is-error {
  color: #fca5a5;
}

.beta-form-status.is-success {
  color: #86efac;
}

@media (max-width: 760px) {
  .beta-hero {
    min-height: 420px;
    align-items: center;
    padding: 28px 18px;
    background-position: 57% center;
  }

  .beta-hero h1 {
    margin-bottom: 14px;
  }

  .beta-hero-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
    line-height: 1.45;
  }

  .beta-intro,
  .beta-process {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .beta-intro {
    padding: 44px 0 28px;
  }

  .beta-intro h2,
  .beta-process h2,
  .beta-form-panel h2 {
    font-size: 2rem;
  }

  .beta-intro > p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .beta-product-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 48px;
  }

  .beta-product-strip img {
    aspect-ratio: 1.7;
  }

  .beta-product-strip figcaption {
    padding-top: 8px;
  }

  .beta-process {
    padding: 44px 0 56px;
  }

  .beta-process-copy {
    padding-top: 0;
  }

  .beta-process ol {
    margin-top: 26px;
  }

  .beta-form-panel {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .open-beta-page .site-header {
    padding: 0 14px;
  }

  .open-beta-page .brand span {
    display: none;
  }

  .beta-intro,
  .beta-product-strip,
  .beta-process {
    width: min(100% - 24px, 1120px);
  }

  .beta-hero .button {
    width: auto;
  }

  .beta-form-panel {
    padding: 22px 18px;
  }
}
