:root {
  --bg: #0a0c06;
  --fg: #f0ede0;
  --fg-muted: rgba(240, 237, 224, 0.5);
  --accent: #b4ff5e;
  --accent-dim: rgba(180, 255, 94, 0.12);
  --accent-glow: rgba(180, 255, 94, 0.06);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 80px 80px 80px 10vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spore {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,255,94,0.18) 0%, transparent 70%);
}

.spore-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.spore-2 { width: 300px; height: 300px; bottom: 10%; right: 15%; animation: drift 8s ease-in-out infinite; }
.spore-3 { width: 200px; height: 200px; top: 30%; right: 40%; animation: drift 12s ease-in-out infinite reverse; }
.spore-4 { width: 150px; height: 150px; bottom: 30%; right: 5%; animation: drift 6s ease-in-out infinite; }
.spore-5 { width: 80px; height: 80px; top: 60%; right: 25%; animation: pulse 4s ease-in-out infinite; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

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

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--fg);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ring {
  position: relative;
  z-index: 1;
  margin-left: 80px;
  flex-shrink: 0;
}

.ring-svg {
  width: 280px;
  height: 280px;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MANIFESTO */
.manifesto {
  padding: 100px 10vw;
  border-top: 1px solid rgba(180, 255, 94, 0.1);
}

.manifesto-inner { max-width: 700px; }

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.manifesto-text.accent {
  color: var(--fg);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 0;
}

/* FEATURES */
.features {
  padding: 100px 10vw;
  background: var(--accent-glow);
}

.features-header {
  margin-bottom: 64px;
}

.features-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: rgba(10, 12, 6, 0.6);
  padding: 40px 36px;
  border: 1px solid rgba(180, 255, 94, 0.08);
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(180, 255, 94, 0.25);
}

.feature-icon {
  margin-bottom: 20px;
  width: 28px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* LIFECYCLE */
.lifecycle {
  padding: 100px 10vw;
  border-top: 1px solid rgba(180, 255, 94, 0.1);
}

.lifecycle-header {
  margin-bottom: 72px;
}

.lifecycle-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lifecycle-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
}

.lifecycle-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.lifecycle-phase {
  flex: 1;
  position: relative;
}

.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(180, 255, 94, 0.4);
}

.phase-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.phase-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 200px;
}

.lifecycle-connector {
  width: 60px;
  height: 1px;
  background: rgba(180, 255, 94, 0.2);
  margin-top: 6px;
  margin-right: 0;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 22px;
  margin-left: 0;
  margin-right: 0;
}

/* CLOSING */
.closing {
  padding: 120px 10vw;
  border-top: 1px solid rgba(180, 255, 94, 0.1);
  text-align: center;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 24px;
}

.closing-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 10vw;
  border-top: 1px solid rgba(180, 255, 94, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
  }

  .hero-ring { display: none; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifecycle-track {
    flex-direction: column;
    gap: 48px;
  }

  .lifecycle-connector {
    width: 1px;
    height: 40px;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .manifesto-text.accent {
    font-size: 20px;
  }
}