:root {
  --bg: #0b0a12;
  --surface: #151122;
  --surface-2: #1d1630;
  --text: #f2eeff;
  --muted: #b9aedd;
  --accent: #a855f7;
  --accent-2: #7e22ce;
  --border: #31224f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #24153d 0%, rgba(36, 21, 61, 0) 50%),
    radial-gradient(circle at 90% 10%, #3a1d5e 0%, rgba(58, 29, 94, 0) 45%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.hero__content {
  position: relative;
  width: min(960px, 100%);
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(21, 17, 34, 0.8), rgba(29, 22, 48, 0.7));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.1;
  text-wrap: balance;
}

.subtitle {
  margin: 0 auto 2rem;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.simple-nav {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.simple-nav--legal {
  margin-top: 0.95rem;
}

.simple-link {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: rgba(126, 34, 206, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.simple-link--provider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 250px;
  padding: 0.9rem 1.25rem;
  border-radius: 0.75rem;
}

.provider-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.provider-desc {
  font-size: 0.84rem;
  color: var(--muted);
}

.simple-link:hover {
  background: rgba(126, 34, 206, 0.34);
  transform: translateY(-2px);
}

.legal-block {
  margin: 0 auto 1.1rem;
  width: min(380px, 100%);
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(13, 11, 22, 0.55);
}

.legal-block p {
  margin: 0.15rem 0;
  color: var(--muted);
}

.glow {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(70px);
}

.glow--left {
  top: -120px;
  left: -140px;
  background: rgba(168, 85, 247, 0.38);
}

.glow--right {
  bottom: -140px;
  right: -130px;
  background: rgba(126, 34, 206, 0.3);
}

@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 1.35rem;
  }

  .simple-link--provider {
    min-width: 100%;
  }

}
