/* ============================================================
   HERO — Full-screen opening section
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--section-x);
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

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

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-name span {
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.hero-headline em {
  color: var(--accent2);
  font-style: normal;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 176, 0.3);
}

.btn-outline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  text-decoration: none;
  display: inline-block;
  cursor: none;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.btn-outline:hover {
  border-color: var(--text-dim);
  color: #fff;
}

/* Social Icons */
.hero-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.hero-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  cursor: none;
  display: flex;
  align-items: center;
  transition:
    color var(--transition),
    transform var(--transition);
}
.hero-socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--section-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--border2);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 700px) {
  .hero-name {
    font-size: 2.8rem;
  }
}
