/* ═══════════════════════════════════════════════════════
   OUTER CAPE TELEHEALTH — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --navy:      #0f1e3d;
  --navy-mid:  #17306b;
  --slate:     #2c4a7c;
  --slate-mid: #3d6494;
  --blue-light:#5a82be;
  --sky:       #e8f0fb;
  --white:     #ffffff;
  --off-white: #f8f9fc;
  --light-bg:  #f0f4fa;
  --text-dark: #111827;
  --text-mid:  #374151;
  --text-muted:#6b7280;
  --gold:      #c9a84c;
  --gold-light:#f0d080;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(15,30,61,0.08);
  --shadow-md: 0 6px 24px rgba(15,30,61,0.12);
  --shadow-lg: 0 16px 48px rgba(15,30,61,0.18);
  --shadow-xl: 0 28px 80px rgba(15,30,61,0.26);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* ─── HEADER ─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo-link { flex-shrink: 0; }
.header-logo {
  height: 88px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(20, 35, 70, 0.75);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.header-nav a:hover { color: rgba(10, 20, 50, 1); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  color: rgba(10, 20, 50, 0.8);
  border: 1px solid rgba(10, 20, 50, 0.3);
  white-space: nowrap;
  transition: all var(--transition);
}
.header-download:hover {
  color: rgba(10, 20, 50, 1);
  border-color: rgba(10, 20, 50, 0.7);
  background: rgba(10, 20, 50, 0.06);
  transform: translateY(-1px);
}
.header-cta {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  background: var(--gold);
  color: var(--navy);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(10, 20, 50, 0.85);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid rgba(10,20,50,0.1);
  padding: 16px 40px 24px;
  gap: 16px;
}
.mobile-menu a {
  color: rgba(10, 20, 50, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}
.mobile-menu.open { display: flex; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8902a);
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary.glow:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 36px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}
.large-btn { padding: 16px 44px; font-size: 1rem; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #071429 0%, #0f1e3d 35%, #1a2f5c 65%, #2c4a7c 100%);
  overflow: hidden;
  padding: 120px 0 100px;
}

.topo-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(ellipse 600px 300px at 60% 40%, transparent 0%, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    repeating-radial-gradient(ellipse 800px 400px at 30% 70%, transparent 0%, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-radial-gradient(ellipse 400px 200px at 80% 20%, transparent 0%, transparent 50px, rgba(255,255,255,0.01) 50px, rgba(255,255,255,0.01) 51px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.08);
}
.hero-headline {
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.hero-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
}

/* ─── GLASSMORPHISM CARDS ────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  min-width: 0;
  max-width: 210px;
  flex: 1 1 0;
  transition: transform var(--transition), background var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.13);
}
.card-icon { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.card-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── INTRO SECTION ──────────────────────────────────── */
.section-intro {
  background: var(--off-white);
  padding: 100px 0;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.split-image-duo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-image-duo img {
  height: 230px;
}
.split-text h2 {
  color: var(--navy);
  margin-bottom: 24px;
}
.split-text p {
  margin-bottom: 18px;
}
.intro-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 40px;
  background: var(--sky);
  color: var(--navy-mid);
  border: 1px solid rgba(44,74,124,0.2);
}
.badge-new {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.section-about {
  position: relative;
  background: linear-gradient(160deg, #f0f4fa 0%, var(--sky) 100%);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-about .section-header h2 { color: var(--navy); }
.section-about .section-desc { color: var(--text-muted); }

/* Timeline */
.timeline {
  display: flex;
  gap: 0;
  margin-bottom: 70px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--blue-light), var(--slate));
}
.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 50px;
}
.timeline-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--slate);
  border: 4px solid var(--sky);
  box-shadow: 0 0 0 2px var(--slate);
  z-index: 1;
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 12px;
  line-height: 1.5;
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.icon-circle {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sky), #dce8f8);
  border-radius: 50%;
  color: var(--slate);
}
.icon-card h4 { color: var(--navy); margin-bottom: 10px; }
.icon-card p { font-size: 0.88rem; color: var(--text-muted); }

