:root {
  --ngo-ms-ink: #0a0a0a;
  --ngo-ms-paper: #f4f0e8;
  --ngo-ms-accent: #c94b2a;
  --ngo-ms-muted: #7a7060;
  --ngo-ms-rule: #d8d0c0;
  --ngo-ms-highlight: #e8e0d0;
}

/* ── PILLARS ROW ── */
.ngo-ms-mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: var(--DmSans);
}

.ngo-ms-pillar {
  padding: 50px;
  border-right: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.ngo-ms-pillar:last-child {
  border-right: none;
}

.ngo-ms-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--primary-color);
  transition: height 0.4s ease;
  z-index: 0;
}

.ngo-ms-pillar:hover::before {
  height: 100%;
}

.ngo-ms-pillar:hover .ngo-ms-pillar__icon,
.ngo-ms-pillar:hover .ngo-ms-pillar__title,
.ngo-ms-pillar:hover .ngo-ms-pillar__body {
  color: #f4f0e8;
}

.ngo-ms-pillar:hover .ngo-ms-pillar__number {
  color: rgba(255, 255, 255, 0.08);
}

.ngo-ms-pillar__inner {
  position: relative;
  z-index: 1;
}

.ngo-ms-pillar__number {
  font-family: var(--DmSans);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  transition: color 0.3s;
}

.ngo-ms-pillar__icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s;
}

.ngo-ms-pillar__title {
  font-family: var(--DmSans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.ngo-ms-pillar__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ngo-ms-muted);
  transition: color 0.3s;
}

.ngo-ms-pillar:hover .ngo-ms-pillar__body {
  color: rgba(244, 240, 232, 0.7);
}

/* ── BOTTOM TICKER ── */
.ngo-ms-mission__ticker {
  border-top: 2px solid var(--ngo-ms-ink);
  padding: 20px 0;
  background: var(--ngo-ms-ink);
  overflow: hidden;
  font-family: var(--DmSans);
  white-space: nowrap;
}

.ngo-ms-ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ngo-ms-ticker 22s linear infinite;
}

.ngo-ms-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.45);
}

.ngo-ms-ticker__dot {
  width: 5px;
  height: 5px;
  background: var(--primary-color);
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes ngo-ms-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ngo-ms-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ngo-ms-pillar:nth-child(1) {
  animation: ngo-ms-fadeUp 0.7s ease 0.2s forwards;
}
.ngo-ms-pillar:nth-child(2) {
  animation: ngo-ms-fadeUp 0.7s ease 0.35s forwards;
}
.ngo-ms-pillar:nth-child(3) {
  animation: ngo-ms-fadeUp 0.7s ease 0.5s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ngo-ms-mission__header,
  .ngo-ms-mission__hero {
    grid-template-columns: 1fr;
  }

  .ngo-ms-mission__header .ngo-ms-mission__eyebrow {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ms-ink);
  }
  .ngo-ms-hero__text {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ms-ink);
    padding: 52px 32px;
  }
  .ngo-ms-hero__visual {
    min-height: 360px;
  }
  .ngo-ms-visual__content {
    padding: 40px 32px;
  }

  .ngo-ms-mission__pillars {
    grid-template-columns: 1fr;
  }
  .ngo-ms-pillar {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ms-ink);
    padding: 50px 20px;
  }
  .ngo-ms-pillar:last-child {
    border-bottom: none;
  }

  .ngo-ms-mission__date-band,
  .ngo-ms-mission__eyebrow {
    padding: 20px 32px;
  }
}
