/* ============================================================
   TBP SUPPLIER & INDUSTRIAL PARTNER PORTAL — STYLESHEET
   TBP World Vision Project
   ============================================================ */

/* ─── CSS VARIABLES ────────────────────────────────────── */
:root {
  --navy: #17385B;
  --navy-deep: #0F2440;
  --navy-mid: #1E4A73;
  --green: #00B65A;
  --green-dark: #009148;
  --ink: #0F172A;
  --white: #FFFFFF;
  --soft-white: #F7F9FC;
  --light-grey: #E6ECF2;
  --slate: #5B6B7A;
  --steel: #2C5E86;
  --gold: #C9A227;
  --mono: 'DM Mono', monospace;
  --heading: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--soft-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 36, 64, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,182,90,0.2);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  transition: background 0.3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  display: flex; flex-direction: column; gap: 2px;
}

.logo-top {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.25em;
  padding: 3px 8px;
}

.logo-bottom {
  background: var(--green);
  color: white;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.25em;
  padding: 3px 8px;
}

.nav-label {
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.nav-label strong {
  display: block;
  color: white;
  font-size: 11px;
  font-weight: 500;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 8px 20px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,182,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,182,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.hero-globe {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  border: 1px solid rgba(0,182,90,0.12);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-globe::before {
  content: '';
  position: absolute; inset: 60px;
  border: 1px solid rgba(0,182,90,0.1);
  border-radius: 50%;
}

.hero-globe::after {
  content: '';
  position: absolute; inset: 140px;
  border: 1px solid rgba(0,182,90,0.08);
  border-radius: 50%;
}

.hero-meridian {
  position: absolute; right: 270px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  border: 1px solid rgba(44,94,134,0.3);
  border-radius: 50%;
  left: calc(100% - 480px);
}

.hero-scan-line {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,182,90,0.3), transparent);
  animation: scanMove 6s ease-in-out infinite;
}

@keyframes scanMove {
  0%   { top: 20%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 80%; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  border: 1px solid rgba(0,182,90,0.4);
  padding: 4px 10px;
}

.hero-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-headline {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: white;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 700px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-headline .accent {
  color: var(--green);
  display: block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--green); background: rgba(0,182,90,0.08); }

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: white;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-primary:hover { background: var(--navy-deep); transform: translateY(-2px); }

.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-cta-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ─── HERO STATS BAR ────────────────────────────────────── */
.hero-stats {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,182,90,0.15);
  border-top: 1px solid rgba(0,182,90,0.2);
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat-block {
  background: rgba(15,36,64,0.8);
  padding: 1.5rem 2rem;
}

.stat-num {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ─── TICKER ────────────────────────────────────────────── */
.ticker {
  background: var(--green);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex; gap: 0;
  animation: tickerRoll 30s linear infinite;
  white-space: nowrap;
}

@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: white;
  text-transform: uppercase;
  padding: 0 3rem;
  opacity: 0.9;
}

.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ─── SECTION LAYOUT UTILITIES ──────────────────────────── */
.section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 7rem 3rem;
}

.section-full > .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: var(--light-grey);
  margin: 0;
}

/* ─── EYEBROW LABELS ────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem;
}

.eyebrow-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
}

.eyebrow-line {
  flex: 1; height: 1px; max-width: 40px;
  background: var(--green);
  opacity: 0.5;
}

/* ─── SECTION TYPOGRAPHY ────────────────────────────────── */
.section-heading {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-heading.light { color: white; }

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  max-width: 620px;
}

.section-body.light { color: rgba(255,255,255,0.6); }

/* ─── WHY EXISTS SECTION ────────────────────────────────── */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-diagram {
  background: var(--navy-deep);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.why-diagram::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,182,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,182,90,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.pipeline-step {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.pipeline-step:last-child { border-bottom: none; }

.step-num {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,182,90,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
}

.step-content { flex: 1; }

.step-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2px;
}

.step-desc {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.step-status {
  font-family: var(--mono);
  font-size: 9px;
  padding: 3px 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-active { background: rgba(0,182,90,0.15); color: var(--green); border: 1px solid rgba(0,182,90,0.3); }
.status-review { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.status-open   { background: rgba(44,94,134,0.2); color: #7AABD4; border: 1px solid rgba(44,94,134,0.4); }

/* ─── CATEGORIES SECTION ────────────────────────────────── */
.categories-section {
  background: var(--soft-white);
}

.cat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-grey);
}

.cat-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-card.featured { background: var(--navy); }
.cat-card.featured::before { background: var(--green); transform: scaleX(1); }

.cat-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 20px;
}

.cat-card.featured .cat-icon { border-color: rgba(255,255,255,0.15); }

.cat-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cat-card.featured .cat-name { color: white; }

.cat-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.cat-card.featured .cat-desc { color: rgba(255,255,255,0.5); }

.cat-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}

.cat-count::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--green);
}

/* ─── PATHWAYS SECTION ──────────────────────────────────── */
.pathways-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pathways-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,182,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,182,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.pathways-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}

.pathways-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,182,90,0.1);
}

