/* ILC — Moinee Foundation brand theme (scoped to .ilc-page — won't affect site nav/footer) */
.ilc-page {
  --mf-blue: #0077B6;
  --mf-blue-dark: #005A8C;
  --mf-blue-deep: #003752;
  --mf-blue-light: #EBF5FB;
  --mf-pink: #E8537A;
  --mf-pink-soft: #FDE8EF;
  --mf-gold: #F5A623;
  --mf-gold-soft: #FFF8EC;
  --mf-green: #16A34A;
  --mf-violet: #7C3AED;

  --navy: #F8FAFC;
  --navy-soft: #EBF5FB;
  --navy-card: #ffffff;
  --cyan: #0077B6;
  --cyan-dim: rgba(0, 119, 182, 0.12);
  --amber: #F5A623;
  --coral: #E8537A;
  --violet: #7C3AED;
  --heading: #1A202C;
  --white: #1A202C;
  --text: #718096;
  --text-bright: #4A5568;
  --border: #E2E8F0;
  --glass: rgba(0, 119, 182, 0.06);
  --shadow: 0 4px 24px rgba(0, 55, 90, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 55, 90, 0.12);
  --max: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;

  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
.ilc-page a { color: inherit; text-decoration: none; }

.v2-wrap {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* ── Nav ── */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(0, 55, 90, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.v2-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.v2-logo__img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.v2-logo > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.v2-logo strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.v2-logo span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-nav__links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.v2-nav__links a {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-bright);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.v2-nav__links a:hover {
  background: var(--glass);
  color: var(--cyan);
}

/* ── Hero ── */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  color: #ffffff;
}

.v2-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 119, 182, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(232, 83, 122, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
    linear-gradient(105deg, #003752 0%, #005A8C 48%, #0077B6 100%);
}

.v2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Hero — field photo + ILC hub (images only) */
.v2-hub--showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.v2-hub__showcase {
  position: relative;
  width: min(300px, 92vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 80px rgba(0, 55, 90, 0.35);
}

.v2-hub__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.85) brightness(0.65);
}

.v2-hub__showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 55, 90, 0.15), rgba(0, 55, 90, 0.72));
  z-index: 1;
}

.v2-hub__showcase .v2-hub__panel {
  position: absolute;
  inset: 12%;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  z-index: 2;
  background: linear-gradient(160deg, rgba(0, 90, 140, 0.92), rgba(0, 55, 90, 0.82));
}

.v2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8d8f0;
}

.v2-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7DD3FC;
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.8);
  animation: v2-pulse 2s ease infinite;
}

@keyframes v2-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.v2-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.v2-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-hero__lead {
  margin: 0 0 32px;
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.v2-btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0096D6 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
}

.v2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 119, 182, 0.45);
}

.v2-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.v2-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

/* Hero visual — orbital hub */
.v2-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.v2-hub__panel {
  position: relative;
  width: min(300px, 92vw);
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(0, 90, 140, 0.92), rgba(0, 55, 90, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 80px rgba(0, 55, 90, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.v2-hub__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: v2-spin 60s linear infinite;
  opacity: 0.9;
}

.v2-hub__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-card), var(--navy-soft));
  border: 2px solid rgba(0, 119, 182, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 119, 182, 0.2), 0 16px 40px rgba(0, 55, 90, 0.2);
  z-index: 2;
}

.v2-hub__core strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
}

