.hero {
  width: 100vw;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  padding: 0 3rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 900px;
  height: 60vh;
  max-height: 400px;
  background: radial-gradient(circle, rgba(0,113,227,0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 8rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #fff, #0071e3);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 100%;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--text-color);
  opacity: 0.92;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.typewriter {
  display: inline-block;
  font-family: inherit;
  font-size: 5rem;
  background: linear-gradient(45deg, #fff, #0071e3);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  border-right: none;
  transform-origin: center center;
  will-change: transform;
  max-width: 100%;
  padding: 0 1rem;
}

.type-cursor {
  display: inline-block;
  color: #0071e3;
  font-weight: bold;
  font-size: 5rem;
  margin-left: 2px;
  animation: blink-cursor 0.8s steps(1) infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-photo {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 3px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .hero-content {
    padding: 0 1.5rem;
    max-width: 90vw;
  }
  .hero-photo {
    width: 120px;
    height: 120px;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .typewriter, .type-cursor {
    font-size: 4rem;
  }
}

@media (max-width: 950px) {
  .hero {
    min-height: 60vh;
    padding: 0;
  }
  .hero-photo {
    width: 120px;
    height: 120px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-content h2 {
    font-size: 4rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .typewriter, .type-cursor {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    width: 110px;
    height: 110px;
  }
  .typewriter, .type-cursor {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 100px) {
  .hero-content {
    padding: 0 0.5rem;
  }
  .hero-content h2 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .typewriter, .type-cursor {
    font-size: 2.5rem;
  }
} 