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

:root {
  --green-deep: #0d3320;
  --green-mid: #1a6b3c;
  --green-bright: #2db865;
  --green-light: #5dde8a;
  --green-glow: #8fffc0;
  --black: #050a07;
  --white: #f0faf4;
  --gray: #8aab97;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(5, 10, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 184, 101, 0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--green-bright);
}

.nav-logo span { color: var(--white); }

.nav-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--green-light);
  letter-spacing: 2px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(26, 107, 60, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(13, 51, 32, 0.4) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 184, 101, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 184, 101, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.mito-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  width: 700px;
  height: 700px;
  object-fit: contain;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green-bright);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--green-bright); }

.hero-title .outline {
  -webkit-text-stroke: 2px var(--green-mid);
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--green-bright);
  line-height: 1;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--black);
  border: none;
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-bright);
  border: 1px solid var(--green-mid);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--green-bright);
  background: rgba(45, 184, 101, 0.08);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-social-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 184, 101, 0.25);
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.social-link:hover {
  color: var(--green-bright);
  border-color: var(--green-bright);
  background: rgba(45, 184, 101, 0.1);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.join-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-email {
  font-family: 'Space Mono', monospace;
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--green-bright);
}

.contact-email:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.hero-contact {
  margin-top: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--gray);
}

.hero-contact .contact-email {
  font-size: 0.72rem;
}

.join-contact {
  margin-top: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.ceo-portrait-contact {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.dna-row .contact-email {
  font-size: 0.7rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
}

.footer-contact .contact-email {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

/* DIAGNOSIS BANNER */
.diagnosis-banner {
  background: var(--green-deep);
  border-top: 1px solid rgba(45, 184, 101, 0.3);
  border-bottom: 1px solid rgba(45, 184, 101, 0.3);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.dx-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--green-bright);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.dx-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--white);
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STORY SECTION */
.section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(45, 184, 101, 0.2);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
/* Making White */
.section-title.white { color: var(--white); }

.section-title .accent { color: var(--green-bright); }

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
}

.story-body p { margin-bottom: 1.5rem; }

.story-body strong {
  color: var(--white);
  font-weight: 500;
}

.story-body .highlight {
  color: var(--green-bright);
  font-weight: 500;
}

.story-sidebar {
  position: sticky;
  top: 6rem;
}

.ceo-portrait {
  margin: 0 0 1.5rem;
}

.ceo-portrait-frame {
  position: relative;
  border: 1px solid rgba(45, 184, 101, 0.35);
  background: var(--green-deep);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  overflow: hidden;
}

.ceo-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 184, 101, 0.08) 0%,
    transparent 40%,
    rgba(5, 10, 7, 0.35) 70%,
    rgba(13, 51, 32, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.ceo-portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(45, 184, 101, 0.12);
  z-index: 2;
  pointer-events: none;
}

.ceo-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.05);
}

.ceo-portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.85rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--green-bright);
}

.ceo-portrait-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.ceo-portrait-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--green-light);
  text-transform: uppercase;
}

.dna-card {
  background: var(--green-deep);
  border: 1px solid rgba(45, 184, 101, 0.25);
  padding: 2.5rem;
}

.dna-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.dna-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dna-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 184, 101, 0.15);
}

.dna-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(45, 184, 101, 0.08);
}

.dna-row-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--gray);
}

.dna-row-value {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--green-light);
}

/* MISSION */
.mission-section {
  background: var(--green-deep);
  border-top: 1px solid rgba(45, 184, 101, 0.2);
  border-bottom: 1px solid rgba(45, 184, 101, 0.2);
  padding: 7rem 3rem;
}

.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.pillar {
  background: rgba(5, 10, 7, 0.6);
  border: 1px solid rgba(45, 184, 101, 0.12);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--green-bright);
  transition: height 0.3s;
}

.pillar:hover::before { height: 100%; }

.pillar:hover {
  background: rgba(13, 51, 32, 0.8);
  border-color: rgba(45, 184, 101, 0.3);
}

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(45, 184, 101, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.pillar-body {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* PROTOCOL */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.protocol-card {
  background: var(--green-deep);
  border: 1px solid rgba(45, 184, 101, 0.2);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.protocol-card:hover {
  border-color: rgba(45, 184, 101, 0.5);
}

.protocol-icon {
  width: 44px;
  height: 44px;
  background: rgba(45, 184, 101, 0.12);
  border: 1px solid rgba(45, 184, 101, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.protocol-title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.protocol-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
}

/* JOIN */
.join-section {
  text-align: center;
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26, 107, 60, 0.2) 0%, transparent 70%);
}

.join-section .section-title {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.5rem;
}

.join-body {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hashtags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hashtag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--green-mid);
  border: 1px solid rgba(45, 184, 101, 0.15);
  padding: 0.4rem 0.9rem;
}

  /* DISCLAIMER */
  .disclaimer {
    background: var(--black);
    border-top: 1px solid rgba(45, 184, 101, 0.1);
    padding: 2rem 3rem;
  }

  .disclaimer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .disclaimer-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--gray);
    line-height: 1.8;
    text-align: center;
  }

  .disclaimer-title {
    color: var(--green-bright);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* FOOTER */
  footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(45, 184, 101, 0.2);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--green-bright);
}

.footer-logo span { color: var(--white); }

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-bright); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag { animation: fadeUp 0.6s ease forwards; }
.hero-title { animation: fadeUp 0.6s 0.15s ease forwards; opacity: 0; }
.hero-sub { animation: fadeUp 0.6s 0.3s ease forwards; opacity: 0; }
.hero-stats { animation: fadeUp 0.6s 0.45s ease forwards; opacity: 0; }
.cta-row { animation: fadeUp 0.6s 0.6s ease forwards; opacity: 0; }
.hero-social { animation: fadeUp 0.6s 0.75s ease forwards; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-sidebar { position: static; }
    .ceo-portrait-frame { max-width: 320px; margin: 0 auto; }
    .ceo-portrait-caption { text-align: center; border-left: none; padding-left: 0; align-items: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .protocol-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  footer { flex-direction: column; align-items: flex-start; }
  .section { padding: 5rem 1.5rem; }
    .mission-section { padding: 5rem 1.5rem; }
    .disclaimer { padding: 2rem 1.5rem; }
  }

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