.v2-hub__core small {
  font-size: 0.58rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

.v2-hub__orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.v2-hub__node {
  --orbit-r: 158px;
  --step: 40deg;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 7px 13px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--cyan);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.35);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * var(--step) - 90deg))
    translateY(calc(-1 * var(--orbit-r)))
    rotate(calc(90deg - var(--i) * var(--step)));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v2-hub__node--warm {
  background: var(--amber);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.v2-hub__node--accent {
  background: linear-gradient(135deg, var(--cyan), #0096D6);
  box-shadow: 0 4px 16px rgba(0, 150, 214, 0.4);
}

.v2-hub__panel:hover .v2-hub__node {
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.5);
}

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

/* Impact strip */
.v2-impact-strip {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 48px;
}

.v2-hero .v2-hub__core strong {
  color: var(--mf-blue-deep);
  text-shadow: none;
}
.v2-hero .v2-hub__core small {
  color: var(--mf-blue-dark);
  font-weight: 700;
}

.v2-impact-strip__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.v2-impact-strip__item {
  padding: 28px 20px;
  text-align: center;
  background: var(--navy-card);
  transition: background 0.25s;
}

.v2-impact-strip__item:hover {
  background: var(--navy-soft);
}

.v2-impact-strip__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
}

.v2-impact-strip__label {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── Section common ── */
.v2-section {
  padding: 52px 0;
}

.v2-section--alt {
  background: var(--navy-soft);
}

.v2-section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.v2-section__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}

.v2-section__intro {
  margin: 0 0 24px;
  max-width: 640px;
  font-size: 1rem;
  color: var(--text);
}

/* ── About bento (see Bento feature grid below) ── */

/* Philosophy pillars */
.v2-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.v2-pillar {
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.v2-pillar::before {
  content: attr(data-num);
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 119, 182, 0.08);
  line-height: 1;
}

.v2-pillar h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}

.v2-pillar p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Impact dashboard ── */
.v2-dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.v2-dash__ring {
  padding: 28px;
  text-align: center;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.v2-dash__circle {
  --pct: 80;
  --color: var(--cyan);
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: conic-gradient(var(--color) calc(var(--pct) * 1%), rgba(0, 119, 182, 0.1) 0);
  display: grid;
  place-items: center;
  position: relative;
}

.v2-dash__circle::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--navy-card);
}

.v2-dash__circle span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.v2-dash__ring h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.v2-dash__ring p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text);
}

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

.v2-kpi {
  padding: 20px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.v2-kpi:hover { border-color: rgba(0, 119, 182, 0.35); }

.v2-kpi__val {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.v2-kpi__lbl {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.v2-banner {
  margin-top: 24px;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(90deg, rgba(0, 119, 182, 0.12), rgba(0, 150, 214, 0.08));
  border: 1px solid rgba(0, 119, 182, 0.25);
  border-radius: var(--radius);
}

.v2-banner strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cyan);
}

.v2-banner span {
  font-size: 0.9rem;
  color: var(--text);
}

/* ── Crisis cards ── */
.v2-crisis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.v2-crisis {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.v2-crisis--red { background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), var(--navy-card)); border-color: rgba(255, 107, 107, 0.2); }
.v2-crisis--amber { background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), var(--navy-card)); border-color: rgba(245, 166, 35, 0.2); }
.v2-crisis--violet { background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), var(--navy-card)); border-color: rgba(139, 92, 246, 0.2); }
.v2-crisis--cyan { background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), var(--navy-card)); border-color: rgba(0, 119, 182, 0.2); }

.v2-crisis__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.v2-crisis--red .v2-crisis__tag { color: var(--coral); }
.v2-crisis--amber .v2-crisis__tag { color: var(--amber); }
.v2-crisis--violet .v2-crisis__tag { color: var(--violet); }
.v2-crisis--cyan .v2-crisis__tag { color: var(--cyan); }

.v2-crisis__stat {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.v2-crisis__stat em {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.v2-crisis p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Timeline (9 steps) ── */
.v2-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
}

.v2-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--amber));
  border-radius: 2px;
}

.v2-step {
  position: relative;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.25s;
}

.v2-step:hover {
  border-color: rgba(0, 119, 182, 0.35);
  transform: translateX(6px);
}

.v2-step::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--cyan);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
}

.v2-step h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.v2-step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text);
}

