/* ============================================
   HERO.CSS — TrueValueTax
   Hero Section + Alert Cards
   ============================================ */

/* === HERO WRAPPER === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a0a2e 0%, #0d1117 40%, #1a0a0a 100%);
}

/* === HERO INNER === */
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* === LEFT SIDE === */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* === EYEBROW === */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.live-badge {
  background: var(--red);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1s infinite;
}

.eyebrow-text {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 500;
}

/* === HERO TITLE === */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(60px, 7.5vw, 106px);
  line-height: 0.93;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.ht-red     { color: var(--red); }
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
}

/* === HERO SUBTITLE === */
.hero-sub {
  font-size: 17px;
  color: var(--lgray);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

/* === HERO BUTTONS === */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 1s forwards;
}

.h-stat {
  padding: 0 28px;
}
.h-stat:first-child {
  padding-left: 0;
}

.h-num {
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}

.h-lbl {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.h-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* === RIGHT SIDE — ALERT CARDS === */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeLeft 0.9s ease 0.5s forwards;
}

.alert-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}

/* === INDIVIDUAL ALERT CARD === */
.ac-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease;
  cursor: default;
}

.ac-card:hover {
  border-color: var(--red);
  transform: translateX(-6px);
  box-shadow: 0 0 30px rgba(204,0,0,0.1);
}

/* Floating animations — each card different speed */
.ac-1 { animation: float 4.0s ease-in-out infinite; }
.ac-2 { animation: float 5.0s ease-in-out 0.8s infinite; }
.ac-3 { animation: float 4.5s ease-in-out 0.4s infinite; }
.ac-4 { animation: float 5.5s ease-in-out 1.2s infinite; }

.ac-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(204,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ac-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgray);
  line-height: 1.3;
  margin-bottom: 3px;
}

.ac-val {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero {
    padding: 140px 20px 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    display: none;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-stats {
    gap: 16px;
  }
  .h-divider {
    display: none;
  }
  .h-stat {
    padding: 0;
  }
}