/* Entranze Observatory — vanilla CSS, eoz- prefix, no Tailwind */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --eoz-navy:    #1a2744;
  --eoz-navy-2:  #2e4066;
  --eoz-navy-3:  #4d6189;
  --eoz-navy-4:  #7389ae;
  --eoz-navy-5:  #d4e6f1;
  --eoz-forest:  #4a7c59;
  --eoz-paper:   #fafaf7;
  --eoz-bg:      #f8fafc;
  --eoz-sl100:   #f1f5f9;
  --eoz-sl200:   #e2e8f0;
  --eoz-sl400:   #94a3b8;
  --eoz-sl500:   #64748b;
  --eoz-sl600:   #475569;
  --eoz-serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --eoz-sans:    'Outfit', system-ui, -apple-system, sans-serif;
  --eoz-nav-h:   80px;
  --eoz-max:     1280px;
  --eoz-gutter:  2rem;
  --eoz-radius:  0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--eoz-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--eoz-navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--eoz-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--eoz-forest); outline-offset: 2px; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.eoz-container {
  max-width: var(--eoz-max);
  margin: 0 auto;
  padding: 0 var(--eoz-gutter);
}

/* ============================================================
   HEADER
   ============================================================ */
.eoz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--eoz-sl200);
}

.eoz-header-inner {
  display: flex;
  align-items: center;
  height: var(--eoz-nav-h);
  gap: 2rem;
}

.eoz-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.eoz-logo-wordmark {
  font-family: var(--eoz-serif);
  font-size: 1.375rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-navy);
}

.eoz-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

@media (min-width: 900px) { .eoz-nav { display: flex; } }

.eoz-nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl500);
  transition: color 0.15s;
}
.eoz-nav-link:hover,
.eoz-nav-link--active { color: var(--eoz-navy); }

.eoz-btn-portal {
  display: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--eoz-navy);
  padding: 0.5rem 1.25rem;
  color: var(--eoz-navy);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.eoz-btn-portal:hover { background: var(--eoz-navy); color: #fff; }
@media (min-width: 1100px) { .eoz-btn-portal { display: block; } }

.eoz-nav-toggle {
  margin-left: auto;
  color: var(--eoz-navy);
  padding: 0.25rem;
}
@media (min-width: 900px) { .eoz-nav-toggle { display: none; } }

.eoz-nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--eoz-sl200);
}
.eoz-nav-mobile.eoz-open { display: flex; }

.eoz-nav-mobile-link {
  padding: 1rem var(--eoz-gutter);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--eoz-sl100);
  color: var(--eoz-sl600);
}
.eoz-nav-mobile-link:hover { color: var(--eoz-navy); background: var(--eoz-sl100); }

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */
.eoz-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.eoz-h2-light {
  font-family: var(--eoz-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #fff;
}

.eoz-h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); margin-bottom: 0.75rem; }
.eoz-h4 { font-size: 1.375rem; }

.eoz-section-sub {
  font-size: 1.0625rem;
  color: var(--eoz-sl500);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

.eoz-section-header { margin-bottom: 3.5rem; }
.eoz-section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.eoz-label-forest {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  display: block;
  margin-bottom: 0.5rem;
}

.eoz-label-muted {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
}

.eoz-date-small {
  font-size: 0.75rem;
  color: var(--eoz-sl400);
  font-weight: 500;
}

.eoz-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}
.eoz-tag--navy { background: var(--eoz-navy); color: #fff; }
.eoz-tag--forest { background: var(--eoz-forest); color: #fff; }

.eoz-format-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--eoz-sl100);
  padding: 0.2rem 0.5rem;
}

.eoz-text-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eoz-navy);
  border-bottom: 1px solid var(--eoz-navy);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.eoz-text-link:hover { color: var(--eoz-forest); border-color: var(--eoz-forest); }

.eoz-source-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  font-style: italic;
  margin-top: 2rem;
}

/* Buttons */
.eoz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--eoz-navy);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.15s;
  font-family: var(--eoz-sans);
}
.eoz-btn-primary:hover { transform: translateY(-2px); }

.eoz-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--eoz-navy);
  color: var(--eoz-navy);
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.eoz-btn-outline:hover { background: var(--eoz-navy); color: #fff; }

.eoz-btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--eoz-sl200);
  color: var(--eoz-navy);
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s;
  background: none;
}
.eoz-btn-outline-sm:hover { background: var(--eoz-sl100); }

/* Divider */
.eoz-divider-h { flex: 1; height: 1px; background: var(--eoz-sl200); }

/* ============================================================
   HERO
   ============================================================ */
.eoz-hero {
  padding: 6rem 0;
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-hero-pattern {
  background-image: radial-gradient(var(--eoz-sl200) 1px, transparent 1px);
  background-size: 24px 24px;
}

.eoz-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .eoz-hero-grid { grid-template-columns: 7fr 5fr; align-items: start; }
}

