/* ═══════════════════════════════════════════════════
   HERO SECTION - Landing Page Hero
   ═══════════════════════════════════════════════════ */

#home {
  padding-top: 64px;
}

.hero {
  position: relative;
  height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(232, 0, 29, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(245, 166, 35, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #080a0c 0%, #0d0f12 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(232, 0, 29, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(232, 0, 29, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(20deg) scaleY(1.4);
  transform-origin: bottom;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 900px;
  flex: 1;
}

.hero-logo {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(232, 0, 29, 0.3));
}

.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title .line2 {
  color: var(--red);
  display: block;
}

.hero-title .line3 {
  color: rgba(255, 255, 255, 0.18);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-stat-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  border-top: 1px solid var(--border);
  background: rgba(14, 17, 20, 0.8);
  backdrop-filter: blur(10px);
}

.hero-stat {
  flex: 1;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Made with Bob */
