/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem; /* Prevents content from being hidden behind fixed header */
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  -webkit-overflow-scrolling: touch;
}

/* Smooth scrolling for the entire document */
html, body {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

/* Base Styles */
:root {
  /* Colors */
  --background: #030712;
  --background-light: #111827;
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border: #1f2937;
  --card-bg: #111827;
  --card-hover: #1f2937;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  
  /* Typography scale - Mobile first */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */
  --text-6xl: 3.75rem;  /* 60px */
  --text-7xl: 4.5rem;   /* 72px */
  --text-8xl: 6rem;     /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem; /* Increased padding for better mobile spacing */
}

/* Responsive Typography */
html {
  font-size: 16px; /* Base font size */
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 10px;
  }
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  background: var(--gradient);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -5px rgba(139, 92, 246, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, background;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px -5px rgba(139, 92, 246, 0.5);
  transition-duration: 0.3s;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 15px -5px rgba(139, 92, 246, 0.6);
  transition-duration: 0.1s;
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: none;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.03);
}

.cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Sections */
.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 auto 1.5rem;
  color: white;
  text-align: center;
  letter-spacing: -0.025em;
  max-width: 800px;
  padding: 0 2rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.6;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: linear-gradient(
    to bottom,
    #0a0f1f 0%,
    #0a0f1f 70%,
    #030712 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  transition: background 0.6s ease;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(
      circle at 20% 30%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(79, 70, 229, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 60%
    );
  z-index: -1;
  opacity: 0.8;
  transition: opacity 0.6s ease;
}

/* Floating UI Elements */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(
      circle at 20% 20%,
      rgba(139, 92, 246, 0.03) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(99, 102, 241, 0.03) 0%,
      transparent 25%
    );
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.6s ease;
}

/* Subtle animated dots */
.hero-section .dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 8s ease-in-out infinite;
  z-index: -1;
  transition: all 0.4s ease;
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-section .dot-1 {
  width: 10px;
  height: 10px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-section .dot-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 25%;
  animation-delay: -1s;
}

.hero-section .dot-3 {
  width: 8px;
  height: 8px;
  top: 30%;
  right: 20%;
  animation-delay: -2s;
}

.hero-section .dot-4 {
  width: 12px;
  height: 12px;
  bottom: 20%;
  right: 15%;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(-10px) translateX(-5px);
  }
}

.hero-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-section p {
    font-size: 1.125rem;
    padding: 0 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
}

.hero-section p {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-video {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(124, 58, 237, 0.4) 100%);
  opacity: 0.5;
  z-index: 1;
}

.trusted-by {
  margin-top: 4rem;
  text-align: center;
}

.trusted-by p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.trusted-by-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0.8;
}

.trusted-by-logos span {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .trusted-by-logos {
    gap: 1.5rem;
  }
  
  .trusted-by-logos span {
    font-size: 1rem;
  }
}

/* Section Transitions */
section {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Decorative Curve */
.section-divider {
  position: relative;
  height: 100px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-divider {
    height: 150px;
  }
}

.section-divider svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #0a0f1f;
  z-index: 1;
}

.section-divider.top {
  top: -1px;
}

.section-divider.bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

/* Smooth reveal animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Add delay for staggered animations */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }


/* Benefits Section */
.benefits-section {
  background-color: var(--background);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem !important;
  }
  
  .section-title {
    font-size: 2.25rem !important;
    margin-bottom: 1rem !important;
  }
  
  .section-subtitle {
    font-size: 1.125rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  /* Navigation */
  .nav-links {
    display: none;
  }
  
  .mobile-menu-button {
    display: block !important;
  }
  
  /* Form adjustments */
  .waitlist-form input[type="email"] {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .waitlist-form button[type="submit"] {
    width: 100%;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: all 0.25s ease-in-out;
  height: 100%;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(79, 70, 229, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  z-index: -1;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.benefit-card:hover::before {
  opacity: 1;
  border-color: rgba(139, 92, 246, 0.3);
}

.benefit-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  max-width: 320px;
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.benefit-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  color: #8b5cf6;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  transform: scale(1.05);
}

.benefit-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  color: white;
  width: 100%;
}

/* Gradient Overlay for Sections */
.benefits-section::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(10, 15, 31, 1), rgba(10, 15, 31, 0));
  z-index: -1;
}

.cta-section::before {
  background: linear-gradient(to bottom, rgba(3, 7, 18, 1), rgba(3, 7, 18, 0));
}

/* CTA Section */
.cta-section {
  background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
  position: relative;
  overflow: hidden;
}

.waitlist-form {
  max-width: 32rem;
  margin: 0 auto 3rem;
}

.form-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.form-group input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.testimonial-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.avatar-group {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--background);
  margin-left: -0.75rem;
  overflow: hidden;
  background-color: var(--background-light);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.25rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .footer-content {
    flex-direction: row;
  }
  
  .testimonial-section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .avatar-group {
    margin-bottom: 0;
    margin-right: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
.footer {
  background-color: rgba(15, 23, 42, 0.8);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.copyright {
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.privacy-link {
  color: #818cf8;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.privacy-link:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: white;
}

/* Grid Background */
.bg-grid-white\/\[0\.02\] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(255 255 255 / 0.02)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  background-size: 32px 32px;
}

/* Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}
