:root {
  --primary: #00ffff;
  --text: #ffffff;
  --subtext: #cccccc;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #000 url('./assets/bg_wolfpack.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  transition: 0.3s;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  padding-top: 140px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary);
}

.hero p {
  color: var(--subtext);
  margin-top: 10px;
  font-size: 1.2rem;
}

.glass-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.glass-section .content {
  background: var(--glass);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  max-width: 900px;
  backdrop-filter: blur(10px);
}

.glass-section h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--primary);
}

.glass-section p {
  color: var(--subtext);
  margin-bottom: 20px;
}

.glass-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.glass-section ul li {
  color: var(--text);
  margin-bottom: 10px;
}

.checklist li {
  list-style-type: none;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,255,255,0.1);
}

.cta-box h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--subtext);
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 65px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: var(--text);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .glass-section .content {
