/* ============================================================
   CLIMACTIX GLOBAL — NASA Earth Science Design System
   Deep Space · Institutional · Scientific Intelligence
   Version 4.0 — Space Observatory Grade
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600;700&family=Public+Sans:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS — NASA Earth Science Palette
   ══════════════════════════════════════════════════════════ */
:root {
  /* ── BACKGROUNDS — NASA Deep Space ── */
  --bg:          #06090F;
  --bg-alt:      #030508;
  --surface:     #0C1018;
  --surface-2:   #111820;
  --surface-3:   #182030;
  --surface-4:   #1E2838;

  /* ── BORDERS — thin light overlay system ── */
  --border:         rgba(255,255,255,0.07);
  --border-strong:  rgba(255,255,255,0.13);
  --border-accent:  rgba(27,110,235,0.35);

  /* ── PRIMARY ACCENT — NASA Institutional Blue ── */
  --blue:        #1B6EEB;
  --blue-bright: #5BA3F5;
  --blue-dim:    #1452B0;
  --blue-glow:   rgba(27,110,235,0.12);
  --blue-tint:   rgba(27,110,235,0.06);

  /* ── Legacy alias for components that reference --amber ── */
  --amber:       #E87722;
  --amber-dim:   #C05C12;
  --amber-glow:  rgba(232,119,34,0.10);
  --amber-fg:    #000000;

  /* ── DATA ACCENTS — scientific, muted ── */
  --cyan:        #56CCF2;
  --cyan-glow:   rgba(86,204,242,0.10);
  --green:       #2ECC80;
  --green-glow:  rgba(46,204,128,0.10);
  --red:         #E84C4C;
  --red-glow:    rgba(232,76,76,0.10);

  /* ── TEXT HIERARCHY ── */
  --text:        #FFFFFF;
  --text-2:      #7B9DBF;
  --text-muted:  #4A6880;
  --text-faint:  #243444;

  /* ── LEGACY ALIASES (cross-page compat) ── */
  --primary:        var(--blue);
  --primary-dark:   var(--blue-dim);
  --primary-mid:    var(--blue);
  --primary-light:  var(--blue-glow);
  --primary-tint:   var(--blue-tint);
  --blue-mid:       var(--cyan);
  --blue-light:     var(--blue-bright);
  --blue-dark:      #0A2244;
  --white:          var(--text);
  --off-white:      var(--surface-2);
  --grey-light:     var(--surface-2);
  --grey-mid:       var(--border);
  --grey-border:    var(--border-strong);
  --grey-muted:     var(--text-muted);
  --text-primary:   var(--text);
  --text-secondary: var(--text-2);
  --danger:         var(--red);
  --success:        var(--green);
  --amber-light:    var(--amber);
  --cream:          var(--surface);
  --cream-dark:     var(--surface-2);
  --ink:            var(--text);
  --ink-soft:       var(--text-2);
  --ink-muted:      var(--text-muted);
  --forest:         #0B3D2E;

  /* ── TYPOGRAPHY ── */
  --font:  'Inter', 'Public Sans', -apple-system, 'Helvetica Neue', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', 'JetBrains Mono', 'Courier New', monospace;

  /* ── GEOMETRY ── */
  --radius-sm:  2px;
  --radius-md:  3px;
  --radius-lg:  4px;

  /* ── MOTION — smooth institutional ── */
  --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
  --t:          0.18s cubic-bezier(0.4,0,0.2,1);

  /* ── LAYOUT ── */
  --nav-h:       68px;
  --util-h:      32px;
  --max-w:       1320px;
  --page-px:     clamp(24px, 5vw, 72px);

  /* ── SPACE THEME COMPAT ── */
  --sp-void:     var(--bg);
  --sp-dark:     var(--surface);
  --sp-panel:    var(--surface-2);
  --sp-text:     var(--text);
  --sp-text-dim: var(--text-2);
  --sp-text-mute:var(--text-muted);
  --sp-border:   var(--border);
  --sp-border-2: var(--border-strong);
  --sp-accent:   var(--blue);
  --sp-glow:     var(--blue-glow);
  --sp-shadow:   0 2px 12px rgba(0,0,0,0.5);
  --sp-glow-btn: none;
}

/* ── LIGHT THEME — Pure white, no blue tint (NASA-style) ── */
[data-theme="light"] {
  --bg:          #FFFFFF;
  --bg-alt:      #F7F7F7;
  --surface:     #FFFFFF;
  --surface-2:   #F4F4F4;
  --surface-3:   #EBEBEB;
  --surface-4:   #E0E0E0;
  --border:         rgba(0,0,0,0.08);
  --border-strong:  rgba(0,0,0,0.14);
  --text:        #0A0A0A;
  --text-2:      #3D3D3D;
  --text-muted:  #666666;
  --text-faint:  #999999;
  --text-primary:   #0A0A0A;
  --text-secondary: #3D3D3D;
}