.pathway-card {
  background: rgba(15,36,64,0.7);
  padding: 2rem;
  transition: background 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.pathway-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.pathway-card:hover { background: rgba(23,56,91,0.9); }
.pathway-card:hover::after { transform: scaleX(1); }

.pathway-code {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.pathway-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.pathway-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.pathway-arrow {
  display: inline-flex;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}

.pathway-card:hover .pathway-arrow { opacity: 1; }

/* ─── QUALIFICATION / PROCESS SECTION ──────────────────── */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.stages-list {
  list-style: none;
  counter-reset: stage;
}

.stage-item {
  counter-increment: stage;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-grey);
  position: relative;
}

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

.stage-num {
  width: 40px; height: 40px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
}

.stage-content { flex: 1; }

.stage-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.stage-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate);
}

/* ─── STATUS BADGES ─────────────────────────────────────── */
.status-badges {
  display: flex; flex-direction: column; gap: 12px;
}

.badge-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--soft-white);
  border-left: 3px solid var(--light-grey);
  transition: border-color 0.2s;
}

.badge-row:hover { border-color: var(--green); }

.badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-engaged   { background: #7AABD4; }
.dot-review    { background: var(--gold); }
.dot-codev     { background: #8B5CF6; }
.dot-pilot     { background: #F59E0B; }
.dot-qualified { background: var(--green); }
.dot-preferred { background: #10B981; }

.badge-info { flex: 1; }

.badge-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 2px;
}

.badge-desc {
  font-size: 12px;
  color: var(--slate);
}

/* ─── FEATURED PARTNERS SECTION ─────────────────────────── */
.partners-section {
  background: var(--soft-white);
}

.partners-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-grey);
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.partner-card:hover { border-color: rgba(0,182,90,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }

.partner-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}

.partner-cat-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--slate);
  text-transform: uppercase;
  border: 1px solid var(--light-grey);
  padding: 3px 8px;
}

.partner-status-pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.pill-qualified { background: rgba(0,182,90,0.1);   color: var(--green); border: 1px solid rgba(0,182,90,0.3); }
.pill-review    { background: rgba(201,162,39,0.1);  color: var(--gold);  border: 1px solid rgba(201,162,39,0.3); }
.pill-codev     { background: rgba(139,92,246,0.1);  color: #8B5CF6;      border: 1px solid rgba(139,92,246,0.3); }

.partner-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.partner-capability {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-pathways {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.pathway-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--soft-white);
  border: 1px solid var(--light-grey);
  padding: 3px 8px;
  text-transform: uppercase;
}

/* ─── GLOBAL PRESENCE SECTION ───────────────────────────── */
.presence-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.presence-map-bg {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='600' viewBox='0 0 1200 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='600' cy='300' r='250' fill='none' stroke='%2300B65A' stroke-width='1'/%3E%3Ccircle cx='600' cy='300' r='200' fill='none' stroke='%2300B65A' stroke-width='0.5'/%3E%3Ccircle cx='600' cy='300' r='150' fill='none' stroke='%2300B65A' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.presence-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}

.corridor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,182,90,0.1);
  margin-top: 3rem;
}

.corridor-item {
  background: rgba(15,36,64,0.6);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.corridor-region {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  opacity: 0.7;
}

.corridor-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.2;
}

.corridor-score {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto;
}

.score-bar {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.score-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--green);
}

.score-val {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  min-width: 32px;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  background: var(--green);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}

.cta-heading {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-actions {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 4rem 3rem 2rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo-area {
  display: flex; flex-direction: column; gap: 3px;
  margin-bottom: 1.25rem;
}

.footer-brand .tagline {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
}

.footer-col-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-legal {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  line-height: 1.5;
  text-align: right;
}

/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE — TABLET ───────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); position: static; margin-top: 3rem; }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .corridor-list { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.5rem; }
  .section-full { padding: 4rem 1.5rem; }
}

/* ─── RESPONSIVE — MOBILE ───────────────────────────────── */
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .pathways-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .corridor-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cat-header, .pathways-header, .partners-header { grid-template-columns: 1fr; }
}

/* ─── ADDITIONAL UTILITY CLASSES ────────────────────────── */

/* Disclaimer banner inside partners section */
.disclaimer-banner {
  background: var(--navy);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.disclaimer-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.disclaimer-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
  line-height: 1.65;
}

/* Corridor subtitle text */
.corridor-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* Presence section intro two-col grid */
.presence-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

/* Contact section */
.contact-section {
  background: var(--white);
  padding: 7rem 3rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contact form box */
.contact-form-box {
  background: var(--soft-white);
  padding: 2.5rem;
  border: 1px solid var(--light-grey);
}

.contact-form-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 2rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--slate);
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-grey);
  background: white;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.field-select {
  appearance: none;
}

.field-textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  justify-content: center;
  padding: 16px;
}

/* Category join card */
.cat-card--join {
  background: var(--soft-white) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 220px;
}

.cat-join-plus {
  font-family: var(--heading);
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1;
}

