:root {
  --ink: #0b0d10;
  --paper: #f2f0ea;
  --muted: #a8aaa6;
  --acid: #c8f542;
  --acid-dim: #9bc21f;
  --line: rgba(242, 240, 234, 0.12);
  --font-display: "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  inset: -20% -10% auto;
  height: 70vh;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(200, 245, 66, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(242, 240, 234, 0.06), transparent 50%);
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2%, 3%, 0) scale(1.05);
  }
}

.top,
.hero,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.mark img {
  display: block;
  width: 52px;
  height: auto;
  filter: invert(1);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--acid);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 8vh, 5rem) 1.5rem clamp(3rem, 10vh, 6rem);
  max-width: 52rem;
}

.brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: 0.08em;
  color: var(--acid);
  animation: rise 0.7s ease both;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 400;
  animation: rise 0.8s 0.08s ease both;
}

.lede {
  margin: 1.35rem 0 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  animation: rise 0.8s 0.16s ease both;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  animation: rise 0.8s 0.24s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  background: var(--acid);
  color: var(--ink);
}

.btn.primary:hover {
  background: var(--acid-dim);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
}

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

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

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

.foot a:hover {
  color: var(--acid);
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal h1 {
  font-size: 2.5rem;
  color: var(--paper);
  margin-bottom: 1rem;
}

.legal a {
  color: var(--acid);
}

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

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