/* ============================================================
   SPOTLIGHT Initiative — Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --navy:         #1B3A5C;
  --navy-dark:    #0D2137;
  --navy-mid:     #234875;
  --gold:         #E8961E;
  --gold-light:   #F5B84C;
  --gold-pale:    #FEF3DC;
  --white:        #FFFFFF;
  --off-white:    #F7F7F5;
  --text:         #1C1C1C;
  --text-muted:   #5C6470;
  --border:       #E2E4E8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);

  --max-width:    1200px;
  --section-pad:  100px;

  --space-navy:   #0A1628;
  --midnight:     #060D1A;
  --navy-light:   #2A4D7A;
  --gold-glow:    rgba(232, 150, 30, 0.12);
  --gold-glow-md: rgba(232, 150, 30, 0.22);
  --gold-dim:     #C47D10;
  --text-on-dark: rgba(255,255,255,0.85);
  --text-on-dark-muted: rgba(255,255,255,0.55);
  --card-dark-bg: rgba(255,255,255,0.04);
  --card-dark-border: rgba(255,255,255,0.10);
  --glass-dark-bg: linear-gradient(180deg, rgba(10,22,40,0.96) 0%, rgba(13,33,55,0.92) 100%);
  --glass-dark-border: rgba(255,255,255,0.10);
  --glass-dark-shadow: 0 24px 56px rgba(13,33,55,0.16);
  --beam-gradient: radial-gradient(ellipse 70% 90% at 50% -5%, rgba(232,150,30,0.16) 0%, transparent 65%);
  --section-pad-lg: 140px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 68ch; }

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--navy   { background: var(--navy); color: var(--white); }
.section--dark   { background: var(--navy-dark); color: var(--white); }
.section--off    { background: var(--off-white); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--narrow {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-layer {
  position: relative;
  z-index: 1;
}

.section-copy,
.section-header p {
  color: var(--text-muted);
  margin: 16px auto 0;
  max-width: 60ch;
}

.section-copy--narrow {
  max-width: 58ch;
}

.section-copy--center {
  font-size: 1rem;
  line-height: 1.8;
  margin: 48px auto 0;
}

.section-lead {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-outro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.section-outro__emphasis {
  color: var(--navy);
}

.section-cta-wrap {
  margin-top: 48px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,150,30,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(13, 33, 55, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav__logo {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   Hero — Movement & Light
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--space-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.hero__topo svg {
  width: 100%;
  height: 100%;
}

.topo-line {
  fill: none;
  stroke: rgba(232, 150, 30, 0.18);
  stroke-width: 1px;
  animation: topo-breathe 10s ease-in-out infinite;
}

.topo-line:nth-child(odd)  { animation-duration: 12s; }
.topo-line:nth-child(3n)   { animation-duration: 9s; animation-delay: -3s; }
.topo-line:nth-child(4n)   { animation-duration: 14s; animation-delay: -6s; }

@keyframes topo-breathe {
  0%, 100% { transform: translateY(0px); opacity: 0.7; }
  50%       { transform: translateY(-6px); opacity: 1; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(232, 150, 30, 0.6);
}

@keyframes particle-float {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(0.3); opacity: 0; }
}

.hero__spotlight-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -80%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 215, 30, 0.437) 0%, rgba(232, 151, 30, 0.259) 45%, transparent 70%);
  z-index: 1;
  animation: halo-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.7);    opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.32); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__logo {
  width: clamp(180px, 30vw, 400px);
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.hero__headline {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
}

.hero__line.reveal {
  animation: hero-line-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__line--2.reveal { animation-delay: 0.25s; }

@keyframes hero-line-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

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

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__cta-group.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
}

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

/* Interactive cursor glow */
.hero__cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.6s ease;
  box-shadow:
    0 0 10px  5px  rgba(232, 150, 30, 0.18),
    0 0 30px  12px rgba(232, 150, 30, 0.12),
    0 0 60px  24px rgba(232, 150, 30, 0.07),
    0 0 120px 48px rgba(232, 150, 30, 0.04),
    0 0 200px 80px rgba(232, 150, 30, 0.02);
}

