/* MISSION I.N.V.E.N.T. — Design tokens */
:root {
  --orange: #ff6333;
  --orange-deep: #ea580c;
  --blue: #001f3f;
  --blue-deep: #001a33;
  --yellow: #ffb84d;
  --yellow-soft: #ffe2b8;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --gradient-hero: linear-gradient(135deg, #fff8f4 0%, #f5f9ff 50%, #ffffff 100%);
  --gradient-cta: linear-gradient(120deg, var(--orange) 0%, var(--blue) 100%);
  --gradient-text: linear-gradient(90deg, var(--orange-deep), var(--blue-deep));
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --font: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  /* background: var(--surface-soft); */
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(251, 191, 36, 0.45) 60%);
  font-weight: 700;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header--ref {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: none;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.nav-inner--ref {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 5.25rem;
  padding: 0.75rem 1.25rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.nav-logo__img {
  display: block;
  height: clamp(52px, 14vw, 68px);
  width: auto;
  min-height: 52px;
  max-width: min(320px, 78vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 640px) {
  .nav-logo__img {
    height: clamp(56px, 10vw, 72px);
    min-height: 56px;
    max-width: min(360px, 50vw);
  }
}

@media (min-width: 900px) {
  .nav-inner--ref {
    min-height: 5.75rem;
    padding: 0.85rem 1.25rem;
  }

  .nav-logo__img {
    height: 72px;
    min-height: 72px;
    max-width: min(400px, 28vw);
  }
}

.nav-links--ref {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  justify-self: end;
}

.nav-links--ref a {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #334155;
  text-decoration: none;
}

.nav-links--ref a:hover {
  color: #001b33;
  text-decoration: none;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  background: #1e3a8a;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-nav-cta:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .nav-inner--ref {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .nav-links--ref {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
  }

  .nav-links--ref a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
  }

  .section {
    padding: 3.25rem 1rem;
  }
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  color: var(--orange);
}

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
  text-decoration: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  text-decoration: none;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: #eff6ff;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

/* —— Sections —— */
.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section + .section {
  padding-top: 3.5rem;
}

.section-tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}

/* —— Hero —— */
.hero {
  background: var(--gradient-hero);
  padding: 2rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 191, 36, 0.2), transparent);
  pointer-events: none;
}

.hero--ref {
  background: #ffffff;
  padding: 1.25rem 1.25rem 3rem;
  overflow: visible;
}

.hero--ref::before {
  display: none;
}

.hero-ref {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 18px;
  align-items: stretch;
}

.hero-ref__main {
  min-width: 0;
}

.hero-main-card {
  background: #001b33;
  border-radius: 36px;
  padding: 4.75rem 3.5rem 1.75rem;
  min-height: min(520px, 70vh);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
}

.hero-spark {
  position: relative;
  width: 32px;
  height: 28px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.hero-spark span {
  position: absolute;
  background: #ff6333;
  border-radius: 2px;
}

.hero-spark span:nth-child(1) {
  width: 3px;
  height: 14px;
  left: 2px;
  top: 10px;
  transform: rotate(-38deg);
}

.hero-spark span:nth-child(2) {
  width: 3px;
  height: 18px;
  left: 14px;
  top: 4px;
}

.hero-spark span:nth-child(3) {
  width: 3px;
  height: 14px;
  left: 24px;
  top: 10px;
  transform: rotate(38deg);
}

.hero-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
}

.hero-tagline {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0 0 1.25rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-ref__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
}