.v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.v2-chips span {
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-bright);
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ILC Ecosystem — graphical timeline + images */
.v2-timeline--visual {
  max-width: 860px;
  padding-left: 64px;
  padding-top: 58px;
}

.v2-timeline--visual::before {
  left: 23px;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--cyan) 0%,
    var(--violet) 35%,
    var(--amber) 70%,
    var(--cyan) 100%
  );
  box-shadow: 0 0 20px rgba(0, 119, 182, 0.35);
}

.v2-timeline__hub {
  position: absolute;
  left: 8px;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-card), var(--navy));
  border: 2px solid var(--cyan);
  box-shadow: 0 0 24px rgba(0, 119, 182, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.v2-timeline__hub span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.v2-timeline__hub small {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 2px;
}

.v2-step--visual {
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  border: none;
}

.v2-step--visual:last-child {
  margin-bottom: 0;
}

.v2-step--visual::before {
  left: -64px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  font-size: 0.8rem;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.12), var(--shadow);
  z-index: 2;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.v2-step--visual::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 28px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--cyan), rgba(0, 119, 182, 0.15));
  z-index: 1;
}

.v2-step--visual:nth-child(odd)::after {
  background: linear-gradient(90deg, var(--violet), rgba(139, 92, 246, 0.12));
}

.v2-step--visual:nth-child(even)::before {
  border-color: var(--amber);
  color: var(--amber);
}

.v2-step--visual:hover::before {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.18), 0 6px 20px rgba(0, 119, 182, 0.25);
}

.v2-step--visual:hover {
  transform: none;
}

.v2-step__card {
  display: grid;
  grid-template-columns: 152px 1fr;
  align-items: stretch;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-step--visual:hover .v2-step__card {
  border-color: rgba(0, 119, 182, 0.45);
  transform: translateX(10px);
  box-shadow: var(--shadow-lg), -4px 0 24px rgba(0, 119, 182, 0.08);
}

.v2-step--visual:nth-child(even):hover .v2-step__card {
  box-shadow: var(--shadow-lg), -4px 0 24px rgba(245, 166, 35, 0.1);
}

.v2-step__thumb {
  position: relative;
  min-height: 108px;
  overflow: hidden;
}

.v2-step__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(0, 90, 140, 0.5));
  pointer-events: none;
}

.v2-step__thumb img {
  width: 100%;
  height: 100%;
  min-height: 108px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.v2-step--visual:hover .v2-step__thumb img {
  transform: scale(1.05);
}

.v2-step__content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-step__content h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
}

.v2-step__content p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text);
}

/* ── Voices (testimonials) ── */
.v2-voices {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
}

.v2-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v2-voice {
  position: relative;
  padding: 28px 24px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.v2-voice:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.v2-voice--featured {
  border-color: rgba(0, 119, 182, 0.35);
  background: linear-gradient(160deg, rgba(0, 119, 182, 0.06), var(--navy-card));
}

.v2-voice__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.v2-voice__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.v2-voice--p .v2-voice__avatar { background: var(--coral); }
.v2-voice--s .v2-voice__avatar { background: var(--amber); }
.v2-voice--m .v2-voice__avatar { background: var(--cyan); }

.v2-voice__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.v2-voice__tag {
  font-size: 0.78rem;
  color: var(--text);
  margin-top: 2px;
}

.v2-voice blockquote {
  margin: 0 0 20px;
  flex: 1;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-bright);
  border-left: 3px solid var(--border);
  padding-left: 14px;
}

.v2-voice__foot {
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.v2-voice__name {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}

.v2-voice__loc {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text);
}

/* ── Footer ── */
.v2-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text);
}

.v2-footer a { color: var(--cyan); }

