/* ─────────────────────────────────────────────────────────
   NNPC Liquidity Tower — Public Experience Design System
   ───────────────────────────────────────────────────────── */
:root {
  --px-primary:        #009a49;
  --px-primary-dark:   #007a3a;
  --px-primary-strong: #0b6a3a;
  --px-secondary:      #0a3e5f;
  --px-accent:         #e4d310;
  --px-bg:             #f4f9f6;
  --px-bg-soft:        #edf5f0;
  --px-surface:        #ffffff;
  --px-text:           #0d2620;
  --px-muted:          #4a6b5e;
  --px-border:         #cce3d5;
  --px-radius-xl:      22px;
  --px-radius-lg:      14px;
  --px-radius-md:      10px;
  --px-shadow-sm:      0 4px 16px rgba(10,35,24,0.07);
  --px-shadow-md:      0 12px 32px rgba(8,30,20,0.11);
  --px-shadow-lg:      0 28px 64px rgba(6,24,16,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.public-body {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  color: var(--px-text);
  background: var(--px-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
.public-shell { min-height: 100vh; }

/* ── HEADER ─────────────────────────────────────────────── */
.public-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 0 clamp(16px,4vw,40px); height: 68px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,130,65,0.1);
  transition: background 220ms ease, box-shadow 220ms ease;
}
.public-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(10,35,24,0.09);
}
.public-brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--px-text); flex-shrink: 0;
}
.public-brand img { width: 36px; height: 36px; object-fit: contain; }
.public-brand span {
  font-weight: 800; font-size: 1rem;
  letter-spacing: 0.008em; white-space: nowrap;
}
.public-nav { display: flex; align-items: center; gap: 28px; }
.public-nav a {
  text-decoration: none; color: var(--px-text);
  font-size: 0.9rem; font-weight: 600; position: relative;
  opacity: 0.78; transition: opacity 160ms;
}
.public-nav a:hover { opacity: 1; }
.public-nav a.active { opacity: 1; color: var(--px-primary-strong); }
.public-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--px-primary), var(--px-accent));
  transition: width 200ms ease;
}
.public-nav a:hover::after, .public-nav a.active::after { width: 100%; }

.public-cta {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 10px 20px; border: 0;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: filter 160ms, transform 160ms;
}
.public-cta:hover { filter: brightness(1.07); transform: translateY(-1px); }
.public-cta.primary {
  color: #fff;
  background: linear-gradient(110deg, var(--px-primary-strong), var(--px-primary));
  box-shadow: 0 6px 18px rgba(0,154,73,0.3);
}
.public-cta.ghost {
  color: #e8fff2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
}
.public-cta.ghost-dark {
  color: var(--px-primary-strong);
  background: rgba(0,154,73,0.07);
  border: 1px solid rgba(0,154,73,0.22);
}

