/* css/animations.css */

/* ── MARQUEE (norm strip) ── */
.norm-strip {
  background: var(--surface-solid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.norm-track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}
.norm-pill {
  font-family: ui-monospace, monospace;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,169,97,0.5);
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PING (map dots) ── */
@keyframes ping {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}

/* ── FADE IN ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION TRANSITIONS ── */
.service-card,
.gallery-card,
.benefit-card,
.sector-case {
  transition: background 0.2s ease;
}
