:root {
  --paper: #eceef4;
  --mist: #e2e6f0;
  --surface: #f6f7fb;
  --ink: #1a2230;
  --ink-soft: #4a5568;
  --ink-faint: rgba(26, 34, 48, 0.42);
  --sage: #6b8f9c;
  --sage-deep: #3d5a66;
  --sage-mist: rgba(107, 143, 156, 0.2);
  --horizon: #c4a574;
  --horizon-mist: rgba(196, 165, 116, 0.28);
  --world-a: rgba(99, 132, 168, 0.35);
  --world-b: rgba(107, 143, 156, 0.25);
  --world-c: rgba(196, 165, 116, 0.22);
  --slate-mist: rgba(38, 48, 58, 0.09);
  --gold-leaf: rgba(198, 162, 88, 0.18);
  --gold-leaf-deep: rgba(168, 132, 58, 0.12);
  --gold-sheen: rgba(232, 214, 168, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --nav-h: 4.25rem;
  --section-jump-bar-h: 2.75rem;
  --anchor-offset: calc(var(--nav-h) + 6.35rem);
  --footer-fixed-pad: clamp(6.75rem, 22vmin, 9.5rem);
  --agenda-max: min(72rem, 100% - 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 95% 72% at 50% 108%, var(--slate-mist), transparent 52%),
    radial-gradient(ellipse 55% 48% at 4% 92%, rgba(44, 54, 66, 0.07), transparent 46%),
    radial-gradient(ellipse 50% 44% at 96% 8%, rgba(58, 68, 82, 0.06), transparent 44%),
    linear-gradient(168deg, #e4e7ee 0%, var(--paper) 48%, #eef0f5 100%);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 44% at 14% 78%, var(--gold-leaf), transparent 58%),
    radial-gradient(ellipse 38% 48% at 91% 32%, var(--gold-leaf-deep), transparent 54%),
    radial-gradient(ellipse 30% 36% at 58% 91%, var(--gold-sheen), transparent 50%),
    radial-gradient(ellipse 22% 28% at 72% 18%, rgba(212, 178, 95, 0.14), transparent 46%),
    radial-gradient(circle 42vw at 12% 22%, var(--world-a), transparent 58%),
    radial-gradient(circle 38vw at 92% 18%, var(--world-b), transparent 55%),
    radial-gradient(ellipse 90% 55% at 50% 108%, var(--horizon-mist), transparent 50%),
    radial-gradient(circle 28vw at 78% 78%, var(--world-c), transparent 52%),
    radial-gradient(ellipse 70% 50% at 40% 0%, rgba(99, 132, 168, 0.12), transparent 45%);
  animation: field-drift 36s var(--ease) infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: soft-light;
  background:
    repeating-linear-gradient(
      92deg,
      transparent 0,
      transparent 3px,
      rgba(35, 44, 54, 0.04) 3px,
      rgba(35, 44, 54, 0.04) 4px
    ),
    repeating-linear-gradient(
      -3deg,
      transparent,
      transparent 11px,
      rgba(28, 36, 46, 0.045) 11px,
      rgba(28, 36, 46, 0.045) 12px
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.032' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: auto, auto, 480px 480px;
}

@keyframes field-drift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate(1.5%, -2%) scale(1.035) rotate(0.8deg); opacity: 0.93; }
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.042;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--sage-deep);
  color: var(--paper);
  z-index: 10000;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  right: 0;
  width: max(10px, 0.55vw);
  height: 100vh;
  height: 100dvh;
  z-index: 10050;
  pointer-events: auto;
  background: rgba(26, 34, 48, 0.07);
  cursor: pointer;
  touch-action: none;
}
.scroll-indicator.is-dragging {
  cursor: grabbing;
}
.scroll-indicator__fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  border-radius: 0 0 0 4px;
  background: linear-gradient(180deg, var(--sage-deep), var(--horizon));
  box-shadow: 0 0 12px rgba(61, 90, 102, 0.35);
  cursor: grab;
  pointer-events: auto;
}
.scroll-indicator.is-dragging .scroll-indicator__fill {
  cursor: grabbing;
}

header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(232, 235, 242, 0.94), rgba(236, 238, 244, 0.76), transparent);
  backdrop-filter: blur(14px);
}

em { color: var(--sage-deep); }

.mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.mark-logo {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(15%) saturate(680%) hue-rotate(152deg) brightness(94%) contrast(90%);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
nav a:hover { color: var(--sage-deep); text-decoration: none; }

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 2.2vw, 1.65rem);
  flex-wrap: wrap;
  row-gap: 0.35rem;
}

.site-header__divider {
  display: block;
  width: 1px;
  height: 2.35rem;
  flex-shrink: 0;
  align-self: center;
  background: rgba(26, 34, 48, 0.22);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.35);
}

.nav-chicago-widget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.25;
  min-width: 0;
  max-width: 14rem;
}