/* ── HERO — Unicentral-Style Structure ─────────────────── */
.hero-panel {
  position: relative;
  height: clamp(380px, 60vh, 540px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, rgba(4,14,30,0.91) 0%, rgba(4,22,38,0.76) 42%, rgba(5,34,18,0.56) 100%);
  z-index: 1;
}
.hero-copy-card {
  position: absolute;
  left: clamp(24px, 5.4vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(700px, calc(100% - 48px));
  color: #ffffff;
}
.hero-copy-card h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 14ch;
}
.hero-copy-card > p,
.hero-lead {
  margin: 0 0 26px;
  color: rgba(242,248,255,0.9);
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  line-height: 1.56;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .public-cta {
  min-height: 54px;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero-actions .public-cta.ghost {
  background: rgba(255,255,255,0.02);
  border: 1px solid #ffffff;
  color: #ffffff;
}

.hero-kpi-strip {
  background: #ffffff;
  border-top: 1px solid #d8e6de;
  border-bottom: 1px solid #d8e6de;
  padding: 20px clamp(20px, 4vw, 40px);
}
.hero-kpi-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.hero-kpi-item {
  text-align: center;
  padding: 8px 8px;
  border-right: 1px solid var(--px-border);
}
.hero-kpi-item:last-child {
  border-right: none;
}
.hero-kpi-item strong {
  display: block;
  color: var(--px-primary-strong);
  font-size: clamp(1.24rem, 2.15vw, 1.86rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-kpi-item span {
  display: block;
  color: var(--px-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-copy-card {
    width: min(640px, calc(100% - 40px));
    left: 20px;
  }
  .hero-copy-card h1 { font-size: clamp(2.2rem, 6.2vw, 3.6rem); }
  .hero-kpi-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-kpi-item {
    border-right: none;
    border-bottom: 1px solid var(--px-border);
  }
}

@media (max-width: 720px) {
  .hero-panel {
    height: 380px;
  }
  .hero-media {
    min-height: 0;
    height: 100%;
  }
  .hero-copy-card {
    left: 16px;
    width: calc(100% - 32px);
  }
  .hero-copy-card h1 {
    font-size: clamp(1.68rem, 6.2vw, 2.1rem);
    line-height: 1.18;
    max-width: none;
  }
  .hero-copy-card > p,
  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.64;
    margin-bottom: 28px;
  }
  .hero-kpi-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-kpi-item:last-child {
    border-bottom: none;
  }
}

/* ── PAGE HERO — Sub-page two-column layout ─────────────── */
.page-hero {
  background: linear-gradient(135deg, #04121f 0%, #062b1a 60%, #04121f 100%);
  padding: clamp(64px, 9vw, 108px) clamp(24px, 5.4vw, 96px);
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,154,73,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .hero-copy-card {
  position: static;
  transform: none;
  width: 100%;
  max-width: 640px;
  color: #ffffff;
  z-index: auto;
}
.page-hero .hero-copy-card h1 {
  max-width: 20ch;
}
.page-hero .hero-visual-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.page-hero .hero-visual-card.floating {
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.page-hero .hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stats {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #00c85a;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(242,248,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 16ch;
}
@media (max-width: 960px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding: clamp(48px, 7vw, 72px) clamp(20px, 4vw, 48px);
  }
  .page-hero .hero-visual-card {
    display: none;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 48px 16px 40px;
  }
  .page-hero .hero-copy-card h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
}

/* ── HOMEPAGE REDESIGN BLOCKS ───────────────────────────── */
.home-trust-bar {
  background: linear-gradient(180deg, #f8fcfa 0%, #ffffff 100%);
  border-top: 1px solid var(--px-border);
  border-bottom: 1px solid var(--px-border);
  padding: 18px clamp(20px, 4vw, 40px);
}
.home-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.home-trust-inner > p {
  margin: 0;
  color: var(--px-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.home-trust-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-trust-list span {
  border: 1px solid var(--px-border);
  background: #fff;
  color: var(--px-primary-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-command-section .section-head {
  margin-bottom: 28px;
}
.home-command-section .section-head h2,
.home-blueprint-section .section-head h2,
.home-assurance-section .section-head h2,
.home-voices-section .section-head h2,
.home-insights-section .section-head h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.6rem);
  line-height: 1.14;
}
.home-command-section .section-head p,
.home-blueprint-section .section-head p,
.home-assurance-section .section-head p,
.home-voices-section .section-head p,
.home-insights-section .section-head p {
  font-size: 1rem;
  line-height: 1.66;
}
.home-command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-command-card {
  border: 1px solid var(--px-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--px-shadow-sm);
  padding: 26px;
  transition: all 260ms ease;
  position: relative;
  overflow: hidden;
}
.home-command-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0,154,73,0.06), transparent 52%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}
.home-command-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--px-shadow-md);
  border-color: var(--px-primary);
}
.home-command-card:hover::after {
  opacity: 1;
}
.home-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--px-primary-strong), var(--px-primary));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.home-command-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
}
.home-command-card p {
  margin: 0 0 12px;
  color: var(--px-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}
.home-command-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.home-command-card li {
  position: relative;
  padding-left: 14px;
  font-size: 0.84rem;
  color: var(--px-text);
}
.home-command-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--px-primary);
}

.home-blueprint-section {
  padding-top: 6px;
}
.home-blueprint-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  border: 1px solid var(--px-border);
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff 0%, #f3faf6 58%, #eef7ff 100%);
  box-shadow: var(--px-shadow-sm);
}
.home-blueprint-copy h3 {
  margin: 6px 0 10px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.home-blueprint-copy p {
  margin: 0 0 12px;
  color: var(--px-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.home-blueprint-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
}
.home-blueprint-steps li {
  color: var(--px-text);
  font-size: 0.9rem;
  line-height: 1.56;
}
.home-blueprint-steps b {
  color: var(--px-primary-strong);
}
.home-blueprint-metrics {
  display: grid;
  gap: 10px;
}
.home-blueprint-metrics div {
  border: 1px solid rgba(0,154,73,0.18);
  background: linear-gradient(150deg, #ffffff 0%, #f8fcfa 100%);
  border-radius: 14px;
  padding: 16px;
}
.home-blueprint-metrics strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--px-primary-strong);
  margin-bottom: 6px;
}
.home-blueprint-metrics span {
  font-size: 0.83rem;
  color: var(--px-muted);
  line-height: 1.45;
}

.home-split-section {
  padding-top: 10px;
}
.home-split-grid {
  gap: 20px;
}
.home-split-copy {
  padding: 30px;
}

.home-assurance-section {
  padding-top: 10px;
}
.home-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-assurance-card {
  border: 1px solid var(--px-border);
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f9fcfb 100%);
  padding: 20px;
  transition: all 220ms ease;
}
.home-assurance-card:hover {
  border-color: var(--px-primary);
  transform: translateY(-3px);
  box-shadow: var(--px-shadow-sm);
}
.home-assurance-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.home-assurance-card p {
  margin: 0;
  color: var(--px-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.home-voices-section {
  padding-top: 10px;
}
.home-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-voice-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: linear-gradient(138deg, #052238 0%, #0b3d28 100%);
  color: #ebfff4;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(4, 21, 15, 0.22);
}
.home-voice-card p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.66;
  color: rgba(230,255,241,0.92);
}
.home-voice-card strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 2px;
}
.home-voice-card span {
  font-size: 0.76rem;
  color: rgba(207,244,224,0.72);
}