/* ── Reveal ── */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.v2-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .v2-nav__links { display: none; }
  .v2-hero { min-height: auto; padding: 72px 0 56px; }
  .v2-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-hub { min-height: auto; margin-top: 8px; }
  .v2-hub__panel { width: min(360px, 94vw); }
  .v2-hub__node {
    --orbit-r: 138px;
    font-size: 0.58rem;
    padding: 6px 11px;
  }
  .v2-impact-strip { margin-top: -32px; padding-bottom: 40px; }
  .v2-impact-strip__bar { grid-template-columns: repeat(2, 1fr); }
  .v2-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v2-bento__side {
    grid-template-columns: 1fr 1fr;
  }
  .v2-pillars { grid-template-columns: repeat(2, 1fr); }
  .v2-dash { grid-template-columns: 1fr; }
  .v2-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-crisis-grid { grid-template-columns: 1fr; }
  .v2-voices__grid { grid-template-columns: 1fr; }
  .v2-programs { grid-template-columns: 1fr; }
  .v2-gallery { grid-template-columns: repeat(3, 1fr); }
  .v2-hub__showcase { width: min(380px, 94vw); }
  .v2-case { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .v2-impact-strip__bar { grid-template-columns: 1fr; }
  .v2-pillars { grid-template-columns: 1fr; }
  .v2-kpi-grid { grid-template-columns: 1fr; }

  .v2-hub__panel {
    width: 100%;
    aspect-ratio: auto;
    min-height: auto;
    padding: 24px 16px;
    background: var(--glass);
  }

  .v2-hub__svg,
  .v2-hub__core { display: none; }

  .v2-hub__orbit {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .v2-hub__node {
    position: static;
    transform: none !important;
  }

  .v2-gallery { grid-template-columns: repeat(2, 1fr); }
  .v2-hub__showcase { width: min(340px, 94vw); }
}

/* ── Version 2: e-Vidya images (moinee.org/eVidya) ── */
.v2-programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.v2-program {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}

.v2-program:hover {
  border-color: rgba(0, 119, 182, 0.35);
  transform: translateY(-3px);
}

.v2-program img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.v2-program__body {
  padding: 18px 20px;
}

.v2-program__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.v2-program__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
}

/* Bento feature grid — lead card + 2×2 vertical photo cards */
.v2-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.v2-bento__lead,
.v2-bento__tile {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--navy-card);
  box-shadow: var(--shadow);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.v2-bento__lead:hover,
.v2-bento__tile:hover {
  border-color: rgba(0, 119, 182, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.v2-bento__lead {
  display: flex;
  flex-direction: column;
}

.v2-bento__lead-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 280px;
  background: linear-gradient(180deg, var(--mf-blue-light), #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.v2-bento__lead-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.v2-bento__lead-media::after {
  display: none;
}

.v2-bento__tag {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 55, 90, 0.12);
}

.v2-bento__lead-body {
  flex: 1;
  padding: 22px 24px 26px;
  background: linear-gradient(180deg, var(--mf-blue-light) 0%, var(--navy-card) 100%);
  border-top: 3px solid var(--cyan);
}

.v2-bento__lead-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-bright);
}

.v2-bento__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.v2-bento__tile {
  display: flex;
  flex-direction: column;
}

.v2-bento__tile[data-theme="blue"] { border-top: 3px solid var(--cyan); }
.v2-bento__tile[data-theme="pink"] { border-top: 3px solid var(--coral); }
.v2-bento__tile[data-theme="gold"] { border-top: 3px solid var(--amber); }
.v2-bento__tile[data-theme="green"] { border-top: 3px solid var(--mf-green); }

.v2-bento__tile-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, var(--mf-blue-light), #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.v2-bento__tile-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.v2-bento__tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px 16px;
}

.v2-bento__tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.v2-bento__tile-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  color: #fff;
}

.v2-bento__tile[data-theme="blue"] .v2-bento__tile-icon { background: var(--cyan); }
.v2-bento__tile[data-theme="pink"] .v2-bento__tile-icon { background: var(--coral); }
.v2-bento__tile[data-theme="gold"] .v2-bento__tile-icon { background: var(--amber); }
.v2-bento__tile[data-theme="green"] .v2-bento__tile-icon { background: var(--mf-green); }

