:root {
  --bg: #0e0e10;
  --surface: #1a1a1f;
  --accent: #f5c518;
  --text: #f5f5f5;
  --muted: #a0a0a8;
  --max: 42rem;
  --wide: 68rem;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, #2a2410 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, #1a1520 0%, transparent 50%),
    var(--bg);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffd84d;
}

.site-header,
.site-footer {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.nav a {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  min-height: calc(100vh - 8rem);
  max-width: var(--wide);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  animation: rise 0.8s ease-out both;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 0;
  color: var(--text);
  max-width: 20ch;
}

.support {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  padding: 0.7rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #121212;
}

.btn-primary:hover {
  background: #ffd84d;
  color: #121212;
}

.btn-ghost {
  border: 1px solid var(--muted);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  animation: rise 0.6s ease-out both;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.25rem;
}

.disclaimer {
  margin-top: 2.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid #2a2a32;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero,
  .legal,
  .btn {
    animation: none;
    transition: none;
  }
}