.home-insights-section {
  padding-top: 10px;
}
.home-insights-grid .insight-card {
  border-radius: 16px;
}

.home-insights-grid .insight-card .body {
  padding: 22px;
}

.home-final-cta {
  padding: clamp(54px, 7vw, 92px) clamp(24px, 5vw, 48px);
}

.home-final-cta .cta-inner {
  max-width: 760px;
}

.home-final-cta .cta-inner h2 {
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
}


/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #0b6a3a 0%, #006035 55%, #0a3e5f 100%);
  padding: 40px clamp(20px,4vw,40px);
}
.stats-band-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px;
}
.stats-band-item {
  text-align: center; padding: 4px 16px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-item strong {
  display: block; font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 800; line-height: 1; margin-bottom: 6px; color: #f2e670;
}
.stats-band-item span { font-size: 0.86rem; color: rgba(255,255,255,0.78); font-weight: 500; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,40px);
}
.section-head { margin: 0 0 48px; max-width: 76ch; }
.section-head .eyebrow-sm {
  display: block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--px-primary); font-weight: 800; 
  margin-bottom: 12px; opacity: 0.9;
}
.section-head h2 {
  margin: 0 0 14px; font-size: clamp(1.8rem,3.6vw,2.8rem);
  line-height: 1.18; font-weight: 900; letter-spacing: -0.015em;
}
.section-head p { margin: 0; color: var(--px-muted); font-size: 1.08rem; line-height: 1.7; }

.trust-strip {
  background: #ffffff;
  border-top: 1px solid var(--px-border);
  border-bottom: 1px solid var(--px-border);
  padding: 28px clamp(20px,4vw,40px);
}

.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-strip-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--px-muted);
  opacity: 0.85;
}