.hero-ref__links a {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-ref__links a:hover {
  color: #fde68a;
  text-decoration: underline;
}

.hero-ref__dot {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.hero-serif {
  margin: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.38;
  color: #ffffff;
  letter-spacing: 0.01em;
  flex: 1;
}

.hero-brand-accent {
  color: #ff6333;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700;
}

.hero-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.95rem 1.75rem;
  min-width: 11rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff6333;
  border-radius: 14px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-btn-orange:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}

.hero-ref__bento {
  min-width: 0;
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(132px, 168px);
  grid-template-rows: minmax(200px, 1.2fr) auto;
  gap: 18px;
  align-items: stretch;
  min-height: min(520px, 70vh);
  height: 100%;
}

.hero-bento__image {
  grid-column: 1 / 3;
  grid-row: 1;
  background-color: #cccccc;
  background-image: url("assets/main.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  min-height: 200px;
}

.hero-bento__video {
  grid-column: 3;
  grid-row: 1 / 3;
  background-color: #cccccc;
  background-image: url("assets/side.jpeg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  min-height: 0;
  position: relative;
}

.hero-bento__stat {
  background: #e1ecf4;
  border-radius: 28px;
  padding: 1.15rem 1.1rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  box-sizing: border-box;
}

.hero-bento__stat--a {
  grid-column: 1;
  grid-row: 2;
}

.hero-bento__stat--b {
  grid-column: 2;
  grid-row: 2;
}

.hero-bento__stat-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  color: #001b33;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-bento__stat-label {
  margin: 0.5rem 0 0;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(0, 27, 51, 0.82);
  max-width: 14rem;
}

.hero-bento__stairs {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  opacity: 0.95;
}

.hero-bento__avatars {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.65rem;
}

.hero-bento__avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #c4c4c4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #e1ecf4;
  flex-shrink: 0;
  margin-left: -9px;
}

.hero-bento__avatars span:first-child {
  margin-left: 0;
}

.hero-bento__avatars span:nth-child(1) {
  background-image: url("assets/s1.png");
}

.hero-bento__avatars span:nth-child(2) {
  background-image: url("assets/s2.png");
}

.hero-bento__avatars span:nth-child(3) {
  background-image: url("assets/s3.png");
}

.hero-bento__avatars span:nth-child(4) {
  background-image: url("assets/s4.png");
}

@media (max-width: 900px) {
  .hero-ref {
    grid-template-columns: 1fr;
  }

  .hero-main-card {
    min-height: auto;
    padding: 1.5rem 1.5rem 1.35rem;
  }

  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .hero-bento__image {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center center;
  }

  .hero-bento__video {
    display: none;
  }

  .hero-bento__stat--a {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-bento__stat--b {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-serif {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .nav-inner--ref {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.55rem;
  }

  .nav-links--ref {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 0.9rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
  }

  .hero-brand-accent {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .hero-bento {
    gap: 0.9rem;
  }

  .hero-bento__image {
    min-height: 240px;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #dbe4ef;
  }

  .hero-bento__video {
    display: none;
  }

  .ipr-strip__brand {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
  }

  .benefit-showcase {
    border-radius: 24px;
    padding: 1.25rem 0.9rem;
  }

  .contact-block__heading {
    max-width: none;
  }
}

@media (max-width: 390px) {
  .nav-inner--ref {
    padding: 0.65rem 0.9rem;
    gap: 0.7rem 0.9rem;
  }

  .nav-logo__img {
    height: 50px;
    min-height: 50px;
    max-width: min(250px, 72vw);
  }

  .btn-nav-cta {
    font-size: 0.78rem;
    padding: 0.58rem 0.9rem;
  }

  .hero--ref {
    padding: 1rem 0.9rem 2.35rem;
  }

  .hero-main-card {
    border-radius: 26px;
    padding: 1.2rem 1.1rem 1.15rem;
  }

  .hero-tagline {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
  }

  .hero-serif {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero-bento__stat {
    border-radius: 20px;
    padding: 0.9rem 0.8rem 1rem;
    min-height: 108px;
  }

  .hero-bento__image {
    min-height: 210px;
    border-radius: 24px;
    background-size: cover;
  }

  .hero-bento__video {
    display: none;
  }

  .hero-bento__stat-num {
    font-size: 1.35rem;
  }

  .hero-bento__stat-label {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .benefit-showcase {
    border-radius: 24px;
    padding: 1.2rem 0.95rem;
  }

  .benefit-showcase__name {
    font-size: 0.9rem;
  }

  .benefit-showcase__tag {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .faq-panel--navy {
    border-radius: 24px;
    padding: 1.4rem 1rem 1.6rem;
  }

  .faq-q {
    font-size: 0.9rem;
    padding: 0.85rem 0;
  }

  .faq-a-inner {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .join-card {
    border-radius: 16px;
    padding: 1rem;
  }

  .join-card__text {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .contact-block__card {
    border-radius: 24px;
    padding: 1.25rem 1rem;
  }

  .contact-block__heading {
    font-size: 1.12rem;
    line-height: 1.32;
    margin-bottom: 1.2rem;
  }
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-svg-wrap {
  filter: drop-shadow(var(--shadow-lg));
}

/* SVG hero illustration */
.hero-svg {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* —— Post-hero: partners bar + navy feature (reference) —— */
/* LOCKED CSS START: styles for .post-hero--partners / .partners-* block */
/* Do not change these selectors unless user explicitly requests updates to this exact section. */
.post-hero {
  background: #ffffff;
}

.ipr-strip {
  background: #ffffff;
}

.ipr-strip .post-hero__shell {
  padding-top: 0.25rem;
}

.ipr-strip__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  background: #e9edf3;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 42px;
  padding: 1.8rem clamp(1.15rem, 2.6vw, 2rem);
  min-height: 250px;
}

.ipr-strip__lead {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.1vw, 1.05rem);
  line-height: 1.45;
  color: #1e293b;
  max-width: 32rem;
}

.ipr-strip__brand {
  color: #ff6333;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
}

.ipr-strip__icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.45rem, 1.45vw, 1.45rem);
}

.ipr-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 4.5rem;
}

.ipr-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #001f3f;
}

.ipr-strip__icon svg {
  width: 60px;
  height: 60px;
  display: block;
}

.ipr-strip__icon img {
  width: 60px;
  height: 60px;
  display: block;
}

.ipr-strip__label {
  margin-top: 0.35rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}

.post-hero__shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
}

.post-hero--partners .post-hero__shell {
  padding-top: 0.25rem;
}

.partners-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 1.35rem 1.5rem 1.35rem 1.75rem;
}

.partners-bar--wire {
  border-radius: 58px;
  padding: 2.25rem clamp(1.25rem, 3vw, 2.25rem);
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.partners-bar__lead {
  margin: 0;
  flex: 1 1 200px;
  max-width: 300px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: #475569;
}

.partners-bar--wire .partners-bar__lead {
  max-width: 540px;
  flex: 0 1 auto;
  color: #334155;
  font-size: 25px;
}

.partners-bar__lead-card {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: none;
  max-width: 560px;
}

.partners-bar__title {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
}

.partners-bar__desc {
  margin: 0 0 0.8rem;
  font-family: var(--font);
  font-size: clamp(0.86rem, 1.25vw, 0.96rem);
  line-height: 1.6;
  font-weight: 400;
  color: #475569;
}

.partners-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  background: #ff6333;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  text-decoration: none;
}

.partners-bar__btn:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.94;
}

.partners-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.8vw, 2.25rem);
  flex: 1 1 280px;
}

.partners-bar--wire .partners-bar__logos {
  flex: 1 1 0;
  min-width: 0;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.partners-bar__logos--ip {
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: visible;
  padding: 0.1rem 0;
  flex: 0 0 auto;
  width: fit-content;
  margin: 0 auto;
}

.partners-bar--wire .partner-logo-mock {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 7.5rem;
}

.partners-bar--wire .partner-logo-mock__name {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: #0f172a;
}

.partners-ip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: auto;
  max-width: none;
  margin-left: -50px;
}

.partners-ip-item:first-child {
  margin-left: 0;
}

.partners-ip-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.partners-ip-item__icon svg {
  display: block;
  width: clamp(44px, 9vw, 64px);
  height: clamp(44px, 9vw, 64px);
}

.partners-ip-item__image {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #f1f5f9;
  box-shadow: none;
}

@media (min-width: 900px) {
  .partners-ip-item__icon svg {
    width: 56px;
    height: 56px;
  }

  .partners-ip-item__image {
    width: 132px;
    height: 132px;
  }
}

.partners-ip-item__label {
  display: none;
}


.partner-logo-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.1;
}

