:root {
  --bg: #030303;
  --panel: #0a0a0a;
  --panel-2: #0d0d0d;
  --line: rgba(196, 255, 0, 0.18);
  --line-soft: rgba(255,255,255,0.08);
  --lime: #b7ff00;
  --lime-bright: #c7ff18;
  --text: #f5f7ef;
  --muted: #9a9e92;
  --max: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 65%);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(183,255,0,.08), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity .3s;
}

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 32px; font-size: 13px; color: #b8bbb1; }
.nav a:not(.nav-cta) { transition: color .25s; }
.nav a:not(.nav-cta):hover { color: var(--lime); }
.nav-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(183,255,0,.45);
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--lime);
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: rgba(183,255,0,.09); transform: translateY(-2px); }

.hero {
  min-height: calc(100vh - 92px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 130px;
  overflow: hidden;
}
.hero-content { width: 58%; position: relative; z-index: 2; }
.eyebrow, .section-label {
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--lime);
  font-weight: 700;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.status-dot, .mini-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 14px rgba(183,255,0,.9);
}
.hero h1 {
  font-size: clamp(64px, 8.4vw, 124px);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 800;
  max-width: 850px;
}
.hero h1 span, h2 span { color: var(--lime); }
.hero-copy {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 34px 0 34px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.btn-primary {
  background: var(--lime);
  color: #050505;
  box-shadow: 0 0 0 1px rgba(183,255,0,.4), 0 12px 45px rgba(183,255,0,.13);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--lime), 0 18px 60px rgba(183,255,0,.23); }
.btn-ghost {
  border: 1px solid var(--line-soft);
  color: #d4d7cd;
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--line); color: var(--lime); }
.discord-mark { font-size: 17px; }
.btn-arrow { font-size: 17px; }
.invite-line {
  display: flex; align-items: center; gap: 10px;
  margin-top: 25px; color: #656960; font-size: 12px; letter-spacing: .05em;
}
.mini-dot { width: 4px; height: 4px; }

.hero-logo-wrap {
  position: absolute;
  width: min(48vw, 570px);
  aspect-ratio: 1;
  right: -2%;
  top: 50%;
  transform: translateY(-48%);
  display: grid;
  place-items: center;
}
.hero-logo {
  width: 72%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 45px rgba(183,255,0,.15));
  animation: float 6s ease-in-out infinite;
}
.logo-ring {
  position: absolute;
  width: 92%;
  height: 92%;
  border: 1px solid rgba(183,255,0,.13);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.logo-ring::before, .logo-ring::after {
  content: "";
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}
.logo-ring::before { left: 17%; top: 5%; }
.logo-ring::after { right: 9%; bottom: 20%; }
.ring-two { width: 74%; height: 74%; border-color: rgba(183,255,0,.07); animation-direction: reverse; animation-duration: 32s; }

.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(183,255,0,.07); pointer-events: none; }
.orbit-one { width: 900px; height: 900px; right: -330px; top: -180px; }
.orbit-two { width: 620px; height: 620px; right: -100px; bottom: -300px; }

.scroll-cue {
  position: absolute; left: 0; bottom: 35px; display: flex; align-items: center; gap: 13px;
  color: #5f635b; font-size: 9px; letter-spacing: .2em;
}
.scroll-cue i { display: block; width: 70px; height: 1px; background: linear-gradient(90deg, #5f635b, transparent); }

.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  width: max-content; display: flex; align-items: center; gap: 38px;
  padding: 18px 0; font-size: 12px; letter-spacing: .25em; color: #6f7369;
  animation: marquee 26s linear infinite;
}
.marquee-track b { color: var(--lime); font-size: 10px; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 150px 0; }
.section-label { margin-bottom: 58px; }
.section-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
h2 { font-size: clamp(50px, 6vw, 86px); line-height: .95; letter-spacing: -.06em; }
.section-copy { align-self: end; max-width: 510px; }
.section-copy p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 22px; }

.community { border-top: 1px solid var(--line-soft); }
.community-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 65px; }
.community-head p { max-width: 340px; color: var(--muted); line-height: 1.7; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  min-height: 340px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line-soft); border-radius: 20px; padding: 28px;
  position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.card:hover { transform: translateY(-8px); border-color: var(--line); background: linear-gradient(145deg, rgba(183,255,0,.07), rgba(255,255,255,.012)); }
.card-featured { border-color: rgba(183,255,0,.25); }
.card-number { color: #4e524a; font-size: 11px; letter-spacing: .12em; }
.card-icon { color: var(--lime); font-size: 34px; margin-top: 75px; }
.card h3 { margin-top: 32px; font-size: 25px; letter-spacing: -.03em; }
.card p { color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 300px; font-size: 14px; }

.join-panel {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto 120px;
  border: 1px solid rgba(183,255,0,.25); border-radius: 28px; min-height: 520px;
  display: grid; place-items: center; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(183,255,0,.1), transparent 52%), #080908;
}
.join-glow { position: absolute; width: 600px; height: 220px; top: -100px; background: rgba(183,255,0,.1); filter: blur(80px); border-radius: 50%; }
.join-content { position: relative; z-index: 2; padding: 70px 24px; }
.join-content .section-label { margin-bottom: 35px; }
.join-content h2 { font-size: clamp(54px, 7vw, 90px); }
.join-content p { color: var(--muted); margin: 25px 0 32px; }
.btn-large { min-height: 58px; padding: 0 25px; }
.copy-link {
  display: flex; margin: 18px auto 0; background: transparent; border: 0; color: #666a61;
  cursor: pointer; gap: 15px; font-size: 11px; letter-spacing: .05em;
}
.copy-state { color: #888c82; }
.copy-link:hover .copy-state { color: var(--lime); }

.footer {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  border-top: 1px solid var(--line-soft); min-height: 100px; display: flex;
  align-items: center; justify-content: space-between; gap: 20px;
  color: #666a62; font-size: 11px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: #a4a79d; letter-spacing: .12em; font-size: 10px; font-weight: 700; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.footer-right { display: flex; gap: 24px; }
.footer-right a:hover { color: var(--lime); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 70px; min-height: auto; }
  .hero-content { width: 100%; }
  .hero-logo-wrap { opacity: .22; width: 650px; right: -230px; top: 55%; }
  .section-grid, .cards { grid-template-columns: 1fr; }
  .section-grid { gap: 40px; }
  .community-head { display: block; }
  .community-head p { margin-top: 25px; }
  .card { min-height: 280px; }
  .card-icon { margin-top: 45px; }
}
@media (max-width: 600px) {
  .site-header, .hero, .section, .join-panel, .footer { width: min(100% - 32px, var(--max)); }
  .site-header { height: 78px; }
  .brand img { width: 38px; height: 38px; }
  .nav-cta { padding: 9px 12px; }
  .hero { padding: 65px 0 110px; }
  .hero h1 { font-size: clamp(56px, 17vw, 84px); }
  .hero-copy { font-size: 15px; }
  .hero-logo-wrap { width: 480px; right: -190px; top: 53%; }
  .scroll-cue { display: none; }
  .section { padding: 105px 0; }
  .section-label { margin-bottom: 38px; }
  .section-grid { gap: 30px; }
  .community-head { margin-bottom: 40px; }
  .join-panel { margin-bottom: 70px; min-height: 470px; border-radius: 22px; }
  .footer { padding: 28px 0; align-items: flex-start; flex-direction: column; }
  .footer-right { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
