/* ===== CLEAN CYBERPUNK HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at bottom, #0D1E31 0%, #0A0A0A 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Content Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Headings */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-highlight {
  color: var(--accent-cyan);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.hero-title:hover .hero-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Subheading */
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--accent-cyan);
  color: #0A0A0A;
}

.hero-cta i {
  margin-right: 0.75rem;
  font-size: 1.1em;
}

/* Decorative Elements */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 245, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.3;
}

.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-cyan);
  opacity: 0.5;
}

.hero-corner-tl {
  top: 30px;
  left: 30px;
  border-right: none;
  border-bottom: none;
}

.hero-corner-br {
  bottom: 30px;
  right: 30px;
  border-left: none;
  border-top: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  #hero {
    padding: 5rem 0 3rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-corner {
    width: 50px;
    height: 50px;
  }
}