.nav-chicago-widget__label {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.nav-chicago-widget__weather {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}

.nav-chicago-widget__wx-icon {
  font-size: 1.05em;
  line-height: 1;
  filter: grayscale(0.15);
}

.nav-chicago-widget__temp {
  font-variant-numeric: tabular-nums;
}

.nav-chicago-widget__clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.06rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

.nav-chicago-widget__clock #chi-date {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-chicago-widget__clock time {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  :root {
    --nav-h: 5.5rem;
    --anchor-offset: calc(var(--nav-h) + var(--section-jump-bar-h) + max(0.35rem, env(safe-area-inset-top, 0px)));
  }

  header.site {
    height: auto;
    min-height: var(--nav-h);
    align-items: center;
    padding-top: max(0.35rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.35rem;
  }

  .section-jump {
    flex-direction: row;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(92, 117, 104, 0.22);
  }

  .section-jump-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0.2rem;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(92, 117, 104, 0.22);
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .section-jump-btn:last-child {
    border-right: none;
  }

  .section-jump-btn:first-child {
    border-top: none;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 6.35rem;
    --section-jump-bar-h: 2.9rem;
    --anchor-offset: calc(var(--nav-h) + var(--section-jump-bar-h) + max(0.35rem, env(safe-area-inset-top, 0px)));
  }
}

@media (max-width: 540px) {
  .nav-chicago-widget {
    font-size: 0.55rem;
    max-width: 11rem;
  }
  .site-header__right {
    gap: 0.65rem;
  }
}

.section-jump {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.section-jump-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.5rem clamp(1rem, 4vw, 2.5rem);
  border-radius: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  color: var(--ink-soft);
  background: rgba(246, 247, 251, 0.82);
  border: none;
  border-bottom: 1px solid rgba(92, 117, 104, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.section-jump-btn:first-child {
  border-top: 1px solid rgba(92, 117, 104, 0.22);
}
.section-jump-btn:hover {
  color: var(--sage-deep);
  border-color: rgba(61, 90, 102, 0.35);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: calc(var(--footer-fixed-pad) + env(safe-area-inset-bottom, 0px));
}

.about-shell {
  width: var(--agenda-max);
  margin: 0 auto;
  padding: calc(var(--anchor-offset) + clamp(1.25rem, 3vw, 2rem)) clamp(1rem, 4vw, 2rem) 2.5rem;
}

.agenda-hero {
  text-align: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(92, 117, 104, 0.12);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.agenda-hero__kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.85rem;
}

.agenda-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 0.5;
}

.agenda-hero__deck {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.5;
}

.agenda-hero__meta {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.agenda-hero__meta a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(61, 90, 102, 0.4);
  text-underline-offset: 0.18em;
}
.agenda-hero__meta a:hover {
  color: var(--ink);
  text-decoration-color: var(--sage-deep);
}

.agenda-section {
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.agenda-section__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.5rem;
}

.agenda-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mission-card {
  max-width: 48rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #e2e5ee 0%, var(--paper) 42%, #e6e8ef 100%);
  border: 1px solid rgba(92, 117, 104, 0.14);
  box-shadow:
    0 14px 40px rgba(44, 51, 46, 0.07),
    inset 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.mission-card p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
}

.maps-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .maps-duo {
    grid-template-columns: 1fr;
  }
}

.map-panel {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(92, 117, 104, 0.12);
  box-shadow: 0 12px 36px rgba(44, 51, 46, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: min(320px, 48vh);
}

.map-panel__head {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(92, 117, 104, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, var(--surface) 100%);
}

.map-panel__head h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.map-panel__head p {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.map-panel__canvas {
  position: relative;
  flex: 1;
  min-height: 220px;
  background: linear-gradient(165deg, rgba(99, 132, 168, 0.06) 0%, rgba(236, 238, 244, 0.6) 100%);
}

.map-panel__canvas svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-deep);
  border: 2px solid var(--paper);
  box-shadow: 0 2px 10px rgba(61, 90, 102, 0.45);
  transform: translate(-50%, -50%);
}

.map-pin::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(92, 117, 104, 0.15);
  pointer-events: none;
}

.map-embed-note {
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid rgba(92, 117, 104, 0.08);
  background: rgba(255, 255, 255, 0.35);
}

.industry-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
  align-content: start;
}

@media (max-width: 520px) {
  .industry-map {
    grid-template-columns: 1fr;
  }
}

.industry-tile {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(92, 117, 104, 0.12);
}

.industry-tile h4 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.industry-tile p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.industry-meter {
  margin-top: 0.5rem;
  height: 4px;
  border-radius: 4px;
  background: rgba(61, 90, 102, 0.12);
  overflow: hidden;
}

.industry-meter span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sage-deep), var(--horizon));
}

.capital-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

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

