/* Social Empowerment — Moinee blue theme (aligned with STEM / ILC v2) */

.se-page {
  --se-deep: #003D4D;
  --se-teal: #0077B6;
  --se-teal-dark: #005A8C;
  --se-surface: #F6F8FA;
  --se-stone: #EEF2F6;
  --se-grid: rgba(0, 119, 182, 0.08);
  --se-shadow: 0 4px 28px rgba(0, 45, 69, 0.07);
  --se-shadow-lg: 0 24px 56px rgba(0, 45, 69, 0.12);
  background: var(--se-surface);
}

/* ── Keyframes ── */
@keyframes se-spin {
  to { transform: rotate(360deg); }
}

@keyframes se-spin-rev {
  to { transform: rotate(-360deg); }
}

@keyframes se-node-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(125, 211, 252, 0.55);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 22px rgba(125, 211, 252, 0.9);
  }
}

@keyframes se-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes se-line-flow {
  to { stroke-dashoffset: -24; }
}

@keyframes se-kpi-pop {
  0% { opacity: 0; transform: scale(0.7); }
  70% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes se-card-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes se-slide-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes se-slide-in-right {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes se-mesh-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

/* ── Hero ── */
.se-page .v2-hero {
  min-height: auto;
  padding: 120px 0 80px;
}

.se-page .v2-hero__mesh {
  background:
    radial-gradient(ellipse 60% 50% at 82% 20%, rgba(0, 119, 182, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 8% 90%, rgba(0, 61, 77, 0.35) 0%, transparent 52%),
    linear-gradient(112deg, #001F2E 0%, var(--se-teal-dark) 42%, var(--se-teal) 100%);
}

.se-page .v2-hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--se-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--se-grid) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: se-mesh-glow 8s ease-in-out infinite;
  pointer-events: none;
}

.se-page .v2-hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  line-height: 1.12;
}

.se-page .v2-hero h1 em {
  color: #7DD3FC;
}

.se-page .v2-hero__tagline {
  margin: 0 0 16px;
  max-width: 38rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.95);
}

.se-page .v2-hero__lead {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 14px;
}

.se-page .v2-hero__lead + .v2-hero__lead {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.se-hero-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.se-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.se-hero-breadcrumb a:hover { color: #fff; }
.se-hero-breadcrumb span { opacity: 0.45; }

/* Hero photo collage */
.se-hero-collage {
  position: relative;
  width: min(500px, 100%);
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 56px rgba(0, 35, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.se-hero-collage::before {
  content: "";
  position: absolute;
  inset: -20px -12px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.se-hero-collage__item {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 3 / 4;
  min-height: 155px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 28px rgba(0, 35, 55, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.se-hero-collage__item:nth-child(1) { transform: rotate(-1deg); }
.se-hero-collage__item:nth-child(2) { transform: rotate(1.2deg); }
.se-hero-collage__item:nth-child(3) { transform: rotate(-0.8deg); }

.se-hero-collage__item:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 18px 36px rgba(0, 35, 55, 0.3);
  z-index: 2;
}

.se-hero-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.se-hero-collage__item:hover img {
  transform: scale(1.05);
}

.se-hero-collage__badge {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 119, 182, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(0, 35, 55, 0.28);
}

/* Photo rows & feature images */
.se-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  width: 100%;
  align-items: stretch;
}

.se-photo-row__item {
  margin: 0;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--se-shadow);
  aspect-ratio: 4 / 3;
}

.se-photo-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.se-photo-row__item:hover img {
  transform: scale(1.04);
}

.se-feature-photo {
  margin: 24px auto 0;
  width: min(100%, 960px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--se-shadow-lg);
  aspect-ratio: 21 / 9;
}

.se-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Community network visual */
.se-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.se-hero-visual__frame {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    rgba(0, 35, 55, 0.35);
  background-size: 24px 24px;
  box-shadow: 0 32px 72px rgba(0, 20, 40, 0.35);
  overflow: hidden;
}

.se-hero-visual__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 119, 182, 0.18), transparent 65%);
  pointer-events: none;
}

.se-hero-visual__orbit {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(125, 211, 252, 0.35);
  border-radius: 50%;
  animation: se-spin 90s linear infinite;
}

.se-hero-visual__orbit--inner {
  inset: 24%;
  border-style: dotted;
  border-color: rgba(125, 211, 252, 0.22);
  animation: se-spin-rev 60s linear infinite;
}

.se-hero-visual__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.se-hero-visual__line {
  stroke: rgba(125, 211, 252, 0.4);
  stroke-width: 1;
  stroke-dasharray: 6 6;
  animation: se-line-flow 3s linear infinite;
}

.se-hero-visual__line:nth-child(2) { animation-delay: 0.4s; }
.se-hero-visual__line:nth-child(3) { animation-delay: 0.8s; }
.se-hero-visual__line:nth-child(4) { animation-delay: 1.2s; }
.se-hero-visual__line:nth-child(5) { animation-delay: 1.6s; }
.se-hero-visual__line:nth-child(6) { animation-delay: 2s; }

.se-hero-visual__nodes {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.se-hero-visual__core {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 35, 55, 0.28);
  animation: se-float 5s ease-in-out infinite;
}

.se-hero-visual__core strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--se-deep);
  line-height: 1;
}