.section-wave-bottom { line-height: 0; }
.section-wave-bottom svg { width: 100%; display: block; }

/* ─── STATEMENT OF NEED ──────────────────────────────── */
.section-need {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, #0d2147 50%, #162b5a 100%);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-need .section-header h2 { color: var(--white); }
.barrier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.barrier-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform var(--transition), background var(--transition);
}
.barrier-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.barrier-card:nth-child(4), .barrier-card:nth-child(5) { grid-column: span 1; }
.barrier-grid .barrier-card:nth-last-child(2) { grid-column-start: 1; }
.barrier-icon { font-size: 2.2rem; margin-bottom: 14px; }
.barrier-card h4 { color: var(--white); margin-bottom: 10px; }
.barrier-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.need-closing {
  text-align: center;
  padding: 40px 0 80px;
}
.need-closing p {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.section-wave-bottom-light { line-height: 0; }
.section-wave-bottom-light svg { width: 100%; display: block; }

/* ─── PROJECT OVERVIEW ───────────────────────────────── */
.section-project {
  position: relative;
  background: var(--off-white);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-project .section-header h2 { color: var(--navy); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.project-component {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,74,124,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-component:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.component-icon { font-size: 2.4rem; margin-bottom: 14px; }
.project-component h4 { color: var(--navy); margin-bottom: 10px; }
.project-component p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Goals split */
.goals-section { margin-bottom: 0; }
.goals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--sky) 0%, #dce8f8 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  margin-bottom: 0;
}
.goals-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.goals-list h3 { color: var(--navy); margin-bottom: 28px; }
.goals-list ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.goals-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--slate);
  margin-top: 2px;
}

.angled-divider { line-height: 0; margin-top: 80px; }
.angled-divider svg { width: 100%; display: block; }

/* ─── USE OF FUNDS ───────────────────────────────────── */
.section-funds {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, #1a2f5c 100%);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-funds .section-header h2 { color: var(--white); }

.funds-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin-bottom: 50px;
}
.funds-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.funds-table thead {
  background: rgba(255,255,255,0.1);
}
.funds-table thead th {
  padding: 16px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.funds-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.funds-table tbody tr:hover {
  background: rgba(255,255,255,0.06);
}
.funds-table td {
  padding: 20px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  vertical-align: middle;
  line-height: 1.5;
}
.table-icon { margin-right: 10px; }
.funds-table .amount {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.funds-table tfoot tr {
  background: rgba(201,168,76,0.12);
  border-top: 2px solid rgba(201,168,76,0.3);
}
.funds-table tfoot td {
  padding: 22px 24px;
  color: white;
}
.funds-table tfoot .amount.total {
  font-size: 1.3rem;
  color: var(--gold);
}
.funds-closing {
  text-align: center;
  padding: 20px 0 80px;
}
.funds-closing p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.angled-divider-light { line-height: 0; }
.angled-divider-light svg { width: 100%; display: block; }

/* ─── IMPACT SECTION ─────────────────────────────────── */
.section-impact {
  position: relative;
  background: var(--off-white);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-impact .section-header h2 { color: var(--navy); }

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--slate);
  transition: transform var(--transition), box-shadow var(--transition);
}
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.metric-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.metric-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.3;
}
.metric-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── COMMUNITY SUPPORT ──────────────────────────────── */
.section-support {
  background: var(--light-bg);
  padding: 100px 0;
}
.section-support .section-header h2 { color: var(--navy); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,74,124,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.partner-icon { font-size: 2.2rem; margin-bottom: 14px; }
.partner-card h4 { color: var(--navy); margin-bottom: 8px; }
.partner-card p { font-size: 0.83rem; color: var(--text-muted); }

.support-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.support-quote blockquote {
  position: relative;
  padding: 40px 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.support-quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: 10px; left: 28px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.support-quote blockquote p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.support-quote cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.05em;
}

/* ─── PROJECT READINESS ──────────────────────────────── */
.section-readiness {
  position: relative;
  background: var(--off-white);
  padding: 100px 0 0;
  overflow: hidden;
}
.section-readiness .section-header h2 { color: var(--navy); }

.readiness-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 0;
}
.readiness-checks { display: flex; flex-direction: column; gap: 28px; }
.check-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.check-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.check-circle svg { width: 20px; height: 20px; }
.check-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.check-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Implementation timeline */
.timeline-graphic {
  background: linear-gradient(135deg, var(--navy), #1a3068);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
}
.timeline-graphic h3 { color: white; margin-bottom: 36px; }

.impl-timeline {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.impl-phase { text-align: center; flex-shrink: 0; }
.impl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.4);
  margin: 0 auto 8px;
}
.impl-dot.active {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
}
.impl-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.impl-label span { color: rgba(255,255,255,0.55); font-weight: 400; }
.impl-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  margin-bottom: 22px;
  min-width: 20px;
}
.impl-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-style: italic;
}

