:root {
  --green: #00FF6A;
  --green-dark: #00CC55;
  --green-glow: rgba(0, 255, 106, 0.3);
  --purple: #B44AFF;
  --purple-dark: #9933DD;
  --purple-glow: rgba(180, 74, 255, 0.3);
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --text-primary: #FFFFFF;
  --text-secondary: #999999;
  --text-muted: #666666;
  --font-display: 'Dela Gothic One', cursive;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0518 50%, #0A0A0A 100%);
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(15rem, 25vw, 30rem);
  color: rgba(180, 74, 255, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.hero-drip-left,
.hero-drip-right {
  position: absolute;
  top: 0;
  width: 4px;
  height: 40%;
  border-radius: 0 0 4px 4px;
}

.hero-drip-left {
  left: 15%;
  background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
  animation: drip 3s ease-in-out infinite;
}

.hero-drip-right {
  right: 15%;
  background: linear-gradient(180deg, var(--purple) 0%, transparent 100%);
  animation: drip 3s ease-in-out infinite 1.5s;
}

@keyframes drip {
  0% { height: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { height: 40%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.title-slatt {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--green);
  text-shadow: 0 0 60px var(--green-glow), 0 0 120px rgba(0, 255, 106, 0.1);
  letter-spacing: -0.02em;
}

.title-amp {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--text-muted);
  margin: 0.3rem 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.title-slime {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--purple);
  text-shadow: 0 0 60px var(--purple-glow), 0 0 120px rgba(180, 74, 255, 0.1);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-colors {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.color-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.swatch-green { background: var(--green); box-shadow: 0 0 12px var(--green-glow); }
.swatch-purple { background: var(--purple); box-shadow: 0 0 12px var(--purple-glow); }
.swatch-black { background: #333; border: 1px solid #555; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--green), var(--purple));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ======= MANIFESTO ======= */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid rgba(180, 74, 255, 0.15);
  border-bottom: 1px solid rgba(0, 255, 106, 0.15);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ======= FEATURES ======= */
.features {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

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

.features-header {
  margin-bottom: 4rem;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.features-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 450px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(180, 74, 255, 0.3);
  transform: translateY(-2px);
}

.feature-card:nth-child(odd):hover {
  border-color: rgba(0, 255, 106, 0.3);
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 1.25rem;
}

.feature-card:nth-child(odd) .feature-icon {
  color: var(--green);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ======= CULTURE ======= */
.culture {
  padding: 8rem 2rem;
  background: var(--bg-primary);
}

.culture-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.culture-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.culture-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.culture-block {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.1em;
}

.block-1 {
  background: rgba(0, 255, 106, 0.08);
  color: var(--green);
  border: 1px solid rgba(0, 255, 106, 0.2);
}

.block-2 {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.4em;
}

.block-3 {
  background: rgba(180, 74, 255, 0.08);
  color: var(--purple);
  border: 1px solid rgba(180, 74, 255, 0.2);
}

/* ======= CLOSING ======= */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0D0518 100%);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-pre {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 2rem;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.closing-drip {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.drip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.drip-dot:nth-child(1) { background: var(--green); }
.drip-dot:nth-child(2) { background: var(--purple); }
.drip-dot:nth-child(3) { background: var(--green); }

/* ======= FOOTER ======= */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-divider {
  margin: 0 0.5rem;
  opacity: 0.4;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ======= MOBILE ======= */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .culture-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-drip-left { left: 8%; }
  .hero-drip-right { right: 8%; }
  
  .manifesto { padding: 5rem 1.5rem; }
  .features { padding: 5rem 1.5rem; }
  .culture { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.65rem; letter-spacing: 0.2em; }
  .feature-card { padding: 2rem 1.5rem; }
}