.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--bg-color);
}

.hero__bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Subtle grid pattern */
  background-image: linear-gradient(var(--surface-hover) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-hover) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  padding: 0 2rem;
  width: 100%;
}

.hero__subtitle {
  display: block;
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.hero__description {
  font-size: 1.5rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.4;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
  align-items: center;
}

.hero__socials {
  display: flex;
  gap: 2rem;
  position: absolute;
  right: 2rem;
  bottom: 4rem;
}

.hero__socials a {
  color: var(--text-primary);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.hero__socials a:hover {
  color: var(--accent-primary);
  opacity: 1;
  transform: translateY(-3px);
}

.hero__scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform-origin: left;
  transform: rotate(-90deg) translateX(50%);
}

.scroll-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.line {
  width: 60px;
  height: 1px;
  background: var(--text-secondary);
}

/* About Section Styles (Basic) */
.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    min-height: 100vh;
    align-items: flex-start;
  }

  .hero__content {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: 3.5rem; /* Reduced from clamp(4rem...) */
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .hero__description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero__socials {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: auto;
    justify-content: center;
    width: 100%;
    padding-bottom: 2rem;
  }

  .hero__scroll-down {
    display: none; /* Hide scroll indicator on mobile to save space */
  }
}
