:root {
  --bg-dark: #05070a;
  --bg-card: rgba(16, 20, 26, 0.8);
  --accent-cyan: #00f2ff;
  --accent-green: #00ff9d;
  --text-main: #e0e6ed;
  --text-dim: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

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

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
h3 { font-size: 1.5rem; color: var(--accent-cyan); }

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

/* Layout Sections */
section {
  padding: 100px 0;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(0, 255, 157, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('hero.png') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  margin: 1.5rem 0 2.5rem;
  max-width: 600px;
}

/* Cards & Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 255, 0.3);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

/* Program Section */
.program-item {
  display: flex;
  gap: 30px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

/* Form Styles */
.registration-container {
  background: var(--bg-card);
  border: 1px solid var(--accent-cyan);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  color: #000;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Results / Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero { text-align: center; padding-top: 150px; }
  .hero p { margin: 1.5rem auto 2.5rem; }
  .program-item { flex-direction: column; gap: 10px; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeIn 0.8s ease forwards;
}