:root {
  --bg: #0b0f1a;
  --panel: rgba(18, 23, 38, 0.82);
  --accent: #ff9f1c;
  --accent-2: #7ef3a0;
  --text: #e9ecf5;
  --muted: #9ba4b5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, #1b2340, #0b0f1a 55%), linear-gradient(135deg, #0b0f1a 0%, #0d1224 65%, #0b0f1a 100%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.glow {
  position: fixed;
  inset: -20% -10%;
  background: radial-gradient(circle at 15% 20%, rgba(126, 243, 160, 0.18), transparent 45%), radial-gradient(circle at 80% 10%, rgba(255, 159, 28, 0.2), transparent 36%), radial-gradient(circle at 60% 70%, rgba(126, 158, 255, 0.12), transparent 30%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 72px 28px 48px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.wordmark {
  font-family: "Press Start 2P", "Space Grotesk", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--accent);
}

.tag {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.hero {
  margin-top: 44px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--accent-2);
}

.lede {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ff7d1e);
  color: #0b0f1a;
  box-shadow: 0 12px 32px rgba(255, 159, 28, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(255, 159, 28, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.facts span {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.docs-link {
  color: var(--text);
  opacity: 0.7;
  padding-bottom: 2px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.docs-link:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .shell {
    padding: 56px 18px 42px;
  }
}