.trust-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  border: 1.1px solid var(--px-border);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--px-primary-strong);
  background: #f9fcfb;
  transition: all 200ms ease;
}
.trust-pill:hover {
  border-color: var(--px-primary);
  background: #f0faf6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.benefit-card {
  border: 1.1px solid var(--px-border);
  border-radius: 14px;
  background: var(--px-surface);
  padding: 22px;
  box-shadow: var(--px-shadow-sm);
  transition: all 260ms ease;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,154,73,0.02) 0%, transparent 100%);
  opacity: 0; transition: opacity 260ms ease;
  pointer-events: none;
}
.benefit-card:hover {
  border-color: var(--px-primary);
  box-shadow: var(--px-shadow-md);
  transform: translateY(-4px);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--px-text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--px-muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.split-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--px-shadow-md);
  transition: all 300ms ease;
}
.split-media:hover {
  box-shadow: var(--px-shadow-lg);
  transform: translateY(-2px);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}
.split-media:hover img { transform: scale(1.02); }

.split-copy {
  border: 1.1px solid var(--px-border);
  border-radius: 16px;
  background: #fff;
  padding: 36px;
  box-shadow: var(--px-shadow-sm);
  transition: all 260ms ease;
}
.split-copy:hover {
  border-color: var(--px-primary);
  box-shadow: var(--px-shadow-md);
  transform: translateY(-2px);
}

.split-copy h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.25;
}

.split-copy p {
  margin: 0 0 16px;
  color: var(--px-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}
.split-copy ul {
  margin: 0; padding-left: 20px;
  list-style: none;
}
.split-copy li {
  position: relative; padding-left: 12px; margin-bottom: 10px;
  font-size: 0.94rem; color: var(--px-text); line-height: 1.6;
}
.split-copy li:before {
  content: '→'; position: absolute; left: 0; color: var(--px-primary); font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.why-card {
  border: 1.1px solid var(--px-border);
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  transition: all 260ms ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,154,73,0.03) 0%, transparent 100%);
  opacity: 0; transition: opacity 260ms ease; pointer-events: none;
}
.why-card:hover {
  border-color: var(--px-primary);
  box-shadow: var(--px-shadow-md);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--px-text);
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--px-muted);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.testimonial-card {
  border: 1.1px solid var(--px-border);
  border-radius: 16px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--px-shadow-sm);
  transition: all 260ms ease;
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; left: 16px;
  font-size: 3rem; color: var(--px-primary); opacity: 0.08;
}
.testimonial-card:hover {
  border-color: var(--px-primary);
  box-shadow: var(--px-shadow-md);
  transform: translateY(-4px);
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--px-text);
  font-size: 0.95rem;
  line-height: 1.72;
  font-weight: 500;
}

.testimonial-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--px-text);
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: var(--px-muted);
  font-weight: 500;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.insight-card {
  border: 1.1px solid var(--px-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--px-shadow-sm);
  transition: all 260ms ease;
}
.insight-card:hover {
  border-color: var(--px-primary);
  box-shadow: var(--px-shadow-md);
  transform: translateY(-4px);
}

.insight-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 300ms ease;
}
.insight-card:hover img { transform: scale(1.03); }

.insight-card .body {
  padding: 20px;
}

.insight-card .tag {
  display: inline-block;
  border: 1px solid var(--px-border);
  border-radius: 20px;
  font-size: 0.7rem;
  padding: 4px 11px;
  color: var(--px-primary-strong);
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insight-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.insight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--px-muted);
  line-height: 1.6;
}

