/* Hero — top of the landing page */
/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   HERO
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 12s ease, opacity 1.2s ease;
}
.hero.loaded .hero-bg { transform: scale(1); opacity: .85; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-deep) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* mesh gradient overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  z-index: 1;
}
/* dot grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 8, 26, .80) 0%,
    rgba(3, 8, 26, .60) 40%,
    rgba(3, 8, 26, .75) 70%,
    rgba(3, 8, 26, .95) 100%
  );
  z-index: 1;
}
/* floating glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-1 {
  width: 380px; height: 380px;
  background: var(--primary);
  top: -100px; left: -120px;
}
.hero-orb-2 {
  width: 460px; height: 460px;
  background: var(--cyan);
  bottom: -160px; right: -160px;
  animation-delay: -7s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-40px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  color: rgba(255,255,255,.92);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, var(--cyan), transparent);
  opacity: 0;
  animation: badgeShimmer 3s ease infinite;
  z-index: -1;
}
@keyframes badgeShimmer {
  0%,100% { opacity: 0; transform: translateX(-100%); }
  50%     { opacity: .6; transform: translateX(100%); }
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green), 0 0 20px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(36px, 6.2vw, 78px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 26px;
}
.hero-title .grad-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255,255,255,.66);
  max-width: 530px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.hero-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 42px;
}
.hero-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: rgba(255,255,255,.78);
}
.hero-feature-icon {
  width: 22px; height: 22px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 0 12px rgba(0,102,255,.5);
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO floating card (right side) */
.hero-card {
  position: relative;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  border-radius: var(--r-xl);
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.hero-card-title {
  font-size: 22px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.hero-card-meta {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--glass-border);
  border-radius: var(--r);
  overflow: hidden;
}
.hero-card-stat {
  background: rgba(255,255,255,.02);
  padding: 18px 16px;
  text-align: center;
}
.hero-card-stat-num {
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.hero-card-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.hero-card-route {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(0,102,255,.08);
  border: 1px solid rgba(0,102,255,.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-route svg { flex-shrink: 0; color: var(--cyan); }
.hero-card-route-text { font-size: 12.5px; color: rgba(255,255,255,.85); }
.hero-card-route-text strong { color: #fff; font-weight: 600; }

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; color: rgba(255,255,255,.45);
  letter-spacing: .15em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