.eoz-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.eoz-hero-h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--eoz-navy);
  margin-bottom: 2rem;
}

.eoz-hero-sub {
  font-size: 1.375rem;
  color: var(--eoz-sl600);
  font-weight: 300;
  font-style: italic;
  max-width: 38rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.eoz-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.eoz-hero-doi {
  display: flex;
  flex-direction: column;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
}

.eoz-doi-val { color: var(--eoz-navy); margin-top: 0.2rem; }

/* Country widget */
.eoz-widget {
  background: #fff;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--eoz-sl100);
  position: relative;
}

.eoz-widget-corner {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  border-top: 2px solid var(--eoz-forest);
  border-left: 2px solid var(--eoz-forest);
}

.eoz-widget-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  font-family: var(--eoz-serif);
}

.eoz-field-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  margin-bottom: 0.75rem;
}

.eoz-select {
  width: 100%;
  background: var(--eoz-sl100);
  border: none;
  border-bottom: 2px solid var(--eoz-sl200);
  color: var(--eoz-navy);
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--eoz-sans);
  padding: 0.75rem 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  margin-bottom: 1.75rem;
  transition: border-color 0.15s;
}
.eoz-select:focus { border-color: var(--eoz-navy); }

.eoz-widget-metrics { display: flex; flex-direction: column; gap: 1.5rem; }

.eoz-metric-row { display: flex; flex-direction: column; gap: 0.5rem; }

.eoz-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.eoz-metric-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
}

.eoz-metric-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--eoz-navy);
}

.eoz-bar-track {
  width: 100%;
  height: 6px;
  background: var(--eoz-sl100);
}

.eoz-bar-fill {
  height: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.eoz-bar-navy   { background: var(--eoz-navy); }
.eoz-bar-forest { background: var(--eoz-forest); }

.eoz-trend-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.eoz-trend-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  font-style: italic;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.eoz-stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) { .eoz-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.eoz-stat-tile {
  padding: 2.5rem 2rem;
}
.eoz-stat-tile--border { border-left: 1px solid var(--eoz-sl100); }

.eoz-stat-icon { margin-bottom: 1rem; }

.eoz-stat-number {
  font-family: var(--eoz-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--eoz-navy);
  display: inline;
  line-height: 1;
}
.eoz-stat-forest { color: var(--eoz-forest) !important; }

.eoz-stat-suffix {
  font-family: var(--eoz-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--eoz-navy);
  display: inline;
}

.eoz-stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl500);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ============================================================
   EU MAP
   ============================================================ */
.eoz-map-section {
  padding: 6rem 0;
  background: var(--eoz-paper);
}

.eoz-map-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eoz-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
}

.eoz-legend-swatch { width: 12px; height: 12px; }

.eoz-map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .eoz-map-layout { grid-template-columns: 2fr 1fr; }
}

.eoz-map-canvas-wrap {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.eoz-map-svg { width: 100%; height: 100%; }

.eoz-map-country {
  transition: filter 0.15s;
  cursor: pointer;
}
.eoz-map-country:hover,
.eoz-map-active { filter: brightness(1.25); }

.eoz-map-table-wrap {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
  display: flex;
  flex-direction: column;
}

.eoz-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--eoz-sl100);
  border-bottom: 1px solid var(--eoz-sl200);
}