.se-hero-visual__core small {
  margin-top: 4px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--se-teal);
  line-height: 1.3;
}

.se-hero-visual__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7DD3FC;
  z-index: 1;
  animation: se-node-pulse 2.8s ease-in-out infinite;
}

.se-hero-visual__node--1 { top: 18%; left: 22%; animation-delay: 0s; }
.se-hero-visual__node--2 { top: 14%; right: 20%; animation-delay: 0.5s; }
.se-hero-visual__node--3 { bottom: 22%; right: 18%; animation-delay: 1s; }
.se-hero-visual__node--4 { bottom: 20%; left: 16%; animation-delay: 1.5s; }
.se-hero-visual__node--5 { top: 42%; left: 8%; animation-delay: 2s; }
.se-hero-visual__node--6 { top: 38%; right: 10%; animation-delay: 2.5s; }

.se-hero-visual__label {
  position: absolute;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 119, 182, 0.9);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 55, 90, 0.3);
  animation: se-float 4s ease-in-out infinite;
}

.se-hero-visual__label--1 { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.se-hero-visual__label--2 { right: 6%; top: 40%; animation-delay: 0.6s; }
.se-hero-visual__label--3 { bottom: 16%; right: 14%; animation-delay: 1.2s; }
.se-hero-visual__label--4 { bottom: 20%; left: 10%; animation-delay: 1.8s; }
.se-hero-visual__label--5 { left: 4%; top: 36%; animation-delay: 2.4s; }

/* ── Jump links ── */
.se-jumplinks {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(246, 248, 250, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.se-jumplinks__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.se-jumplinks__inner::-webkit-scrollbar { display: none; }

.se-jumplinks a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-bright);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.se-jumplinks a:hover {
  background: #fff;
  color: var(--se-teal);
  border-color: rgba(0, 119, 182, 0.15);
  transform: translateY(-1px);
}

/* ── Sections ── */
.se-page .se-section {
  padding: 72px 0;
}

.se-section-head {
  max-width: none;
  margin-bottom: 24px;
}

#interventions.se-section .v2-wrap {
  overflow: visible;
}

.se-section-head .v2-section__intro {
  margin-bottom: 0;
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.72;
}

/* Problem / solution */
.se-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.se-split__col {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--se-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.se-split__col:hover {
  transform: translateY(-3px);
  box-shadow: var(--se-shadow-lg);
}

.se-split__col--challenge { border-top: 3px solid #94A3B8; }
.se-split__col--approach { border-top: 3px solid var(--se-teal); }

.se-split.v2-reveal.is-in .se-split__col--challenge {
  animation: se-slide-in 0.65s ease 0.1s both;
}

.se-split.v2-reveal.is-in .se-split__col--approach {
  animation: se-slide-in-right 0.65s ease 0.25s both;
}

.se-split__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748B;
}

.se-split__col--approach .se-split__label { color: var(--se-teal); }

.se-split__col h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
}

.se-split__col p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-bright);
  line-height: 1.72;
}

.se-split__col p + p { margin-top: 12px; }

