:root {
  --bg-color: #050505;
  --surface-color: #111111;
  --surface-border: #222222;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent-color: #00ff88;
  --accent-glow: rgba(0, 255, 136, 0.3);
  --gradient-start: #00ff88;
  --gradient-end: #00b8ff;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary, .btn-primary-small {
  display: inline-block;
  background-color: var(--accent-color);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-primary-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-primary:hover, .btn-primary-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: #444;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Background Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--gradient-end);
  bottom: -200px;
  right: -100px;
}

/* Features Section */
.features {
  padding: 8rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
  padding: 8rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  min-height: 50px;
}

.join-steps {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 3rem;
}

.join-steps h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.join-steps ol {
  margin-left: 1.5rem;
  color: var(--text-main);
}

.join-steps li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.terms-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}

/* Recaps Gallery */
.recaps {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.recap-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.recap-card:hover {
  transform: translateY(-10px);
  border-color: #444;
}

.card-image {
  width: 100%;
  height: 250px;
  background: #1a1a1a;
}

/* Placeholder styles until real images are added */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #333;
  font-size: 1.5rem;
  background: linear-gradient(45deg, #111, #222);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-muted);
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--surface-border);
  margin-top: 4rem;
  background: var(--surface-color);
}

footer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

footer p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: #555;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
  }
  
  nav {
    display: none; /* simple mobile hide for now */
  }
}