.eoz-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.eoz-data-table thead tr {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-data-table th,
.eoz-data-table td { padding: 0.75rem 1rem; }

.eoz-data-table tbody tr {
  border-bottom: 1px solid var(--eoz-sl100);
  transition: background 0.1s;
}
.eoz-data-table tbody tr:hover { background: var(--eoz-sl100); }

.eoz-delta-pos   { color: var(--eoz-forest); font-weight: 500; }
.eoz-delta-neg   { color: #ef4444; font-weight: 500; }
.eoz-delta-neutral { color: var(--eoz-sl400); }

.eoz-table-footer { padding: 1rem; margin-top: auto; }

/* ============================================================
   INFOGRAPHIC
   ============================================================ */
.eoz-infographic-section {
  padding: 6rem 0;
  background: #fff;
}

.eoz-infographic-legend {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-inf-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eoz-inf-swatch { width: 16px; height: 16px; flex-shrink: 0; }

.eoz-infographic-bars { display: flex; flex-direction: column; gap: 2.5rem; }

.eoz-infographic-row { }

.eoz-infographic-row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eoz-stacked-bar {
  display: flex;
  height: 3rem;
  width: 100%;
}

.eoz-band {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  transition: flex 0.3s;
}
.eoz-band:last-child { color: var(--eoz-navy); }

/* ============================================================
   TOOLS (TABBED)
   ============================================================ */
.eoz-tools-section {
  padding: 6rem 0;
  background: var(--eoz-paper);
  border-top: 1px solid var(--eoz-sl100);
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-tools-panel {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
}

.eoz-tools-tabs {
  display: flex;
  border-bottom: 1px solid var(--eoz-sl100);
  background: var(--eoz-sl100);
  overflow-x: auto;
}

.eoz-tool-tab {
  padding: 1.125rem 1.75rem;
  border-right: 1px solid var(--eoz-sl200);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl500);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  background: none;
}
.eoz-tool-tab:last-child { border-right: none; }
.eoz-tool-tab:hover { background: #fff; color: var(--eoz-navy); }
.eoz-tool-tab--active {
  background: #fff;
  color: var(--eoz-navy);
  font-weight: 600;
}
.eoz-tool-tab--forest { color: var(--eoz-forest); }
.eoz-tool-tab--forest.eoz-tool-tab--active { color: var(--eoz-forest); }

.eoz-tool-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem;
  min-height: 380px;
  align-items: center;
}
@media (min-width: 768px) {
  .eoz-tool-content { grid-template-columns: 5fr 7fr; }
}

.eoz-tool-desc {
  color: var(--eoz-sl500);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.eoz-tool-fields { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.eoz-btn-calc {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Gauge */
.eoz-tool-result-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eoz-gauge-wrap { position: relative; margin-bottom: 1.5rem; }
.eoz-gauge-svg { display: block; }

.eoz-gauge-value {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1;
}

.eoz-gauge-num {
  font-family: var(--eoz-serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--eoz-navy);
}

.eoz-gauge-unit {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl500);
  margin-top: 0.25rem;
}

.eoz-result-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  margin-bottom: 0.5rem;
}

.eoz-result-note {
  font-size: 0.8125rem;
  color: var(--eoz-sl400);
  max-width: 22rem;
}

.eoz-tools-cta { margin-top: 2rem; display: flex; justify-content: flex-end; }

/* Tool input fields */
.eoz-tool-fields label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  margin-bottom: 0.5rem;
}

.eoz-tool-fields input[type="range"] {
  width: 100%;
  accent-color: var(--eoz-navy);
  margin-bottom: 0.25rem;
}

.eoz-tool-fields select,
.eoz-tool-fields input[type="number"] {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--eoz-sl100);
  padding: 0.625rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  font-family: var(--eoz-sans);
  color: var(--eoz-navy);
  background: transparent;
  outline: none;
  appearance: none;
  transition: border-color 0.15s;
}
.eoz-tool-fields select:focus,
.eoz-tool-fields input:focus { border-color: var(--eoz-navy); }

.eoz-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--eoz-sl500);
}

/* ============================================================
   LIVE DATA SNAPSHOT — BAR CHART + KPIS
   ============================================================ */
.eoz-snapshot-section {
  padding: 6rem 0 5rem;
  background: var(--eoz-navy);
  color: white;
}

.eoz-snapshot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.eoz-snapshot-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  margin-bottom: 0.5rem;
}

.eoz-snapshot-section .eoz-h2 { color: white; margin-bottom: 0.6rem; }

.eoz-snapshot-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 62ch;
  line-height: 1.65;
}

.eoz-snapshot-section .eoz-btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  align-self: center;
}
.eoz-snapshot-section .eoz-btn-outline:hover { border-color: white; }

/* Bar chart */
.eoz-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 3.5rem;
}

.eoz-bar-row {
  display: grid;
  grid-template-columns: 34px 130px 1fr 90px;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
}

.eoz-bar-chart.eoz-animated .eoz-bar-row {
  opacity: 1;
  transform: none;
}

.eoz-bar-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-align: right;
}

