/* Main Styles */

/* Base Styles */
body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--background-primary);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Account for fixed header */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.05;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-12) 0;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto var(--space-8);
}

.hero-tagline {
  font-size: var(--text-display-md);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-12);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Section */
.cta-section {
  margin-top: var(--space-12);
}

.hero-cta {
  font-size: var(--text-body-xl);
  padding: var(--space-5) var(--space-8);
  min-height: 56px;
  box-shadow: 0 10px 30px rgba(0, 153, 230, 0.2);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.cta-note {
  margin-top: var(--space-4);
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
}

/* Page Header */
.page-header {
  text-align: center;
  padding: var(--space-24) 0 var(--space-16);
}

.page-title {
  font-size: var(--text-display-md);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: var(--text-body-xl);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-tagline {
    font-size: var(--text-display-sm);
  }
  
  .hero-logo {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: var(--space-16);
  }
  
  .hero-content {
    padding: var(--space-8) 0;
  }
  
  .hero-logo {
    max-width: 200px;
    margin-bottom: var(--space-6);
  }
  
  .hero-tagline {
    font-size: var(--text-heading-xl);
    margin-bottom: var(--space-8);
  }
  
  .hero-cta {
    width: 100%;
    max-width: 320px;
  }
  
  .cta-note {
    font-size: var(--text-body-md);
    padding: 0 var(--space-4);
  }
  
  .page-header {
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .page-title {
    font-size: var(--text-display-sm);
  }
  
  .page-subtitle {
    font-size: var(--text-body-lg);
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 160px;
  }
  
  .hero-tagline {
    font-size: var(--text-heading-lg);
  }
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Print Styles */
@media print {
  .header,
  .hero-cta,
  .nav-dot {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
}