.v2-bento__tile-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.v2-bento__tile-body p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text);
}

.v2-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.v2-gallery-tabs__btn {
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.v2-gallery-tabs__btn:hover {
  color: var(--text-bright);
  border-color: rgba(0, 119, 182, 0.35);
}

.v2-gallery-tabs__btn.is-active {
  background: rgba(0, 119, 182, 0.15);
  color: var(--cyan);
  border-color: rgba(0, 119, 182, 0.45);
}

.v2-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}

.v2-gallery.is-collapsed .v2-gallery__item.is-overflow {
  display: none;
}

.v2-gallery-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.v2-gallery-expand:hover {
  background: var(--cyan-dim);
  border-color: rgba(0, 119, 182, 0.35);
  box-shadow: var(--shadow);
}

.v2-gallery-expand i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.v2-gallery-expand:hover i {
  transform: translateY(2px);
}

.v2-gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  max-height: 220px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.v2-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.v2-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-gallery__item.is-hidden {
  display: none;
}

/* ILC photo mosaic — images form animated ILC letters */
.v2-ilc-mosaic {
  margin: 24px 0 8px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
}

.v2-ilc-mosaic__word {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(32px, 7.5vw, 68px);
  min-height: auto;
  padding: 8px 0;
  position: relative;
  isolation: isolate;
}

/* Soft breeze streaks drifting across the letters */
.v2-ilc-mosaic__word::before,
.v2-ilc-mosaic__word::after {
  content: "";
  position: absolute;
  top: 8%;
  left: -30%;
  width: 38%;
  height: 84%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 119, 182, 0.04) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(0, 119, 182, 0.05) 65%,
    transparent 100%
  );
  filter: blur(1px);
  animation: v2-ilc-breeze 9s linear infinite;
}

.v2-ilc-mosaic__word::after {
  top: 18%;
  width: 28%;
  height: 64%;
  animation-duration: 11s;
  animation-delay: -5.5s;
  opacity: 0.7;
}

.v2-ilc-mosaic__letter {
  display: grid;
  gap: clamp(5px, 1vw, 8px);
  position: relative;
  z-index: 1;
  animation: v2-ilc-letter-sway 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.v2-ilc-mosaic__letter:nth-child(1) {
  animation-duration: 4.6s;
  animation-delay: 0s;
}

.v2-ilc-mosaic__letter:nth-child(2) {
  animation-duration: 5.2s;
  animation-delay: -1.1s;
}

.v2-ilc-mosaic__letter:nth-child(3) {
  animation-duration: 4.9s;
  animation-delay: -2.3s;
}

.v2-ilc-mosaic__cell {
  width: clamp(38px, 7.5vw, 62px);
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 55, 90, 0.2);
  cursor: zoom-in;
  position: relative;
  z-index: 1;
  animation:
    v2-ilc-cell-in 0.5s ease forwards,
    v2-ilc-cell-sway 4.8s ease-in-out infinite;
  animation-delay:
    calc(var(--d, 0) * 32ms),
    calc(0.5s + var(--d, 0) * 110ms);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.v2-ilc-mosaic__cell:hover,
.v2-ilc-mosaic__cell:focus-visible {
  z-index: 20;
  animation-play-state: paused, paused;
  transform: scale(1.85);
  box-shadow: 0 16px 40px rgba(0, 55, 90, 0.28);
  outline: none;
}

.v2-ilc-mosaic__cell img {
  width: 110%;
  height: 110%;
  margin: -5%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: v2-ilc-img-drift 6s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 140ms);
  will-change: transform;
}

.v2-ilc-mosaic__cell:hover img,
.v2-ilc-mosaic__cell:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.08);
  transition: transform 0.28s ease;
}

.v2-ilc-mosaic__cell.is-swapping img {
  opacity: 0;
  transform: scale(1.08);
}

