/* ══════════════════════════════════════
   TICKER — Horizontal marquee strip
══════════════════════════════════════ */

.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: roll 30s linear infinite;
}

@keyframes roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ti {
  font-family: var(--ffm);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ti::after {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blueb);
}

/* ══════════════════════════════════════
   STATS — 4-cell metric bar
══════════════════════════════════════ */

.stats-sec { padding: 80px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-cell {
  padding: 40px 28px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
}

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

@media (max-width: 700px) {
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-top: 1px solid var(--border); }
}

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blueb), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.stat-cell:hover::before { opacity: 1; }

.stat-n {
  font-family: var(--ffh);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.stat-d {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SCROLL TEXT — Large parallax type
══════════════════════════════════════ */

.stext-sec {
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

.stext-track {
  display: flex;
  align-items: baseline;
  gap: 28px;
  width: max-content;
  padding: 0 20px;
}

.sti {
  font-family: var(--ffh);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, .1);
  line-height: 1;
}

.sti.f { color: var(--text); -webkit-text-stroke: none; }
.sti.f span { color: var(--blueb); }

.sti-sep {
  font-family: var(--ffm);
  font-size: 2rem;
  color: var(--subtle);
}