/* Vertical timeline variant */
.impl-timeline-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
  overflow-x: visible;
}
.impl-phase-v {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.impl-phase-v .impl-dot {
  margin: 4px 0 0;
  flex-shrink: 0;
}
.impl-label-v {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  padding-bottom: 4px;
}
.impl-label-v strong { color: #fff; font-size: 0.85rem; }
.impl-label-v .impl-tag { color: var(--gold-light); font-weight: 500; font-size: 0.78rem; }
.impl-label-v span { color: rgba(255,255,255,0.65); }
.impl-connector-v {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
  margin-left: 7px;
}

.angled-divider-dark { line-height: 0; margin-top: 80px; }
.angled-divider-dark svg { width: 100%; display: block; }

/* ─── FEDERAL INVESTMENT ─────────────────────────────── */
.section-federal {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, #0d2147 50%, #1a2f5c 100%);
  padding: 100px 0 0;
  overflow: hidden;
}
.federal-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.federal-icon { font-size: 3rem; margin-bottom: 20px; }
.federal-inner h2 { color: var(--white); margin-bottom: 24px; }
.federal-inner > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
.federal-pillars {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}
.pillar svg { color: var(--gold-light); }
.pillar span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; }

.angled-divider-light2 { line-height: 0; margin-top: 80px; }
.angled-divider-light2 svg { width: 100%; display: block; }

/* ─── CONTACT SECTION ────────────────────────────────── */
.section-contact {
  background: var(--off-white);
  padding: 100px 0;
}
.section-contact .section-header h2 { color: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 60px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44,74,124,0.08);
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-6px); }
.contact-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--navy));
  color: white;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}
.contact-card h3 { color: var(--navy); margin-bottom: 6px; }
.contact-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate);
  justify-content: center;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--navy); }

/* Downloads */
.downloads {
  text-align: center;
}
.downloads h3 { color: var(--navy); margin-bottom: 24px; }
.download-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: white;
  box-shadow: var(--shadow-md);
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.download-btn.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(44,74,124,0.3);
  box-shadow: none;
}
.download-btn.secondary:hover {
  background: var(--sky);
  border-color: var(--slate);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 60px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  height: 144px;
  width: auto;
  align-self: flex-start;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-note {
  text-align: right;
}
.footer-note p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-copy { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .impact-metrics { grid-template-columns: repeat(3, 1fr); }
  .barrier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: block; }

  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }

  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-image img { height: 320px; }

  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-inner { grid-template-columns: 1fr; gap: 32px; }
  .readiness-inner { grid-template-columns: 1fr; }

  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; max-width: 440px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-note { text-align: center; }

  .timeline::before { left: 0; right: 0; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .hero-cards { flex-direction: column; align-items: center; }
  .glass-card { max-width: 300px; width: 100%; }

  .barrier-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }

  .timeline { flex-direction: column; gap: 24px; }
  .timeline::before { display: none; }
  .timeline-item { padding-top: 0; padding-left: 44px; text-align: left; }
  .timeline-dot { top: 2px; left: 0; transform: none; }
  .impact-metrics { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }

  .federal-pillars { gap: 28px; }
  .goals-inner { padding: 32px; }
  .support-quote blockquote { padding: 28px 28px; }
}