.partner-logo-mock__name {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.02em;
}

.partner-logo-mock__tag {
  font-family: var(--font);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #64748b;
  margin-top: 0.25rem;
}
/* LOCKED CSS END: styles for .post-hero--partners / .partners-* block */

.anchor-jump {
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  background: #e2e8f0;
  border-radius: 999px;
}

.post-hero--feature .post-hero__shell {
  padding-bottom: 2.5rem;
}

.feature-navy {
  background: #05192d;
  border-radius: 48px;
  padding: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

.feature-navy__title {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.feature-navy__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.feature-navy__media {
  background: #d1d1d1;
  border-radius: 40px;
  width: 100%;
  min-height: 320px;
  aspect-ratio: 1 / 1;
  max-height: 440px;
}

.feature-navy__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-content: center;
}

.feature-navy__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.feature-navy__icon-slot {
  width: clamp(56px, 9vw, 72px);
  height: clamp(56px, 9vw, 72px);
  background: #d1d1d1;
  border-radius: 18px;
  flex-shrink: 0;
}

.feature-navy__label {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .ipr-strip__panel {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 1rem;
  }

  .ipr-strip__icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }

  .partners-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-bar__lead {
    max-width: none;
  }

  .partners-bar__logos {
    justify-content: space-between;
    width: 100%;
  }

  .partners-bar--wire .partners-bar__logos {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  .partners-bar--wire .partner-logo-mock {
    flex: 0 0 auto;
    max-width: none;
    min-width: 5rem;
  }

  .partners-bar__logos--ip {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: visible;
    width: 100%;
  }

  .partners-bar__lead-card {
    width: 100%;
  }

  .partners-ip-item {
    margin-left: -10px;
    flex: 0 0 auto;
  }

  .partners-ip-item__image {
    width: clamp(62px, 19vw, 74px);
    height: clamp(62px, 19vw, 74px);
  }


  .feature-navy__body {
    grid-template-columns: 1fr;
  }

  .feature-navy__media {
    max-height: none;
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }
}

/* —— Duplex: split content + logo showcase (reference) —— */
.duplex {
  background: #ffffff;
}

.duplex--split .post-hero__shell {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.duplex-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.duplex-split__content {
  min-width: 0;
  width: 100%;
}

.duplex-split__h2 {
  margin: 0 0 1.75rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #001f3f;
  letter-spacing: 0.01em;
  line-height: 1.15;
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0 0.05rem;
  position: relative;
}

.duplex-split__h2::after {
  content: "";
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #001f3f 0%, #ff6333 100%);
  box-shadow: 0 2px 10px rgba(255, 99, 51, 0.28);
}

.duplex-rows {
  margin-bottom: 1.75rem;
}

.duplex-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.duplex-row:last-child {
  margin-bottom: 0;
}

.duplex-row__title {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: #001f3f;
  line-height: 1.35;
  display: inline-block;
  justify-self: start;
  padding: 0.28rem 0.72rem 0.34rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-left: 3px solid #ff6333;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.duplex-row__text {
  margin: 0;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.75;
}

.duplex-split__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.duplex-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  background: #ff6333;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.duplex-cta--navy {
  background: #001f3f;
}

.duplex-cta:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.94;
}

