.demo-landing {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0.75rem 1rem 0.4rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  position: relative;
}

.demo-landing::before {
  content: "";
  position: absolute;
  inset: -14% -6% auto;
  height: 46%;
  pointer-events: none;
  background:
    radial-gradient(
      55% 90% at 22% 40%,
      rgba(76, 227, 255, 0.12),
      transparent 65%
    ),
    radial-gradient(
      58% 100% at 78% 24%,
      rgba(223, 122, 254, 0.18),
      transparent 68%
    );
  filter: blur(10px);
}

.demo-landing[hidden],
.demo-landing.hidden {
  display: none !important;
}

.demo-landing__hero {
  display: grid;
  gap: 0.72rem;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.demo-landing__kicker {
  margin: 0;
  color: #d595ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-landing__title {
  margin: 0;
  width: min(18ch, 100%);
  font-size: clamp(1.65rem, 3.8vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.demo-landing__copy {
  margin: 0 auto;
  width: min(76ch, 100%);
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.demo-landing__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.demo-landing__points span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 13, 26, 0.48);
  padding: 0.38rem 0.8rem;
  color: #d3d9ec;
  font-size: 0.8rem;
}

.demo-landing__strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.demo-strip-card {
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 22, 0.5);
  padding: 0.72rem 0.8rem;
}

.demo-landing__strip .demo-strip-card {
  grid-column: span 2;
}

.demo-landing__strip .demo-strip-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.demo-landing__strip .demo-strip-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.demo-strip-card__step {
  margin: 0 0 0.24rem;
  color: #d595ff;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.demo-strip-card__label {
  margin: 0;
  color: #e8ecf9;
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .demo-landing__strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demo-landing__strip .demo-strip-card,
  .demo-landing__strip .demo-strip-card:nth-child(4),
  .demo-landing__strip .demo-strip-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .demo-landing__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.demo-access-card {
  width: min(520px, 100%);
  margin: 0.25rem auto 0;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, var(--bg-card-2), rgba(129, 74, 200, 0.1)),
    radial-gradient(
      ellipse 120% 80% at 100% 0%,
      rgba(223, 122, 254, 0.12),
      transparent 58%
    );
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.demo-access-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.demo-access-card__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.demo-access-card__label {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.demo-access-card__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.78rem 0.9rem;
  outline: none;
}

.demo-access-card__input:focus {
  border-color: rgba(223, 122, 254, 0.45);
  box-shadow: 0 0 0 3px rgba(223, 122, 254, 0.12);
}

.demo-access-card__error {
  margin: 0;
  color: #ff9ab5;
  font-size: 0.82rem;
}

.demo-access-card__error.hidden {
  display: none;
}

.demo-access-card .cf-turnstile {
  margin-top: 0.15rem;
}

.demo-access-card__btn {
  width: fit-content;
  min-width: 140px;
}

@media (max-width: 700px) {
  .demo-landing {
    padding-inline: 0.75rem;
    gap: 0.6rem;
  }

  .demo-landing__title {
    width: 100%;
  }

  .demo-landing__points {
    justify-content: flex-start;
  }

  .demo-landing__strip {
    grid-template-columns: 1fr;
  }
}