.hero__cursor-glow.active {
  opacity: 1;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 32px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(13,33,55,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================================================
   Problem / Pull Quote
   ============================================================ */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
  max-width: 1100px;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

/* ============================================================
   How It Works Cards
   ============================================================ */
.how-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.how-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(232,150,30,0.15);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.how-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232,150,30,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.how-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.how-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.how-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   Coalition Preview Cards (Homepage)
   ============================================================ */
.member-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-preview-card__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left;
}

.member-preview-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.member-preview-card__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.member-preview-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.member-preview-card__link:hover { gap: 10px; }

/* ============================================================
   Full Member Cards (Coalition Page)
   ============================================================ */
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
  transition: box-shadow 0.3s ease;
}

.member-card:hover { box-shadow: var(--shadow); }

.member-card__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-card__logo {
  max-height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.member-card__website {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.member-card__tagline {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.member-card__description {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.programs-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.programs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-tag {
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232,150,30,0.2);
}

/* ============================================================
   News Cards
   ============================================================ */
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-card__type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 20px;
}

.news-card__date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.news-card__headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card__link:hover { gap: 10px; }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,150,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin: 0 auto 36px;
}

/* ============================================================
   Impact / Data Elements
   ============================================================ */
.phase-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.phase-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.phase-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.phase-item__dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232,150,30,0.4);
}

.phase-item__period {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.phase-item__region {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.phase-item__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: left;
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr.total td {
  font-weight: 700;
  background: var(--gold-pale);
  color: var(--navy-dark);
}

/* Reporting bullets */
.reporting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reporting-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.reporting-item__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.reporting-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-info__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info__value { font-size: 1rem; font-weight: 500; color: var(--navy); }
.contact-info__value a { color: var(--navy); }
.contact-info__value a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,150,30,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 28ch;
  margin-bottom: 20px;
}

.footer__member-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.footer__member-logo {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.footer__member-logo:hover { opacity: 1; }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__contact a { color: rgba(255,255,255,0.6); }
.footer__contact a:hover { color: var(--gold); }

/* ============================================================
   Page Header (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,150,30,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 { color: var(--white); }
.page-header .section-label { color: var(--gold); }
.page-header__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 56ch;
}

/* ============================================================
   Scroll Animation Base
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   Divider
   ============================================================ */
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
  border-radius: 2px;
}

.divider--center { margin: 20px auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .member-card { grid-template-columns: 1fr; gap: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,33,55,0.97);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .phase-timeline { grid-template-columns: 1fr; gap: 32px; }
  .phase-timeline::before { display: none; }

  .reporting-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .member-card { padding: 28px; }
  .form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__logo { width: clamp(120px, 40vw, 180px); }
}

/* ============================================================
   Spotlight Scroll Overlay
   ============================================================ */
.spotlight-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* ============================================================
   Nav CTA Button
   ============================================================ */
.nav__cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,150,30,0.4);
}

@media (max-width: 768px) {
  .nav__cta { display: none; }
}

/* ============================================================
   Stats — Scan-Line Effect
   ============================================================ */
.stat-item__value.scanned::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,150,30,0.5), transparent);
  animation: stat-scan 0.8s ease-out forwards;
}

@keyframes stat-scan {
  0%   { left: -60%; }
  100% { left: 150%; }
}

/* ============================================================
   Capability Cards (Initiative partner blocks)
   ============================================================ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.capability-card {
  background: rgba(27, 58, 92, 0.03);
  border: 1px solid rgba(27, 58, 92, 0.10);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 150, 30, 0.30);
  background: rgba(27, 58, 92, 0.05);
}

.capability-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.capability-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.capability-card__tags {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Join card */
.capability-card--join {
  border: 2px dashed rgba(232,150,30,0.5);
  background: rgba(254,243,220,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
}

.capability-card--join:hover {
  border-color: var(--gold);
  background: rgba(254,243,220,0.6);
  box-shadow: 0 8px 32px rgba(232,150,30,0.15);
}

.capability-card--join .capability-card__icon {
  background: rgba(232,150,30,0.15);
}

.capability-card--join .join-plus {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.capability-card--join .join-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}

.capability-card--join .join-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 22ch;
}