.duplex-split__visual {
  position: relative;
  padding-bottom: 2.5rem;
}

.duplex-visual {
  position: relative;
  min-height: min(470px, 94vh);
  background-color: #e8e8e8;
  background-image: url("assets/MISI.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 28px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 14% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.duplex-visual__chev {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.duplex-visual__chev svg {
  width: min(45%, 140px);
  height: auto;
}

.duplex-visual__overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: min(100%, 300px);
  padding: 1.15rem 1.25rem;
  background: #05192d;
  border: 2px solid #60a5fa;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0, 27, 51, 0.18);
}

.duplex-visual__overlay p {
  margin: 0;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
}

.mission-counters {
  background: #f3f4f6;
}

.mission-counters__shell {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.mission-counters__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.1fr);
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: center;
}

.mission-counters__intro {
  max-width: 32rem;
}

.mission-counters__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font);
  font-size: 0.8rem;
  color: #64748b;
}

.mission-counters__title {
  margin: 0 0 0.95rem;
  font-family: var(--font);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: #0f172a;
  font-weight: 500;
}

.mission-counters__copy {
  margin: 0 0 1.2rem;
  font-family: var(--font);
  font-size: 0.92rem;
  line-height: 1.62;
  color: #334155;
}

.mission-counters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
  background: #ff6333;
  text-decoration: none;
}

