@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=DM+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #0b2020;
  --ink-soft: #183a39;
  --teal: #1b5753;
  --teal-deep: #123d3b;
  --paper: #f4f3ed;
  --paper-warm: #ebece4;
  --paper-cool: #dce8e1;
  --lime: #d5f36a;
  --orange: #ff9b68;
  --coral: #f06c56;
  --white: #ffffff;
  --muted: #6a7d77;
  --line: rgba(11, 32, 32, .14);
  --line-light: rgba(244, 243, 237, .18);
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'DM Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --shadow: 0 22px 70px rgba(11, 32, 32, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { display: block; }
.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.top-strip { min-height: 35px; color: var(--ink); background: var(--lime); border-bottom: 1px solid rgba(11,32,32,.16); }
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1340px, calc(100% - 48px));
  min-height: 35px;
  margin: auto;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.top-strip__right { display: flex; gap: 18px; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(240,108,86,.17); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(244,243,237,.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(11,32,32,.06); }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1340px, calc(100% - 48px));
  height: 84px;
  margin: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { position: relative; display: grid; width: 44px; height: 44px; color: var(--lime); background: var(--ink); border-radius: 14px 14px 14px 4px; place-items: center; box-shadow: 4px 4px 0 var(--orange); }
.brand__mark::before, .brand__mark::after { position: absolute; content: ''; border: 1.5px solid var(--lime); border-radius: 50%; transform: rotate(-35deg); }
.brand__mark::before { width: 22px; height: 29px; }
.brand__mark::after { width: 30px; height: 15px; }
.brand__mark span { position: relative; z-index: 1; font-family: var(--display); font-size: 19px; font-weight: 700; }
.brand__text { display: grid; gap: 1px; }
.brand__name { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.04em; }
.brand__descriptor { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
.main-nav a { position: relative; color: #536863; font-size: 13px; font-weight: 600; transition: color .2s ease; }
.main-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ''; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .menu-toggle { display: grid; width: 42px; height: 42px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; place-items: center; transition: color .2s ease, background .2s ease, transform .2s ease; }
.icon-button:hover, .menu-toggle:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.nav-cta, .button-dark, .button-light, .button-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.nav-cta, .button-dark { color: var(--paper); background: var(--ink); }
.nav-cta:hover, .button-dark:hover { color: var(--ink); background: var(--lime); transform: translateY(-3px); box-shadow: 0 8px 0 var(--orange); }
.button-light { color: var(--ink); background: var(--paper); border-color: rgba(244,243,237,.35); }
.button-light:hover { background: var(--lime); transform: translateY(-3px); }
.button-coral { color: var(--ink); background: var(--orange); }
.button-coral:hover { background: var(--lime); transform: translateY(-3px); }
.button-arrow { width: 19px; height: 19px; }
.menu-toggle { display: none; }

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0 0 30px 30px;
  isolation: isolate;
}
.detail-hero::before { position: absolute; z-index: -1; top: -250px; right: -120px; width: 680px; height: 680px; content: ''; background: radial-gradient(circle, rgba(43,125,112,.5), transparent 68%); }
.detail-hero::after { position: absolute; z-index: -1; inset: 0; opacity: .2; content: ''; background-image: linear-gradient(rgba(244,243,237,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(244,243,237,.1) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(90deg, transparent, #000 16%, #000 83%, transparent); }
.detail-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); gap: 80px; align-items: end; width: min(1200px, calc(100% - 48px)); min-height: 430px; margin: auto; padding: 76px 0 62px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: rgba(244,243,237,.46); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { color: var(--orange); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before, .section-kicker::before { width: 28px; height: 1px; content: ''; background: currentColor; }
.detail-hero h1 { max-width: 760px; margin: 20px 0 22px; font-family: var(--display); font-size: clamp(3.2rem, 6.5vw, 6rem); font-weight: 500; letter-spacing: -.08em; line-height: .88; }
.detail-hero h1 em { color: var(--lime); font-style: normal; }
.detail-hero__lead { max-width: 535px; margin: 0; color: rgba(244,243,237,.67); font-size: 15px; line-height: 1.7; }
.hero-index { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding: 2px 0 0 24px; border-left: 1px solid rgba(244,243,237,.2); }
.hero-index__code { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.hero-index__number { color: var(--lime); font-family: var(--display); font-size: clamp(7rem, 15vw, 13rem); letter-spacing: -.13em; line-height: .73; }
.hero-index__caption { max-width: 210px; color: rgba(244,243,237,.45); font-family: var(--mono); font-size: 9px; line-height: 1.6; text-transform: uppercase; }
.hero-ribbon { display: flex; align-items: center; justify-content: space-between; width: min(1200px, calc(100% - 48px)); margin: auto; padding: 0 0 22px; color: rgba(244,243,237,.4); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.hero-ribbon__line { display: flex; align-items: center; gap: 11px; }
.hero-ribbon__line::before { width: 44px; height: 1px; content: ''; background: var(--orange); }

.section { width: min(1200px, calc(100% - 48px)); margin: auto; padding: 108px 0; }
.section--wide { width: min(1340px, calc(100% - 48px)); }
.section-kicker { margin: 0 0 13px; color: var(--coral); }
.section-title { max-width: 730px; margin: 0; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.075em; line-height: .92; }
.section-title span { color: var(--teal); }
.section-lead { max-width: 570px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 43px; }
.section-head__copy { max-width: 420px; margin: 0 0 4px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.section-head__copy strong { color: var(--ink); font-weight: 600; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
.tag { display: inline-flex; align-items: center; min-height: 24px; padding: 0 9px; color: var(--ink); background: var(--lime); border-radius: 3px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.tag--orange { background: var(--orange); }
.tag--teal { color: var(--paper); background: var(--teal); }

.paper-band { background: var(--paper-warm); border-block: 1px solid rgba(11,32,32,.06); }
.dark-band { color: var(--paper); background: var(--ink-soft); }
.dark-band .section-kicker { color: var(--lime); }
.dark-band .section-title span { color: var(--orange); }
.dark-band .section-lead { color: rgba(244,243,237,.58); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.34fr) minmax(265px, .66fr); gap: 70px; align-items: start; }
.content-grid--reverse { grid-template-columns: minmax(265px, .66fr) minmax(0, 1.34fr); }
.prose { max-width: 740px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 42px 0 14px; font-family: var(--display); font-size: 31px; font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.prose h3 { margin: 28px 0 10px; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.04em; }
.prose p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.82; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 21px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.prose li::marker { color: var(--coral); }
.prose blockquote { margin: 32px 0; padding: 25px 27px; color: var(--ink); background: var(--lime); border-radius: 0 18px 18px 18px; font-family: var(--display); font-size: 24px; letter-spacing: -.045em; line-height: 1.08; }
.side-stack { display: grid; gap: 14px; position: sticky; top: 120px; }
.side-card { padding: 22px; background: var(--paper-warm); border: 1px solid transparent; border-radius: var(--radius-md); }
.side-card--dark { color: var(--paper); background: var(--teal-deep); }
.side-card__label { margin-bottom: 18px; color: var(--coral); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.side-card--dark .side-card__label { color: var(--lime); }
.side-card h3 { margin: 0; font-family: var(--display); font-size: 25px; font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.side-card p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.side-card--dark p { color: rgba(244,243,237,.56); }
.side-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.side-card li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 11px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.side-card li:last-child { padding-bottom: 0; border-bottom: 0; }
.side-card li strong { color: var(--ink); font-weight: 600; }
.side-card--dark li { border-color: rgba(244,243,237,.14); color: rgba(244,243,237,.5); }
.side-card--dark li strong { color: var(--paper); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.stat-card { min-height: 154px; padding: 22px; background: var(--paper-warm); border-radius: var(--radius-md); }
.stat-card:nth-child(2) { color: var(--paper); background: var(--teal); }
.stat-card:nth-child(3) { background: var(--orange); }
.stat-card__number { display: block; margin-bottom: 27px; font-family: var(--display); font-size: 48px; letter-spacing: -.1em; line-height: .8; }
.stat-card__label { display: block; max-width: 130px; font-family: var(--mono); font-size: 9px; letter-spacing: .06em; line-height: 1.4; text-transform: uppercase; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 45px; }
.value-card { min-height: 244px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.value-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-6px); }
.value-card__number { display: flex; align-items: center; justify-content: space-between; color: var(--coral); font-family: var(--mono); font-size: 10px; }
.value-card__number::after { width: 9px; height: 9px; content: ''; background: var(--lime); border-radius: 50%; }
.value-card h3 { margin: 50px 0 12px; font-family: var(--display); font-size: 27px; font-weight: 500; letter-spacing: -.065em; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.timeline { position: relative; display: grid; gap: 0; margin-top: 42px; }
.timeline::before { position: absolute; top: 8px; bottom: 8px; left: 93px; width: 1px; content: ''; background: var(--line); }
.timeline-row { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 34px; padding: 0 0 36px; }
.timeline-row:last-child { padding-bottom: 0; }
.timeline-row__date { color: var(--coral); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.timeline-row__date strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--display); font-size: 29px; font-weight: 500; letter-spacing: -.07em; line-height: .9; }
.timeline-row__body { position: relative; padding-left: 25px; }
.timeline-row__body::before { position: absolute; top: 2px; left: -5px; width: 10px; height: 10px; content: ''; background: var(--orange); border: 3px solid var(--paper-warm); border-radius: 50%; box-shadow: 0 0 0 1px var(--orange); }
.timeline-row h3 { margin: 0 0 8px; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.045em; }
.timeline-row p { max-width: 550px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.profile-card { display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: center; padding: 14px; background: var(--paper-warm); border-radius: var(--radius-md); }
.profile-card + .profile-card { margin-top: 12px; }
.profile-card__image { overflow: hidden; width: 130px; height: 146px; background: var(--paper-cool); border-radius: 11px; }
.profile-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.22); }
.profile-card h3 { margin: 0 0 5px; font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -.045em; }
.profile-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.profile-card__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; color: var(--coral); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.cycle-detail-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: center; }
.cycle-orbit { position: relative; width: min(100%, 395px); aspect-ratio: 1; margin: auto; }
.cycle-orbit::before, .cycle-orbit::after { position: absolute; content: ''; border: 1px solid rgba(213,243,106,.24); border-radius: 50%; }
.cycle-orbit::before { inset: 8%; }
.cycle-orbit::after { inset: 22%; border-color: rgba(244,243,237,.18); }
.cycle-orbit__center { position: absolute; top: 50%; left: 50%; display: grid; width: 42%; aspect-ratio: 1; color: var(--ink); background: var(--lime); border-radius: 50%; place-items: center; text-align: center; transform: translate(-50%,-50%); box-shadow: 0 0 0 16px rgba(213,243,106,.08), 0 0 0 1px rgba(213,243,106,.35); }
.cycle-orbit__center strong { display: block; font-family: var(--display); font-size: 31px; letter-spacing: -.08em; line-height: .9; }
.cycle-orbit__center span { display: block; margin-top: 7px; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.orbit-node { position: absolute; z-index: 2; display: grid; width: 78px; height: 78px; color: var(--paper); background: var(--teal); border: 1px solid rgba(244,243,237,.22); border-radius: 50%; place-items: center; text-align: center; transition: color .25s ease, background .25s ease, transform .25s ease; }
.orbit-node:hover, .orbit-node.is-active { color: var(--ink); background: var(--orange); transform: scale(1.08); }
.orbit-node strong { display: block; font-family: var(--display); font-size: 21px; line-height: .9; }
.orbit-node span { display: block; margin-top: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.orbit-node:nth-of-type(1) { top: 1%; left: 40%; }
.orbit-node:nth-of-type(2) { top: 26%; right: 2%; }
.orbit-node:nth-of-type(3) { right: 10%; bottom: 6%; }
.orbit-node:nth-of-type(4) { bottom: 6%; left: 10%; }
.orbit-node:nth-of-type(5) { top: 26%; left: 2%; }
.cycle-panel-list { display: grid; gap: 10px; }
.cycle-panel { display: grid; grid-template-columns: 48px 1fr 22px; gap: 16px; align-items: center; padding: 17px; color: var(--paper); background: rgba(244,243,237,.045); border: 1px solid rgba(244,243,237,.14); border-radius: 14px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.cycle-panel:hover, .cycle-panel.is-active { background: rgba(213,243,106,.11); border-color: rgba(213,243,106,.48); transform: translateX(5px); }
.cycle-panel__number { color: var(--lime); font-family: var(--mono); font-size: 11px; }
.cycle-panel h3 { margin: 0 0 4px; font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -.035em; }
.cycle-panel p { margin: 0; color: rgba(244,243,237,.5); font-size: 11px; line-height: 1.5; }
.cycle-panel__arrow { color: rgba(244,243,237,.45); transition: transform .2s ease; }
.cycle-panel:hover .cycle-panel__arrow { color: var(--lime); transform: translateX(3px); }

.image-frame { position: relative; overflow: hidden; min-height: 310px; background: var(--teal); border-radius: var(--radius-lg); }
.image-frame img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; filter: saturate(.78) contrast(1.03); transition: transform .65s ease, filter .65s ease; }
.image-frame:hover img { filter: saturate(1) contrast(1.03); transform: scale(1.05); }
.image-frame::after { position: absolute; inset: 0; pointer-events: none; content: ''; background: linear-gradient(140deg, rgba(18,61,59,.12), transparent 48%, rgba(11,32,32,.38)); }
.image-frame__label { position: absolute; z-index: 1; top: 18px; left: 18px; padding: 7px 9px; color: var(--ink); background: var(--lime); border-radius: 3px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.image-frame--tall { min-height: 470px; }
.image-frame--tall img { min-height: 470px; }

.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 14px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.filter-button:hover, .filter-button.is-active { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.search-inline { display: flex; align-items: center; gap: 9px; min-width: 240px; padding: 10px 13px; background: transparent; border: 1px solid var(--line); border-radius: 999px; }
.search-inline input { width: 100%; min-width: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 12px; }
.search-inline input::placeholder { color: var(--muted); }
.result-count { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.result-count strong { color: var(--ink); font-family: var(--display); font-size: 27px; font-weight: 500; letter-spacing: -.07em; }

.document-grid, .news-grid, .agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.document-card { display: flex; flex-direction: column; min-height: 260px; padding: 22px; background: var(--paper-warm); border: 1px solid transparent; border-radius: var(--radius-md); transition: background .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.document-card:hover { background: var(--white); border-color: var(--line); box-shadow: 0 14px 34px rgba(11,32,32,.09); transform: translateY(-5px); }
.filterable.is-hidden { display: none; }
.document-card__head { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.file-icon { display: grid; width: 36px; height: 36px; color: var(--ink); background: var(--orange); border-radius: 9px; place-items: center; }
.document-card:nth-child(3n+2) .file-icon { background: var(--lime); }
.document-card:nth-child(3n) .file-icon { color: var(--paper); background: var(--teal); }
.document-card__type { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.document-card h3 { max-width: 255px; margin: 31px 0 10px; font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
.document-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.document-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 20px; color: var(--muted); font-family: var(--mono); font-size: 9px; }
.document-card__footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 500; }
.document-card__footer a:hover { color: var(--coral); }
.doc-status { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.doc-status::before { width: 6px; height: 6px; content: ''; background: var(--lime); border-radius: 50%; }

.news-card { overflow: hidden; background: var(--paper-warm); border-radius: var(--radius-md); transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.news-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-5px); }
.news-card__media { overflow: hidden; height: 210px; background: var(--paper-cool); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .65s ease, filter .65s ease; }
.news-card:hover .news-card__media img { filter: saturate(1); transform: scale(1.06); }
.news-card__body { padding: 20px; }
.news-card__meta { display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.news-card__meta span:first-child { color: var(--coral); }
.news-card h3 { margin: 20px 0 13px; font-family: var(--display); font-size: 24px; font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.news-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--ink); font-size: 11px; font-weight: 700; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.news-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 390px; margin-bottom: 18px; overflow: hidden; color: var(--paper); background: var(--teal-deep); border-radius: var(--radius-lg); }
.news-feature__media { overflow: hidden; background: var(--teal); }
.news-feature__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74); transition: transform .65s ease; }
.news-feature:hover .news-feature__media img { transform: scale(1.05); }
.news-feature__body { display: flex; flex-direction: column; justify-content: space-between; padding: 31px; }
.news-feature__meta { color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.news-feature h2 { margin: 35px 0 14px; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.5rem); font-weight: 500; letter-spacing: -.07em; line-height: .94; }
.news-feature p { margin: 0; color: rgba(244,243,237,.6); font-size: 13px; line-height: 1.65; }
.news-feature__footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 25px; padding-top: 16px; border-top: 1px solid rgba(244,243,237,.15); color: rgba(244,243,237,.42); font-family: var(--mono); font-size: 9px; }
.circle-arrow { display: grid; width: 43px; height: 43px; flex: 0 0 auto; color: var(--ink); background: var(--lime); border: 0; border-radius: 50%; place-items: center; transition: transform .25s ease, background .25s ease; }
.circle-arrow:hover { background: var(--orange); transform: rotate(-45deg); }

.agenda-grid { grid-template-columns: repeat(2, 1fr); }
.agenda-card { display: grid; grid-template-columns: 98px 1fr; gap: 20px; min-height: 188px; padding: 18px; background: var(--paper-warm); border-radius: var(--radius-md); transition: background .25s ease, transform .25s ease; }
.agenda-card:hover { background: var(--white); transform: translateX(5px); }
.agenda-card__date { display: flex; flex-direction: column; justify-content: space-between; min-height: 150px; padding: 13px; color: var(--ink); background: var(--orange); border-radius: 11px; }
.agenda-card:nth-child(2n) .agenda-card__date { background: var(--lime); }
.agenda-card__date small { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.agenda-card__date strong { font-family: var(--display); font-size: 51px; font-weight: 500; letter-spacing: -.11em; line-height: .75; }
.agenda-card__body { display: flex; flex-direction: column; }
.agenda-card__type { color: var(--coral); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.agenda-card h3 { margin: 17px 0 9px; font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.agenda-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.agenda-card__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; padding-top: 17px; color: var(--muted); font-family: var(--mono); font-size: 9px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(265px, .65fr); gap: 70px; align-items: start; }
.article-header { max-width: 820px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 11px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.article-meta span:first-child { color: var(--coral); }
.article-title { margin: 22px 0 19px; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.25rem); font-weight: 500; letter-spacing: -.085em; line-height: .87; }
.article-deck { max-width: 710px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.article-cover { overflow: hidden; height: 455px; margin: 43px 0 39px; background: var(--teal); border-radius: var(--radius-lg); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.article-aside { position: sticky; top: 120px; }
.article-aside__card { padding: 22px; background: var(--paper-warm); border-radius: var(--radius-md); }
.article-aside__label { color: var(--coral); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.article-aside__card h3 { margin: 16px 0 18px; font-family: var(--display); font-size: 27px; font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.article-aside__card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.article-aside__card li { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 11px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 9px; }
.article-aside__card li:last-child { padding-bottom: 0; border-bottom: 0; }
.article-aside__card li strong { color: var(--ink); font-weight: 500; text-align: right; }
.share-row { display: flex; gap: 8px; margin-top: 17px; }
.share-button { display: grid; width: 35px; height: 35px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; place-items: center; font-family: var(--mono); font-size: 10px; transition: color .2s ease, background .2s ease; }
.share-button:hover { color: var(--ink); background: var(--lime); }
.reading-progress { position: fixed; z-index: 40; top: 0; left: 0; width: 0; height: 3px; background: var(--coral); transition: width .08s linear; }

.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--line); border-radius: 14px; }
.data-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 12px; }
.data-table th, .data-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { color: var(--muted); background: var(--paper-warm); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td { color: var(--muted); line-height: 1.5; }
.data-table td strong { color: var(--ink); font-weight: 600; }

.faq-list { display: grid; gap: 10px; max-width: 800px; margin-top: 32px; }
.faq-item { background: var(--paper-warm); border-radius: 13px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 19px; list-style: none; font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.04em; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--coral); font-family: var(--mono); font-size: 17px; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { max-width: 670px; margin: -2px 19px 18px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.contact-channels { display: grid; gap: 12px; margin-top: 33px; }
.contact-channel { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--paper-warm); border-radius: 13px; }
.contact-channel__icon { display: grid; width: 37px; height: 37px; color: var(--ink); background: var(--lime); border-radius: 9px; place-items: center; }
.contact-channel:nth-child(2) .contact-channel__icon { background: var(--orange); }
.contact-channel:nth-child(3) .contact-channel__icon { color: var(--paper); background: var(--teal); }
.contact-channel small { display: block; margin-bottom: 4px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.contact-channel strong { display: block; font-size: 12px; font-weight: 600; }
.form-card { padding: 28px; background: var(--ink-soft); border-radius: var(--radius-lg); }
.form-card h2 { margin: 0 0 8px; color: var(--paper); font-family: var(--display); font-size: 31px; font-weight: 500; letter-spacing: -.06em; }
.form-card > p { margin: 0 0 26px; color: rgba(244,243,237,.55); font-size: 12px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: rgba(244,243,237,.62); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; color: var(--paper); background: rgba(244,243,237,.07); border: 1px solid rgba(244,243,237,.18); border-radius: 9px; outline: none; font-size: 12px; transition: border-color .2s ease, background .2s ease; }
.field input, .field select { min-height: 44px; padding: 0 12px; }
.field textarea { min-height: 116px; padding: 12px; resize: vertical; }
.field select option { color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { background: rgba(244,243,237,.11); border-color: var(--lime); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,243,237,.32); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.form-note { max-width: 260px; color: rgba(244,243,237,.4); font-family: var(--mono); font-size: 9px; line-height: 1.45; }

.statement { position: relative; overflow: hidden; color: var(--ink); background: var(--lime); border-radius: 30px; }
.statement::before { position: absolute; right: -80px; bottom: -220px; width: 490px; height: 490px; content: ''; border: 1px solid rgba(11,32,32,.22); border-radius: 50%; box-shadow: 0 0 0 44px rgba(11,32,32,.035), 0 0 0 90px rgba(11,32,32,.035); }
.statement__inner { position: relative; display: grid; grid-template-columns: 1fr .7fr; gap: 65px; align-items: center; padding: 62px 68px; }
.statement h2 { max-width: 630px; margin: 0; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 5.6rem); font-weight: 500; letter-spacing: -.08em; line-height: .88; }
.statement h2 em { color: var(--coral); font-style: normal; }
.statement p { max-width: 310px; margin: 0 0 24px; font-size: 14px; line-height: 1.6; }

.site-footer { color: rgba(244,243,237,.72); background: var(--ink); }
.footer__inner { width: min(1340px, calc(100% - 48px)); margin: auto; padding: 66px 0 22px; }
.footer__top { display: grid; grid-template-columns: 1.1fr .9fr .9fr .8fr; gap: 45px; padding-bottom: 56px; }
.footer__brand .brand__name { color: var(--paper); }
.footer__brand .brand__descriptor { color: rgba(244,243,237,.42); }
.footer__blurb { max-width: 270px; margin: 25px 0 0; color: rgba(244,243,237,.48); font-size: 12px; line-height: 1.65; }
.footer__column h3 { margin: 4px 0 17px; color: var(--lime); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.footer__column a { display: block; width: fit-content; margin: 0 0 11px; color: rgba(244,243,237,.58); font-size: 12px; transition: color .2s ease, transform .2s ease; }
.footer__column a:hover { color: var(--paper); transform: translateX(4px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid rgba(244,243,237,.13); color: rgba(244,243,237,.34); font-family: var(--mono); font-size: 9px; }
.footer__bottom span:last-child { color: var(--orange); }

.search-layer { position: fixed; z-index: 70; inset: 0; display: grid; padding: 8vh 24px; background: rgba(11,32,32,.82); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; backdrop-filter: blur(16px); }
.search-layer.is-open { opacity: 1; visibility: visible; }
.search-panel { width: min(720px, 100%); margin: auto; padding: 28px; color: var(--paper); background: var(--teal-deep); border: 1px solid rgba(244,243,237,.18); border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.3); transform: translateY(15px); transition: transform .35s ease; }
.search-layer.is-open .search-panel { transform: translateY(0); }
.search-panel__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.search-panel__top h2 { margin: 0; font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -.05em; }
.close-button { display: grid; width: 32px; height: 32px; padding: 0; color: var(--paper); background: transparent; border: 1px solid rgba(244,243,237,.22); border-radius: 50%; place-items: center; }
.close-button:hover { color: var(--ink); background: var(--lime); }
.search-field { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: rgba(244,243,237,.08); border: 1px solid rgba(244,243,237,.22); border-radius: 12px; }
.search-field svg { color: var(--lime); flex: 0 0 auto; }
.search-field input { width: 100%; color: var(--paper); background: transparent; border: 0; outline: 0; font-size: 15px; }
.search-field input::placeholder { color: rgba(244,243,237,.4); }
.search-results { display: grid; gap: 7px; margin-top: 18px; }
.search-result { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(244,243,237,.12); font-size: 12px; }
.search-result small { color: var(--lime); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.search-result:hover strong { color: var(--orange); }
.search-empty { display: none; margin: 20px 0 0; color: rgba(244,243,237,.52); font-size: 12px; }
.toast { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; max-width: min(360px, calc(100vw - 44px)); padding: 14px 16px; color: var(--ink); background: var(--lime); border: 1px solid rgba(11,32,32,.18); border-radius: 12px; box-shadow: 0 18px 40px rgba(11,32,32,.18); font-size: 12px; opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.toast svg { flex: 0 0 auto; color: var(--teal); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(23px); transition: opacity .75s ease var(--delay,0s), transform .75s cubic-bezier(.2,.75,.2,1) var(--delay,0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 12px; }
  .nav-cta { padding: 0 14px; }
  .detail-hero__inner { gap: 45px; }
  .content-grid, .article-layout { gap: 45px; }
  .statement__inner { gap: 40px; padding: 55px 45px; }
  .footer__top { gap: 28px; }
}
@media (max-width: 820px) {
  .top-strip__right { display: none; }
  .nav-shell, .top-strip__inner, .detail-hero__inner, .hero-ribbon, .section, .section--wide, .footer__inner { width: min(100% - 36px, 680px); }
  .site-header { position: relative; }
  .nav-shell { height: 73px; }
  .menu-toggle { display: grid; }
  .menu-toggle .icon-close { display: none; }
  .menu-toggle.is-open .icon-menu { display: none; }
  .menu-toggle.is-open .icon-close { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 10px 18px 19px; background: rgba(244,243,237,.98); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(11,32,32,.08); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-actions .nav-cta { display: none; }
  .detail-hero__inner { grid-template-columns: 1fr; min-height: 0; padding: 60px 0 45px; }
  .hero-index { min-height: 160px; padding: 22px 0 0; border-top: 1px solid rgba(244,243,237,.2); border-left: 0; }
  .hero-index__number { font-size: 8rem; }
  .section { padding: 82px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head__copy { margin-top: 20px; }
  .content-grid, .content-grid--reverse, .article-layout, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .side-stack, .article-aside { position: static; }
  .stat-grid, .value-grid { gap: 11px; }
  .document-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-feature { min-height: 350px; }
  .news-feature__body { padding: 27px; }
  .agenda-grid { grid-template-columns: 1fr; }
  .article-cover { height: 380px; }
  .statement__inner { grid-template-columns: 1fr; gap: 30px; padding: 50px 35px; }
  .footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .top-strip__inner, .nav-shell, .detail-hero__inner, .hero-ribbon, .section, .section--wide, .footer__inner { width: calc(100% - 30px); }
  .brand__descriptor { font-size: 8px; }
  .brand__name { font-size: 16px; }
  .brand__mark { width: 40px; height: 40px; border-radius: 12px 12px 12px 3px; }
  .icon-button, .menu-toggle { width: 38px; height: 38px; }
  .detail-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .detail-hero__lead { font-size: 14px; }
  .hero-index__number { font-size: 6.5rem; }
  .section-title { font-size: 2.8rem; }
  .section-lead { font-size: 13px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 130px; }
  .stat-card__number { margin-bottom: 20px; }
  .value-grid, .document-grid, .news-grid { grid-template-columns: 1fr; }
  .filter-bar { display: block; }
  .search-inline { min-width: 0; margin-top: 13px; }
  .image-frame--tall, .image-frame--tall img { min-height: 340px; }
  .cycle-detail-grid { grid-template-columns: 1fr; gap: 45px; }
  .cycle-orbit { width: min(100%, 320px); }
  .orbit-node { width: 66px; height: 66px; }
  .orbit-node strong { font-size: 18px; }
  .orbit-node span { font-size: 7px; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__media { min-height: 220px; }
  .news-feature__body { min-height: 330px; }
  .agenda-card { grid-template-columns: 78px 1fr; gap: 13px; }
  .agenda-card__date { min-height: 145px; }
  .agenda-card__date strong { font-size: 42px; }
  .article-title { font-size: 3.2rem; }
  .article-cover { height: 280px; margin: 31px 0; }
  .prose h2 { font-size: 27px; }
  .prose blockquote { font-size: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button-coral { width: 100%; }
  .statement { border-radius: 22px; }
  .statement__inner { padding: 42px 23px; }
  .statement h2 { font-size: 3rem; }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .search-layer { padding: 20px 15px; }
  .search-panel { padding: 20px; }
}
    :root {
      --ink: #0b2020;
      --ink-soft: #183a39;
      --teal: #1b5753;
      --teal-deep: #123d3b;
      --paper: #f4f3ed;
      --paper-warm: #ebece4;
      --paper-cool: #dce8e1;
      --lime: #d5f36a;
      --orange: #ff9b68;
      --coral: #f06c56;
      --white: #ffffff;
      --muted: #6a7d77;
      --line: rgba(11, 32, 32, .14);
      --line-light: rgba(244, 243, 237, .18);
      --display: 'Bricolage Grotesque', sans-serif;
      --body: 'DM Sans', sans-serif;
      --mono: 'IBM Plex Mono', monospace;
      --shadow: 0 22px 70px rgba(11, 32, 32, .13);
      --radius-lg: 28px;
      --radius-md: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      position: fixed;
      z-index: 20;
      inset: 0;
      pointer-events: none;
      opacity: .055;
      content: '';
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }
    ::selection { color: var(--ink); background: var(--lime); }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    img { display: block; max-width: 100%; }
    svg { display: block; }
    .sr-only {
      position: absolute;
      overflow: hidden;
      width: 1px;
      height: 1px;
      padding: 0;
      border: 0;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }
    .skip-link {
      position: fixed;
      z-index: 100;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      color: var(--ink);
      background: var(--lime);
      border-radius: 9px;
      transform: translateY(-150%);
    }
    .skip-link:focus { transform: translateY(0); }

    .top-strip {
      position: relative;
      z-index: 10;
      min-height: 35px;
      color: var(--ink);
      background: var(--lime);
      border-bottom: 1px solid rgba(11, 32, 32, .16);
    }
    .top-strip__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      width: min(1340px, calc(100% - 48px));
      min-height: 35px;
      margin: auto;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .top-strip__right { display: flex; align-items: center; gap: 18px; }
    .live-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-right: 7px;
      background: var(--coral);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(240, 108, 86, .17);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(240, 108, 86, 0); } }

    .site-header {
      position: sticky;
      z-index: 30;
      top: 0;
      background: rgba(244, 243, 237, .88);
      border-bottom: 1px solid transparent;
      backdrop-filter: blur(18px);
      transition: border-color .25s ease, box-shadow .25s ease;
    }
    .site-header.is-scrolled {
      border-color: var(--line);
      box-shadow: 0 10px 35px rgba(11, 32, 32, .06);
    }
    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      width: min(1340px, calc(100% - 48px));
      height: 84px;
      margin: auto;
    }
    .brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .brand__mark {
      position: relative;
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      color: var(--lime);
      background: var(--ink);
      border-radius: 14px 14px 14px 4px;
      box-shadow: 4px 4px 0 var(--orange);
    }
    .brand__mark::before,
    .brand__mark::after {
      position: absolute;
      content: '';
      border: 1.5px solid var(--lime);
      border-radius: 50%;
      transform: rotate(-35deg);
    }
    .brand__mark::before { width: 22px; height: 29px; }
    .brand__mark::after { width: 30px; height: 15px; }
    .brand__mark span { position: relative; z-index: 1; font-family: var(--display); font-size: 19px; font-weight: 700; }
    .brand__text { display: grid; gap: 1px; }
    .brand__name { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.04em; }
    .brand__descriptor { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
    .main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
    .main-nav a {
      position: relative;
      color: #536863;
      font-size: 13px;
      font-weight: 600;
      transition: color .2s ease;
    }
    .main-nav a::after {
      position: absolute;
      right: 0;
      bottom: -9px;
      left: 0;
      height: 2px;
      content: '';
      background: var(--coral);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s ease;
    }
    .main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
    .main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
    .nav-actions { display: flex; align-items: center; gap: 9px; }
    .icon-button {
      display: grid;
      width: 42px;
      height: 42px;
      padding: 0;
      color: var(--ink);
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 50%;
      place-items: center;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }
    .icon-button:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
    .nav-cta, .button-dark, .button-light, .button-coral {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .01em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
    }
    .nav-cta { color: var(--paper); background: var(--ink); }
    .nav-cta:hover, .button-dark:hover { color: var(--ink); background: var(--lime); transform: translateY(-3px); box-shadow: 0 8px 0 var(--orange); }
    .button-dark { color: var(--paper); background: var(--ink); }
    .button-light { color: var(--ink); background: var(--paper); border-color: rgba(244, 243, 237, .35); }
    .button-light:hover { color: var(--ink); background: var(--lime); transform: translateY(-3px); }
    .button-coral { color: var(--ink); background: var(--orange); }
    .button-coral:hover { background: var(--lime); transform: translateY(-3px); }
    .button-arrow { width: 19px; height: 19px; }
    .menu-toggle { display: none; }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--paper);
      background: var(--ink);
      border-radius: 0 0 30px 30px;
      isolation: isolate;
    }
    .hero::before {
      position: absolute;
      z-index: -1;
      top: -250px;
      right: -160px;
      width: 760px;
      height: 760px;
      content: '';
      background: radial-gradient(circle, rgba(43, 125, 112, .5) 0, rgba(27, 87, 83, .18) 34%, transparent 69%);
      filter: blur(8px);
    }
    .hero::after {
      position: absolute;
      z-index: -1;
      inset: 0;
      content: '';
      opacity: .23;
      background-image: linear-gradient(rgba(244,243,237,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(244,243,237,.09) 1px, transparent 1px);
      background-size: 78px 78px;
      mask-image: linear-gradient(90deg, transparent, #000 15%, #000 80%, transparent);
    }
    .hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
      gap: clamp(42px, 8vw, 126px);
      align-items: center;
      width: min(1340px, calc(100% - 48px));
      min-height: 610px;
      margin: auto;
      padding: 75px 0 66px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--lime);
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .eyebrow::before { width: 28px; height: 1px; content: ''; background: currentColor; }
    .hero h1 {
      max-width: 720px;
      margin: 24px 0 25px;
      font-family: var(--display);
      font-size: clamp(3.3rem, 6.8vw, 6.9rem);
      font-weight: 500;
      letter-spacing: -.075em;
      line-height: .87;
    }
    .hero h1 em { color: var(--lime); font-style: normal; }
    .hero__lead { max-width: 510px; margin: 0; color: rgba(244,243,237,.68); font-size: 16px; line-height: 1.65; }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
    .hero__microcopy { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: rgba(244,243,237,.42); font-family: var(--mono); font-size: 10px; }
    .hero__microcopy span { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

    .pulse-panel {
      position: relative;
      min-height: 415px;
      padding: 24px;
      background: rgba(23, 63, 61, .84);
      border: 1px solid rgba(244,243,237,.18);
      border-radius: 26px;
      box-shadow: 18px 22px 0 rgba(213, 243, 106, .13), var(--shadow);
      transform: rotate(2.2deg);
      transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
    }
    .pulse-panel:hover { box-shadow: 9px 14px 0 rgba(213, 243, 106, .22), var(--shadow); transform: rotate(0deg) translateY(-6px); }
    .pulse-panel::before { position: absolute; top: 0; right: 35px; width: 1px; height: 100%; content: ''; background: rgba(244,243,237,.1); }
    .pulse-panel__top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
    .panel-label { color: rgba(244,243,237,.56); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
    .panel-code { color: var(--lime); font-family: var(--mono); font-size: 10px; }
    .pulse-panel__heading { max-width: 230px; margin: 39px 0 4px; font-family: var(--display); font-size: 27px; font-weight: 500; letter-spacing: -.05em; line-height: 1.03; }
    .pulse-panel__heading strong { color: var(--orange); font-weight: 500; }
    .pulse-panel__sub { margin: 0; color: rgba(244,243,237,.51); font-size: 12px; }
    .chart-wrap { position: relative; height: 145px; margin: 28px 0 16px; }
    .chart-wrap::before, .chart-wrap::after { position: absolute; right: 0; left: 0; height: 1px; content: ''; background: rgba(244,243,237,.1); }
    .chart-wrap::before { top: 27px; }
    .chart-wrap::after { bottom: 21px; }
    .chart { width: 100%; height: 100%; overflow: visible; }
    .chart .line { fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw-line 2.2s .8s ease forwards; }
    .chart .area { fill: url(#chartFill); opacity: .8; }
    .chart .point { fill: var(--orange); stroke: var(--ink-soft); stroke-width: 3; }
    @keyframes draw-line { to { stroke-dashoffset: 0; } }
    .chart-caption { display: flex; justify-content: space-between; color: rgba(244,243,237,.4); font-family: var(--mono); font-size: 9px; }
    .pulse-panel__footer { display: flex; align-items: end; justify-content: space-between; margin-top: 25px; padding-top: 14px; border-top: 1px solid rgba(244,243,237,.13); }
    .pulse-score { font-family: var(--display); font-size: 45px; letter-spacing: -.08em; line-height: .9; }
    .pulse-score small { margin-left: 4px; color: var(--lime); font-family: var(--mono); font-size: 12px; letter-spacing: 0; }
    .pulse-status { display: flex; align-items: center; gap: 7px; color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
    .pulse-status i { display: block; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }
    .hero__edge { display: flex; align-items: center; justify-content: space-between; width: min(1340px, calc(100% - 48px)); margin: auto; padding: 0 0 24px; color: rgba(244,243,237,.4); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
    .hero__edge-line { display: flex; align-items: center; gap: 12px; }
    .hero__edge-line::before { width: 45px; height: 1px; content: ''; background: var(--orange); }

    .ticker {
      overflow: hidden;
      color: var(--ink);
      background: var(--orange);
      border-bottom: 1px solid rgba(11,32,32,.18);
    }
    .ticker__track { display: flex; width: max-content; padding: 14px 0; animation: marquee 32s linear infinite; }
    .ticker__item { display: flex; align-items: center; gap: 24px; padding-right: 24px; font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.03em; white-space: nowrap; }
    .ticker__item::after { width: 7px; height: 7px; content: ''; background: var(--ink); border-radius: 50%; }
    @keyframes marquee { to { transform: translateX(-50%); } }

    .section { width: min(1200px, calc(100% - 48px)); margin: auto; padding: 120px 0; }
    .section--wide { width: min(1340px, calc(100% - 48px)); }
    .section__kicker { margin: 0 0 13px; color: var(--coral); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
    .section__heading { max-width: 650px; margin: 0; font-family: var(--display); font-size: clamp(2.55rem, 4.4vw, 4.9rem); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
    .section__heading span { color: var(--teal); }
    .section__intro { display: grid; grid-template-columns: 1fr .66fr; gap: 80px; align-items: end; margin-bottom: 48px; }
    .section__intro-copy { max-width: 410px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.7; }
    .section__intro-copy strong { color: var(--ink); font-weight: 600; }
    .text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--ink); font-size: 12px; font-weight: 700; }
    .text-link svg { transition: transform .2s ease; }
    .text-link:hover svg { transform: translateX(4px); }

    .news-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 20px; }
    .feature-story {
      position: relative;
      display: grid;
      grid-template-columns: .94fr 1.06fr;
      min-height: 396px;
      overflow: hidden;
      color: var(--paper);
      background: var(--teal-deep);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }
    .feature-story__media { position: relative; overflow: hidden; min-height: 396px; background: #386c61; }
    .feature-story__media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(130deg, rgba(18,61,59,.2), transparent 56%, rgba(11,32,32,.45)); }
    .feature-story__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
    .feature-story:hover .feature-story__media img { filter: saturate(1) contrast(1.04); transform: scale(1.07); }
    .feature-story__media-label { position: absolute; z-index: 1; top: 20px; left: 20px; padding: 7px 9px; color: var(--ink); background: var(--lime); border-radius: 3px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
    .feature-story__content { display: flex; flex-direction: column; justify-content: space-between; padding: 30px; }
    .story-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: rgba(244,243,237,.54); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
    .story-meta__tag { color: var(--lime); }
    .feature-story h3 { max-width: 480px; margin: 36px 0 20px; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.065em; line-height: .98; }
    .feature-story__content p { max-width: 430px; margin: 0; color: rgba(244,243,237,.63); font-size: 13px; line-height: 1.65; }
    .story-action { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(244,243,237,.15); }
    .story-action small { color: rgba(244,243,237,.4); font-family: var(--mono); font-size: 9px; }
    .circle-arrow { display: grid; width: 42px; height: 42px; flex: 0 0 auto; color: var(--ink); background: var(--lime); border-radius: 50%; place-items: center; transition: transform .25s ease, background .25s ease; }
    .feature-story:hover .circle-arrow { background: var(--orange); transform: rotate(-45deg); }
    .story-stack { display: grid; gap: 20px; }
    .story-card { display: grid; grid-template-columns: 116px 1fr; gap: 18px; min-height: 188px; padding: 14px; background: var(--paper-warm); border: 1px solid transparent; border-radius: var(--radius-md); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
    .story-card:hover { background: var(--white); border-color: var(--line); transform: translateX(5px); }
    .story-card__media { overflow: hidden; min-height: 158px; background: var(--paper-cool); border-radius: 11px; }
    .story-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: transform .5s ease; }
    .story-card:hover .story-card__media img { transform: scale(1.08); }
    .story-card__body { display: flex; flex-direction: column; padding: 3px 4px 3px 0; }
    .story-card .story-meta { color: var(--muted); font-size: 8px; }
    .story-card h3 { margin: 17px 0 0; font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
    .story-card .text-link { margin-top: auto; font-size: 11px; }

    .mutu-section { position: relative; overflow: hidden; color: var(--paper); background: var(--ink-soft); }
    .mutu-section::before { position: absolute; top: 0; right: 5%; width: 500px; height: 500px; content: ''; border: 1px solid rgba(213,243,106,.14); border-radius: 50%; transform: translateY(-48%); }
    .mutu-section::after { position: absolute; right: 18%; bottom: -270px; width: 600px; height: 600px; content: ''; border: 1px solid rgba(244,243,237,.09); border-radius: 50%; }
    .mutu-section .section { position: relative; z-index: 1; }
    .mutu-section .section__kicker { color: var(--lime); }
    .mutu-section .section__heading span { color: var(--orange); }
    .mutu-section .section__intro-copy { color: rgba(244,243,237,.55); }
    .mutu-section .section__intro-copy strong { color: var(--paper); }
    .mutu-section .text-link { color: var(--paper); }
    .cycle-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; }
    .cycle-orbit { position: relative; width: min(100%, 395px); aspect-ratio: 1; margin: auto; }
    .cycle-orbit::before, .cycle-orbit::after { position: absolute; content: ''; border: 1px solid rgba(213,243,106,.24); border-radius: 50%; }
    .cycle-orbit::before { inset: 8%; }
    .cycle-orbit::after { inset: 22%; border-color: rgba(244,243,237,.18); }
    .cycle-orbit__center { position: absolute; top: 50%; left: 50%; display: grid; width: 42%; aspect-ratio: 1; color: var(--ink); background: var(--lime); border-radius: 50%; place-items: center; text-align: center; transform: translate(-50%, -50%); box-shadow: 0 0 0 16px rgba(213,243,106,.08), 0 0 0 1px rgba(213,243,106,.35); }
    .cycle-orbit__center strong { display: block; font-family: var(--display); font-size: 31px; letter-spacing: -.08em; line-height: .9; }
    .cycle-orbit__center span { display: block; margin-top: 7px; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
    .orbit-node { position: absolute; z-index: 2; display: grid; width: 78px; height: 78px; color: var(--paper); background: var(--teal); border: 1px solid rgba(244,243,237,.22); border-radius: 50%; place-items: center; text-align: center; transition: color .25s ease, background .25s ease, transform .25s ease; }
    .orbit-node:hover, .orbit-node.is-active { color: var(--ink); background: var(--orange); transform: scale(1.08); }
    .orbit-node strong { display: block; font-family: var(--display); font-size: 21px; line-height: .9; }
    .orbit-node span { display: block; margin-top: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
    .orbit-node:nth-of-type(1) { top: 1%; left: 40%; }
    .orbit-node:nth-of-type(2) { top: 26%; right: 2%; }
    .orbit-node:nth-of-type(3) { right: 10%; bottom: 6%; }
    .orbit-node:nth-of-type(4) { bottom: 6%; left: 10%; }
    .orbit-node:nth-of-type(5) { top: 26%; left: 2%; }
    .cycle-details { display: grid; gap: 10px; }
    .cycle-step { display: grid; grid-template-columns: 49px 1fr 24px; gap: 17px; align-items: center; padding: 17px 18px; color: var(--paper); background: rgba(244,243,237,.045); border: 1px solid rgba(244,243,237,.12); border-radius: 14px; text-align: left; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
    .cycle-step:hover, .cycle-step.is-active { background: rgba(213,243,106,.11); border-color: rgba(213,243,106,.48); transform: translateX(5px); }
    .cycle-step__number { color: var(--lime); font-family: var(--mono); font-size: 11px; }
    .cycle-step h3 { margin: 0 0 4px; font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -.035em; }
    .cycle-step p { margin: 0; color: rgba(244,243,237,.49); font-size: 11px; line-height: 1.45; }
    .cycle-step__arrow { color: rgba(244,243,237,.45); transition: color .25s ease, transform .25s ease; }
    .cycle-step:hover .cycle-step__arrow, .cycle-step.is-active .cycle-step__arrow { color: var(--lime); transform: translateX(3px); }
    .cycle-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: rgba(244,243,237,.42); font-family: var(--mono); font-size: 9px; line-height: 1.5; }
    .cycle-note b { color: var(--orange); font-weight: 500; }

    .library-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
    .library-header .section__heading { max-width: 560px; }
    .library-count { display: flex; align-items: baseline; gap: 8px; padding-bottom: 6px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
    .library-count strong { color: var(--ink); font-family: var(--display); font-size: 38px; font-weight: 500; letter-spacing: -.08em; }
    .filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .filter-button { padding: 9px 14px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
    .filter-button:hover, .filter-button.is-active { color: var(--ink); background: var(--lime); border-color: var(--lime); }
    .document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .document-card { position: relative; display: flex; flex-direction: column; min-height: 242px; padding: 22px; background: var(--paper-warm); border: 1px solid transparent; border-radius: var(--radius-md); transition: background .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
    .document-card:hover { background: var(--white); border-color: var(--line); box-shadow: 0 14px 34px rgba(11,32,32,.09); transform: translateY(-5px); }
    .document-card.is-hidden { display: none; }
    .document-card__head { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
    .file-icon { display: grid; width: 36px; height: 36px; color: var(--ink); background: var(--orange); border-radius: 9px; place-items: center; }
    .document-card:nth-child(3n+2) .file-icon { background: var(--lime); }
    .document-card:nth-child(3n) .file-icon { color: var(--paper); background: var(--teal); }
    .document-card__type { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
    .document-card h3 { max-width: 230px; margin: 30px 0 11px; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.05em; line-height: 1.03; }
    .document-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
    .document-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 20px; color: var(--muted); font-family: var(--mono); font-size: 9px; }
    .document-card__footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 500; }
    .document-card__footer a:hover { color: var(--coral); }

    .events-section { background: var(--paper-warm); border-top: 1px solid rgba(11,32,32,.06); border-bottom: 1px solid rgba(11,32,32,.06); }
    .events-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 105px; align-items: start; }
    .events-intro { position: sticky; top: 130px; }
    .events-intro p { max-width: 320px; margin: 23px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
    .events-list { display: grid; }
    .event-row { display: grid; grid-template-columns: 88px 1fr 25px; gap: 20px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); transition: padding .25s ease; }
    .event-row:last-child { border-bottom: 1px solid var(--line); }
    .event-row:hover { padding-right: 8px; padding-left: 8px; background: rgba(255,255,255,.32); }
    .event-date { color: var(--coral); font-family: var(--mono); font-size: 10px; line-height: 1.4; text-transform: uppercase; }
    .event-date strong { display: block; color: var(--ink); font-family: var(--display); font-size: 25px; font-weight: 500; letter-spacing: -.07em; line-height: .95; }
    .event-row h3 { margin: 0 0 5px; font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.04em; }
    .event-row p { margin: 0; color: var(--muted); font-size: 11px; }
    .event-arrow { display: grid; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; place-items: center; transition: color .2s ease, background .2s ease, transform .2s ease; }
    .event-row:hover .event-arrow { color: var(--paper); background: var(--ink); transform: rotate(-45deg); }

    .statement {
      position: relative;
      overflow: hidden;
      color: var(--ink);
      background: var(--lime);
      border-radius: 30px;
    }
    .statement::before { position: absolute; right: -80px; bottom: -220px; width: 490px; height: 490px; content: ''; border: 1px solid rgba(11,32,32,.22); border-radius: 50%; box-shadow: 0 0 0 44px rgba(11,32,32,.035), 0 0 0 90px rgba(11,32,32,.035); }
    .statement__inner { position: relative; display: grid; grid-template-columns: 1fr .74fr; gap: 70px; align-items: center; padding: 68px 70px; }
    .statement h2 { max-width: 650px; margin: 0; font-family: var(--display); font-size: clamp(2.6rem, 5vw, 5.8rem); font-weight: 500; letter-spacing: -.08em; line-height: .88; }
    .statement h2 em { color: var(--coral); font-style: normal; }
    .statement__aside p { max-width: 310px; margin: 0 0 24px; font-size: 14px; line-height: 1.6; }
    .statement .button-dark:hover { box-shadow: 0 8px 0 var(--coral); }

    .site-footer { color: rgba(244,243,237,.72); background: var(--ink); }
    .footer__inner { width: min(1340px, calc(100% - 48px)); margin: auto; padding: 66px 0 22px; }
    .footer__top { display: grid; grid-template-columns: 1.1fr .9fr .9fr .8fr; gap: 45px; padding-bottom: 56px; }
    .footer__brand .brand__descriptor { color: rgba(244,243,237,.42); }
    .footer__brand .brand__name { color: var(--paper); }
    .footer__blurb { max-width: 260px; margin: 25px 0 0; color: rgba(244,243,237,.48); font-size: 12px; line-height: 1.65; }
    .footer__column h3 { margin: 4px 0 17px; color: var(--lime); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
    .footer__column a { display: block; width: fit-content; margin: 0 0 11px; color: rgba(244,243,237,.58); font-size: 12px; transition: color .2s ease, transform .2s ease; }
    .footer__column a:hover { color: var(--paper); transform: translateX(4px); }
    .footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid rgba(244,243,237,.13); color: rgba(244,243,237,.34); font-family: var(--mono); font-size: 9px; }
    .footer__bottom span:last-child { color: var(--orange); }

    .search-layer { position: fixed; z-index: 70; inset: 0; display: grid; padding: 8vh 24px; background: rgba(11,32,32,.82); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; backdrop-filter: blur(16px); }
    .search-layer.is-open { opacity: 1; visibility: visible; }
    .search-panel { width: min(720px, 100%); margin: auto; padding: 28px; color: var(--paper); background: var(--teal-deep); border: 1px solid rgba(244,243,237,.18); border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.3); transform: translateY(15px); transition: transform .35s ease; }
    .search-layer.is-open .search-panel { transform: translateY(0); }
    .search-panel__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
    .search-panel__top h2 { margin: 0; font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -.05em; }
    .close-button { display: grid; width: 32px; height: 32px; padding: 0; color: var(--paper); background: transparent; border: 1px solid rgba(244,243,237,.22); border-radius: 50%; place-items: center; }
    .close-button:hover { color: var(--ink); background: var(--lime); }
    .search-field { display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: rgba(244,243,237,.08); border: 1px solid rgba(244,243,237,.22); border-radius: 12px; }
    .search-field svg { color: var(--lime); flex: 0 0 auto; }
    .search-field input { width: 100%; padding: 0; color: var(--paper); background: transparent; border: 0; outline: 0; font-size: 15px; }
    .search-field input::placeholder { color: rgba(244,243,237,.4); }
    .search-results { display: grid; gap: 7px; margin-top: 18px; }
    .search-result { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(244,243,237,.12); font-size: 12px; }
    .search-result small { color: var(--lime); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
    .search-result:hover strong { color: var(--orange); }
    .search-empty { display: none; margin: 20px 0 0; color: rgba(244,243,237,.52); font-size: 12px; }

    .toast { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; max-width: min(360px, calc(100vw - 44px)); padding: 14px 16px; color: var(--ink); background: var(--lime); border: 1px solid rgba(11,32,32,.18); border-radius: 12px; box-shadow: 0 18px 40px rgba(11,32,32,.18); font-size: 12px; opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
    .toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .toast svg { flex: 0 0 auto; color: var(--teal); }

    dialog { width: min(560px, calc(100% - 34px)); padding: 0; color: var(--paper); background: var(--ink-soft); border: 1px solid rgba(244,243,237,.2); border-radius: 20px; box-shadow: 0 28px 100px rgba(0,0,0,.35); }
    dialog::backdrop { background: rgba(11,32,32,.7); backdrop-filter: blur(7px); }
    .dialog__inner { padding: 29px; }
    .dialog__meta { color: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
    .dialog h2 { max-width: 480px; margin: 15px 0 13px; font-family: var(--display); font-size: 35px; font-weight: 500; letter-spacing: -.065em; line-height: .96; }
    .dialog p { color: rgba(244,243,237,.63); font-size: 13px; line-height: 1.7; }
    .dialog__footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 26px; padding-top: 17px; border-top: 1px solid rgba(244,243,237,.14); }

    .reveal { opacity: 1; transform: none; }
    .js .reveal { opacity: 0; transform: translateY(23px); transition: opacity .75s ease var(--delay, 0s), transform .75s cubic-bezier(.2,.75,.2,1) var(--delay, 0s); }
    .js .reveal.is-visible { opacity: 1; transform: none; }
    .float-in { animation: float-in .9s cubic-bezier(.2,.75,.2,1) both; }
    @keyframes float-in { from { opacity: 0; transform: translateY(17px); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .js .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1040px) {
      .main-nav { gap: 17px; }
      .main-nav a { font-size: 12px; }
      .nav-cta { padding: 0 14px; }
      .hero__inner { gap: 48px; }
      .section__intro { gap: 45px; }
      .events-layout { gap: 55px; }
      .statement__inner { gap: 44px; padding: 56px 45px; }
      .footer__top { gap: 28px; }
    }
    @media (max-width: 820px) {
      .top-strip__right { display: none; }
      .nav-shell, .top-strip__inner, .hero__inner, .hero__edge, .section, .section--wide, .footer__inner { width: min(100% - 36px, 680px); }
      .site-header { position: relative; }
      .nav-shell { height: 73px; }
      .menu-toggle { display: grid; width: 42px; height: 42px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; place-items: center; }
      .menu-toggle .icon-close { display: none; }
      .menu-toggle.is-open .icon-menu { display: none; }
      .menu-toggle.is-open .icon-close { display: block; }
      .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 10px 18px 19px; background: rgba(244,243,237,.98); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(11,32,32,.08); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
      .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
      .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
      .main-nav a::after { display: none; }
      .nav-actions { margin-left: auto; }
      .nav-actions .nav-cta { display: none; }
      .hero__inner { grid-template-columns: 1fr; min-height: 0; padding: 67px 0 45px; }
      .hero h1 { max-width: 620px; font-size: clamp(3.1rem, 11vw, 5.8rem); }
      .pulse-panel { width: min(100%, 520px); margin: 12px auto 0; }
      .hero__edge { padding-bottom: 20px; }
      .section { padding: 84px 0; }
      .section__intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
      .section__intro-copy { max-width: 520px; }
      .news-layout { grid-template-columns: 1fr; }
      .feature-story { min-height: 350px; }
      .feature-story__media { min-height: 350px; }
      .cycle-layout { grid-template-columns: 1fr; gap: 54px; }
      .cycle-orbit { max-width: 370px; }
      .library-header { align-items: start; }
      .document-grid { grid-template-columns: repeat(2, 1fr); }
      .events-layout { grid-template-columns: 1fr; gap: 40px; }
      .events-intro { position: static; }
      .statement__inner { grid-template-columns: 1fr; gap: 30px; padding: 50px 35px; }
      .footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
      .footer__brand { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .top-strip__inner, .nav-shell, .hero__inner, .hero__edge, .section, .section--wide, .footer__inner { width: calc(100% - 30px); }
      .brand__descriptor { font-size: 8px; }
      .brand__name { font-size: 16px; }
      .brand__mark { width: 40px; height: 40px; border-radius: 12px 12px 12px 3px; }
      .nav-actions { gap: 6px; }
      .icon-button, .menu-toggle { width: 38px; height: 38px; }
      .hero__inner { padding-top: 55px; }
      .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
      .hero__lead { font-size: 14px; }
      .hero__actions { align-items: stretch; flex-direction: column; width: 100%; }
      .hero__actions a { width: 100%; }
      .hero__microcopy { font-size: 8px; }
      .pulse-panel { min-height: 380px; padding: 20px; transform: none; }
      .pulse-panel__heading { margin-top: 32px; font-size: 25px; }
      .section { padding: 73px 0; }
      .section__heading { font-size: 2.7rem; }
      .feature-story { grid-template-columns: 1fr; }
      .feature-story__media { min-height: 220px; max-height: 250px; }
      .feature-story__content { min-height: 340px; padding: 25px; }
      .feature-story h3 { margin-top: 30px; font-size: 2.15rem; }
      .story-card { grid-template-columns: 90px 1fr; gap: 13px; }
      .story-card__media { min-height: 143px; }
      .story-card h3 { font-size: 18px; }
      .cycle-orbit { width: min(100%, 320px); }
      .orbit-node { width: 66px; height: 66px; }
      .orbit-node strong { font-size: 18px; }
      .orbit-node span { font-size: 7px; }
      .cycle-step { grid-template-columns: 36px 1fr 18px; gap: 11px; padding: 14px 12px; }
      .cycle-step h3 { font-size: 17px; }
      .cycle-step p { font-size: 10px; }
      .library-header { display: block; }
      .library-count { margin-top: 20px; }
      .document-grid { grid-template-columns: 1fr; }
      .document-card { min-height: 220px; }
      .event-row { grid-template-columns: 65px 1fr 22px; gap: 12px; padding: 20px 0; }
      .event-row h3 { font-size: 17px; }
      .event-row p { font-size: 10px; line-height: 1.45; }
      .event-date strong { font-size: 21px; }
      .statement { border-radius: 22px; }
      .statement__inner { padding: 42px 23px; }
      .statement h2 { font-size: 3rem; }
      .footer__top { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
      .footer__brand { grid-column: 1 / -1; }
      .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
      .search-layer { padding: 20px 15px; }
      .search-panel { padding: 20px; }
    }

.agenda-card { display: flex; flex-direction: column; gap: 0; padding: 0; min-height: 0; overflow: hidden; }
.agenda-card__media { height: 185px; overflow: hidden; background: var(--paper-cool); }
.agenda-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.agenda-card:hover .agenda-card__media img { transform: scale(1.05); }
.agenda-card__inner { display: grid; grid-template-columns: 98px 1fr; gap: 20px; padding: 18px; }
@media (max-width: 560px) {
  .agenda-card__media { height: 150px; }
  .agenda-card__inner { grid-template-columns: 78px 1fr; gap: 13px; padding: 14px; }
}