/* 4-column grid for home capability preview (3 caps + 1 join) */
.capability-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .capability-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .capability-grid,
  .capability-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Local Sphere Feature Card (Initiative page)
   ============================================================ */
.ls-feature {
  background: var(--space-navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ls-feature::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,150,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.ls-feature__logo {
  width: 160px;
  margin-bottom: 28px;
  filter: brightness(1.1);
}

.ls-feature__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.ls-feature h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 16px;
}

.ls-feature p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ls-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.ls-feature__tag {
  background: rgba(232,150,30,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232,150,30,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ============================================================
   Partner Inquiry Form Enhancements
   ============================================================ */
.form-card .form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================
   Section variant — Space Navy (deep dark)
   ============================================================ */
.section--space {
  background: var(--space-navy);
  color: var(--white);
}

/* ============================================================
   Accessibility — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .topo-line,
  .hero__spotlight-halo,
  .hero__scroll,
  .hero-particle {
    animation: none !important;
  }
  .hero__line,
  .hero__logo,
  .hero__sub,
  .hero__cta-group {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   NEW COMPONENTS — v2 Strategic Redesign
   ============================================================ */

/* ============================================================
   Typography Extensions
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 700;
}

.label-caps {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ============================================================
   Section Variants
   ============================================================ */
.section--midnight {
  background: var(--midnight);
  color: var(--white);
  position: relative;
}

.section--midnight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  pointer-events: none;
}

.section--premium {
  background: linear-gradient(160deg, var(--space-navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  pointer-events: none;
}

/* ============================================================
   Page Hero (inner pages — not homepage)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--space-navy) 0%, var(--navy-dark) 55%, var(--navy) 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  pointer-events: none;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 1;
}

.page-hero--dark::after {
  background: linear-gradient(to bottom, transparent, var(--midnight));
}

.page-hero--offwhite::after {
  background: linear-gradient(to bottom, transparent, var(--off-white));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero__sub {
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto;
}

.page-hero .label-caps {
  margin-bottom: 20px;
}

/* ============================================================
   Eyebrow Labels
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* On dark backgrounds */
.section--midnight .eyebrow,
.section--premium .eyebrow,
.section--dark .eyebrow,
.section--navy .eyebrow {
  color: var(--gold-light);
}

/* ============================================================
   Divider Beam
   ============================================================ */
.divider-beam {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}

.divider-beam::before,
.divider-beam::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,150,30,0.4));
}

.divider-beam::after {
  background: linear-gradient(90deg, rgba(232,150,30,0.4), transparent);
}

.divider-beam__diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   Both Sides of the Equation — Cards
   ============================================================ */
.equation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
}

.equation-card {
  flex: 1;
  min-width: 280px;
  background: rgba(27, 58, 92, 0.03);
  border: 1px solid rgba(27, 58, 92, 0.10);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.equation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 150, 30, 0.30);
  background: rgba(27, 58, 92, 0.05);
}

/* Demand card: same frost, distinct badge + subtle gold border */
.equation-card--demand {
  border-color: rgba(232, 150, 30, 0.20);
}

.equation-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.equation-card__badge--supply {
  background: var(--navy);
  color: var(--white);
}

.equation-card__badge--demand {
  background: var(--gold);
  color: var(--white);
}

.equation-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.equation-card__desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.equation-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.equation-card__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.equation-card__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.equation-footnote {
  text-align: center;
  margin: 40px auto 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.7;
}

/* ============================================================
   Challenge Section — Arrow Bullet List
   ============================================================ */
.challenge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.challenge-item__arrow {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   Quote Block
   ============================================================ */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 16px;
  margin: 24px 0;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 16px;
}

.quote-block--on-dark .quote-block__text {
  color: var(--white);
}

