:root {
  color-scheme: dark;
  --bg: #120916;
  --panel: rgba(255, 255, 255, 0.10);
  --panel-strong: rgba(255, 255, 255, 0.15);
  --text: #fff8fd;
  --muted: rgba(255, 248, 253, 0.72);
  --pink: #ff4f9a;
  --gold: #ffd23f;
  --blue: #45c7ff;
  --line: rgba(255, 255, 255, 0.20);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 210, 63, 0.24), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(255, 79, 154, 0.28), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(69, 199, 255, 0.16), transparent 36%),
    linear-gradient(145deg, #1a1128 0%, #3c1430 56%, #120916 100%);
}

a {
  color: inherit;
}

.page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 48px 22px 72px;
}

.home {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.hero,
.content {
  width: 100%;
}

.hero {
  padding: clamp(28px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.content {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.content h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 1;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

p {
  margin: 0;
  line-height: 1.62;
}

.tagline {
  margin-top: 18px;
  color: var(--pink);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.16;
}

.lede,
.updated {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--pink);
}

.back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
}

.card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.card a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 560px) {
  .page {
    padding-top: 30px;
  }

  .hero {
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }
}