.mission-counters__btn:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}

.mission-counters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mission-counter-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  padding: 1.2rem 0.9rem 1rem;
  background: #ffffff;
  border-bottom: 2px solid #ff6333;
  text-align: center;
}

.mission-counter-card__value {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: #0f172a;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.mission-counter-card__label {
  margin: 0;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  color: #475569;
}

.duplex--logos .post-hero__shell {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.duplex-logos-shell {
  max-width: 1180px;
}

.duplex-logos-panel-wrap {
  filter: drop-shadow(0 18px 36px rgba(0, 27, 58, 0.18));
}

.duplex-logos-panel {
  position: relative;
  background: #001b3a;
  color: #ffffff;
  border-radius: clamp(28px, 4.5vw, 48px) clamp(28px, 4.5vw, 48px) 0 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 50% 100%, 0 calc(100% - 52px));
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.35rem, 3.5vw, 2.75rem) clamp(8.75rem, 5vw, 8.75rem);
}

.duplex-logos-panel__title {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.duplex-logos-panel__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.duplex-logos-panel__media {
  width: 100%;
  min-height: clamp(220px, 32vw, 340px);
  aspect-ratio: 16 / 11;
  max-height: 420px;
  background: #c4c4c4;
  border-radius: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.duplex-logos-panel__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.duplex-logos-panel__copy {
  min-width: 0;
}

.duplex-logos-panel__subtitle {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.duplex-logos-panel__text {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.35vw, 0.9375rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  text-align: left;
}

.duplex-logos-panel__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .duplex-logos-panel__cols {
    grid-template-columns: 1fr;
  }

  .duplex-logos-panel__media {
    max-height: none;
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }
}

@media (max-width: 900px) {
  .duplex-split {
    grid-template-columns: 1fr;
  }

  .duplex-split__visual {
    padding-bottom: 3rem;
  }

  .duplex-visual {
    min-height: 320px;
    clip-path: none;
    border-radius: 28px;
  }

  .duplex-visual__overlay {
    position: static;
    margin-top: 0.85rem;
    max-width: 100%;
  }

  .duplex-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mission-counters__layout {
    grid-template-columns: 1fr;
  }

  .mission-counters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mission-counters__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Join trio: 3 cards, light panel + image + CTA (reference) —— */
.join-trio {
  background: #ffffff;
}

.join-trio__shell {
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.join-trio__title {
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  max-width: 42rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  text-align: center;
  color: #001f3f;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.join-trio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 900px) {
  .join-trio__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.join-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background: #f0f0f0;
  border-radius: clamp(18px, 2.5vw, 24px);
  min-width: 0;
}

.join-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 140px;
  margin-bottom: 1.1rem;
  background: #cccccc;
  border-radius: clamp(12px, 2vw, 16px);
  flex-shrink: 0;
  overflow: hidden;
}

.join-card__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.join-card__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  color: #001f3f;
  letter-spacing: 0.01em;
}

.join-card__text {
  margin: 0 0 1.25rem;
  flex: 1 1 auto;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: #475569;
}

.join-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff6333;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.join-card__cta:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.94;
}

/* —— 2x2 feature grid (reference) —— */
.feat-grid {
  background: #ffffff;
}

.feat-grid .post-hero__shell {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.feat-grid__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.feat-grid__title {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  color: #0f172a;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.feat-grid__sub {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  color: #334155;
  line-height: 1.4;
}

.feat-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 1000px;
  margin: 0 auto;
}

.feat-card {
  margin: 0;
  text-align: left;
}

.feat-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 200px;
  background: #e5e5e5;
  border-radius: 12px;
  margin-bottom: 1.1rem;
}

.feat-card__name {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #0f172a;
  line-height: 1.25;
}

.feat-card__text {
  margin: 0;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: #475569;
}

@media (max-width: 640px) {
  .feat-grid__grid {
    grid-template-columns: 1fr;
  }
}

