:root {
  --black: #000;
  --near-black: #070707;
  --panel: #101010;
  --white: #ffffff;
  --muted: #b9b9b9;
  --green: #5cff1d;
  --red: #ff2028;
  --gold: #f2b233;
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 80px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--green);
  text-decoration: none;
}

.nav { display: flex; gap: 22px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav a:hover { color: var(--green); }
.menu-toggle { display: none; }

.section {
  min-height: 100vh;
  padding: 110px 7vw 80px;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(92,255,29,.18), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(255,32,40,.10), transparent 32%),
    var(--black);
}

h1, h2, h3 {
  margin: 0 0 20px;
  line-height: .98;
}

h1, h2 {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(56px, 9vw, 128px); }
h2 { font-size: clamp(42px, 6vw, 88px); }
h3 { font-size: 26px; }

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 13px;
}
.green { color: var(--green); }
.red { color: var(--red); }
.gold { color: var(--gold); }

.hero-copy, .lead, .section-head p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
  max-width: 780px;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: 900;
}
.primary { background: var(--green); color: #061006; }
.secondary { border: 1px solid var(--line); color: var(--white); }

.hero-card, .media-card, .wide-media, .copy-card, .contact-card, .coming-soon, .founder-photo {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card { padding: 18px; }

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.copy-card, .contact-card, .coming-soon {
  padding: clamp(26px, 4vw, 52px);
}
.copy-card p, .copy-card li, .founder-copy p, .contact-card p, .coming-soon p {
  color: var(--muted);
  font-size: 18px;
}
.copy-card ul { padding-left: 20px; }
.copy-card li { margin-bottom: 12px; }

.problem-section {
  background: radial-gradient(circle at 50% 10%, rgba(255,32,40,.18), transparent 38%), var(--black);
}
.solution-section {
  background: radial-gradient(circle at 50% 10%, rgba(92,255,29,.15), transparent 38%), var(--black);
}
.section-head { text-align: center; max-width: 950px; margin: 0 auto 42px; }
.section-head p { margin: 0 auto; }

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.media-card img, .wide-media img { width: 100%; height: 100%; object-fit: cover; }
.wide-media { max-width: 980px; margin: 0 auto 34px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 24px;
  padding: 28px;
}
.feature span {
  display: inline-block;
  color: var(--green);
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  margin-bottom: 16px;
}
.feature p { color: var(--muted); }

.founder-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.founder-photo img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; }

.merch-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(242,178,51,.16), transparent 40%), var(--black);
}
.coming-soon { max-width: 760px; text-align: center; }
.contact-section { min-height: 80vh; }
.contact-card { max-width: 680px; margin: 0 auto; }
.contact-card a { color: var(--green); }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 7vw;
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    color: var(--white);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 22px;
  }
  .nav {
    position: absolute;
    top: 68px;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: #080808;
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .nav.open { display: flex; }
  .hero, .two-column, .founder-section, .image-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
  .founder-section { gap: 30px; }
  .founder-photo { max-width: 420px; }
}

@media (max-width: 520px) {
  .section { padding-left: 5vw; padding-right: 5vw; }
  h1 { font-size: 52px; }
  h2 { font-size: 42px; }
  .btn { width: 100%; }
}


.spotlight-section {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(92,255,29,.14), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(255,32,40,.10), transparent 30%),
    var(--black);
}

.spotlight-photo {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.spotlight-copy p {
  color: var(--muted);
  font-size: 18px;
}

.prospectus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.prospectus-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 24px;
  padding: 28px;
  min-height: 300px;
}

.prospectus-card span {
  display: inline-block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  margin-bottom: 16px;
}

.prospectus-card p,
.donor-bottom p {
  color: var(--muted);
  font-size: 18px;
}

.donor-bottom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.donor-bottom > div {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}

.doc-btn {
  margin-left: 12px;
}

@media (max-width: 920px) {
  .spotlight-section,
  .prospectus-grid,
  .donor-bottom {
    grid-template-columns: 1fr;
  }

  .spotlight-photo {
    max-width: 430px;
  }

  .spotlight-photo img {
    height: auto;
  }

  .doc-btn {
    margin-left: 0;
    margin-top: 12px;
  }
}
