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

body {
  background: #212020;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden; 
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: #21202099;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #bfbfbf20;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #ffffff;
  flex-shrink: 0;
  z-index: 102; 
}

.logo span { color: #2547a0; }

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  list-style: none;
  z-index: 101;
}

.nav-links a {
  text-decoration: none;
  color: #bfbfbf;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; 
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #2547a0; }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}

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

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

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #bfbfbf;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 48px;
}

.hero-title span { color: #2547a0; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding: 14px 36px;
  transition: all 0.2s;
  text-align: center;
}

.hero-btn.primary {
  background: #2547a0;
  color: #ffffff;
  border: 1px solid #2547a0;
}

.hero-btn.primary:hover {
  background: transparent;
  color: #2547a0;
}

.hero-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #bfbfbf50;
}

.hero-btn.secondary:hover { border-color: #ffffff; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #bfbfbf50;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #bfbfbf15;
  padding-top: 68px;
}

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

.intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 24px;
}

.intro-hi {
  font-size: 22px;
  font-weight: 300;
  color: #bfbfbf;
  letter-spacing: 0.1em;
}

.intro-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 16vw, 200px);
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

.intro-role {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #bfbfbf;
}

.intro-role span { color: #dedede; }

.intro-desc {
  font-size: 18px;
  font-weight: 300;
  color: #bfbfbf;
  letter-spacing: 0.03em;
  line-height: 2;
  max-width: 580px;
}

.intro-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 12px 0;
  padding: 32px 48px;
  border: 1px solid #bfbfbf20;
}

.stat h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #2547a0;
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat p {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bfbfbf;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #bfbfbf20;
}

.intro-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.fade-el {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-el.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav {
    height: auto;
    padding: 16px 20px;
    flex-direction: column; 
    gap: 12px;
    position: absolute; 
  }

  .nav-links {
    position: static;
    transform: none;
    left: auto;
    gap: 16px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 13px; 
  }

  .hero {
    padding: 120px 20px 60px 20px; 
    height: auto;
    min-height: 100vh;
  }

  .hero-btns {
    width: 100%;
  }

  .hero-btn {
    width: 100%; 
    padding: 12px 24px;
  }

  .intro {
    padding: 100px 16px 60px 16px;
  }

  .stat-divider {
    display: none;
  }

  .intro-stats {
    flex-direction: column; 
    gap: 20px;
    padding: 20px;
    width: 100%;
  }
}