.hero-section {
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 15, 0.82) 0%,
    rgba(10, 10, 15, 0.65) 52%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
}

.hero-title .name {
  color: var(--g);
  text-shadow: var(--sg), 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--b);
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 0.93rem;
  color: rgba(224, 224, 224, 0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: rgba(224, 224, 224, 0.35);
  letter-spacing: 3px;
  text-align: center;
  animation: scroll-bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-hint::after {
  content: '↓';
  display: block;
  font-size: 1.1rem;
  margin-top: 0.25rem;
  color: var(--g);
}

.about-bio {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.about-bio p {
  font-size: 0.89rem;
  line-height: 1.9;
  color: rgba(224, 224, 224, 0.82);
  margin-bottom: 0.9rem;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.plugins-description {
  max-width: 600px;
  margin-bottom: 0;
}

.auto-desc {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(224, 224, 224, 0.82);
  margin-bottom: 1.75rem;
}

#contact {
  text-align: center;
}

.contact-sub {
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.6);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(224, 224, 224, 0.2);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
