/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */

#hero {
  min-height: 100vh;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background layers */
.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-blob-a {
  position: absolute;
  top: -120px; right: -80px;
  width: 480px; height: 480px;
  background: rgba(253, 160, 2, 0.09);
  animation: morph 10s ease-in-out infinite;
}
.hero-blob-b {
  position: absolute;
  bottom: 8%; left: -140px;
  width: 380px; height: 380px;
  background: rgba(255, 255, 255, 0.04);
  animation: morph 14s ease-in-out infinite reverse;
}
.hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber) 40%, transparent 100%);
}

/* Main content grid */
.hero-body {
  flex: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 150px 28px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s 0.1s both;
}

/* Headline */
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-h1 em {
  display: block;
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Shield visual */
.shield-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shield-body {
  width: 300px; height: 340px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
}
.shield-emoji { font-size: 72px; margin-bottom: 14px; }
.shield-label {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.35;
}
.shield-label em { color: var(--amber); font-style: italic; }

/* Floating pills */
.float-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 160, 2, 0.38);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-pill .pill-icon  { font-size: 16px; }
.float-pill .pill-label {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}
.pill-a { top: 8%;    left: -8%;  animation: float 5s ease-in-out infinite; }
.pill-b { top: 8%;    right: -8%; animation: float 7s ease-in-out infinite 1.2s; }
.pill-c { bottom: 12%; left: 2%;  animation: float 6s ease-in-out infinite 2.4s; }
.pill-d { bottom: 12%; right: 2%;  animation: float 8s ease-in-out infinite 3.6s; }

/* Stats bar */
.hero-stats {
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}
.stats-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item { text-align: center; }
.stat-val  {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--amber);
}
.stat-lbl  {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Marquee */
.marquee-bar { background: var(--amber); padding: 10px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.m-item {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-right: 32px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-body   { grid-template-columns: 1fr; padding-top: 110px; }
  .shield-wrap { display: none; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
