.early-access-main {
  min-height: calc(100vh - 180px);
}

.early-access-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(30rem, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.early-access-copy {
  align-self: start;
}

.early-access-copy h1 {
  max-width: 600px;
}

.early-access-copy .hero-deck {
  max-width: 590px;
}

.early-access-benefits {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.early-access-benefits li {
  position: relative;
  padding-left: 1.8rem;
  color: #c8c8c8;
  line-height: 1.55;
}

.early-access-benefits li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  content: "✓";
  color: #ff2929;
  font-weight: 900;
}

.early-access-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 38, 38, 0.58);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 38px rgba(255, 0, 0, 0.1);
}

.early-access-form h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.early-access-form > p {
  margin: 0.7rem 0 1.6rem;
  color: #aaa;
  line-height: 1.6;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  color: #e9e9e9;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  outline: none;
  background: #101010;
  color: #fff;
  font: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ff2929;
  box-shadow: 0 0 0 3px rgba(255, 41, 41, 0.12);
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.7rem;
  color: #aaa;
  font-size: 0.82rem;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 0.1rem 0 0;
  accent-color: #e91616;
}

.early-access-form .button {
  width: 100%;
  margin-top: 1.1rem;
  cursor: pointer;
}

.form-note {
  margin: 0.8rem 0 0;
  color: #777;
  font-size: 0.75rem;
  text-align: center;
}

.form-note a {
  color: #bbb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: #ff2929;
}

.thank-you {
  display: grid;
  min-height: calc(100vh - 180px);
  place-items: center;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.thank-you h1 {
  margin-inline: auto;
}

.thank-you p {
  max-width: 620px;
  margin: 1.25rem auto 0;
  color: #c8c8c8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.thank-you .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .early-access-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .checkbox-field {
    grid-column: auto;
  }
}
