/* UKMA — HOME STYLES */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,8,16,0.7) 0%,
    rgba(5,8,16,0.4) 50%,
    rgba(0,50,100,0.3) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,163,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,163,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}
.hero-scanline {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .3;
  animation: scanline 4s linear infinite;
  top: 0;
}
@keyframes scanline {
  0% { top: 0; opacity: .3; }
  90% { opacity: .3; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  container-type: inline-size;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,163,255,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fade-up .6s var(--ease-out) both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.02em;
  animation: fade-up .7s .1s var(--ease-out) both;
}
.hero-title-line2 {
  color: var(--blue);
  display: block;
  text-shadow: 0 0 60px rgba(0,163,255,0.4);
}

.hero-usp {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-secondary);
  margin: 1.25rem 0 2rem;
  animation: fade-up .7s .2s var(--ease-out) both;
}
.hero-usp .highlight {
  color: var(--accent-yellow);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-up .7s .3s var(--ease-out) both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fade-up .7s .4s var(--ease-out) both;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  margin-top: .2rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fade-in 1s 1s both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-header {
  margin-bottom: 3rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--blue);
}