.quote-block__attr {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.quote-block--on-dark .quote-block__attr {
  color: var(--text-on-dark-muted);
}

.quote-plain {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.quote-plain .quote-block__text,
.quote-plain .quote-block__attr {
  max-width: none;
}

.quote-plain .quote-block__text {
  color: var(--white);
}

.quote-plain .quote-block__attr {
  color: var(--text-on-dark-muted);
}

/* ============================================================
   Two-Column Feature Layout
   ============================================================ */
.two-col-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-feature--60-40 {
  grid-template-columns: 1.5fr 1fr;
}

.two-col-feature--40-60 {
  grid-template-columns: 1fr 1.5fr;
}

/* ============================================================
   Stat Callout (standalone large stat)
   ============================================================ */
.stat-callout {
  text-align: center;
  padding: 40px 24px;
}

.stat-callout__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-callout__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stat-callout__context {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 22ch;
  margin: 0 auto;
}

/* ============================================================
   Transformation Gap Cards
   ============================================================ */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.gap-card {
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  padding: 48px 36px;
  position: relative;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gap-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.gap-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

.gap-card:hover {
  background: rgba(232, 150, 30, 0.06);
  border-color: rgba(232, 150, 30, 0.30);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.16);
}

.gap-card__from {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 12px;
}

.gap-card__arrow {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.gap-card__to {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.gap-card__to--muted {
  color: rgba(255,255,255,0.4);
}

.gap-card__to--gold {
  color: var(--gold);
}

.gap-card__divider {
  height: 1px;
  background: rgba(232,150,30,0.25);
  margin: 16px 0;
}

.gap-card__arrow--muted {
  color: rgba(255,255,255,0.3);
}

.gap-card__desc {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .gap-grid { grid-template-columns: 1fr; gap: 1px; }
  .gap-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .gap-card:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ============================================================
   Pillar Blocks (Approach page)
   ============================================================ */
.pillar-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 64px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.pillar-block:last-child { border-bottom: none; }

.pillar-block__number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.pillar-block:hover .pillar-block__number { opacity: 0.7; }


.pillar-block__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar-block h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.pillar-block__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 65ch;
}

.pillar-block__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar-cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}

.pillar-cap::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pillar-cap:hover {
  border-color: var(--gold);
  color: var(--navy-dark);
}

@media (max-width: 768px) {
  .pillar-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 48px 0;
  }
  .pillar-block__number { font-size: 4rem; }
}

/* ============================================================
   Capability Tiles (Capabilities page)
   ============================================================ */
.capability-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}

.capability-tile {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.25s ease;
  cursor: default;
}

.capability-tile:hover {
  background: var(--off-white);
}

.capability-tile__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.capability-tile h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.capability-tile p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

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

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

/* ============================================================
   Audience Cards (Who Should Engage)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232,150,30,0.3);
}

.audience-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.audience-card__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.audience-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
  flex: 1;
}

.audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.audience-card__cta:hover {
  color: var(--gold);
  gap: 10px;
}

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

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

/* ============================================================
   Collaboration Type Cards (Partners page)
   ============================================================ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.collab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.collab-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.collab-card__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.collab-card__desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: none;
}

.collab-card__brings {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.collab-card__brings::before {
  content: 'Brings: ';
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

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

/* ============================================================
   News & Insights — Updated Cards
   ============================================================ */

.news-card {
  background: rgba(27, 58, 92, 0.03);
  border: 1px solid rgba(27, 58, 92, 0.10);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 150, 30, 0.30);
  background: rgba(27, 58, 92, 0.05);
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.news-card__headline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.news-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-card__read-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-card__read-time::before {
  content: '· ';
}

.news-card__read-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.news-card__read-link:hover { gap: 8px; }

/* Featured Article */
.news-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 64px;
}

.news-featured__visual {
  position: relative;
  min-height: 340px;
}

.news-featured__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.news-featured__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--space-navy) 0%, var(--navy) 100%);
  z-index: 0;
}

.news-featured__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.08) 0%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 2;
}

.news-featured__visual-beam {
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  z-index: 3;
}

.news-featured__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 4;
}

