:root {
  --neon: #39ff14;
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  min-height: 100vh;
}

/* ─── Header / Nav ──────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  transition: border-bottom 0.25s ease, background-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-wordmark {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon);
  text-transform: uppercase;
}

#site-header nav {
  display: flex;
  gap: 2rem;
}

#site-header nav a {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  text-decoration: none;
  transition: opacity 0.2s;
}

#site-header nav a:hover {
  opacity: 0.7;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3.5rem 0.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  max-width: 1100px;
  width: 100%;
}

.hero-logo {
  width: 100%;
  max-width: 400px;
  max-height: 420px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--neon);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}

/* ─── About ─────────────────────────────────────────────────────── */
#about {
  padding: 5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

#about h2 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

#about p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

#about p:last-child {
  margin-bottom: 0;
}

/* ─── What We Do grid ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.about-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
}

.about-card h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.92rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  max-width: none !important;
}

/* ─── Principles ────────────────────────────────────────────────── */
#principles {
  padding: 5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.principles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

#principles h2 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 2rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.principle-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.principle-item dt {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  padding-top: 0.2rem;
}

.principle-item dd {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin: 0;
}

/* ─── Included ───────────────────────────────────────────────────── */
#included {
  padding: 5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.included-inner {
  max-width: 1100px;
  margin: 0 auto;
}

#included h2 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 2rem;
}

.included-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ─── Join ──────────────────────────────────────────────────────── */
#join {
  padding: 5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.join-inner {
  max-width: 1100px;
  margin: 0 auto;
}

#join h2 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 2rem;
}

.join-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#join p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

#join p:last-child {
  margin-bottom: 0;
}

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  padding: 2rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--neon);
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-rule {
    margin: 0 auto;
  }

  .hero-logo {
    max-width: 280px;
  }

  .about-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .principle-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  html { font-size: 16px; }

  #site-header,
  #hero,
  #about,
  #principles,
  #included,
  #join,
  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}