/* Scale counters */
.se-scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.se-scale-card {
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--se-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.se-scale-grid.v2-reveal.is-in .se-scale-card {
  animation: se-card-in 0.55s ease both;
}

.se-scale-grid.v2-reveal.is-in .se-scale-card:nth-child(1) { animation-delay: 0.05s; }
.se-scale-grid.v2-reveal.is-in .se-scale-card:nth-child(2) { animation-delay: 0.15s; }
.se-scale-grid.v2-reveal.is-in .se-scale-card:nth-child(3) { animation-delay: 0.25s; }
.se-scale-grid.v2-reveal.is-in .se-scale-card:nth-child(4) { animation-delay: 0.35s; }

.se-scale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--se-shadow-lg);
  border-color: rgba(0, 119, 182, 0.2);
}

.se-scale-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--se-teal);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.se-scale-card:nth-child(2) .se-scale-card__num { color: var(--se-deep); }
.se-scale-card:nth-child(4) .se-scale-card__num { color: #0369A1; }

.se-scale-card__lbl {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.38;
}

.se-scale-card__sub {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

/* Intervention orbit cards */
.se-orbit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 28px;
  padding-top: 40px;
  align-items: stretch;
  overflow: visible;
}

.se-orbit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 52px 28px 24px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  border: 1px solid var(--border);
  border-radius: clamp(72px, 20%, 128px) clamp(72px, 20%, 128px) 32px 32px;
  box-shadow: var(--se-shadow);
  overflow: visible;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.se-orbit-card::after {
  content: "";
  position: absolute;
  inset: 10px 14px auto;
  height: 120px;
  border-radius: clamp(64px, 18%, 120px) clamp(64px, 18%, 120px) 50% 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 182, 0.06) 0%, transparent 72%);
  pointer-events: none;
}

.se-orbit-grid.v2-reveal.is-in .se-orbit-card {
  animation: se-card-in 0.55s ease both;
}

.se-orbit-grid.v2-reveal.is-in .se-orbit-card:nth-child(1) { animation-delay: 0.05s; }
.se-orbit-grid.v2-reveal.is-in .se-orbit-card:nth-child(2) { animation-delay: 0.12s; }
.se-orbit-grid.v2-reveal.is-in .se-orbit-card:nth-child(3) { animation-delay: 0.19s; }
.se-orbit-grid.v2-reveal.is-in .se-orbit-card:nth-child(4) { animation-delay: 0.26s; }

.se-orbit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--se-shadow-lg);
  border-color: rgba(0, 119, 182, 0.22);
}

.se-orbit-card__circle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  z-index: 2;
}

.se-orbit-card__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 119, 182, 0.28);
  transition: transform 0.75s linear;
}

.se-orbit-card:hover .se-orbit-card__ring {
  transform: rotate(24deg);
}

.se-orbit-card__circle > i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  color: #fff;
  background: var(--se-accent, var(--se-teal));
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 45, 69, 0.18);
}

.se-orbit-card__index {
  position: absolute;
  right: -4px;
  bottom: -2px;
  z-index: 3;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--se-accent, var(--se-teal));
  background: #fff;
  border: 2px solid currentColor;
  box-shadow: 0 4px 12px rgba(0, 45, 69, 0.12);
}