.eoz-bar-name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eoz-bar-track {
  height: 18px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.eoz-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.eoz-bar-chart.eoz-animated .eoz-bar-fill {
  width: var(--bar-w);
}

.eoz-bar-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.eoz-bar-risk {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(192,57,43,0.7);
  color: white;
  padding: 0.1rem 0.35rem;
}

/* KPI tiles */
.eoz-snapshot-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.eoz-kpi-tile {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.eoz-kpi-num {
  font-family: var(--eoz-serif);
  font-size: 3rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.eoz-kpi-unit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  margin-bottom: 0.5rem;
}

.eoz-kpi-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

.eoz-snapshot-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}

.eoz-snapshot-source a { color: rgba(255,255,255,0.5); text-decoration: underline; }

@media (max-width: 700px) {
  .eoz-bar-row { grid-template-columns: 28px 90px 1fr 70px; gap: 0.5rem; }
  .eoz-bar-name { font-size: 0.75rem; }
  .eoz-bar-risk { display: none; }
}

/* ============================================================
   RESEARCH SECTION
   ============================================================ */
.eoz-research-section {
  padding: 6rem 0;
  background: var(--eoz-paper);
}

.eoz-featured-paper {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
  padding: 3rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  transition: box-shadow 0.2s;
}
@media (min-width: 1024px) {
  .eoz-featured-paper { grid-template-columns: 2fr 1fr; }
}
.eoz-featured-paper:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.eoz-featured-paper-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eoz-featured-title {
  font-family: var(--eoz-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--eoz-navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.eoz-featured-title a { color: inherit; }
.eoz-featured-title a:hover { color: var(--eoz-forest); }

.eoz-featured-excerpt {
  font-size: 1.125rem;
  color: var(--eoz-sl500);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.eoz-featured-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.eoz-featured-paper-side { border-top: 1px solid var(--eoz-sl100); padding-top: 2rem; }
@media (min-width: 1024px) {
  .eoz-featured-paper-side {
    border-top: none;
    border-left: 1px solid var(--eoz-sl100);
    padding-top: 0;
    padding-left: 2.5rem;
  }
}

.eoz-featured-paper-side .eoz-label-muted { margin-bottom: 1.5rem; display: block; }

.eoz-featured-affiliations { display: flex; flex-direction: column; gap: 1.5rem; }
.eoz-affil-name { display: block; font-size: 1.0625rem; font-weight: 500; }
.eoz-affil-org  { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--eoz-sl400); }

.eoz-dataset-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .eoz-dataset-grid { grid-template-columns: repeat(3, 1fr); } }

.eoz-dataset-card {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.eoz-dataset-title {
  font-family: var(--eoz-serif);
  font-size: 1.25rem;
  margin-top: 0.75rem;
  line-height: 1.3;
}
.eoz-dataset-title a { color: var(--eoz-navy); }
.eoz-dataset-title a:hover { color: var(--eoz-forest); }

.eoz-dataset-meta { display: flex; justify-content: space-between; align-items: center; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.eoz-newsletter-section {
  background: var(--eoz-navy);
  padding: 6rem 0;
}

.eoz-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .eoz-newsletter-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.eoz-newsletter-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eoz-newsletter-bullets li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
}

.eoz-newsletter-bullets svg { flex-shrink: 0; margin-top: 2px; }

.eoz-nl-form { display: flex; flex-direction: column; gap: 1.5rem; }

.eoz-nl-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.eoz-nl-field { display: flex; flex-direction: column; gap: 0.5rem; }

.eoz-nl-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.eoz-nl-input {
  background: rgba(255,255,255,0.1);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: var(--eoz-sans);
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.eoz-nl-input:focus { border-color: #fff; }
.eoz-nl-input::placeholder { color: rgba(255,255,255,0.3); }

.eoz-nl-submit {
  width: 100%;
  background: #fff;
  color: var(--eoz-navy);
  padding: 1.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--eoz-sans);
  transition: background 0.15s;
}
.eoz-nl-submit:hover { background: var(--eoz-paper); }

.eoz-nl-disclaimer {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.eoz-footer {
  background: #fff;
  border-top: 2px solid var(--eoz-navy);
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.eoz-footer-inner { display: flex; flex-direction: column; gap: 3rem; }

.eoz-partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--eoz-sl100);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.eoz-partner-logo {
  height: 3rem;
  min-width: 8rem;
  background: var(--eoz-sl100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  opacity: 0.6;
  padding: 0 1rem;
}

.eoz-footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .eoz-footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

.eoz-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--eoz-serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-navy);
  margin-bottom: 1.5rem;
}

.eoz-footer-tagline {
  font-size: 0.9375rem;
  color: var(--eoz-sl500);
  font-style: italic;
  line-height: 1.7;
  max-width: 22rem;
}

.eoz-footer-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  margin-bottom: 1.25rem;
  font-family: var(--eoz-sans);
}

.eoz-footer-links { display: flex; flex-direction: column; gap: 0.875rem; }
.eoz-footer-links a {
  font-size: 0.9375rem;
  color: var(--eoz-navy);
  transition: color 0.15s;
}
.eoz-footer-links a:hover { color: var(--eoz-forest); }

.eoz-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--eoz-sl100);
  padding-top: 2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
}

.eoz-footer-legal { display: flex; gap: 2rem; }
.eoz-footer-legal a { color: var(--eoz-sl400); transition: color 0.15s; }
.eoz-footer-legal a:hover { color: var(--eoz-navy); }

/* ============================================================
   PAGE TEMPLATES (generic page, archive, single)
   ============================================================ */
.eoz-page-hero {
  background: var(--eoz-paper);
  padding: 4rem 0;
  border-bottom: 1px solid var(--eoz-sl200);
  position: relative;
  overflow: hidden;
}

.eoz-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0.75rem;
}