.news-featured__content {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured__category {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.news-featured__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.news-featured__excerpt {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: none;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.news-featured__meta-sep { color: var(--border); }

@media (max-width: 768px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured__visual { min-height: 180px; }
  .news-featured__content { padding: 32px 28px; }
}

/* ============================================================
   Article Page
   ============================================================ */
.article-hero {
  color: var(--white);
  padding: 180px 0 88px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(180deg, rgba(6,13,26,0.10), rgba(6,13,26,0.38));
  pointer-events: none;
}

.article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.article-back-link:hover { color: var(--white); }

.article-back-link::before {
  content: '←';
  font-size: 1rem;
}

.article-hero__intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
  margin-top: 18px;
  max-width: 62ch;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.article-hero__meta-sep { opacity: 0.65; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.article-body {
  background: var(--white);
  border: 1px solid rgba(27,58,92,0.08);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 16px 40px rgba(13,33,55,0.06);
}

.article-section + .article-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(27,58,92,0.10);
}

.article-section h2 {
  color: var(--navy-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 18px;
}

.article-section p {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #26313f;
}

.article-section p + p {
  margin-top: 18px;
}

.article-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 112px;
}

.article-sidebar__card {
  background: var(--white);
  border: 1px solid rgba(27,58,92,0.10);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.article-sidebar__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  margin-bottom: 14px;
}

.article-sidebar__text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: none;
}

.related-post {
  display: block;
  padding: 16px 0;
  border-top: 1px solid rgba(27,58,92,0.10);
}

.related-post:first-of-type {
  border-top: none;
  padding-top: 0;
}

.related-post:last-child {
  padding-bottom: 0;
}

.related-post__category,
.related-post__meta {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-post__category {
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.related-post__title {
  display: block;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.45;
}

.related-post__meta {
  color: var(--text-muted);
  margin-top: 10px;
}

.related-post:hover .related-post__title {
  color: var(--navy);
}

.article-empty-state {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.article-empty-state p {
  max-width: 42ch;
  font-size: 1rem;
  color: var(--text-muted);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

/* Category Filter Pills */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  color: var(--navy);
  border-color: rgba(232,150,30,0.4);
  background: var(--gold-pale);
}

.filter-pill.active {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--space-navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin: 0 auto 40px;
  max-width: 52ch;
}

.cta-section .eyebrow { margin-bottom: 16px; }

.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Founding Partner Logos Strip
   ============================================================ */
.partner-logos-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.partner-logos-strip__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.partner-logos-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 52px;
}

.partner-logos-strip__logo {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partner-logos-strip__logo:hover {
  opacity: 1;
  filter: none;
}

/* ============================================================
   Contact Pathways
   ============================================================ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.pathway-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.pathway-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.pathway-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pathway-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pathway-card a {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
}

.pathway-card a:hover { text-decoration: underline; }

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

/* ============================================================
   Principles / Philosophy Cards
   ============================================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.principle-card {
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.principle-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,150,30,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.principle-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: none;
}

@media (max-width: 768px) {
  .principles-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   Impact Outcomes
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.impact-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--card-dark-bg);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-item:hover {
  background: rgba(232, 150, 30, 0.06);
  border-color: rgba(232, 150, 30, 0.30);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

.impact-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(232,150,30,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
}

.impact-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.impact-item p {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: none;
}

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

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

/* ============================================================
   Powered by Local Sphere
   ============================================================ */
.ls-powered {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ls-powered__logo-wrap {
  background: var(--space-navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.ls-powered__logo-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,150,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.ls-powered__logo {
  width: clamp(120px, 25%, 180px);
}

.ls-powered__tagline {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.ls-powered__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ls-powered__tag {
  background: rgba(232,150,30,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(232,150,30,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 500;
}


.ls-powered__content h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ls-powered__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .ls-powered {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Approach Preview (Homepage 3-step)
   ============================================================ */
.approach-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.approach-preview-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,150,30,0.5), transparent);
}

.approach-step {
  text-align: center;
  padding: 36px 28px;
  position: relative;
  background: rgba(27, 58, 92, 0.03);
  border: 1px solid rgba(27, 58, 92, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 150, 30, 0.30);
  background: rgba(27, 58, 92, 0.05);
}

.approach-step__dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: 2px solid rgba(232,150,30,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.approach-step:hover .approach-step__dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(232,150,30,0.1);
}

.approach-step h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.approach-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .approach-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-preview-grid::before { display: none; }
}

/* ============================================================
   Collaboration Feature Section
   ============================================================ */
.collab-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.collab-feature__visual {
  background: var(--space-navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collab-feature__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beam-gradient);
  pointer-events: none;
}

.collab-node {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.collab-node:hover {
  background: rgba(232,150,30,0.07);
  border-color: rgba(232,150,30,0.2);
}

.collab-node__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.collab-node__dot--large {
  width: 12px;
  height: 12px;
}

.collab-node p {
  font-size: 0.875rem;
  color: var(--text-on-dark);
  max-width: none;
}

.collab-node__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .collab-feature { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Nav — Updated for 7 items
   ============================================================ */
.nav__links {
  gap: 28px !important;
}

.nav__links a {
  font-size: 0.875rem !important;
  letter-spacing: 0.01em;
}

/* ============================================================
   Footer — 4-column update
   ============================================================ */
.footer__top--4col {
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .footer__top--4col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__top--4col { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Tag Row
   ============================================================ */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(232,150,30,0.35);
  border-radius: 100px;
  padding: 4px 14px;
}

.tag--on-dark {
  color: var(--gold-light);
  border-color: rgba(232,150,30,0.3);
  background: rgba(232,150,30,0.08);
}

/* ============================================================
   Helpers — new section pads
   ============================================================ */
.section--lg {
  padding: var(--section-pad-lg) 0;
}

@media (max-width: 768px) {
  .section--lg { padding: 80px 0; }
  .two-col-feature,
  .two-col-feature--60-40,
  .two-col-feature--40-60 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .community-layer-grid {
    grid-template-columns: 1fr;
  }
  .community-layer-bridge svg {
    transform: rotate(90deg);
  }
}

/* ── Community Layer Section ───────────────────────── */
.community-layer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 56px;
}

.community-layer-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.community-layer-card--institutional {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.community-layer-card--institutional .community-layer-card__label {
  color: rgba(255,255,255,0.5);
}

.community-layer-card--institutional h4 {
  color: var(--white);
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.community-layer-card--institutional p {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 1rem;
}

.community-layer-card--community {
  background: var(--white);
  border: 1px solid rgba(27,58,92,0.12);
  box-shadow: 0 4px 20px rgba(27,58,92,0.06);
}

.community-layer-card--community .community-layer-card__label {
  color: var(--text-muted);
}

.community-layer-card--community h4 {
  color: var(--navy);
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.community-layer-card--community p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.community-layer-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.community-layer-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.community-layer-link:hover { opacity: 0.75; }

.community-layer-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
}

.community-layer-bridge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Two Layers. One Mission. Section ─────────────── */
.two-layers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.two-layers-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.two-layers-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,150,30,0.3);
}

.two-layers-card--community {
  border-color: rgba(232,150,30,0.2);
}

.two-layers-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232,150,30,0.18);
  line-height: 1;
  margin-bottom: 20px;
}

.two-layers-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.two-layers-card__site {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--white);
  margin: 0 0 20px;
  font-weight: 600;
}

.two-layers-card__body {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 28px;
  flex: 1;
}

.two-layers-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.two-layers-card__tags li {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 14px;
}

.two-layers-hub-example {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(232,150,30,0.2);
}

.two-layers-hub-example__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.two-layers-hub-example__link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.two-layers-hub-example__link:hover { opacity: 0.75; }

/* Light-background variant (used when two-layers is on a white section) */
.two-layers-card--light {
  background: rgba(27, 58, 92, 0.03);
  border-color: rgba(27, 58, 92, 0.10);
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.04);
}

.two-layers-card--light:hover {
  background: rgba(27, 58, 92, 0.05);
  border-color: rgba(232, 150, 30, 0.30);
  box-shadow: var(--shadow);
}

.two-layers-card--community.two-layers-card--light {
  border-color: rgba(232, 150, 30, 0.25);
}

.two-layers-card--light .two-layers-card__number {
  color: rgba(27, 58, 92, 0.1);
}

.two-layers-card--light .two-layers-card__site {
  color: var(--navy);
}

.two-layers-card--light .two-layers-card__body {
  color: var(--text-muted);
}

.two-layers-card--light .two-layers-card__tags li {
  color: var(--text-muted);
  background: var(--white);
  border-color: var(--border);
}

.two-layers-card--light .two-layers-hub-example {
  border-top-color: var(--border);
}

.two-layers-card--light .two-layers-hub-example__label {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .two-layers-grid {
    grid-template-columns: 1fr;
  }
  .two-layers-card {
    padding: 36px 28px;
  }
}

/* ============================================================
   Layout Polish — Targeted fixes for spacing, rhythm, and
   mobile readability (Task 12)
   ============================================================ */

/* 1. Break visual merge between consecutive dark sections */
.section--midnight + .section--midnight {
  border-top: 1px solid rgba(232, 150, 30, 0.12);
}

/* ============================================================
   How It Works — Step Grid
   ============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

/* ============================================================
   Homepage-only dark glass overrides
   ============================================================ */
.page-home .equation-card,
.page-home .two-layers-card--light,
.page-home .quote-block--on-dark,
.page-home .collab-feature__visual {
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-dark-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-home .equation-card:hover,
.page-home .two-layers-card--light:hover,
.page-home .collab-feature__visual:hover {
  background: linear-gradient(180deg, rgba(10,22,40,0.98) 0%, rgba(13,33,55,0.95) 100%);
  border-color: rgba(232, 150, 30, 0.30);
}

.page-home .equation-card--demand,
.page-home .two-layers-card--community.two-layers-card--light {
  border-color: rgba(232, 150, 30, 0.20);
}

.page-home .equation-card__title,
.page-home .two-layers-card--light .two-layers-card__site {
  color: var(--white);
}

.page-home .equation-card__desc,
.page-home .equation-card__list-item,
.page-home .two-layers-card--light .two-layers-card__body,
.page-home .two-layers-card--light .two-layers-card__tags li,
.page-home .two-layers-card--light .two-layers-hub-example__label {
  color: var(--text-on-dark-muted);
}

.page-home .impact-item__icon {
  background: rgba(232,150,30,0.12);
  border: 1px solid rgba(232,150,30,0.20);
}

.page-home .two-layers-card--light .two-layers-hub-example__link {
  color: var(--gold-light);
}
.page-home .two-layers-card--light .two-layers-hub-example {
  border-top-color: rgba(255,255,255,0.12);
}

.page-home .two-layers-card--light .two-layers-card__number {
  color: rgba(255,255,255,0.12);
}

.page-home .two-layers-card--light .two-layers-card__tags li {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}

.page-home .collab-feature__visual {
  border-radius: var(--radius-lg);
}

.page-home .collab-node {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .collab-node:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.14);
}

/* 3. Reduce page-hero top padding on mobile — 180px is sized for
      desktop nav clearance; shrink on smaller screens */
@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 72px;
  }

  .article-hero {
    padding: 148px 0 72px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .article-sidebar {
    position: static;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 120px 0 56px;
  }

  .article-hero {
    padding: 126px 0 56px;
  }

  .article-hero__meta {
    gap: 8px;
  }

  .article-body {
    padding: 28px 20px;
  }
}

/* 4. Reduce cta-section padding on mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 72px 0;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 56px 0;
  }
}

/* 5. Reduce section-header bottom margin on mobile */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

/* 6. Tighten section padding further at 480px to reduce scroll fatigue */
@media (max-width: 480px) {
  :root {
    --section-pad: 52px;
  }
}

/* ============================================================
   Dark section automatic text colour — removes need for
   inline style= overrides on h2 and section-header p elements
   ============================================================ */
.section--midnight h2,
.section--premium h2 {
  color: var(--white);
}

.section--midnight .section-header p,
.section--premium .section-header p {
  color: var(--text-on-dark-muted);
  margin: 16px auto 0;
  max-width: 60ch;
}