/* Pillars: round cards, 3 + 3 grid */
.section--pillars {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(1.1rem, 2.8vw, 1.8rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.section--pillars .section-label {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.section--pillars h2 {
  margin: 0;
  color: #001f3f;
}

.section--pillars__lead {
  margin: 0.6rem auto 1.5rem;
  max-width: 42rem;
  color: #475569;
}

.pillars-round-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 980px;
  margin: 0 auto;
}

.pillar-round-card {
  aspect-ratio: 1 / 1;
  width: min(100%, 250px);
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 3px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  padding: 1.05rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pillar-round-card__step {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #001f3f;
  margin-bottom: 0.35rem;
}

.pillar-round-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.pillar-round-card__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #64748b;
}

.pillar-round-card--1 { border-color: rgba(0, 31, 63, 0.45); }
.pillar-round-card--1 { border-color: rgba(0, 31, 63, 0.45); }
.pillar-round-card--2 { border-color: rgba(255, 99, 51, 0.55); }
.pillar-round-card--3 { border-color: rgba(0, 31, 63, 0.55); }
.pillar-round-card--4 { border-color: rgba(255, 99, 51, 0.55); }
.pillar-round-card--5 { border-color: rgba(0, 31, 63, 0.5); }
.pillar-round-card--6 { border-color: rgba(255, 99, 51, 0.6); }

/* Responsive refinements for full site consistency */
.mission-counters {
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 !important;
}

@media (max-width: 1024px) {
  .section {
    padding: 3rem 1rem;
  }

  .duplex-split__ctas {
    justify-content: flex-start;
  }

  .join-card__text {
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .pillars-round-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pillars-round-grid {
    grid-template-columns: 1fr;
  }

  .pillar-round-card {
    width: min(100%, 280px);
  }
}

/* —— Programs: navy 3×2 grid with internal rules (reference) —— */
.section--programs {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.programs-panel {
  background: #001a33;
  color: #ffffff;
  border-radius: clamp(36px, 6.5vw, 80px);
  padding: clamp(2.35rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 20px 50px rgba(0, 26, 51, 0.18);
}

.programs-panel__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.programs-panel .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.programs-panel__title {
  margin: 0.35rem 0 1rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.programs-panel__intro {
  margin: 0 auto;
  max-width: min(42rem, 88%);
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.programs-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programs-panel__cell {
  margin: 0;
  text-align: center;
  padding: clamp(1.2rem, 2.5vw, 1.65rem) clamp(0.85rem, 2vw, 1.35rem);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.programs-panel__cell:nth-child(3n) {
  border-right: none;
}

.programs-panel__cell:nth-child(n + 4) {
  border-bottom: none;
}

.programs-panel__cell-title {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.975rem, 1.35vw, 1.125rem);
  line-height: 1.3;
  color: #ffffff;
}

.programs-panel__cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 0.75rem;
  color: #ffffff;
}

.programs-panel__cell-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.programs-panel__cell-text {
  margin: 0;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 899px) {
  .programs-panel__grid {
    grid-template-columns: 1fr;
  }

  .programs-panel__cell {
    border-right: none;
  }

  .programs-panel__cell:nth-child(n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }

  .programs-panel__cell:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }

  .programs-panel__cell:last-child {
    border-bottom: none;
  }
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(37, 99, 235, 0.12));
  color: var(--blue-deep);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* —— What we do —— */
.do-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .do-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.do-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.do-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: #fff;
}

.do-item .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* —— Beneficiaries: light band + icon / title / subtitle (reference) —— */
.section--benefit .benefit-showcase__header {
  text-align: center;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.benefit-showcase__page-title {
  margin: 0.35rem 0 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.2;
  color: #001f3f;
  letter-spacing: 0.01em;
}

.benefit-showcase {
  background: #f7f8fa;
  border-radius: clamp(32px, 5vw, 56px);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
}

.benefit-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 560px) {
  .benefit-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .benefit-showcase__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.benefit-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  min-width: 0;
}

.benefit-showcase__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 9vw, 64px);
  height: clamp(52px, 9vw, 64px);
  margin-bottom: 0.95rem;
  color: #001f3f;
}

.benefit-showcase__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-showcase__image {
  width: clamp(72px, 10vw, 90px);
  height: clamp(72px, 10vw, 90px);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0.95rem;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 27, 51, 0.14);
}

.benefit-showcase__mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 89px;
  height: 89px;
  margin: 0 0 0.75rem;
  color: #001f3f;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0, 31, 63, 0.18);
  box-shadow: 0 8px 18px rgba(0, 27, 51, 0.12);
}