/* Photo hero variant — used for Policy and Countries */
.eoz-page-hero--photo {
  background-color: var(--eoz-navy);
  border-bottom: none;
  padding: 5rem 0 4.5rem;
  color: white;
}

.eoz-page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--eoz-hero-img);
  background-size: cover;
  background-position: center 40%;
  opacity: 0.35;
  z-index: 0;
}

.eoz-page-hero--photo .eoz-container {
  position: relative;
  z-index: 1;
}

.eoz-page-hero--photo .eoz-breadcrumb { color: rgba(255,255,255,0.55); }
.eoz-page-hero--photo .eoz-breadcrumb a { color: rgba(255,255,255,0.7); }
.eoz-page-hero--photo h1 { color: white; }

.eoz-breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--eoz-sl400);
  margin-bottom: 1rem;
}
.eoz-breadcrumb a { color: var(--eoz-forest); }
.eoz-breadcrumb span { color: var(--eoz-sl300); }

.eoz-page-content {
  padding: 4rem 0;
  max-width: 42rem;
}

/* Research archive */
.eoz-filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--eoz-sl200);
  margin-bottom: 3rem;
}

.eoz-filter-input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--eoz-sl200);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-family: var(--eoz-sans);
  outline: none;
  transition: border-color 0.15s;
}
.eoz-filter-input:focus { border-color: var(--eoz-navy); }

.eoz-filter-chip {
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--eoz-sl200);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  color: var(--eoz-sl500);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.eoz-filter-chip:hover,
.eoz-filter-chip.eoz-active {
  background: var(--eoz-navy);
  color: #fff;
  border-color: var(--eoz-navy);
}

.eoz-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.eoz-archive-card {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--eoz-sl100);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.eoz-archive-card-title {
  font-family: var(--eoz-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.eoz-archive-card-title a { color: var(--eoz-navy); }
.eoz-archive-card-title a:hover { color: var(--eoz-forest); }

.eoz-archive-card-excerpt {
  color: var(--eoz-sl500);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.eoz-archive-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Single article / tool */
.eoz-single-wrap { padding: 4rem 0; }

.eoz-single-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--eoz-sl200); }

.eoz-single-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.eoz-single-body {
  max-width: 42rem;
  line-height: 1.8;
}

.eoz-single-body p { margin-bottom: 1.5rem; }
.eoz-single-body h2 { font-size: 1.875rem; margin: 2.5rem 0 1rem; }
.eoz-single-body h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }

/* 404 */
.eoz-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 4rem var(--eoz-gutter);
}
.eoz-404-code { font-family: var(--eoz-serif); font-size: 8rem; color: var(--eoz-sl200); line-height: 1; }
.eoz-404-title { font-size: 2rem; margin-bottom: 1rem; }
.eoz-404-text { color: var(--eoz-sl500); margin-bottom: 2rem; }

/* ============================================================
   TOOLS PAGE (page-tools.php)
   ============================================================ */
.eoz-tools-page-hero {
  background: var(--eoz-navy);
  color: #fff;
  padding: 4rem 0;
}

.eoz-tools-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 0.75rem;
  color: #fff;
}

.eoz-tools-page-hero .eoz-section-sub { color: rgba(255,255,255,0.7); }

.eoz-tools-full-panel {
  padding: 5rem 0;
  background: #fff;
}

.eoz-tools-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1100px) {
  .eoz-tools-layout { grid-template-columns: 70% 28%; gap: 2%; }
}

.eoz-tool-sidebar-card {
  background: var(--eoz-paper);
  border: 1px solid var(--eoz-sl200);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.eoz-tool-sidebar-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  margin-bottom: 1rem;
  font-family: var(--eoz-sans);
}

.eoz-nzeb-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.eoz-nzeb-table th {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  font-weight: 700;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--eoz-sl200);
}
.eoz-nzeb-table td {
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--eoz-sl100);
}

.eoz-methodology-section {
  padding: 4rem 0;
  background: var(--eoz-paper);
  border-top: 1px solid var(--eoz-sl200);
}

.eoz-methodology-panel {
  background: #fff;
  border: 1px solid var(--eoz-sl200);
  padding: 2rem;
}

.eoz-methodology-body { margin-top: 1.5rem; line-height: 1.75; color: var(--eoz-sl600); }

/* ============================================================
   HERO IMAGE STRIP
   ============================================================ */
.eoz-hero-img-strip {
  position: relative;
  overflow: hidden;
  max-height: 420px;
  background: var(--eoz-navy);
}

.eoz-hero-full-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.85;
}

.eoz-hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem var(--eoz-gutter);
  background: linear-gradient(transparent, rgba(26,39,68,0.7));
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   RESEARCH ARCHIVE — COVER IMAGE
   ============================================================ */
