:root {
  --navy: #07162b;
  --navy-2: #0a1f3a;
  --slate: #25364a;
  --gold: #f5b800;
  --gold-2: #ffcf33;
  --white: #f4f7fa;
  --muted: #a8b8cb;
  --line: rgba(244, 247, 250, 0.16);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 184, 0, 0.16), transparent 32rem),
    radial-gradient(circle at 12% 18%, rgba(93, 169, 233, 0.12), transparent 28rem),
    linear-gradient(135deg, #020812 0%, var(--navy) 42%, #020812 100%);
  min-height: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 247, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.shell {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hero {
  width: min(960px, 100%);
  text-align: center;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 31, 58, 0.78), rgba(7, 22, 43, 0.5));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(245, 184, 0, 0.42);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(245, 184, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(245, 184, 0, 0.9);
}

.logo {
  display: block;
  width: min(520px, 92%);
  height: auto;
  margin: 32px auto 22px;
  border-radius: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.lede {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.pill-row span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(244, 247, 250, 0.06);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.domain {
  margin: 34px 0 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .hero { border-radius: 24px; }
  .logo { margin-top: 24px; }
  .pill-row { gap: 8px; }
  .pill-row span { width: calc(50% - 6px); }
}
