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

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Particles.js container */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
}

/* --- HEADER --- */
.main-header {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

main {
  position: relative;
  z-index: 1;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: rotate(0deg) scale(1.05);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  text-transform: lowercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  opacity: 0.8;
}

/* --- HERO SECTION --- */
.hero {
  margin-top: 8rem;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}

.hero-logo {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: -4px;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1rem;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  text-transform: lowercase;
  letter-spacing: 3px;
  transform: rotate(1deg);
  opacity: 0.9;
}

/* --- OUTCOMES SECTION --- */
.outcomes {
  margin-top: 8rem;
  padding-bottom: 6rem;
  max-width: 600px;
  text-align: center;
}

.outcomes h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 3rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  transform: rotate(0.5deg);
}

.links a:nth-child(even) {
  transform: rotate(-0.5deg);
}

.links a:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .main-header {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    margin-top: 4rem;
    padding: 0 1rem;
  }

  .outcomes {
    margin-top: 4rem;
    padding: 0 1rem 4rem;
  }

  .links a {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}