.v2-ilc-mosaic__hint {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.v2-ilc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 20, 35, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.v2-ilc-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.v2-ilc-lightbox img {
  max-width: min(92vw, 960px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.v2-ilc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.v2-ilc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

@keyframes v2-ilc-cell-in {
  to { opacity: 1; }
}

@keyframes v2-ilc-breeze {
  0% {
    transform: translateX(-120%) skewX(-14deg);
    opacity: 0;
  }
  12% { opacity: 0.85; }
  88% { opacity: 0.85; }
  100% {
    transform: translateX(420%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes v2-ilc-letter-sway {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  35% {
    transform: translate(5px, -2px) rotate(0.6deg);
  }
  70% {
    transform: translate(-4px, 1px) rotate(-0.45deg);
  }
}

@keyframes v2-ilc-cell-sway {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, -1px) rotate(0.35deg);
  }
  55% {
    transform: translate(-2px, 1px) rotate(-0.25deg);
  }
  80% {
    transform: translate(3px, 0) rotate(0.2deg);
  }
}

@keyframes v2-ilc-img-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1.04);
  }
  30% {
    transform: translate(5px, -4px) scale(1.07);
  }
  60% {
    transform: translate(-4px, 3px) scale(1.03);
  }
  85% {
    transform: translate(3px, -1px) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-ilc-mosaic__word::before,
  .v2-ilc-mosaic__word::after,
  .v2-ilc-mosaic__letter,
  .v2-ilc-mosaic__cell,
  .v2-ilc-mosaic__cell img {
    animation: none !important;
  }

  .v2-ilc-mosaic__cell {
    opacity: 1;
  }

  .v2-ilc-mosaic__cell img {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.v2-gallery-more {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--navy-card);
  overflow: hidden;
}

.v2-gallery-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.v2-gallery-more summary::-webkit-details-marker { display: none; }

.v2-gallery-more summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.v2-gallery-more[open] summary::after {
  transform: rotate(180deg);
}

.v2-gallery-more__body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--border);
}

.v2-gallery-more .v2-gallery-tabs {
  margin-top: 16px;
}

.v2-section__intro a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-voice__avatar--photo {
  padding: 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.v2-voice__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-footer__credit {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text);
  opacity: 0.85;
}

.v2-footer__credit a {
  color: var(--text-bright);
}

.v2-cases {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.v2-case {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--border);
}

.v2-case img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.v2-case > div {
  padding: 22px 24px;
}

.v2-case h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.v2-case p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

.v2-case a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
}

@media (max-width: 720px) {
  .v2-cases { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .v2-timeline--visual { padding-left: 52px; max-width: 100%; }
  .v2-step--visual::before { left: -52px; width: 32px; height: 32px; font-size: 0.7rem; }
  .v2-step--visual::after { left: -20px; width: 20px; }
  .v2-timeline__hub { left: 4px; width: 40px; height: 40px; }
  .v2-step__card { grid-template-columns: 1fr; }
  .v2-step__thumb { min-height: 140px; }
  .v2-bento { grid-template-columns: 1fr; }
  .v2-bento__side { grid-template-columns: 1fr; }
  .v2-case { grid-template-columns: 1fr; }
  .v2-case img { max-height: 180px; }
  .v2-hub__showcase { width: min(320px, 94vw); }
}


/* Site integration */
body.ilc-body {
  padding-top: 84px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A202C;
  background: #ffffff;
}

body.ilc-body .h-nav a,
body.ilc-body .h-nav button,
body.ilc-body .h-nav-contact {
  text-decoration: none;
}

body.ilc-body .h-footer a { text-decoration: none; }
body.ilc-body .h-footer a:hover { color: #fff; }

.ilc-page .v2-hero {
  min-height: calc(100vh - 84px);
  padding: 36px 0 72px;
}

@media (max-width: 992px) {
  body.ilc-body { padding-top: 84px; }
}
