:root {
  --bg: #030403;
  --bg-soft: #081008;
  --bg-elev: #0d150d;
  --panel: rgba(10, 18, 10, 0.82);
  --panel-strong: rgba(12, 22, 12, 0.94);
  --line: rgba(140, 255, 59, 0.16);
  --line-strong: rgba(189, 255, 88, 0.34);
  --text: #f2f5f0;
  --text-soft: #c6d0c2;
  --muted: #869283;
  --lime: #d7ff4f;
  --green: #6bff2d;
  --green-strong: #35d419;
  --green-deep: #0a6b17;
  --green-shadow: rgba(107, 255, 45, 0.22);
  --white-glow: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(215, 255, 79, 0.1), transparent 22%),
    radial-gradient(circle at 72% 12%, rgba(53, 212, 25, 0.1), transparent 18%),
    radial-gradient(circle at 52% 44%, rgba(107, 255, 45, 0.06), transparent 28%),
    linear-gradient(180deg, #020302 0%, #040704 38%, #050705 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-shell {
  position: relative;
  overflow: clip;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 150px 150px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(170, 255, 74, 0.13), transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(34px);
  z-index: 0;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 5, 0.74);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo,
.footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(107, 255, 45, 0.16));
}

.brand-logo {
  height: 58px;
}

.footer-logo {
  height: 66px;
  margin-bottom: 16px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover { color: var(--lime); }

.section {
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
  padding-top: 56px;
}

.eyebrow,
.mini-label,
.tag,
.meta,
.pillar-index {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.eyebrow {
  color: var(--lime);
  margin-bottom: 18px;
}

.hero h1,
.section-head h2,
.mission-card h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  max-width: 9ch;
}

.hero-text,
.section-head p,
.project-card p,
.pillar-card p,
.frame-side p,
.mission-card p,
.footer p {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 0;
  font-size: 1.05rem;
}

.hero-supporting {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--text);
  max-width: 38ch;
}

.hero-mission-preview {
  margin-top: 14px;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  font-weight: 600;
}

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

.btn-primary {
  color: #091007;
  background: linear-gradient(180deg, rgba(215, 255, 79, 0.95), rgba(107, 255, 45, 0.78));
  border-color: rgba(215, 255, 79, 0.42);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 12px 30px rgba(107, 255, 45, 0.22);
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 28px rgba(170, 255, 74, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.025);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.frame-card,
.panel {
  position: relative;
  overflow: hidden;
}

.frame-card::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(215, 255, 79, 0.12), transparent 22%, transparent 76%, rgba(255, 255, 255, 0.06));
  opacity: 0.8;
}

.frame-card {
  border-radius: 26px;
  border: 1px solid rgba(170, 255, 74, 0.18);
  background: linear-gradient(180deg, rgba(11, 17, 11, 0.94), rgba(6, 10, 6, 0.9));
  box-shadow: 0 30px 80px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.04);
}

.frame-main {
  width: min(100%, 540px);
  padding: 22px;
}

.frame-side {
  position: absolute;
  right: -10px;
  top: 96px;
  width: 258px;
  padding: 18px;
}

.frame-side-lower {
  left: -4px;
  top: auto;
  bottom: 78px;
  right: auto;
  width: 280px;
}

.frame-head,
.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 0.88rem;
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(215,255,79,0.85);
  display: inline-block;
  margin-right: 8px;
}

.logo-surface {
  margin: 18px 0;
  min-height: 400px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(215,255,79,0.12), transparent 22%),
    radial-gradient(circle at 50% 60%, rgba(53,212,25,0.14), transparent 34%),
    linear-gradient(180deg, #091009, #060906);
  border: 1px solid rgba(170,255,74,0.16);
}

.hero-logo {
  width: min(84%, 420px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 36px rgba(107, 255, 45, 0.18));
}

.logo-aura {
  position: absolute;
  inset: 18% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170,255,74,0.18), transparent 62%);
  filter: blur(18px);
}

.logo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(170,255,74,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,255,74,0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 84%);
}

.orbital {
  position: absolute;
  border: 1px solid rgba(170,255,74,0.12);
  border-radius: 999px;
  pointer-events: none;
}

.orbital-a {
  width: 740px;
  height: 740px;
  opacity: 0.24;
}

.orbital-b {
  width: 560px;
  height: 560px;
  opacity: 0.16;
}

.floating-1 { animation: floatA 8s ease-in-out infinite; }
.floating-2 { animation: floatB 7s ease-in-out infinite; }
.floating-3 { animation: floatC 9s ease-in-out infinite; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.mission-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.pillars,
.project-grid-cards,
.mission-layout {
  display: grid;
  gap: 22px;
}

.pillars { grid-template-columns: repeat(3, 1fr); }
.project-grid-cards { grid-template-columns: repeat(3, 1fr); }
.mission-layout { grid-template-columns: 1.1fr 0.9fr; }

.panel {
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, rgba(11, 17, 11, 0.94), rgba(8, 12, 8, 0.86));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.pillar-index,
.meta,
.mini-label,
.tag { color: var(--lime); }

.project-card-top,
.project-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.project-card h3,
.pillar-card h3,
.frame-side h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 14px 0 10px;
  font-size: 1.45rem;
}

.project-card-bottom,
.project-card-top {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.project-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission-card {
  min-height: 100%;
}

.belief-line {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.35;
  margin: 0 0 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 56px;
  color: var(--text-soft);
  align-items: flex-end;
}

.footer p {
  max-width: 36ch;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .hero,
  .pillars,
  .project-grid-cards,
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-visual { min-height: 580px; }
  .frame-side { right: 0; }
  .frame-side-lower { left: 0; }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav { flex-wrap: wrap; justify-content: center; }
  .hero h1 { max-width: 11ch; }
  .hero-visual { min-height: 520px; }
  .frame-main { width: 100%; }
  .frame-side,
  .frame-side-lower {
    position: absolute;
    width: 220px;
  }
  .section { padding: 84px 0; }
}

@media (max-width: 640px) {
  .topbar,
  .section,
  .footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .topbar { margin-top: 10px; }
  .nav { display: none; }
  .brand-logo { height: 48px; }
  .hero { gap: 24px; padding-top: 32px; }
  .hero h1 { font-size: 3rem; }
  .hero-visual { min-height: 440px; display: block; }
  .frame-main { padding: 18px; }
  .frame-side,
  .frame-side-lower {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .orbital-a, .orbital-b { display: none; }
  .logo-surface { min-height: 280px; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
}
