.landing-home {
  --landing-bg: #f4ede1;
  --landing-text: #131a24;
  --landing-muted: #465363;
  --landing-chip-bg: #162231;
  --landing-chip-text: #f7f1e8;
  position: relative;
  padding: clamp(2.2rem, 5vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem);
  color: var(--landing-text);
  background:
    radial-gradient(circle at 72% 22%, rgb(75 109 167 / 0.08), transparent 18%),
    radial-gradient(circle at 82% 60%, rgb(27 51 84 / 0.08), transparent 22%);
}

.landing-home__shell {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}

.landing-home__hero {
  display: block;
  min-height: calc(100vh - 9.2rem);
}

.landing-home__copy {
  display: grid;
  gap: 1.25rem;
  align-content: center;
  max-width: 40rem;
  animation: landing-rise 820ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.landing-home__copy h1 {
  margin: 0;
  color: var(--landing-text);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(4.75rem, 9vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.landing-home__lede {
  margin: 0;
  max-width: 33rem;
  color: var(--landing-muted);
  font-size: 1.12rem;
  line-height: 1.68;
}

.landing-home__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 35rem;
}

.landing-home__list li {
  position: relative;
  padding-left: 1.35rem;
  color: #26303d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.landing-home__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #131d2a 0%, #8aaab2 100%);
  box-shadow: 0 0 0 0.28rem rgb(19 29 42 / 0.08);
}

.landing-home__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.2rem;
}

.landing-home__cta {
  min-height: 3.05rem;
  padding: 0.88rem 1.45rem;
  border-color: #162231;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, #162231 0%, #24344a 100%);
  color: #f7f1e8;
  box-shadow: 0 16px 30px rgb(22 34 49 / 18%);
}

.landing-home__cta:hover {
  border-color: #101a28;
  background: linear-gradient(135deg, #101a28 0%, #1f3046 100%);
  color: #fffaf2;
  box-shadow: 0 18px 34px rgb(22 34 49 / 24%);
}

.landing-home__status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  min-height: 3.05rem;
  padding: 0.4rem 0.55rem 0.4rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgb(16 23 34 / 0.09);
  background: rgb(255 255 255 / 0.58);
  box-shadow: 0 16px 32px rgb(28 35 46 / 0.09);
  animation: landing-rise 980ms cubic-bezier(0.2, 0.9, 0.2, 1) both 120ms;
}

.landing-home__status-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--landing-chip-bg);
  color: var(--landing-chip-text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-home__status strong {
  padding-right: 0.5rem;
  color: #223042;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.beta-request-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-request-page {
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
}

.beta-request-page__shell {
  width: min(100% - 2.5rem, 980px);
}

.beta-request-panel {
  position: relative;
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgb(20 28 43 / 0.1);
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at top right, rgb(66 103 161 / 0.08), transparent 24%),
    linear-gradient(180deg, rgb(255 255 255 / 0.94) 0%, rgb(252 248 242 / 0.92) 100%);
  box-shadow:
    0 24px 60px rgb(20 28 43 / 0.1),
    0 1px 0 rgb(255 255 255 / 0.9) inset;
  backdrop-filter: blur(12px);
}

.beta-request-panel--compact {
  max-width: 38rem;
}

.beta-request-header {
  display: grid;
  gap: 0.9rem;
}

.beta-request-title {
  margin: 0;
  color: var(--landing-text);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.beta-request-title--success {
  font-size: clamp(2.25rem, 4.4vw, 3.4rem);
}

.beta-request-lede {
  max-width: 38rem;
}

.beta-request-form {
  display: grid;
  gap: 1.25rem;
}

.beta-request-validation {
  margin: 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgb(180 35 24 / 0.18);
  border-radius: 1rem;
  background: rgb(255 245 244 / 0.9);
  color: #9d2c24;
}

.beta-request-validation ul {
  margin: 0;
  padding-left: 1rem;
}

.beta-request-grid {
  display: grid;
  gap: 1rem 1.2rem;
}

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

.beta-request-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.beta-request-field {
  display: grid;
  gap: 0.55rem;
}

.beta-request-label {
  color: #223042;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.beta-request-label-note {
  color: #6b7685;
  font-weight: 600;
}

.beta-request-input {
  min-height: 3.35rem;
  border: 1px solid rgb(32 48 66 / 0.12);
  border-radius: 1.05rem;
  background: rgb(255 255 255 / 0.86);
  color: #1f2f43;
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.75) inset;
}

.beta-request-input:focus {
  border-color: rgb(22 34 49 / 0.34);
  box-shadow:
    0 0 0 0.22rem rgb(22 34 49 / 0.1),
    0 1px 0 rgb(255 255 255 / 0.75) inset;
}

.beta-request-input--textarea {
  min-height: 12rem;
  resize: vertical;
}

.beta-request-error {
  color: #9d2c24;
  font-size: 0.88rem;
  font-weight: 700;
}

.beta-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.beta-request-secondary {
  min-height: 3.05rem;
  padding: 0.88rem 1.45rem;
  border-color: rgb(22 34 49 / 0.12);
  border-radius: 1.05rem;
  background: rgb(255 255 255 / 0.72);
  color: #223042;
  box-shadow: 0 12px 26px rgb(20 28 43 / 0.06);
}

.beta-request-secondary:hover {
  border-color: rgb(22 34 49 / 0.18);
  background: rgb(255 255 255 / 0.92);
  color: #172132;
}

@keyframes landing-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .landing-home__copy {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .landing-home__shell {
    width: min(100% - 1.25rem, 1320px);
  }

  .beta-request-page__shell {
    width: min(100% - 1.25rem, 980px);
  }

  .landing-home {
    padding-top: 1.6rem;
  }

  .landing-home__hero {
    gap: 1.6rem;
  }

  .landing-home__copy {
    gap: 1.1rem;
  }

  .landing-home__copy h1 {
    max-width: none;
    font-size: clamp(3.8rem, 18vw, 5.3rem);
  }

  .landing-home__lede,
  .landing-home__list li {
    font-size: 0.98rem;
  }

  .landing-home__status {
    width: fit-content;
  }

  .beta-request-grid--two,
  .beta-request-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .beta-request-title {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

  .beta-request-panel {
    padding: 1.25rem;
    border-radius: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-home__copy,
  .landing-home__status {
    animation: none;
  }
}