.se-orbit-card[data-cat="digital"] { --se-accent: #0077B6; }
.se-orbit-card[data-cat="learning"] { --se-accent: #0D9488; }
.se-orbit-card[data-cat="youth"] { --se-accent: #4338CA; }
.se-orbit-card[data-cat="livelihood"] { --se-accent: #0369A1; }

.se-orbit-card[data-cat="digital"] .se-orbit-card__ring { border-color: rgba(0, 119, 182, 0.32); }
.se-orbit-card[data-cat="learning"] .se-orbit-card__ring { border-color: rgba(13, 148, 136, 0.32); }
.se-orbit-card[data-cat="youth"] .se-orbit-card__ring { border-color: rgba(67, 56, 202, 0.32); }
.se-orbit-card[data-cat="livelihood"] .se-orbit-card__ring { border-color: rgba(3, 105, 161, 0.32); }

.se-orbit-card__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--se-accent, var(--se-teal));
  background: rgba(0, 119, 182, 0.08);
  overflow-wrap: anywhere;
}

.se-orbit-card[data-cat="learning"] .se-orbit-card__tag { background: rgba(13, 148, 136, 0.1); }
.se-orbit-card[data-cat="youth"] .se-orbit-card__tag { background: rgba(67, 56, 202, 0.1); }
.se-orbit-card[data-cat="livelihood"] .se-orbit-card__tag { background: rgba(3, 105, 161, 0.1); }

.se-orbit-card h3 {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.se-orbit-card > p {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 0 14px;
  font-size: 0.84rem;
  color: var(--text-bright);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.se-orbit-card__meta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding: 14px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed var(--border);
  text-align: left;
  box-sizing: border-box;
}

.se-orbit-card__meta p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text);
  overflow-wrap: anywhere;
}

.se-orbit-card__meta p + p { margin-top: 8px; }

.se-orbit-card__meta strong {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--se-accent, var(--se-teal));
  background: rgba(0, 119, 182, 0.08);
}

.se-orbit-card[data-cat="learning"] .se-orbit-card__meta strong { background: rgba(13, 148, 136, 0.1); }
.se-orbit-card[data-cat="youth"] .se-orbit-card__meta strong { background: rgba(67, 56, 202, 0.1); }
.se-orbit-card[data-cat="livelihood"] .se-orbit-card__meta strong { background: rgba(3, 105, 161, 0.1); }

/* Legacy intervention cards */
.se-interventions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.se-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--se-shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.se-interventions.v2-reveal.is-in .se-card {
  animation: se-card-in 0.55s ease both;
}

.se-interventions.v2-reveal.is-in .se-card:nth-child(1) { animation-delay: 0.05s; }
.se-interventions.v2-reveal.is-in .se-card:nth-child(2) { animation-delay: 0.12s; }
.se-interventions.v2-reveal.is-in .se-card:nth-child(3) { animation-delay: 0.19s; }
.se-interventions.v2-reveal.is-in .se-card:nth-child(4) { animation-delay: 0.26s; }

.se-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--se-shadow-lg);
  border-color: rgba(0, 119, 182, 0.18);
}

.se-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: var(--se-stone);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.se-card[data-cat="digital"] .se-card__head { background: #EBF5FB; }
.se-card[data-cat="learning"] .se-card__head { background: #F0F9FF; }
.se-card[data-cat="youth"] .se-card__head { background: #EFF6FF; }
.se-card[data-cat="livelihood"] .se-card__head { background: #F8FAFC; }

.se-card__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--se-teal);
  letter-spacing: 0.06em;
}

.se-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-align: right;
}

.se-card__body {
  padding: 18px 18px 0;
  flex: 1;
}

.se-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.38;
}

.se-card__body > p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-bright);
  line-height: 1.65;
}

.se-card__foot {
  margin-top: auto;
  padding: 16px 18px 18px;
  border-top: 1px dashed var(--border);
}

.se-card__foot p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text);
}

.se-card__foot p + p { margin-top: 6px; }

