:root {
  --bg: #202022;
  --panel: rgba(22, 22, 24, 0.82);
  --text: #e9e5dc;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #b9aa82;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.045), transparent 32rem),
    radial-gradient(circle at 50% 95%, rgba(185,170,130,0.08), transparent 30rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0, transparent 72%);
}

.splash {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(78vw, 620px);
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}

.discord {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1.5rem 4rem rgba(0,0,0,0.45));
}

.discordlogo {
  margin-top: 50px;
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1.5rem 4rem rgba(0,0,0,0.45));
}

.claim {
  margin: 0;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.5vw, 0.92rem);
}

.site-footer {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 16, 18, 0.62);
  backdrop-filter: blur(18px);
  font-size: .9rem;
  z-index: 20;
}

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

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

.legal {
  min-height: 100vh;
  padding: 5rem 1.25rem 7rem;
  display: grid;
  place-items: start center;
  border-top: 1px solid var(--line);
}

.legal-card {
  width: min(920px, 100%);
  padding: clamp(1.25rem, 3vw, 3rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 2rem 6rem rgba(0,0,0,.28);
}

.back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--muted) !important;
}

h1, h2, p { max-width: 76ch; }

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

h2 {
  margin: 2rem 0 .5rem;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .hero { width: min(92vw, 440px); }
  .site-footer { width: calc(100% - 2rem); justify-content: center; }
}