.eoz-research-cover {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--eoz-navy);
  margin-bottom: 3rem;
}

.eoz-research-cover img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.6;
}

.eoz-research-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--eoz-gutter);
}

/* ============================================================
   ARTICLE HERO STRIP (single research post)
   ============================================================ */
.eoz-article-hero-strip {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--eoz-navy);
}

.eoz-article-hero-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.eoz-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,39,68,0.6) 100%);
}

/* Research archive — image cards */
.eoz-archive-card--img {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 180px;
  padding: 0 !important;
  overflow: hidden;
}

.eoz-card-thumb {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--eoz-sl100);
}

.eoz-card-thumb img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.eoz-archive-card--img:hover .eoz-card-thumb img {
  transform: scale(1.04);
}

.eoz-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
}

@media (max-width: 600px) {
  .eoz-archive-card--img {
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;
  }
  .eoz-card-thumb img {
    width: 100%;
    height: 180px;
  }
  .eoz-article-hero-strip,
  .eoz-article-hero-img { height: 220px; }
}

/* ============================================================
   PAGE HERO VARIANTS
   ============================================================ */
.eoz-page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 72ch;
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* ============================================================
   POLICY TRACKER
   ============================================================ */
.eoz-policy-wrap,
.eoz-countries-wrap {
  max-width: var(--eoz-max);
  margin: 0 auto;
  padding: 3.5rem var(--eoz-gutter) 5rem;
}

.eoz-policy-block {
  margin-bottom: 5rem;
}

.eoz-section-title {
  font-family: var(--eoz-serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--eoz-navy);
  margin: 0 0 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--eoz-sl200);
}

.eoz-section-lead {
  font-size: 1.02rem;
  color: var(--eoz-sl500);
  line-height: 1.68;
  max-width: 78ch;
  margin-bottom: 2.5rem;
}

/* Timeline */
.eoz-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2rem;
}

.eoz-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--eoz-forest), var(--eoz-navy-4));
}

.eoz-tl-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.eoz-tl-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--eoz-sl400);
  border: 2px solid white;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.eoz-tl-marker--active {
  background: var(--eoz-forest);
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 4px rgba(74,124,89,0.2);
  margin-top: 2px;
  margin-left: -2px;
}

.eoz-tl-past .eoz-tl-marker { background: var(--eoz-navy); }

.eoz-tl-content {
  background: var(--eoz-paper);
  border: 1px solid var(--eoz-sl200);
  padding: 1.25rem 1.5rem;
}

.eoz-tl-active .eoz-tl-content {
  border-color: var(--eoz-forest);
  border-left-width: 3px;
}

.eoz-tl-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  margin-bottom: 0.35rem;
}

.eoz-tl-past .eoz-tl-date { color: var(--eoz-sl400); }

.eoz-tl-title {
  font-family: var(--eoz-serif);
  font-size: 1.1rem;
  color: var(--eoz-navy);
  margin: 0 0 0.6rem;
}

.eoz-tl-content p {
  font-size: 0.95rem;
  color: var(--eoz-sl600);
  line-height: 1.68;
  margin: 0 0 0.75rem;
}

.eoz-tl-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}

.eoz-tl-tag--done    { background: var(--eoz-navy);   color: white; }
.eoz-tl-tag--partial { background: #c49a00;             color: white; }
.eoz-tl-tag--active  { background: var(--eoz-forest);  color: white; }
.eoz-tl-tag--upcoming{ background: var(--eoz-sl200);   color: var(--eoz-sl600); }

/* Tables */
.eoz-table-wrap { overflow-x: auto; margin-bottom: 1rem; }

.eoz-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.eoz-data-table thead th {
  background: var(--eoz-navy);
  color: white;
  text-align: left;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.eoz-data-table tbody tr:nth-child(even) { background: var(--eoz-sl100); }
.eoz-data-table tbody tr:hover { background: var(--eoz-navy-5); }

.eoz-data-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--eoz-sl200);
  color: var(--eoz-sl600);
  vertical-align: middle;
}

.eoz-table-note {
  font-size: 0.82rem;
  color: var(--eoz-sl400);
  line-height: 1.55;
  max-width: 90ch;
}

