/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hyprix-dark: #0a0a0a;
  --hyprix-darker: #050505;
  --hyprix-card: #141414;
  --hyprix-accent: #3b82f6;
  --hyprix-text: #e6e6e6;
  --hyprix-text-muted: #999999;
  --hyprix-glow: #60a5fa;
  --border-subtle: rgba(255, 255, 255, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--hyprix-dark);
  color: var(--hyprix-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.glow-circle {
  width: 800px;
  height: 800px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.logo-container {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out;
}

.logo-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-wrapper {
  display: inline-block;
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.5), rgba(5, 5, 5, 0.3));
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.logo-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0.5;
}

.logo {
  position: relative;
  width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.hero-title {
  font-size: 7rem;
  font-weight: 700;
  margin-bottom: 32px;
  background: linear-gradient(to right, var(--hyprix-text), var(--hyprix-text), var(--hyprix-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out 0.2s;
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--hyprix-text-muted);
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out 0.4s;
}

.hero-tagline.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-divider {
  margin-top: 64px;
  width: 96px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hyprix-accent), transparent);
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: scaleX(0);
  transition: all 1s ease-out 0.6s;
}

.hero-divider.visible {
  opacity: 1;
  transform: scaleX(1);
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--hyprix-dark), transparent);
  pointer-events: none;
}

/* Mission Section */
.mission {
  position: relative;
  padding: 128px 24px;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mission-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 32px;
  background: linear-gradient(to right, var(--hyprix-text), var(--hyprix-text), var(--hyprix-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-description {
  font-size: 1.25rem;
  color: var(--hyprix-text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out 0.2s;
}

.mission-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.mission-card {
  padding: 32px;
  border-radius: 12px;
  background-color: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(32px);
}

.mission-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--hyprix-text);
  transition: color 0.3s ease;
}

.mission-card:hover h3 {
  color: var(--hyprix-accent);
}

.mission-card p {
  color: var(--hyprix-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Team Section */
.team {
  position: relative;
  padding: 128px 24px;
}

.team-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.team-member {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out 0.4s;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.member-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  transition: all 0.5s ease;
}

.member-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.2);
}

.member-photo-container {
  position: relative;
  aspect-ratio: 2/2;
  overflow: hidden;
}

.member-photo-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--hyprix-dark), transparent, transparent);
  z-index: 10;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.member-card:hover .member-photo {
  transform: scale(1.05);
}

.member-info {
  padding: 32px;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--hyprix-text);
  transition: color 0.3s ease;
}

.member-card:hover .member-name {
  color: var(--hyprix-accent);
}

.member-title {
  color: var(--hyprix-accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.member-bio {
  color: var(--hyprix-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  position: relative;
  padding: 48px 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

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

.footer-subtext {
  color: rgba(153, 153, 153, 0.6);
  font-size: 0.75rem;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-tagline {
    font-size: 1.125rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .mission-description {
    font-size: 1rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .mission,
  .team {
    padding: 64px 16px;
  }
}