/* ── LIGHT MODE HEADER — Always black, NASA-style ── */
[data-theme="light"] .site-header,
[data-theme="light"] .site-header.scrolled {
  background: #0D0D0D;
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Ensure all text inside the black header is white in light mode */
[data-theme="light"] .header-brand,
[data-theme="light"] .header-brand span,
[data-theme="light"] .header-wordmark,
[data-theme="light"] .live-status,
[data-theme="light"] .live-status span {
  color: rgba(255,255,255,0.88);
}
[data-theme="light"] .live-dot,
[data-theme="light"] .live-pill {
  filter: none;
}

/* ── LIGHT MODE — cx-util-bar stays black (already is, but ensure) ── */
[data-theme="light"] .cx-util-bar {
  background: rgba(3,5,8,0.98);
  border-bottom-color: rgba(255,255,255,0.05);
}

/* ── LIGHT MODE — dropdown menu on black header ── */
[data-theme="light"] .nav-dropdown-menu {
  background: #1A1A1A;
  border-color: rgba(255,255,255,0.1);
}
[data-theme="light"] .nav-dropdown-item {
  color: rgba(255,255,255,0.65);
}
[data-theme="light"] .nav-dropdown-item:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.06);
}

/* ── LIGHT MODE — theme toggle on black header ── */
[data-theme="light"] #cx-theme-toggle {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
[data-theme="light"] #cx-theme-toggle:hover {
  border-color: rgba(255,255,255,0.4);
  color: #FFFFFF;
}

/* ── Ghost outline button (theme-adaptive) ── */
.btn-ghost-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  transition: all 0.18s ease;
}
.btn-ghost-platform:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
}
[data-theme="light"] .btn-ghost-platform:hover {
  background: rgba(0,0,0,0.04);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img, canvas, video { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }

/* ── Page wrapper ── */
.page-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}

/* ── Section block ── */
.section-block {
  padding: 112px 0;
}

/* ── Fade-in animation ── */
.fade-in {
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}
.fade-in-2 { animation-delay: 0.15s; }
.fade-in-3 { animation-delay: 0.3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   UTILITY BAR — top strip
   ══════════════════════════════════════════════════════════ */
.cx-util-bar {
  height: var(--util-h);
  background: rgba(3,5,8,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  overflow: hidden;
}

.cx-util-left,
.cx-util-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.cx-util-left { min-width: 0; flex-shrink: 1; }
.cx-util-right { flex-shrink: 0; }

.cx-util-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.cx-util-item a {
  color: var(--text-muted);
  transition: color var(--t);
}
.cx-util-item a:hover { color: var(--text-2); }

.cx-util-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: utilPulse 2.8s ease-in-out infinite;
}
@keyframes utilPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.cx-util-sep {
  width: 1px;
  height: 14px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SITE HEADER — NASA-style sticky transparent→solid
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: var(--util-h);
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Logo ── */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.cx-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* ── Main nav ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  border-radius: 0;
  transition: color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  height: 100%;
  letter-spacing: 0.01em;
}
.nav-link:hover,
.nav-link.active { color: rgba(255,255,255,0.95); }
.nav-link.active { color: #fff; }

.nav-chevron {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform var(--t);
}
.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
.nav-dropdown { position: relative; height: 100%; display: flex; align-items: center; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  min-width: 240px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t);
  z-index: 99;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-2);
  transition: color var(--t), background var(--t), padding-left var(--t);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: 2px solid transparent;
}
.nav-dropdown-item:hover {
  color: var(--text);
  background: rgba(27,110,235,0.08);
  border-left-color: var(--blue);
  padding-left: 22px;
}

/* ── Header right actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--t);
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--blue-dim); color: #fff; }

#cx-theme-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
#cx-theme-toggle:hover { border-color: var(--blue); color: var(--text); }

/* ── Nav top-offset body ── */
body {
  padding-top: calc(var(--util-h) + var(--nav-h));
}

/* ══════════════════════════════════════════════════════════
   SECTION TYPOGRAPHY SYSTEM
   ══════════════════════════════════════════════════════════ */

/* Eyebrow label */
.cx-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cx-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* Section heading — NASA editorial scale */
.section-heading {
  font-family: var(--font);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

/* Body text */
.body-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
}

/* Two-column grid */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Dark section eyebrow/heading/sub (used in heatmap, frameworks) ── */
.cx-section-dark-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cx-section-dark-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue);
  display: block;
  flex-shrink: 0;
}

.cx-section-dark-heading {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cx-section-dark-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   NASA-STYLE HERO — full-viewport cinematic Earth
   ═══════════════════════════════════════════════════════ */
.cx-hero {
  position: relative;
  width: 100%;
  /* Pull up behind the fixed header + utility bar */
  margin-top: calc(-1 * (var(--util-h) + var(--nav-h)));
  height: calc(100vh + var(--util-h) + var(--nav-h));
  min-height: 680px;
  overflow: hidden;
  background: #000;
}

/* ── Zoom-breathe + drift — pulls toward viewer then recedes ── */
@keyframes cx-kb {
  0%   { transform: scale(1.000) translate(  0%,     0%);  }  /* start — normal */
  18%  { transform: scale(1.065) translate(-0.35%, -0.20%); }  /* zoom IN  */
  36%  { transform: scale(1.028) translate( 0.20%, -0.40%); }  /* breathe back */
  55%  { transform: scale(1.080) translate(-0.50%, -0.30%); }  /* zoom IN deeper */
  72%  { transform: scale(1.030) translate( 0.30%, -0.15%); }  /* breathe back */
  88%  { transform: scale(1.055) translate(-0.20%, -0.45%); }  /* final pull */
  100% { transform: scale(1.000) translate(  0%,     0%);  }  /* return to origin */
}

/* Cloud-shimmer pulse — a soft white veil that breathes across the surface */
@keyframes cx-shimmer {
  0%   { opacity: 0;    transform: translateX(0px)   scaleX(1.00); }
  40%  { opacity: 0.07; transform: translateX(-12px)  scaleX(1.02); }
  75%  { opacity: 0.04; transform: translateX(-22px)  scaleX(1.04); }
  100% { opacity: 0;    transform: translateX(0px)   scaleX(1.00); }
}

/* Atmospheric depth pulse — faint blue limb glow cycles */
@keyframes cx-atmo {
  0%,100% { opacity: 0.55; }
  50%     { opacity: 0.80; }
}

/* Full-bleed photo background — NASA ISS oblique horizon photograph */
.cx-hero-globe-bg {
  position: absolute;
  inset: -4%;          /* slight bleed so Ken Burns never reveals edges */
  z-index: 0;
  background-color: #000;
  background-image:
    /* Deep space above horizon */
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 7%, transparent 18%),
    /* Thin atmospheric limb arc */
    radial-gradient(ellipse 180% 16% at 50% 10%, rgba(40,110,230,0.40) 0%, rgba(15,60,180,0.18) 50%, transparent 70%),
    /* Photo — ISS oblique Earth horizon, NASA/Unsplash */
    url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=90&w=2560&auto=format&fit=crop');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  /* Ken Burns — 38 s, eased, infinite, GPU-composited */
  animation: cx-kb 38s ease-in-out infinite;
  transform-origin: 58% 52%;
  will-change: transform;
}

