/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(74,144,217,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,47,69,0.6) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,214,229,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,229,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-headline span {
  background: linear-gradient(135deg, var(--white) 0%, var(--silver) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver-dim);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}
.hero-sub strong { color: var(--silver); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s ease forwards;
}

.btn-hero {
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}
.btn-hero:hover { background: #5BA0E6; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(74,144,217,0.4); }

.hero-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver-dim);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.hero-link:hover { color: var(--silver); }
.hero-link::after { content: '→'; transition: transform 0.2s; }
.hero-link:hover::after { transform: translateX(4px); }

/* Hero Lynx — large right side */
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 52%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s ease forwards;
  z-index: 1;
}
.hero-lynx-svg {
  width: min(480px, 46vw);
  height: auto;
  filter: drop-shadow(0 0 80px rgba(74,144,217,0.18));
}

/* ── STATS BAR ── */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(200,214,229,0.07);
  background: rgba(13,27,42,0.6);
  backdrop-filter: blur(10px);
  display: flex;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s ease forwards;
}

.stat-item {
  flex: 1;
  padding: 28px 40px;
  border-right: 1px solid rgba(200,214,229,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--accent); }

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  text-transform: uppercase;
}
