:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg-primary: #e8e8f0;
  --fg-secondary: #8888a0;
  --fg-muted: #55556a;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.15);
  --accent-glow: rgba(57, 255, 20, 0.3);
  --accent-secondary: #ff3cac;
  --font-display: 'Syne', sans-serif;
  --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(--fg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

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

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--fg-muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--fg-muted) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.04;
}

.toxic-drip {
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.25;
  animation: drip 4s ease-in-out infinite;
}

.drip-1 { left: 15%; top: -20%; height: 200px; animation-delay: 0s; }
.drip-2 { left: 72%; top: -10%; height: 160px; animation-delay: 1.5s; }
.drip-3 { left: 45%; top: -15%; height: 240px; animation-delay: 3s; }

@keyframes drip {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 0.3; }
  70% { opacity: 0.2; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  text-transform: uppercase;
}

.hero-title .accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(57, 255, 20, 0.1);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--fg-secondary);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 2rem auto;
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* SECTION LABEL */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent-dim);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* WORLDS */
.worlds {
  padding: 6rem 2rem;
  background: var(--bg-primary);
}

.worlds-container {
  max-width: 1100px;
  margin: 0 auto;
}

.worlds-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}

.world-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
}

.world-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.world-local .world-icon {
  color: var(--accent);
}

.world-gaming .world-icon {
  color: var(--accent-secondary);
}

.world-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.world-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.world-tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fg-secondary);
  letter-spacing: 0.05em;
}

.world-local .world-tags span {
  border-color: var(--accent-dim);
}

.world-gaming .world-tags span {
  border-color: rgba(255, 60, 172, 0.15);
}

.world-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 0.5rem;
}

.divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--fg-muted), transparent);
}

.divider-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fg-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.closing-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

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

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-line {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .worlds-split {
    grid-template-columns: 1fr;
  }

  .world-divider {
    flex-direction: row;
    padding: 0.5rem 0;
  }

  .divider-line {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, var(--fg-muted), transparent);
  }

  .hero-title {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .hero-subtitle {
    letter-spacing: 0.3em;
  }

  .service-card {
    padding: 2rem;
  }

  .world-card {
    padding: 2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .closing {
    padding: 5rem 2rem;
  }
}