/* Atmospheric limb glow — breathes on its own cycle */
.cx-hero-globe-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 180% 14% at 50% 8%, rgba(60,130,255,0.30) 0%, transparent 65%);
  animation: cx-atmo 14s ease-in-out infinite;
  will-change: opacity;
}

/* Cloud animation canvas — sits between photo and gradient overlay */
#heroCloudCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;           /* above .cx-hero-globe-bg (0), below .cx-hero-overlay (2) */
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  /* GPU-composite this layer independently */
  will-change: contents;
  mix-blend-mode: screen; /* clouds brighten the photo naturally, never darken */
}

/* Overlay — matches NASA reference: subtle left fade, strong bottom for strip */
.cx-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Left fade — enough to make white text legible over the photo */
    linear-gradient(to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.30) 25%,
      rgba(0,0,0,0.08) 48%,
      transparent 60%
    ),
    /* Bottom fade — smooth transition to Vital Signs strip */
    linear-gradient(to top,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.30) 10%,
      transparent 22%
    ),
    /* Top edge — space is dark above the atmospheric limb */
    linear-gradient(to bottom,
      rgba(0,0,0,0.30) 0%,
      transparent 12%
    );
}

/* No star-field overlay — the real photograph has real atmosphere */

/* Hero text content — bottom-left anchored, NASA/Bloomberg style */
.cx-hero-content {
  position: absolute;
  left: var(--page-px);
  bottom: 148px;     /* sits above Vital Signs strip (~130px) */
  z-index: 10;
  max-width: 500px;
  opacity: 1;
}

/* Hero badge */
.cx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 20px;
  width: fit-content;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Bloomberg × NASA institutional headline */
.cx-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 3.0vw, 48px) !important;
  font-weight: 900;
  color: #fff !important;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
}
.cx-hero-title em {
  font-style: normal;
  color: var(--blue-bright);
}

.cx-hero-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 0 16px;
}

/* Regulatory framework tags — Bloomberg data taxonomy */
.cx-hero-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cx-hero-tags span {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.36);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 3px 7px;
  border-radius: 1px;
}

.cx-hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.18s ease;
  letter-spacing: 0.01em;
}
.cta-primary:hover { background: #2678ff; color: #fff; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
}
.cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

/* ── VITAL SIGNS STRIP ── */
.cx-vital-signs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0,0,0,0.92);
  backdrop-filter: none;
  border-top: 1px solid var(--border);
}

.cx-vs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--page-px) 0;
}

.cx-vs-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.cx-vs-showall {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.18s;
}
.cx-vs-showall:hover { opacity: 0.7; }
.cx-vs-showall-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c0392b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.cx-vs-items {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0 var(--page-px);
  overflow-x: auto;
  scrollbar-width: none;
}
.cx-vs-items::-webkit-scrollbar { display: none; }

