/* ============================================================
   03-hero.css — 2-column hero
   Left: copy + CTAs + stats. Right: BIG bear badge.
   ============================================================ */

#hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(21, 97, 45, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 215, 0, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #082840 0%, #0F3B5F 100%);
  color: var(--c-white);
  padding: var(--s-9) 0 var(--s-8);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

/* ---- Left: copy ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.40);
  color: var(--c-yellow);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: block;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-copy h1 {
  color: var(--c-white);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--c-yellow);
  display: inline-block;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: var(--s-5);
}

.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

/* ---- Stats strip ---- */
.hero-stats {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--s-4);
}
.hero-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ---- Right: BIG bear badge with ring + floating spec labels ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Wrap: a fixed square that holds the ring + badge + labels — everything centers around its centre. */
.hero-badge-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
}

/* Soft yellow glow halo behind the wrap (reuses pulse animation) */
.hero-badge-wrap::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.20) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  animation: pulse-halo 6s ease-in-out infinite;
}
@keyframes pulse-halo {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}

/* Dashed yellow ring — fills the wrap exactly, slowly rotating */
.hero-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.35);
  z-index: 1;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Badge — absolutely centred inside the wrap, slightly smaller so ring shows around it */
.hero-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 92%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}

/* Floating spec labels — anchored to wrap corners, sit beside the ring */
.hero-float-label {
  position: absolute;
  z-index: 3;
  background: var(--c-white);
  color: var(--c-black);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero-float-label strong {
  color: var(--c-green);
  display: block;
}
.hero-float-label span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-muted);
  margin-top: 2px;
}
.hero-float--top    { top: -10px;    right: -70px; }
.hero-float--bottom { bottom: -10px; left:  -70px; }
@media (max-width: 1200px) {
  .hero-float--top    { top: -10px;    right: -20px; }
  .hero-float--bottom { bottom: -10px; left:  -20px; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  #hero { padding: var(--s-8) 0 var(--s-7); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); text-align: center; }
  .hero-eyebrow,
  .hero-actions,
  .hero-stats { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .hero-badge-wrap { max-width: 320px; }
  .hero-float-label { font-size: 0.78rem; padding: 10px 12px; }
  .hero-float--top    { top: -10px; right: 0; }
  .hero-float--bottom { bottom: -10px; left: 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge-wrap { max-width: 240px; }
  .hero-float-label { display: none; }
}
