/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --brand-accent: #FF3067;
  --brand-blue: #1a1a2e;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 48, 103, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 48, 103, 0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 48, 103, 0);
  }
}

.cta-button--light {
  background: #FFFFFF;
  color: var(--brand-blue);
}

.cta-button--light:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.cta-button--light.cta-pulse {
  animation: pulse-glow-light 2s ease-in-out infinite;
}

@keyframes pulse-glow-light {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-pulse {
    animation: none;
  }
  .cta-button--light.cta-pulse {
    animation: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,48,103,0.5) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: float1 12s ease-in-out infinite;
}

.aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.4) 0%, transparent 70%);
  top: 20%;
  right: -5%;
  animation: float2 15s ease-in-out infinite;
}

.aurora-blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,48,103,0.35) 0%, transparent 70%);
  bottom: -5%;
  left: 30%;
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, 40px); }
  66% { transform: translate(-30px, 60px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-50px, 30px); }
  66% { transform: translate(40px, -40px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-60px, 20px); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.badge {
  display: inline-block;
  background: var(--bg-secondary);
  border: 1px solid #E2E8F0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--brand-accent);
}

.text-highlight {
  background: linear-gradient(135deg, var(--brand-accent), #FF6B9D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-aeo {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

.typewriter-wrap {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  min-height: 2em;
  margin-bottom: 16px;
}

.typewriter-cursor {
  color: var(--brand-accent);
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor { animation: none; opacity: 1; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.trust-signals {
  margin-top: 20px;
  margin-bottom: 48px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-signals--light {
  color: rgba(255,255,255,0.7);
}

/* ===== STATS ===== */
.stats {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand-accent);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

/* ===== MODULES ===== */
.modules {
  padding: 100px 0;
  background: var(--bg-primary);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.module-card {
  background: var(--bg-secondary);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-accent), #FF6B9D);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.module-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.module-lessons {
  margin-bottom: 16px;
}

.module-lessons li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid #E2E8F0;
}

.module-lessons li:last-child {
  border-bottom: none;
}

.module-lessons li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  margin-right: 10px;
  vertical-align: middle;
}

.module-count {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modules-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NORMAN ===== */
.norman {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.norman-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.norman-photo {
  position: relative;
}

.norman-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #E2E8F0;
}

.norman-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
}

.norman-text p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.norman-quote {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-primary);
  border-left: 4px solid var(--brand-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .norman-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .norman-photo img {
    max-width: 320px;
    margin: 0 auto;
  }
  .section-title--left {
    text-align: center;
  }
  .norman-text {
    text-align: center;
  }
  .norman-quote {
    text-align: left;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-list {
  max-width: 740px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--brand-accent);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
  .faq-icon {
    transition: none;
  }
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: var(--brand-blue);
  text-align: center;
}

.cta-final-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-final-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--bg-secondary);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Module title link */
.module-title-link {
  text-decoration: none;
  color: inherit;
}
.module-title-link:hover .module-title {
  color: var(--brand-accent);
}

/* Lesson links */
.module-lessons a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.module-lessons a:hover {
  color: var(--brand-accent);
}