.cx-vs-item {
  flex: 1;
  min-width: 180px;
  padding: 16px 0 18px;
  border-top: 2px solid rgba(255,255,255,0.07);
  margin-top: 8px;
  padding-right: 24px;
}
.cx-vs-item + .cx-vs-item {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.cx-vs-name {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  margin-bottom: 6px;
  white-space: nowrap;
}

.cx-vs-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cx-vs-arrow {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.cx-vs-arrow.up   { color: #c0392b; }
.cx-vs-arrow.down { color: #3498db; }

.cx-vs-num {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cx-vs-unit {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  line-height: 1.3;
  max-width: 100px;
}

/* Globe controls — hidden (photo hero, no interactive globe) */
.cx-hero .globe-layer-controls,
.cx-hero .globe-status-bar,
.cx-hero-badge { display: none; }

/* Keep market stats below hero (not inside hero) */
.cx-market-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  flex-wrap: nowrap;
  overflow: hidden;
  padding-top: 4px;
}
.ms-item {
  flex: 1;
  padding: 20px 0 20px 24px;
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.ms-item:first-child { border-left: none; padding-left: 0; }
.ms-val {
  font-family: var(--font);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ms-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  line-height: 1.45;
  margin-bottom: 4px;
}
.ms-cite {
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.ms-divider { display: none; }

/* Globe module kept for JS compat — hidden in new layout */
.cx-globe-module { display: none; }
.cx-globe-glow   { display: none; }
.cx-hero-globe-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Kill floating badges */
.hg-data-badge,
.cx-sat-ring-wrap,
.cx-sat-pivot-root { display: none !important; }

/* Globe layer controls — thin underline tab style */
.globe-layer-controls {
  display: flex;
  align-items: center;
  gap: 0;
  height: 34px;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.globe-layer-controls::-webkit-scrollbar { display: none; }

.glc-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: -1px;
  box-shadow: none !important;
}
.glc-btn:hover {
  color: var(--text) !important;
  background: transparent !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.glc-btn.active {
  color: var(--blue-bright) !important;
  border-bottom-color: var(--blue) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Globe hover tooltip */
#globeHoverTip {
  position: absolute;
  background: rgba(4,15,28,0.97);
  border: 1px solid var(--border-strong);
  padding: 10px 13px;
  pointer-events: none;
  z-index: 10;
  display: none;
  min-width: 165px;
}
.ght-country {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.ght-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 4px; }
.ght-label {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ght-data {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-bright);
}
.ght-risk-bar-wrap { height: 2px; background: var(--surface-2); margin: 6px 0 2px; }
.ght-risk-bar { height: 100%; background: var(--blue); width: 0%; transition: width 0.25s; }

/* Globe status bar */
.globe-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  height: 22px;
  background: transparent;
  z-index: 4;
  position: relative;
}
.gsb-source {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 68%;
}
.gsb-updated {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gsb-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: gsbPulse 2.4s ease-in-out infinite;
}
@keyframes gsbPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,204,128,0.4); }
  55%      { box-shadow: 0 0 0 4px rgba(46,204,128,0); }
}

/* Globe loading overlay */
#globeLoadingOverlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
#globeLoadingOverlay.visible { opacity: 1; }
.glo-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.glo-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   LIVE ALERT BANNER
   ══════════════════════════════════════════════════════════ */
#cx-live-alert {
  background: rgba(232,76,76,0.06);
  border-bottom: 1px solid rgba(232,76,76,0.18);
  padding: 9px var(--page-px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  position: relative;
  z-index: 150;
}
#cx-live-alert.cx-gone { display: none !important; }

.cxla-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: cxlaPulse 1.5s ease-in-out infinite;
}
@keyframes cxlaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,76,76,0.5); }
  60%      { box-shadow: 0 0 0 5px rgba(232,76,76,0); }
}
.cxla-badge {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  flex-shrink: 0;
  border: 1px solid rgba(232,76,76,0.3);
  padding: 2px 7px;
}
.cxla-msg { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cxla-ts {
  font-family: var(--mono);
  color: rgba(255,255,255,0.28);
  font-size: 9.5px;
  font-weight: 400;
  flex-shrink: 0;
}
.cxla-x {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  font-size: 16px;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--t);
}
.cxla-x:hover { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════════
   LIVE METRICS STRIP
   ══════════════════════════════════════════════════════════ */
#cx-live-metrics {
  background: rgba(6,9,15,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 var(--page-px);
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
  position: fixed;
  top: calc(var(--util-h) + var(--nav-h));
  left: 0;
  right: 0;
  z-index: 150;
  backdrop-filter: none;
}
.cxlm-src {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  white-space: nowrap;
}
.cxlm-live {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  animation: cxlmLive 2.8s ease-in-out infinite;
}
@keyframes cxlmLive {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.cxlm-items { display: flex; flex: 1; height: 100%; overflow: hidden; }
.cxlm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
  height: 100%;
  flex-shrink: 0;
}
.cxlm-item:last-child { border-right: none; }
.cxlm-lbl {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}
.cxlm-val {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.5s;
}
.cxlm-val.cx-blue   { color: var(--blue-bright); }
.cxlm-val.cx-green  { color: var(--green); }
.cxlm-val.cx-amber  { color: var(--amber); }

/* ══════════════════════════════════════════════════════════
   GREEN BOND TICKER STRIP
   ══════════════════════════════════════════════════════════ */
.cx-ticker-strip {
  background: rgba(12,16,24,0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.cx-ticker-label {
  flex-shrink: 0;
  background: transparent;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.cx-ticker-track-wrap { flex: 1; overflow: hidden; position: relative; }
.cx-ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 52s linear infinite;
  white-space: nowrap;
}
.cx-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cx-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}
.cx-ticker-item .t-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: 0.6;
}
.cx-ticker-item .t-amount { color: rgba(255,255,255,0.75); font-weight: 600; }
.cx-ticker-item .t-sep { color: rgba(255,255,255,0.08); margin: 0 10px 0 0; }

/* ══════════════════════════════════════════════════════════
   HEATMAP SECTION
   ══════════════════════════════════════════════════════════ */
.cx-heatmap-section {
  background: var(--bg);
  padding: 120px 0 96px;
  overflow: hidden;
}

.cx-heatmap-canvas-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-top: 32px;
}
#heatmapCanvas {
  display: block;
  width: 100%;
  height: auto;
}

.heatmap-tooltip {
  position: absolute;
  background: rgba(4,15,28,0.97) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px;
  font-family: var(--font);
  pointer-events: none;
  display: none;
  z-index: 20;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  transform: translate(14px, -50%);
}
.hm-t-region {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-bright) !important;
  margin-bottom: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hm-t-anomaly {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hm-t-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.48);
  font-weight: 400;
  line-height: 1.5;
}
.hm-t-severity {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-top: 8px;
}
.hm-t-severity.critical { background: rgba(232,76,76,0.1); color: var(--red); }
.hm-t-severity.high     { background: rgba(232,119,34,0.1); color: var(--amber); }
.hm-t-severity.moderate { background: var(--surface-3); color: var(--text-2); }