/* EPC label tags in table */
.eoz-label-tag {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
}
.eoz-label-a { background: #1a7a2e; }
.eoz-label-b { background: #4caf50; }
.eoz-label-c { background: #8bc34a; }
.eoz-label-d { background: #ffc107; color: #333; }
.eoz-label-e { background: #ff9800; }
.eoz-label-f { background: #f44336; }
.eoz-label-g { background: #b71c1c; }

/* Transposition status cards */
.eoz-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.eoz-status-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--eoz-sl200);
  background: var(--eoz-paper);
}

.eoz-status-advanced { border-left: 4px solid var(--eoz-forest); }
.eoz-status-on-track { border-left: 4px solid #ffc107; }
.eoz-status-delayed  { border-left: 4px solid #ff9800; }
.eoz-status-at-risk  { border-left: 4px solid #f44336; }

.eoz-status-flag {
  width: 50px;
  height: 50px;
  background: var(--eoz-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.eoz-status-country {
  font-family: var(--eoz-serif);
  font-size: 1.1rem;
  color: var(--eoz-navy);
  margin: 0 0 0.3rem;
}

.eoz-status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.6rem;
}

.eoz-badge-advanced { background: var(--eoz-forest); color: white; }
.eoz-badge-track    { background: #ffc107; color: #333; }
.eoz-badge-delayed  { background: #ff9800; color: white; }
.eoz-badge-risk     { background: #f44336; color: white; }

.eoz-status-info p {
  font-size: 0.87rem;
  color: var(--eoz-sl600);
  line-height: 1.6;
  margin: 0 0 0.6rem;
}

.eoz-status-acts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eoz-status-acts li {
  font-size: 0.78rem;
  color: var(--eoz-sl400);
  padding: 0.15rem 0;
  padding-left: 0.75rem;
  border-left: 2px solid var(--eoz-sl200);
  margin-bottom: 0.2rem;
}

/* EPBD article cards */
.eoz-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.eoz-article-card {
  background: var(--eoz-paper);
  border: 1px solid var(--eoz-sl200);
  padding: 1.5rem;
  position: relative;
}

.eoz-article-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  margin-bottom: 0.4rem;
}

.eoz-article-title {
  font-family: var(--eoz-serif);
  font-size: 1.05rem;
  color: var(--eoz-navy);
  margin: 0 0 0.6rem;
}

.eoz-article-card p {
  font-size: 0.9rem;
  color: var(--eoz-sl600);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.eoz-article-impact {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.eoz-impact-high     { background: var(--eoz-navy); color: white; }
.eoz-impact-medium   { background: var(--eoz-sl200); color: var(--eoz-navy); }
.eoz-impact-emerging { background: var(--eoz-forest); color: white; }

/* Related links */
.eoz-policy-related { margin-top: 4rem; padding-top: 2rem; border-top: 2px solid var(--eoz-sl200); }

.eoz-related-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.eoz-related-link {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--eoz-paper);
  border: 1px solid var(--eoz-sl200);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.eoz-related-link:hover {
  border-color: var(--eoz-forest);
  background: rgba(74,124,89,0.04);
}

.eoz-related-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--eoz-forest);
  white-space: nowrap;
  flex-shrink: 0;
}

.eoz-related-title {
  font-size: 0.95rem;
  color: var(--eoz-navy);
  line-height: 1.4;
}

/* ============================================================
   COUNTRY PROFILES
   ============================================================ */
.eoz-coverage-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--eoz-navy);
  margin-bottom: 3.5rem;
}

.eoz-coverage-stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.eoz-coverage-stat:last-child { border-right: none; }

.eoz-coverage-num {
  font-family: var(--eoz-serif);
  font-size: 1.8rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.eoz-coverage-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.eoz-countries-section { margin-bottom: 5rem; }

/* Country profile deep-dive cards */
.eoz-country-profiles { display: flex; flex-direction: column; gap: 3.5rem; }

.eoz-country-profile {
  border: 1px solid var(--eoz-sl200);
  background: var(--eoz-paper);
  overflow: hidden;
}

.eoz-cp-header {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--eoz-navy);
  padding: 1.25rem 1.5rem;
  color: white;
}

.eoz-cp-code {
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  font-family: var(--eoz-sans);
  letter-spacing: 0.04em;
}

.eoz-cp-name {
  font-family: var(--eoz-serif);
  font-size: 1.3rem;
  color: white;
  margin: 0 0 0.2rem;
}

.eoz-cp-subtitle {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.4;
}

.eoz-cp-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  align-self: start;
}

.eoz-cp-status--leader   { background: var(--eoz-forest); color: white; }
.eoz-cp-status--strong   { background: #4caf50; color: white; }
.eoz-cp-status--moderate { background: #ffc107; color: #333; }
.eoz-cp-status--risk     { background: #f44336; color: white; }

.eoz-cp-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  border-bottom: 1px solid var(--eoz-sl200);
}

.eoz-cp-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--eoz-sl200);
}

.eoz-cp-metric:last-child { border-right: none; }

.eoz-cp-metric-val {
  font-family: var(--eoz-serif);
  font-size: 1.35rem;
  color: var(--eoz-navy);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.eoz-cp-metric-key {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eoz-sl400);
  line-height: 1.3;
}

.eoz-cp-body {
  padding: 1.5rem;
}

.eoz-cp-body p {
  font-size: 0.95rem;
  color: var(--eoz-sl600);
  line-height: 1.72;
  margin: 0 0 1rem;
  max-width: 90ch;
}

/* EPC distribution bar */
.eoz-cp-epc-bar {
  display: flex;
  height: 32px;
  margin: 0 1.5rem;
  overflow: hidden;
}

.eoz-epc-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  cursor: default;
  transition: opacity 0.15s;
}

.eoz-epc-seg:hover { opacity: 0.85; }

.eoz-epc-a { background: #1a7a2e; }
.eoz-epc-b { background: #4caf50; }
.eoz-epc-c { background: #8bc34a; color: #333; }
.eoz-epc-d { background: #ffc107; color: #333; }
.eoz-epc-e { background: #ff9800; }
.eoz-epc-f { background: #f44336; }
.eoz-epc-g { background: #b71c1c; }

.eoz-cp-barcaption {
  font-size: 0.78rem;
  color: var(--eoz-sl400);
  padding: 0.5rem 1.5rem 1.25rem;
  margin: 0;
  line-height: 1.45;
}

/* Summary table risk / NBRP badges */
.eoz-risk, .eoz-nbrp {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
}

.eoz-risk-low    { background: rgba(74,124,89,0.15);  color: var(--eoz-forest); }
.eoz-risk-medium { background: rgba(255,193,7,0.2);   color: #9a7500; }
.eoz-risk-high   { background: rgba(244,67,54,0.12);  color: #c62828; }

.eoz-nbrp-yes     { background: rgba(74,124,89,0.1);  color: var(--eoz-forest); }
.eoz-nbrp-partial { background: rgba(255,193,7,0.15); color: #9a7500; }
.eoz-nbrp-no      { background: rgba(244,67,54,0.1);  color: #c62828; }

.eoz-summary-table td { font-size: 0.85rem; padding: 0.5rem 0.85rem; }

/* Methodology note */
.eoz-methodology-note {
  margin-bottom: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--eoz-sl200);
}

.eoz-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.eoz-method-item {
  padding: 1.25rem;
  background: var(--eoz-paper);
  border-left: 3px solid var(--eoz-navy-3);
}

.eoz-method-item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eoz-navy);
  margin: 0 0 0.6rem;
}

.eoz-method-item p {
  font-size: 0.87rem;
  color: var(--eoz-sl600);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .eoz-cp-header    { grid-template-columns: 50px 1fr; }
  .eoz-cp-status    { display: none; }
  .eoz-status-grid  { grid-template-columns: 1fr; }
  .eoz-coverage-banner { flex-wrap: wrap; }
  .eoz-coverage-stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .eoz-timeline { padding-left: 1.25rem; }
}

/* ============================================================
   ABOUT — RESEARCH TEAM
   ============================================================ */
.eoz-team-section {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 2px solid var(--eoz-sl200);
}

.eoz-team-heading {
  font-family: var(--eoz-serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--eoz-navy);
  margin-bottom: 0.6rem;
}

.eoz-team-intro {
  color: var(--eoz-sl500);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 72ch;
  margin-bottom: 2.8rem;
}

.eoz-team-grid {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.eoz-team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--eoz-paper);
  border-left: 3px solid var(--eoz-forest);
}

.eoz-team-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.eoz-team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--eoz-sl200);
  display: block;
}

.eoz-team-name {
  font-family: var(--eoz-serif);
  font-size: 1.2rem;
  color: var(--eoz-navy);
  margin: 0 0 0.25rem;
}

.eoz-team-role {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--eoz-forest);
  margin: 0 0 0.8rem;
}

.eoz-team-bio {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--eoz-sl600);
  margin: 0 0 1rem;
}

.eoz-team-focus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.eoz-team-focus li {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  background: var(--eoz-navy-5);
  color: var(--eoz-navy);
  font-weight: 500;
}

.eoz-team-footer-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--eoz-sl100);
  border-left: 3px solid var(--eoz-navy-3);
  font-size: 0.95rem;
  color: var(--eoz-sl600);
  line-height: 1.65;
}

.eoz-team-footer-note a {
  color: var(--eoz-forest);
  text-decoration: underline;
  text-decoration-color: rgba(74,124,89,0.4);
  text-underline-offset: 3px;
}

.eoz-team-footer-note a:hover {
  text-decoration-color: var(--eoz-forest);
}

@media (max-width: 640px) {
  .eoz-team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .eoz-team-avatar-wrap {
    margin: 0 auto;
  }
  .eoz-team-focus {
    justify-content: center;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .eoz-header, .eoz-nav-toggle, .eoz-footer { display: none; }
  body { color: #000; }
}
