/* =============================================
   hero.css — Hero section styles
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  max-width: 100%;
  position: relative;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(126, 200, 240, 0.35);
  box-shadow: 0 0 40px rgba(30, 111, 212, 0.25);
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(135deg, #e8f4ff 0%, #7ec8f0 50%, #3a9bdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--blue-5);
  margin-bottom: 1.3rem;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--text-secondary);
  border-bottom: 1.5px solid var(--text-secondary);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}