.benefit-showcase__mini-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.benefit-showcase__name {
  margin: 0 0 0.4rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.3;
  color: #001f3f;
  letter-spacing: 0.01em;
}

.benefit-showcase__tag {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #334155;
}

/* —— Impact —— */
.impact {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  margin: 0 1.25rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.impact h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.impact .section-label {
  text-align: center;
  color: var(--yellow);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--yellow), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.35rem;
}

/* —— Video —— */
.video-section {
  background: var(--surface);
}

.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-align: center;
  padding: 1rem;
}

.video-placeholder.hidden {
  display: none;
}

/* —— CTA band —— */
.cta-band {
  background: var(--gradient-cta);
  color: #fff;
  text-align: center;
  padding: 3rem 1.25rem;
  margin: 0;
  max-width: none;
  border-radius: 0;
}

.cta-band h2 {
  color: #fff;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--orange-deep);
  box-shadow: var(--shadow);
}

.cta-band .btn-primary:hover {
  background: #fefce8;
  color: var(--orange-deep);
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Mid-page CTA strip */
.cta-strip {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 700px) {
  .cta-strip {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cta-strip .btn {
    flex-shrink: 0;
  }
}

.cta-strip p {
  margin: 0;
  font-weight: 600;
  max-width: 28rem;
}

/* —— FAQ: navy panel, two columns, vertical rule (reference) —— */
.section--faq {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq-panel--navy {
  max-width: 1140px;
  margin: 0 auto;
  background: #001a33;
  color: #ffffff;
  border-radius: clamp(32px, 5.5vw, 56px);
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.35rem, 4vw, 2.75rem) clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 24px 48px rgba(0, 26, 51, 0.2);
}

.faq-panel--navy .faq-showcase__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.faq-panel--navy .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.faq-panel--navy .faq-showcase__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.faq-panel--navy .faq-showcase__lead {
  margin: 0 auto;
  max-width: min(40rem, 90%);
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.faq-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.faq-column {
  min-width: 0;
}

.faq-column--right {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
}

.faq-column .faq-item:last-child {
  border-bottom: none;
}

.faq-item {
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  overflow: visible;
}

.faq-item.is-open {
  border-bottom-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: clamp(1rem, 2.2vw, 1.2rem) 0;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.45;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.faq-q:hover {
  color: rgba(255, 255, 255, 0.88);
}

.faq-item.is-open .faq-q {
  background: transparent;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.28s ease;
}

.faq-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.faq-icon path {
  stroke-width: 1.5;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-a-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-a-inner {
  padding: 1rem 0 1.15rem;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.75;
}

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

  .faq-column--right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin-top: 0.35rem;
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }

  .faq-column:first-child .faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .faq-column--right .faq-item:last-child {
    border-bottom: none;
  }
}

/* —— Final + Footer —— */
.final-section {
  text-align: center;
  padding: 4rem 1.25rem;
}

.final-section .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

/* Contact block (reference) */
.contact-block {
  background: #ffffff;
}

.contact-block .post-hero__shell {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.contact-highlight {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 99, 51, 0.14) 0%, rgba(0, 31, 63, 0.14) 100%);
  border: 1px solid rgba(255, 99, 51, 0.28);
}

.contact-highlight__text {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: #001f3f;
  text-align: center;
}

.contact-block__card {
  background: #001f3f;
  border-radius: 40px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.contact-block__heading {
  margin: 0 0 2rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  color: #ffffff;
  max-width: 22rem;
}

.contact-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-block__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-block__item:last-child {
  margin-bottom: 0;
}

.contact-block__icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(0, 27, 51, 0.16);
}

.contact-block__icon-box--instagram {
  color: #e1306c;
}

.contact-block__icon-box--linkedin {
  color: #0a66c2;
}

.contact-block__icon-box--phone,
.contact-block__icon-box--email {
  color: #0f172a;
}

.contact-block__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.contact-block__item-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.25;
}

.contact-block__item-meta {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.contact-block__intro {
  margin: 0 0 1.25rem;
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font);
  font-size: 0.875rem;
  color: #1e293b;
  background: #e8eaee;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #64748b;
}

.contact-form__textarea {
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ffffff;
  background: #ff6333;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form__submit:hover {
  opacity: 0.94;
}

.contact-link,
.footer-ref__legal-link {
  color: inherit;
}

.contact-link:hover,
.footer-ref__legal-link:hover {
  color: inherit;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid rgba(255, 99, 51, 0.35);
  outline-offset: 1px;
}

@media (max-width: 900px) {
  .contact-highlight {
    margin-bottom: 0.9rem;
    padding: 0.75rem 0.85rem;
  }

  .contact-block__card {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 1.25rem 2rem;
  font-size: 0.9rem;
}

.footer.footer--ref {
  background: #ffffff;
  color: #475569;
  padding: 2.75rem 1.25rem 1.5rem;
  font-size: 0.875rem;
}

.footer.footer--ref .social-row--brand a {
  color: #ffffff;
}

.footer.footer--ref .social-row--brand a:hover {
  color: #ffffff;
}

.footer.footer--ref .social-row--brand .social-brand {
  background: #ff6333;
}

.footer.footer--ref .social-row--brand .social-brand:hover {
  background: #f25525;
}

.footer-ref__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-ref__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.footer-ref__logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.125rem;
  color: #001f3f;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.footer-ref__heading {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #001f3f;
}

.footer-ref__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-ref__links li {
  margin-bottom: 0.5rem;
}

.footer-ref__links a {
  font-family: var(--font);
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
}

.footer-ref__links a:hover {
  color: #001f3f;
  text-decoration: underline;
}

.footer-ref__news-text {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
}

.footer-news {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.footer-news__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font);
  font-size: 0.8125rem;
  padding: 0.7rem 0.9rem;
  background: #e8eaee;
  border: none;
  border-radius: 10px 0 0 10px;
  color: #1e293b;
}