.se-card__foot strong {
  font-weight: 700;
  color: var(--heading);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Ground-level impact */
.se-page .se-section--impact {
  background: linear-gradient(165deg, var(--se-deep) 0%, #004D6B 55%, var(--se-teal-dark) 100%);
  color: #fff;
}

.se-page .se-section--impact .v2-section__eyebrow { color: #7DD3FC; }
.se-page .se-section--impact .v2-section__title { color: #fff; }
.se-page .se-section--impact .v2-section__intro { color: rgba(255, 255, 255, 0.82); }

.se-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.se-kpi {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.se-kpi-grid.v2-reveal.is-in .se-kpi {
  animation: se-card-in 0.55s ease both;
}

.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(1) { animation-delay: 0.05s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(2) { animation-delay: 0.15s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(3) { animation-delay: 0.25s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(4) { animation-delay: 0.35s; }

.se-kpi-grid.v2-reveal.is-in .se-kpi__pct {
  animation: se-kpi-pop 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(1) .se-kpi__pct { animation-delay: 0.2s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(2) .se-kpi__pct { animation-delay: 0.35s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(3) .se-kpi__pct { animation-delay: 0.5s; }
.se-kpi-grid.v2-reveal.is-in .se-kpi:nth-child(4) .se-kpi__pct { animation-delay: 0.65s; }

.se-kpi:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.se-kpi__pct {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #7DD3FC;
  line-height: 1;
  letter-spacing: -0.03em;
}

.se-kpi:nth-child(2) .se-kpi__pct { color: #A5F3FC; }
.se-kpi:nth-child(3) .se-kpi__pct { color: #BAE6FD; }
.se-kpi:nth-child(4) .se-kpi__pct { color: #E0F2FE; }

.se-kpi h4 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.se-kpi p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

/* CTA */
.se-section--cta { padding-bottom: 88px !important; }

.se-cta {
  position: relative;
  text-align: center;
  padding: 52px 40px;
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--se-shadow-lg);
  overflow: hidden;
}

.se-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--se-deep), var(--se-teal));
}

.se-cta h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--heading);
}

.se-cta p {
  margin: 0 auto 28px;
  max-width: 580px;
  font-size: 1.02rem;
  color: var(--text-bright);
  line-height: 1.68;
}

.se-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.se-cta .v2-btn--primary {
  background: var(--se-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.se-cta .v2-btn--primary:hover {
  background: var(--se-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 61, 77, 0.35);
}

.se-cta .v2-btn--outline {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.se-cta .v2-btn--outline:hover {
  border-color: var(--se-teal);
  color: var(--se-teal);
  background: #EBF5FB;
  transform: translateY(-2px);
}

.se-page .v2-section--alt {
  background: var(--se-stone);
}

.se-page .v2-section__eyebrow {
  color: var(--se-teal);
}

@media (max-width: 1024px) {
  .se-scale-grid { grid-template-columns: repeat(2, 1fr); }
  .se-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .se-split { grid-template-columns: 1fr; }
  .se-orbit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .se-page .v2-hero { padding: 108px 0 56px; }
  .se-page .v2-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .se-hero-collage {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .se-hero-collage__item {
    min-height: 110px;
    aspect-ratio: 4 / 5;
  }
  .se-hero-collage__item:nth-child(n) { transform: none; }
  .se-photo-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .se-photo-row__item { aspect-ratio: 16 / 10; }
  .se-feature-photo { aspect-ratio: 16 / 10; }
  .se-hero-visual { min-height: auto; }
  .se-hero-visual__frame { width: 100%; max-width: 300px; margin: 0 auto; }
  .se-page .se-section { padding: 56px 0; }
  .se-scale-grid,
  .se-orbit-grid,
  .se-interventions,
  .se-kpi-grid { grid-template-columns: 1fr; }
  .se-orbit-grid { max-width: 440px; margin-left: auto; margin-right: auto; }
  .se-cta { padding: 36px 22px; }
  .se-jumplinks { top: 56px; }
  .se-cta__actions .v2-btn { width: 100%; justify-content: center; }
  .se-hero-visual__label { font-size: 0.52rem; padding: 4px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .se-hero-collage__item:hover,
  .se-hero-collage__item:hover img,
  .se-photo-row__item:hover img,
  .se-hero-visual__orbit,
  .se-hero-visual__line,
  .se-hero-visual__node,
  .se-hero-visual__core,
  .se-hero-visual__label,
  .se-page .v2-hero__mesh::after,
  .se-split.v2-reveal.is-in .se-split__col,
  .se-scale-grid.v2-reveal.is-in .se-scale-card,
  .se-orbit-grid.v2-reveal.is-in .se-orbit-card,
  .se-interventions.v2-reveal.is-in .se-card,
  .se-kpi-grid.v2-reveal.is-in .se-kpi,
  .se-kpi-grid.v2-reveal.is-in .se-kpi__pct {
    animation: none !important;
  }

  .se-scale-card:hover,
  .se-card:hover,
  .se-orbit-card:hover,
  .se-orbit-card:hover .se-orbit-card__ring,
  .se-kpi:hover,
  .se-split__col:hover,
  .se-cta .v2-btn--primary:hover,
  .se-cta .v2-btn--outline:hover {
    transform: none;
  }
}