/* Responsive additions */
@media (max-width: 900px) {
  .presence-intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── LOGO UPLOAD WIDGET ─────────────────────────────────── */

.field-label-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--slate);
  text-transform: none;
  opacity: 0.7;
  margin-left: 6px;
}

/* Drop zone container */
.logo-upload-zone {
  position: relative;
  border: 1.5px dashed var(--light-grey);
  background: white;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-upload-zone:hover {
  border-color: var(--green);
  background: rgba(0, 182, 90, 0.02);
}

/* Hidden native file input */
.logo-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: none; /* clicks routed via JS */
}

/* Idle / prompt state */
.logo-upload-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  width: 100%;
}

.logo-upload-icon {
  color: var(--light-grey);
  transition: color 0.2s;
}

.logo-upload-zone:hover .logo-upload-icon {
  color: var(--green);
}

.logo-upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-upload-primary {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
  line-height: 1.4;
}

.logo-upload-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.logo-upload-secondary {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(91, 107, 122, 0.55);
  text-transform: uppercase;
}

/* Drag-over state */
.logo-upload-zone--over {
  border-color: var(--green) !important;
  background: rgba(0, 182, 90, 0.05) !important;
  border-style: solid !important;
}

.logo-upload-zone--over .logo-upload-icon {
  color: var(--green);
}

/* Filled / preview state */
.logo-upload-zone--filled {
  border-color: var(--green);
  border-style: solid;
  cursor: default;
}

.logo-upload-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  width: 100%;
}

.logo-upload-preview img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--light-grey);
  background: var(--soft-white);
  padding: 4px;
  flex-shrink: 0;
}

.logo-preview-info {
  flex: 1;
  min-width: 0;
}

.logo-preview-name {
  font-family: var(--body);
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.logo-preview-size {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}

/* Remove button */
.logo-remove-btn {
  width: 28px;
  height: 28px;
  background: var(--soft-white);
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate);
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  z-index: 2;
}

.logo-remove-btn:hover {
  background: #FEE2E2;
  border-color: #FCA5A5;
  color: #DC2626;
}

/* Error state */
.logo-upload-zone--error {
  border-color: #EF4444 !important;
  border-style: solid !important;
  background: rgba(239, 68, 68, 0.02);
}

.logo-upload-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #DC2626;
  text-transform: uppercase;
}

.logo-upload-error::before {
  content: '⚠';
  font-size: 11px;
  flex-shrink: 0;
}

/* ─── OUR PARTNERS SECTION ───────────────────────────────── */

.our-partners-section {
  background: var(--soft-white);
}

.our-partners-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.our-partners-header .section-body {
  margin-top: 1rem;
  max-width: 680px;
}

/* Logo card grid — 3 columns */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--light-grey);
  margin-bottom: 2rem;
}

/* Individual partner logo card */
.partner-logo-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.partner-logo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 1;
}

.partner-logo-card:hover::after {
  transform: scaleX(1);
}

/* Logo display area — shows uploaded logo or initials placeholder */
.partner-logo-placeholder {
  width: 72px;
  height: 72px;
  background: var(--soft-white);
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.partner-logo-initials {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.35;
}

/* Card text content */
.partner-logo-info {
  flex: 1;
}

.partner-logo-name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.partner-logo-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.partner-logo-pathways {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.partner-logo-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--soft-white);
  border: 1px solid var(--light-grey);
  padding: 2px 7px;
  text-transform: uppercase;
}

/* Status pill — reuse existing pill classes, positioned top-right */
.partner-logo-status {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* "Your Company" join card */
.partner-logo-card--join {
  background: var(--navy) !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  cursor: default;
}

.partner-logo-card--join::after {
  background: var(--green);
  transform: scaleX(1);
}

.partner-logo-join-icon {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.partner-logo-join-text {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
}

.partner-logo-join-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 200px;
}

.partner-logo-join-btn {
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .our-partners-header { grid-template-columns: 1fr; }
  .partner-logo-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .partner-logo-grid { grid-template-columns: 1fr; }
}

/* ─── HERO STATS FLOW FIX ────────────────────────────────── */
/* Override absolute positioning — stats flow naturally below CTA buttons */
.hero-stats--flow {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 4rem;
  width: 100%;
}

/* Give the hero section enough bottom padding so stats are never clipped */
.hero {
  padding-bottom: 4rem;
  align-items: flex-start;
  padding-top: calc(64px + 5vh);
}

/* Re-align hero content vertically */
.hero-content {
  padding-top: 2rem;
}

/* ─── FORM IMPROVEMENTS ──────────────────────────────────── */

/* Required asterisk */
.field-required {
  color: #EF4444;
  margin-left: 2px;
}

/* Inline field validation error text */
.field-error {
  display: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #DC2626;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0, 182, 90, 0.08);
  border: 1px solid rgba(0, 182, 90, 0.3);
  border-left: 3px solid var(--green);
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: var(--green);
  line-height: 1.5;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--green);
}

/* Error banner */
.form-error-banner {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-left: 3px solid #EF4444;
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: #DC2626;
  line-height: 1.5;
}

.form-error-banner svg {
  flex-shrink: 0;
}

/* Disabled submit state */
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