.footer-news__input::placeholder {
  color: #64748b;
}

.footer-news__btn {
  flex-shrink: 0;
  width: 48px;
  background: #001f3f;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer-news__btn:hover {
  opacity: 0.92;
}

.footer-ref__legal {
  margin: 1.5rem 0 0;
  padding: 0;
  text-align: center;
  font-family: var(--font);
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

.social-row--brand {
  margin-top: 0.35rem;
  gap: 0.65rem;
}

.social-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 27, 58, 0.14);
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.social-brand:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 27, 58, 0.2);
  text-decoration: none;
}

.social-brand svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .social-brand {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .social-brand svg {
    width: 20px;
    height: 20px;
  }
}

.social-brand--fb {
  background: #1877f2;
}

.social-brand--tw {
  background: #1da1f2;
}

.social-brand--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-brand--in {
  background: #0a66c2;
}

.social-brand--yt {
  background: #ff0000;
}

@media (max-width: 900px) {
  .footer-ref__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-ref__grid {
    grid-template-columns: 1fr;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.footer a {
  color: #002451;
}

.footer a:hover {
  color: var(--yellow);
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.social-row a:hover {
  background: rgba(249, 115, 22, 0.3);
}

.qr-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box svg {
  width: 100%;
  height: 100%;
}

.footer-powered {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-powered strong {
  color: #e2e8f0;
}

/* —— Reveal animation —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

/* —— About prose —— */
.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.bg-white {
  background: var(--surface);
}

.bg-soft {
  background: var(--surface-soft);
}

.hidden-mobile {
  display: none;
}

@media (min-width: 900px) {
  .hidden-mobile {
    display: inline-flex;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-float {
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-float-delay {
  animation: heroFloat 4.8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.video-wrap .mission-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-placeholder {
  z-index: 1;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #001f3f;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 27, 51, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .scroll-top:hover {
    background: #ff6333;
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  .scroll-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }
}
