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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #2563eb 100%);
  background-attachment: fixed;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

#static-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
}

main {
  position: relative;
  z-index: 2;
}

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

section {
  padding: 6rem 0;
  min-height: auto;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.divider {
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 3rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
}

.logo {
  width: 800px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

/* About Section */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.feature h3 {
  color: #93c5fd;
  margin-bottom: 1rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  justify-items: center;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-style: italic;
}

/* Contact Section */
.contact {
  text-align: center;
}

.contact-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.email-link {
  display: inline-block;
  font-size: 1.5rem;
  color: #93c5fd;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid #93c5fd;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.email-link:hover {
  background: #93c5fd;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(147, 197, 253, 0.3);
}

/* Footer */
footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .logo {
    width: 400px;
    height: auto;
  }

  .tagline {
    font-size: 1.2rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .content-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .email-link {
    font-size: 1.2rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .logo {
    width: 400px;
    height: auto;
  }

  .feature {
    padding: 1.5rem;
  }

  .team-photo {
    width: 150px;
    height: 150px;
  }
}