/* Heatmap stats row */
.cx-hm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
  border-radius: 0 !important;
}
.hm-stat {
  background: var(--surface) !important;
  padding: 22px 20px;
  text-align: center;
}
.hm-stat-val {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hm-stat-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.hm-stat-val.v-red    { color: var(--red) !important; }
.hm-stat-val.v-orange { color: var(--amber) !important; }
.hm-stat-val.v-blue   { color: var(--cyan) !important; }
.hm-stat-val.v-teal   { color: var(--green) !important; }

/* Heatmap legend */
.hm-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.hm-legend-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hm-legend-bar {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, #fbbf24 35%, #f97316 65%, #f87171 85%, #dc2626 100%);
}
.hm-legend-bar.co2  { background: linear-gradient(90deg,#ffffcc 0%,#fe9929 50%,#993404 100%); }
.hm-legend-bar.sea  { background: linear-gradient(90deg,#deebf7 0%,#3182bd 60%,#08306b 100%); }
.hm-legend-bar.ice  { background: linear-gradient(90deg,#08306b 0%,#9ecae1 50%,#ffffff 100%); }
.hm-legend-bar.temp { background: linear-gradient(90deg, #60a5fa 0%, #fbbf24 35%, #f97316 65%, #f87171 85%, #dc2626 100%); }
.hm-legend-bar.wb   { background: linear-gradient(90deg,#1e3a8a 0%,#3b82f6 25%,#4ade80 50%,#f97316 75%,#b91c1c 100%); }
.hm-legend-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* Heatmap layer bar */
.hm-layer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 32px;
}
.hm-layer-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.hm-layer-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.45);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  box-shadow: none !important;
}
.hm-layer-btn:hover {
  background: rgba(27,110,235,0.08);
  color: rgba(255,255,255,0.8);
  border-color: rgba(27,110,235,0.4);
}
.hm-layer-btn.active {
  background: rgba(27,110,235,0.12);
  border-color: rgba(91,163,245,0.5);
  color: var(--blue-bright);
  box-shadow: none !important;
}
.hm-layer-status {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hm-layer-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CLIMATE CONCERNS SECTION
   ══════════════════════════════════════════════════════════ */
.cx-concerns-section {
  background: var(--bg);
  padding: 120px 0 96px;
}

.cx-concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.04);
}
.cx-concern-card + .cx-concern-card { border-left: none; }
.cx-concerns-grid .cx-concern-card:nth-child(4),
.cx-concerns-grid .cx-concern-card:nth-child(5),
.cx-concerns-grid .cx-concern-card:nth-child(6) {
  border-top: none;
}

.cx-concern-card {
  background: var(--bg);
  border: none;
  border-top: 2px solid transparent;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, border-top-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cx-concern-card::before { display: none !important; }
.cx-concern-card:hover {
  background: var(--surface);
  border-top-color: var(--blue) !important;
  transform: none !important;
}

.cc-icon-wrap {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}
.cx-concern-card:hover .cc-icon-wrap { color: var(--blue-bright); }

.cc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.cc-desc {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
  margin-bottom: 16px;
}
.cc-metric {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  display: inline-block;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════
   FRAMEWORKS SECTION
   ══════════════════════════════════════════════════════════ */
.cx-frameworks-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 88px;
}
.cx-frameworks-intro { max-width: 620px; margin-bottom: 52px; }

.cx-frameworks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.cx-fw-card + .cx-fw-card { border-left: 1px solid var(--border); }
.cx-frameworks-grid .cx-fw-card:nth-child(5),
.cx-frameworks-grid .cx-fw-card:nth-child(6),
.cx-frameworks-grid .cx-fw-card:nth-child(7),
.cx-frameworks-grid .cx-fw-card:nth-child(8) { border-top: 1px solid var(--border); }

.cx-fw-card {
  background: var(--surface-2);
  border: none;
  border-left: 3px solid transparent;
  padding: 22px 20px;
  transition: background var(--t), border-left-color var(--t);
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cx-fw-card::before { display: none !important; }
.cx-fw-card:hover {
  background: var(--surface-3);
  border-left-color: var(--blue) !important;
  transform: none !important;
}

.cx-fw-tag {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-bottom: 12px;
  display: inline-block;
  background: var(--surface-3);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.cx-fw-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.cx-fw-org {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cx-fw-desc {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════
   PROBLEM STATEMENT SECTION
   ══════════════════════════════════════════════════════════ */
.cx-problem-section {
  background: var(--bg);
  padding: 100px 0 88px;
  border-top: 1px solid var(--border);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.problem-card {
  background: var(--surface);
  border: none;
  border-left: 3px solid transparent;
  padding: 24px 20px;
  transition: background var(--t), border-left-color var(--t);
  border-radius: 0 !important;
  box-shadow: none !important;
}
.problem-card + .problem-card { border-left: 1px solid var(--border); }
.problems-grid .problem-card:nth-child(5),
.problems-grid .problem-card:nth-child(6),
.problems-grid .problem-card:nth-child(7),
.problems-grid .problem-card:nth-child(8) { border-top: 1px solid var(--border); }
.problem-card:hover {
  background: var(--surface-2);
  border-left-color: var(--blue) !important;
  transform: none !important;
}
.prob-icon {
  width: 28px; height: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.prob-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.prob-text {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   SOLUTION / SERVICES SECTION
   ══════════════════════════════════════════════════════════ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 36px;
}
.solution-card {
  background: var(--surface);
  border: none;
  border-left: 3px solid transparent;
  padding: 26px 22px;
  transition: background var(--t), border-left-color var(--t);
  border-radius: 0 !important;
  box-shadow: none !important;
}
.solution-card + .solution-card { border-left: 1px solid var(--border); }
.solution-grid .solution-card:nth-child(4),
.solution-grid .solution-card:nth-child(5),
.solution-grid .solution-card:nth-child(6),
.solution-grid .solution-card:nth-child(7) { border-top: 1px solid var(--border); }
.solution-card:hover {
  background: var(--surface-2);
  border-left-color: var(--blue) !important;
  transform: none !important;
}
.sol-icon {
  width: 32px; height: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.sol-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.sol-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   ARCHITECTURE PIPELINE SECTION
   ══════════════════════════════════════════════════════════ */
.cx-arch-section {
  background: var(--bg-alt);
  padding: 100px 0 88px;
  border-top: 1px solid var(--border);
}
.cx-arch-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.cx-arch-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.cx-arch-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cx-arch-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.cx-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 0;
}
.cx-pipe-stage { min-width: 0; }
.cx-pipe-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
  flex-shrink: 0;
}
.cx-pipe-arrow svg { width: 40px; height: 16px; flex-shrink: 0; }

.cx-pipe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent, var(--blue));
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background var(--t);
}
.cx-pipe-card:hover { background: var(--surface-2); }
.cx-pipe-accent-bar {
  height: 1px !important;
  background: var(--border) !important;
  margin: 0 20px 14px !important;
  opacity: 1 !important;
}
.cx-pipe-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
  margin-bottom: 12px;
}
.cx-pipe-step {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent, var(--blue));
}
.cx-pipe-icon { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; }
.cx-pipe-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 0 20px 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.cx-pipe-desc {
  font-size: 11.5px;
  color: var(--text-2);
  padding: 0 20px 16px;
  line-height: 1.55;
  flex: 1;
}
.cx-pipe-chips {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cx-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0 !important;
  padding: 2px 7px;
  white-space: nowrap;
  text-transform: uppercase;
}
.cx-arch-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}
.cx-arch-stat { flex: 1; padding: 24px 20px; text-align: center; }
.cx-arch-stat-val {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.cx-arch-stat-lbl {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.cx-arch-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   VISION / MISSION SECTION
   ══════════════════════════════════════════════════════════ */
.cx-mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 28px 28px;
}
.cx-mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cx-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.bullet-icon {
  color: var(--blue-bright);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
   STRATEGIC IMPERATIVE SECTION
   ══════════════════════════════════════════════════════════ */
.cx-imperative-section {
  background: var(--bg);
  padding: 100px 0 88px;
  border-top: 1px solid var(--border);
}
.cx-imperative-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px); }
.cx-imperative-header { margin-bottom: 56px; }
.cx-imperative-intro {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 14px;
}
.cx-imperative-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.cx-imperative-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--t);
  border-left: 3px solid transparent;
}
.cx-imperative-card:hover { background: var(--surface-2); border-left-color: var(--blue); }
.cx-imperative-card:nth-child(even) { border-right: none; }
.cx-imperative-card:nth-last-child(-n+2) { border-bottom: none; }
.cx-imp-number {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.cx-imp-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.cx-imp-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   CO₂ CALCULATOR SECTION
   ══════════════════════════════════════════════════════════ */
.cx-calc-section {
  background: var(--bg-alt);
  padding: 100px 0 88px;
  border-top: 1px solid var(--border);
}
.cx-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}
.cx-calc-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 28px;
}
.cx-calc-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.cx-calc-field:last-child { margin-bottom: 0; }
.cx-calc-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cx-calc-unit {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cx-calc-input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  transition: border-color var(--t), background var(--t);
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.cx-calc-input:focus {
  border-color: var(--blue);
  background: var(--surface-3);
}
.cx-calc-input::placeholder { color: var(--text-faint); }
.cx-calc-select { cursor: pointer; }

.cx-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }

.cx-calc-factors {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.cx-calc-factor-title {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cx-calc-factor-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-2);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.cx-calc-factor-row:last-child { border-bottom: none; }

.cx-calc-btn {
  width: 100%;
  padding: 13px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t);
}
.cx-calc-btn:hover { background: var(--blue-dim); }

.cx-calc-results {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.cx-calc-idle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.cx-calc-idle-icon { opacity: 0.3; }
.cx-calc-idle-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.cx-calc-output { display: none; }
.cx-calc-output.cx-fade-in { animation: fadeUp 0.4s cubic-bezier(0.4,0,0.2,1) both; }
.cx-calc-result-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cx-calc-big-number {
  font-family: var(--mono);
  font-size: 52px;
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.cx-calc-big-unit {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.cx-calc-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.cx-calc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.cx-calc-stat {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cx-calc-stat:last-child { border-right: none; }
.cx-calc-stat-val {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cx-calc-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--mono);
  font-weight: 500;
}
.cx-calc-insight {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--surface-2);
  border-left: 2px solid var(--blue);
  margin-bottom: 16px;
}
.cx-calc-scope-bar { margin-bottom: 20px; }
.cx-calc-scope-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cx-calc-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cx-calc-bar-name {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  width: 64px;
  flex-shrink: 0;
}
.cx-calc-bar-track {
  flex: 1;
  height: 4px;
  background: var(--surface-3);
  overflow: hidden;
}
.cx-calc-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.cx-bar-elec  { background: var(--blue); }
.cx-bar-fuel  { background: var(--amber); }
.cx-bar-travel{ background: var(--cyan); }
.cx-calc-bar-pct {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.cx-calc-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.cx-calc-cta-btn:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  background: var(--blue-tint);
}

/* ══════════════════════════════════════════════════════════
   GREEN BOND MARKET SECTION
   ══════════════════════════════════════════════════════════ */
.cx-gbm-section {
  background: var(--surface);
  padding: 100px 0 88px;
  border-top: 1px solid var(--border);
}
.cx-gbm-section .page-wrapper { max-width: 1160px; margin: 0 auto; padding: 0 var(--page-px); }
.cx-gbm-header { margin-bottom: 48px; }
.cx-gbm-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.cx-gbm-header p { font-size: 15px; color: var(--text-2); max-width: 680px; line-height: 1.7; }

.cx-gbm-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
.cx-gbm-stat {
  background: var(--surface-2);
  border: none;
  border-right: 1px solid var(--border);
  padding: 22px 20px;
  text-align: center;
}
.cx-gbm-stat:last-child { border-right: none; }
.cx-gbm-stat .gs-val {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cx-gbm-stat .gs-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.cx-gbm-deals-heading {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cx-gbm-deals-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ══════════════════════════════════════════════════════════
   FOOTER — NASA Institutional Style
   Pure black · Inter · Clean columns · Zero decoration
   ══════════════════════════════════════════════════════════ */
.cx-footer {
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  font-family: var(--font);
}

/* Top section: brand | nav cols | socials */
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--page-px) 64px;
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-logo {
  display: none; /* replaced by text wordmark below */
}
.footer-brand-name {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.footer-mission {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
  margin-bottom: 24px;
  max-width: 240px;
}
.footer-cta-link {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color var(--t);
}
.footer-cta-link:hover { color: #fff; }
.footer-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity var(--t);
}
.footer-join-btn:hover { opacity: 0.82; }
.footer-join-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E5280C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}

/* Nav columns */
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-col-title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-link {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color var(--t);
}
.footer-link:hover { color: #fff; }
.footer-link-plain {
  display: block;
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

/* Social column — NASA style: label + horizontal icon row */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2px;
}
.footer-social-label {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-social-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.footer-social-icon:hover {
  background: rgba(255,255,255,0.20);
  color: #fff;
}

/* Bottom legal bar */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--page-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-legal-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--t);
}
.footer-legal-link:hover { color: rgba(255,255,255,0.8); }
.footer-updated {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255,255,255,0.22);
}

/* ══════════════════════════════════════════════════════════
   WIDGET GLOBE (bottom-left fixed)
   ══════════════════════════════════════════════════════════ */
#climate-globe-widget {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9990;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 13px 10px;
  backdrop-filter: none;
  font-family: var(--font);
  transition: all var(--t);
}
#globe-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.globe-live-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
#globe-toggle {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  width: 19px; height: 19px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  flex-shrink: 0;
}
#globe-toggle:hover { background: rgba(255,255,255,0.1); color: #fff; }
#globeCanvas { display: block; border-radius: var(--radius-sm); cursor: grab; }
#globeCanvas:active { cursor: grabbing; }
#globe-legend {
  display: flex;
  gap: 14px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.globe-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.globe-legend-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.globe-legend-dot.risk { background: var(--red); }
.globe-legend-dot.mit  { background: var(--green); }
#climate-globe-widget.collapsed #globeCanvas,
#climate-globe-widget.collapsed #globe-legend { display: none; }

/* ══════════════════════════════════════════════════════════
   LOADING OVERLAY
   ══════════════════════════════════════════════════════════ */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,10,20,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.loading-overlay.visible { opacity: 1; pointer-events: auto; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.loading-text {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.loading-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════
   ESG ENGINE CARDS (theme-grid / theme-card)
   ══════════════════════════════════════════════════════════ */
.theme-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.theme-card {
  display: block;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding: 28px 32px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-left-color 0.2s ease;
  position: relative;
}
.theme-card:hover,
.theme-card.active {
  background: var(--surface-2);
  border-left-color: var(--blue);
}
.tc-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(27,110,235,0.08);
  border: 1px solid rgba(91,163,245,0.2);
  padding: 3px 8px;
  flex-shrink: 0;
}
.tc-icon { display: none; }
.tc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 10px 0 8px;
  letter-spacing: -0.015em;
}
.tc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 780px;
}
.tc-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.fw-chip {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 3px 8px;
}
.tc-footer { display: flex; align-items: center; }
.tc-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-arrow { font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   SUNDAY CLIMATE TALKS (sct-grid / sct-card)
   ══════════════════════════════════════════════════════════ */
.sct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.sct-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid transparent;
  transition: background 0.2s ease, border-top-color 0.2s ease;
}
.sct-card:hover {
  background: var(--surface);
  border-top-color: var(--blue);
}
.sct-icon { display: none; }
.sct-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.sct-text {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-title {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon { display: none; }
.contact-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-link,
.contact-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--blue-bright); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-title {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-color: rgba(255,255,255,0.12);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: var(--surface-2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 13px; }
.contact-form textarea { resize: vertical; min-height: 90px; }

/* ══════════════════════════════════════════════════════════
   ROADMAP SECTION
   ══════════════════════════════════════════════════════════ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-top: 48px;
}
.roadmap-card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rm-phase {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 4px;
}
.rm-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.rm-goal {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.rm-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.rm-features li {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.rm-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 10px;
}

/* ══════════════════════════════════════════════════════════
   FOUNDER SECTION
   ══════════════════════════════════════════════════════════ */
.cx-founder-section {
  background: var(--bg-alt);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.founder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: sticky;
  top: calc(var(--util-h) + var(--nav-h) + 24px);
}
.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.founder-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.founder-title {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.founder-org {
  font-size: 12px;
  color: var(--blue-bright);
  font-weight: 500;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 4px;
}
.f-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 7px;
}
.founder-pub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}
.pub-vol {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  text-transform: uppercase;
}
.pub-date {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-muted);
}
.founder-bio { display: flex; flex-direction: column; gap: 0; }
.founder-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  margin: 24px 0;
  overflow: hidden;
}
.fs-item {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.fs-item:last-child { border-right: none; }
.fs-val {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.fs-label {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.founder-differentiators {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-title {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.diff-item {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.diff-item span {
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 8px;
  top: 4px;
}

/* ══════════════════════════════════════════════════════════
   FORCE ALL TRANSFORMS OFF — no hover lifts
   ══════════════════════════════════════════════════════════ */
*:hover { transform: none !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .cx-hero-content { max-width: 460px; }
  .cx-vs-items { gap: 0; }
}

@media (max-width: 1040px) {
  .cx-hero-content { max-width: 380px; bottom: 140px; }
  .cx-hero-title { font-size: clamp(26px, 3.0vw, 40px) !important; }
  .cx-vs-item { min-width: 140px; }
  .cx-vs-num { font-size: 24px; }
  .ms-item { min-width: 45%; }
  .footer-top { grid-template-columns: 200px 1fr; gap: 40px; }
  .footer-socials { flex-direction: row; grid-column: 1 / -1; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .cx-pipeline {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .cx-pipe-arrow { display: none; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .cx-frameworks-grid { grid-template-columns: repeat(2, 1fr); }
  .cx-gbm-stats-row { grid-template-columns: repeat(2, 1fr); }
  .cx-arch-stats { flex-wrap: wrap; }
  .cx-arch-stat { min-width: 50%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; --util-h: 0px; }
  .cx-util-bar { display: none; }
  .site-header { top: 0; }
  body { padding-top: var(--nav-h); }
  .cx-hero { height: 100svh; min-height: 600px; }
  .cx-hero-content { max-width: calc(100% - 48px); bottom: 130px; }
  .cx-hero-title { font-size: clamp(24px, 7vw, 36px) !important; }
  .cx-hero-tags { display: none; }
  .globe-layer-controls { display: none !important; }
  .cx-vs-item { min-width: 120px; }
  .cx-vs-name { font-size: 11px; }
  .cx-vs-num { font-size: 20px; }
  .cx-vs-unit { display: none; }
  .cx-concerns-grid { grid-template-columns: 1fr; }
  .cx-concerns-grid .cx-concern-card + .cx-concern-card { border-left: none; border-top: 1px solid var(--border); }
  .cx-concerns-grid .cx-concern-card:nth-child(4),
  .cx-concerns-grid .cx-concern-card:nth-child(5),
  .cx-concerns-grid .cx-concern-card:nth-child(6) { border-top: 1px solid var(--border); }
  .cx-hm-stats { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card + .solution-card { border-left: none; border-top: 1px solid var(--border); }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card + .problem-card { border-left: none; border-top: 1px solid var(--border); }
  .cx-frameworks-grid { grid-template-columns: 1fr; }
  .cx-fw-card + .cx-fw-card { border-left: none; border-top: 1px solid var(--border); }
  .two-col-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-socials { flex-direction: row; }
  .cx-calc-grid { grid-template-columns: 1fr; }
  .cx-market-stats { flex-wrap: wrap; }
  .ms-item { min-width: 100%; }
  .cx-imperative-pillars { grid-template-columns: 1fr; }
  .cx-arch-stats { flex-direction: column; }
  .cx-arch-stat { min-width: 100%; }
  .cx-gbm-stats-row { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .cx-pipeline { grid-template-columns: 1fr; }
  .cx-ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-inner { flex-direction: column; gap: 32px; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-input-group { flex-direction: column; }
  .newsletter-input-group input { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEWSLETTER SECTION — cx-newsletter
═══════════════════════════════════════════════════════════════════ */
.cx-newsletter {
  padding: 80px 0 72px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.newsletter-content { flex: 1; min-width: 0; }
.newsletter-content .cx-eyebrow { margin-bottom: 14px; }
.newsletter-content .section-heading {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 14px;
  max-width: 540px;
}
.newsletter-content .body-text {
  max-width: 500px;
  color: var(--text-2);
}
.newsletter-form { flex-shrink: 0; width: 360px; }
.newsletter-input-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-strong);
}
.newsletter-input-group input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  background: var(--surface-2);
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  transition: background var(--t);
}
.newsletter-input-group input:focus { background: var(--surface-3); }
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-input-group button[type="submit"] {
  height: 44px;
  padding: 0 22px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t);
  flex-shrink: 0;
}
.newsletter-input-group button[type="submit"]:hover { background: var(--blue-dim); }

/* ═══════════════════════════════════════════════════════════════════
   AI SECTION GRID — cx-ai-grid
═══════════════════════════════════════════════════════════════════ */
.cx-ai-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}
