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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center, transparent 99px, rgba(58,125,68,.04) 100px, rgba(58,125,68,.04) 101px, transparent 102px),
    linear-gradient(0deg, transparent 399px, rgba(58,125,68,.04) 400px, rgba(58,125,68,.04) 401px, transparent 402px),
    linear-gradient(90deg, transparent 399px, rgba(58,125,68,.04) 400px, rgba(58,125,68,.04) 401px, transparent 402px);
  mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, black, transparent);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,125,68,.06), transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(58,125,68,.08);
  border: 1px solid rgba(58,125,68,.18);
  border-radius: 100px;
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--g3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp .7s ease both;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--g3);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 600;
  line-height: .93;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .7s ease .1s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gl);
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeUp .7s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .3s both;
}

/* Hero right: stat cards */
.hero-right {
  animation: fadeUp .7s ease .4s both;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all .35s;
}

.hero-stat-card:hover {
  border-color: var(--border-h);
  background: var(--card-h);
}

.hero-stat-num {
  font-family: var(--ff-d);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--g3);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--gr);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-stat-card.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-stat-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-left: 1.5rem;
  overflow: hidden;
}

.hero-stat-bar-fill {
  height: 100%;
  background: var(--g1);
  border-radius: 2px;
  transform-origin: left;
  animation: grow 2s ease 1s both;
}

/* Ticker */
.ticker {
  background: var(--g1);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: scroll 35s linear infinite;
}

.ticker-item {
  font-family: var(--ff-d);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.ticker-item .d {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.5);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem }
  .hero-right { max-width: 500px }
}

@media (max-width: 768px) {
  .hero-stats-grid { grid-template-columns: 1fr 1fr }
  .hero-stat-card.wide { grid-column: span 2; flex-direction: column; align-items: flex-start; gap: 8px }
  .hero-stat-bar { margin-left: 0; width: 100% }
}

@media (max-width: 480px) {
  .hero-stats-grid { grid-template-columns: 1fr }
  .hero-stat-card.wide { grid-column: span 1 }
  .hero-stat-card { padding: 1rem }
}