.capital-card {
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(92, 117, 104, 0.12);
  box-shadow: 0 10px 32px rgba(44, 51, 46, 0.05);
}

.capital-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.capital-card p,
.capital-card li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.capital-card p {
  margin: 0 0 0.65rem;
}

.capital-card p:last-child {
  margin-bottom: 0;
}

.capital-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.capital-card li + li {
  margin-top: 0.35rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(107, 143, 156, 0.15);
  border: 1px solid rgba(92, 117, 104, 0.18);
  margin-bottom: 0.85rem;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(61, 90, 102, 0.2);
}

.supporter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supporter-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(92, 117, 104, 0.09);
}

.supporter-list li:last-child {
  border-bottom: none;
}

.supporter-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* Partner marks — infinite marquee (duplicate group = seamless loop) */
.logo-carousel {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(92, 117, 104, 0.09);
}

.logo-carousel__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-carousel__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 38s linear infinite;
}

.logo-carousel__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 2rem);
  padding-right: clamp(1.25rem, 3.5vw, 2rem);
}

.logo-carousel__group img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 76px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.15);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.logo-carousel__group a {
  flex-shrink: 0;
  line-height: 0;
}

.logo-carousel__group a:hover img {
  opacity: 1;
  filter: grayscale(0);
}

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

footer.site-foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem) calc(1.1rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid rgba(92, 117, 104, 0.12);
  background: linear-gradient(
    to top,
    rgba(236, 238, 244, 0.97) 0%,
    rgba(236, 238, 244, 0.9) 40%,
    rgba(236, 238, 244, 0.72) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
footer.site-foot a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(61, 90, 102, 0.45);
  text-underline-offset: 0.15em;
}
footer.site-foot a:hover {
  color: var(--ink);
  text-decoration-color: var(--sage-deep);
}

.mark:hover,
.section-jump-btn:hover {
  text-decoration: none;
}

#mission,
#targets,
#capital {
  scroll-margin-top: var(--anchor-offset);
}

@media print {
  header.site,
  .section-jump,
  .skip,
  .noise,
  .scroll-indicator {
    display: none !important;
  }
  footer.site-foot {
    display: none !important;
  }
  body::before,
  body::after {
    animation: none !important;
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  main {
    padding-bottom: 0;
  }
  .about-shell {
    padding: 1rem;
  }
  .capital-card,
  .map-panel,
  .mission-card {
    box-shadow: none;
    break-inside: avoid;
  }
  .logo-carousel__track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .logo-carousel__group[aria-hidden="true"] {
    display: none;
  }
  .logo-carousel__viewport {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  a {
    color: #000;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before { animation: none; transform: none; }
  .logo-carousel__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-carousel__group[aria-hidden="true"] {
    display: none;
  }
  .logo-carousel__viewport {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .logo-carousel__group {
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 0;
  }
}

[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0a0a0a;
  --mist: #0e0e0e;
  --surface: #121212;
  --ink: #f4f4f4;
  --ink-soft: #c2c2c2;
  --ink-faint: rgba(244, 244, 244, 0.48);
  --sage: #8ec5d1;
  --sage-deep: #6eb0bf;
  --sage-mist: rgba(110, 176, 191, 0.14);
  --horizon: #d4a574;
  --horizon-mist: rgba(212, 165, 116, 0.1);
  --theme-meta: #000000;
}

[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, rgba(110, 176, 191, 0.05), transparent 52%),
    linear-gradient(168deg, #0c0c0c 0%, #080808 48%, #050505 100%);
}

[data-theme="dark"] body::after {
  opacity: 0.12;
}

[data-theme="dark"] .agenda-panel,
[data-theme="dark"] .capital-card,
[data-theme="dark"] .mission-card,
[data-theme="dark"] .map-panel {
  border-color: rgba(255, 255, 255, 0.07);
  background-color: #111111;
  box-shadow: 7px 7px 16px rgba(0, 0, 0, 0.88), -5px -5px 14px rgba(255, 255, 255, 0.045);
}

@media (max-width: 768px) {
  :root {
    --nav-h: calc(3.15rem + env(safe-area-inset-top, 0px));
    --footer-fixed-pad: calc(3.85rem + env(safe-area-inset-bottom, 0px));
    --section-jump-bar-h: 2.65rem;
    --anchor-offset: calc(var(--nav-h) + var(--section-jump-bar-h) + 0.25rem);
  }

  header.site {
    height: var(--nav-h);
    min-height: var(--nav-h);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: 0;
  }

  .wrap {
    padding-inline: max(0.85rem, env(safe-area-inset-left, 0px)) max(0.85rem, env(safe-area-inset-right, 0px));
    padding-bottom: calc(var(--footer-fixed-pad) + env(safe-area-inset-bottom, 0px));
  }

  .capital-grid,
  .maps-duo,
  .industry-map {
    grid-template-columns: 1fr;
  }
}