/* ── FEATURE GRID (4-up summary) ────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.feature-item {
  border-radius: var(--px-radius-lg); border: 1px solid var(--px-border);
  background: var(--px-surface); padding: 22px; box-shadow: var(--px-shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--px-shadow-md); }
.feature-item h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 700; }
.feature-item p  { margin: 0; font-size: 0.91rem; color: var(--px-muted); line-height: 1.6; }

/* ── FEATURE DEEP (3-up numbered detail cards) ───────────── */
.feature-deep-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.feature-deep {
  border-radius: var(--px-radius-xl); border: 1px solid var(--px-border);
  background: var(--px-surface); padding: 30px; box-shadow: var(--px-shadow-sm);
  position: relative; overflow: hidden; transition: transform 200ms, box-shadow 200ms;
}
.feature-deep:hover { transform: translateY(-5px); box-shadow: var(--px-shadow-md); }
.feature-deep::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--px-primary), var(--px-accent));
}
.feature-num {
  font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 14px;
  font-family: 'Space Grotesk', monospace; letter-spacing: -0.04em;
  color: rgba(0,154,73,0.1);
}
.feature-deep h3  { margin: 0 0 10px; font-size: 1.12rem; font-weight: 700; }
.feature-deep > p { margin: 0 0 16px; font-size: 0.92rem; color: var(--px-muted); line-height: 1.66; }
.feature-deep ul  { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.feature-deep ul li {
  font-size: 0.87rem; color: var(--px-muted);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.feature-deep ul li::before { content: '→'; position: absolute; left: 0; color: var(--px-primary); font-weight: 700; }

/* ── MEDIA GRID ──────────────────────────────────────────── */
.media-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.media-card {
  border: 1px solid var(--px-border); border-radius: var(--px-radius-xl);
  overflow: hidden; background: var(--px-surface); box-shadow: var(--px-shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--px-shadow-lg); }
.media-card img { width: 100%; height: 200px; object-fit: cover; }
.media-card .body { padding: 22px; }
.media-card .body h3 { margin: 0 0 10px; font-size: 1.08rem; font-weight: 700; }
.media-card .body p  { margin: 0; color: var(--px-muted); font-size: 0.92rem; line-height: 1.62; }
.media-card .body ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.media-card .body ul li {
  font-size: 0.85rem; color: var(--px-muted);
  padding-left: 16px; position: relative;
}
.media-card .body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--px-primary); font-weight: 700; }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.timeline li {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  border: 1px solid var(--px-border); border-radius: var(--px-radius-lg);
  background: #fff; padding: 20px 22px; align-items: flex-start;
  transition: border-color 200ms, box-shadow 200ms;
}
.timeline li:hover { border-color: rgba(0,154,73,0.3); box-shadow: var(--px-shadow-sm); }
.timeline span {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
  background: linear-gradient(120deg, var(--px-primary-strong), var(--px-primary));
  box-shadow: 0 6px 16px rgba(0,154,73,0.3);
}
.timeline li .step-body h4 { margin: 0 0 6px; font-size: 1.01rem; font-weight: 700; }
.timeline li .step-body p  { margin: 0; font-size: 0.9rem; color: var(--px-muted); line-height: 1.62; }
.timeline li > p           { margin: 0; font-size: 0.9rem; color: var(--px-muted); line-height: 1.62; align-self: center; }

/* ── QUOTE BAND ──────────────────────────────────────────── */
.quote-band {
  background: linear-gradient(135deg, #04131f 0%, #082e1e 55%, #06243a 100%);
  padding: clamp(56px,7vw,96px) clamp(24px,5vw,56px);
  text-align: center; color: #ebfff2; position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%); font-size: 22rem;
  color: rgba(0,154,73,0.06); font-family: Georgia, serif;
  line-height: 1; pointer-events: none; user-select: none;
}
.quote-band blockquote {
  margin: 0 auto 14px; max-width: 70ch;
  font-size: clamp(1.25rem,2.6vw,1.9rem);
  font-weight: 700; line-height: 1.42; color: #fff; position: relative;
}
.quote-band cite {
  font-style: normal; font-size: 0.86rem;
  color: rgba(195,255,220,0.55); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: clamp(72px,9vw,128px) clamp(24px,5vw,48px);
  text-align: center;
  background:
    radial-gradient(1000px 700px at 50% 40%, rgba(0,154,73,0.18), transparent 70%),
    var(--px-bg-soft);
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(2rem,3.8vw,3rem);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.cta-inner p {
  color: var(--px-muted);
  font-size: clamp(1rem,1.5vw,1.12rem);
  margin: 0 0 32px;
  line-height: 1.74;
}
.cta-inner .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-inner .public-cta {
  font-size: 0.96rem;
  padding: 14px 32px;
  font-weight: 800;
}

/* ── COMPLIANCE BAND ─────────────────────────────────────── */
.compliance-band {
  background: var(--px-bg-soft);
  border-top: 1px solid var(--px-border); border-bottom: 1px solid var(--px-border);
  padding: 26px clamp(20px,4vw,40px);
}
.compliance-band-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.compliance-band-inner > p { margin: 0; font-size: 0.86rem; color: var(--px-muted); font-weight: 700; flex-shrink: 0; }
.compliance-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.compliance-tag {
  padding: 5px 14px; border-radius: 40px;
  background: var(--px-surface); border: 1px solid var(--px-border);
  font-size: 0.79rem; font-weight: 700; color: var(--px-primary-strong);
}

/* ── CONTACT CARDS ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  border: 1px solid var(--px-border); border-radius: var(--px-radius-xl);
  background: var(--px-surface); padding: 26px 28px; box-shadow: var(--px-shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--px-shadow-md); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(120deg, var(--px-primary-strong), var(--px-primary));
  display: grid; place-items: center;
  margin-bottom: 14px; color: #fff; font-size: 1.4rem; font-weight: 800;
}
.contact-card h3 { margin: 0 0 8px; font-size: 1.06rem; font-weight: 700; }
.contact-card p  { margin: 0; color: var(--px-muted); font-size: 0.9rem; line-height: 1.66; }
.contact-card .contact-detail {
  margin-top: 14px; font-size: 0.86rem;
  color: var(--px-primary-strong); font-weight: 700;
}

/* ── PILLAR GRID ─────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.pillar-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: flex-start;
  border: 1px solid var(--px-border); border-radius: var(--px-radius-xl);
  background: var(--px-surface); padding: 24px; box-shadow: var(--px-shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.pillar-item:hover { transform: translateY(-4px); box-shadow: var(--px-shadow-md); }
.pillar-num {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.35rem; font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--px-primary-strong), var(--px-primary));
  box-shadow: 0 6px 16px rgba(0,154,73,0.28); flex-shrink: 0;
}
.pillar-body h3 { margin: 0 0 8px; font-size: 1.06rem; font-weight: 700; }
.pillar-body p  { margin: 0; font-size: 0.9rem; color: var(--px-muted); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────── */
.public-footer {
  background: linear-gradient(135deg, #040f1c 0%, #073020 50%, #061c36 100%);
  color: #d8f5e8;
  padding: clamp(44px,5vw,68px) clamp(20px,4vw,40px) 0;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-logo {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
}
.footer-brand-logo img {
  width: 42px; height: 42px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.9;
}
.footer-brand-logo span {
  font-size: 1.02rem; font-weight: 800; color: #fff; letter-spacing: 0.006em;
}
.footer-brand > p {
  margin: 0; font-size: 0.87rem;
  color: rgba(205,245,222,0.58); max-width: 32ch; line-height: 1.68;
}
.footer-grid h4 {
  margin: 0 0 14px; font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.11em; color: rgba(215,255,232,0.48); font-weight: 700;
}
.footer-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; color: rgba(215,255,232,0.75); font-size: 0.9rem; transition: color 160ms; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: 0.78rem; color: rgba(195,235,212,0.38); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal {
  opacity: 1; transform: none;
  transition: opacity 620ms cubic-bezier(.16,1,.3,1), transform 620ms cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.floating { animation: floating 7s ease-in-out infinite; }
@keyframes floating {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .home-command-grid { grid-template-columns: 1fr 1fr; }
  .home-blueprint-shell { grid-template-columns: 1fr; }
  .home-assurance-grid { grid-template-columns: 1fr 1fr; }
  .home-voices-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid      { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .feature-deep-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .media-grid        { grid-template-columns: 1fr 1fr; }
  .benefit-grid      { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split-section     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid     { grid-template-columns: 1fr 1fr; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-band-inner  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .home-command-grid,
  .home-assurance-grid,
  .home-voices-grid { grid-template-columns: 1fr; }
  .home-blueprint-shell { padding: 20px; }
  .home-command-card { padding: 22px; }
  .home-blueprint-copy h3 { font-size: 1.28rem; }
  .home-trust-inner > p { font-size: 0.8rem; }
  .public-header { padding: 0 16px; height: 60px; }
  .public-nav a  { display: none; }
  .feature-grid, .feature-deep-grid, .media-grid,
  .stats-band-inner, .footer-grid, .contact-grid,
  .pillars-grid, .benefit-grid, .why-grid,
  .testimonials-grid, .insights-grid { grid-template-columns: 1fr; }
  .stats-band { padding: 28px 20px; }
  .stats-band-item {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px;
  }
  .stats-band-item:last-child { border-bottom: none; }
}
