/* ── VARIABLES ── */
:root {
  --bg: #181614;
  --bg-alt: #1E1C1A;
  --bg-card: #1C1A18;
  --white: #F0ECE6;
  --text: #D8D4CE;
  --text-muted: #8C8680;
  --gold: #B8A88A;
  --green: #8B9A6B;
  --red: #A85C5C;
  --border: #2E2C2A;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --max-w: 900px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
p { margin-bottom: 1.25rem; }
strong { font-weight: 600; }

/* ── TOPBAR ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: 60px;
  background: rgba(20,18,16,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,168,138,0.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); z-index: 1000;
}
.topbar-brand { display: flex; align-items: center; text-decoration: none; color: var(--white); }
.topbar-logo { display: block; height: 32px; width: auto; color: var(--white); }
.topbar-center {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(184,168,138,0.65);
}
.topbar-download {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 8px 16px; transition: background 0.2s, box-shadow 0.2s;
}
.topbar-download svg { height: 12px; width: 12px; flex-shrink: 0; }
.topbar-download:hover {
  background: rgba(184,168,138,0.1);
  box-shadow: 0 0 16px rgba(184,168,138,0.12);
}
.topbar-spacer { width: 112px; height: 32px; }

/* ── SCREEN WRAPPER ── */
.screen-wrapper {
  background: var(--bg);
  padding-top: 60px;
  background-image: radial-gradient(ellipse 80% 35% at 50% 0%, rgba(184,168,138,0.045) 0%, transparent 70%);
}

/* ── PAGE SECTIONS ── */
.page {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--gutter) 4rem;
}
.page--hero { padding-top: 6rem; }
.page-content { /* natural flow */ }
.page-footer { display: none; }

/* ── SECTION DIVIDER ── */
.section-divider {
  width: 70px; height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.45;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  text-align: center;
  padding-top: 2.5rem;
  color: var(--gold);
  font-size: 22px;
  animation: indicator-bounce 2.4s ease-in-out infinite;
  user-select: none;
}
@keyframes indicator-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* ── MASTHEAD / HERO ── */
.masthead {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem; margin-bottom: 3rem;
}
.masthead-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-logo-img { display: block; height: 56px; width: auto; color: var(--white); }
.masthead-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: right; line-height: 1.7;
}
.masthead-meta .meta-line { color: var(--gold); }
.issue-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 700; }
.hero-subtitle {
  font-size: 20px; color: var(--text-muted); line-height: 1.55;
  font-weight: 300; font-style: italic; max-width: 640px;
}

/* ── METRICS STRIP ── */
.metrics-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  margin: 3rem 0 0;
}
.metric { padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric-value {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.75rem;
}
.metric-value .unit { font-size: 0.52em; color: var(--text-muted); font-weight: 400; }
.metric-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); line-height: 1.3;
}

/* ── SECTION LABELS + HEADINGS ── */
.section-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-top: 5rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.page-content > .section-label:first-child { margin-top: 0; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 600; }

.lede {
  font-family: var(--font-head); font-size: 21px; line-height: 1.55;
  color: var(--white); font-weight: 400; margin-bottom: 2rem;
  font-style: italic; border-left: 2px solid var(--gold); padding-left: 1.5rem;
}

/* ── BODY GRID ── */
.body-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-top: 2rem;
}

/* ── STAT SIDEBAR → screen numbers bar ── */
.stat-sidebar { margin-bottom: 0; }
.stat-sidebar .card-eyebrow { font-size: 13px; margin-bottom: 1.25rem; }
.stat-sidebar .bullets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem; margin-top: 0;
}
.stat-sidebar .bullets li {
  flex-direction: column; gap: 0.4rem;
  padding: 1.25rem 1rem;
  background: rgba(184,168,138,0.03);
  border: 1px solid rgba(184,168,138,0.12);
  font-size: 14px;
}
.stat-sidebar .bullets li::before { display: none; }
.stat-sidebar .bullets li strong {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 0.25rem;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 1.5rem; margin-bottom: 1.5rem; position: relative;
}
.card.accent { border-left: 3px solid var(--gold); }
.card-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.card-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 0.75rem;
}
.card-body { font-size: 15px; line-height: 1.6; color: var(--text); }
.card-body strong { color: var(--gold); font-weight: 600; }

/* ── HIVE GALLERY ── */
.section-banner {
  margin: 0 0 2rem;
  border: 1px solid var(--border);
  background: #0F0E0D;
  overflow: hidden;
}
.section-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.04);
}

.hive-gallery {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.hive-gallery > div {
  margin: 0;
  border: 1px solid var(--border);
  background: #0F0E0D;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hive-gallery .img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #0F0E0D;
  overflow: hidden;
}
.hive-gallery figure { display: flex; flex-direction: column; }
.hive-gallery img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.02) contrast(1.04);
}
.hive-gallery figcaption {
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.65rem 0.85rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

/* ── BULLETS ── */
.bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.6rem; margin-top: 0.5rem;
}
.bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 15px; line-height: 1.5; color: var(--text);
}
.bullets li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}
.bullets li strong { color: var(--white); font-weight: 600; }

/* Aligned bullets variant: inline by default (mobile-safe), aligned grid on wide */
.bullets-aligned li { display: block; line-height: 1.55; }
.bullets-aligned li::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  margin-top: 0;
  position: relative;
  top: -2px;
}
.bullets-aligned .lbl { font-weight: 600; color: var(--white); }
.bullets-aligned .lbl strong { color: var(--white); }
.bullets-aligned .desc { color: var(--text); }
.bullets-aligned .desc::before {
  content: ' — ';
  color: var(--text-muted);
  white-space: pre;
}

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin: 1.5rem 0;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 1.5rem;
}
.product-image {
  display: block; width: calc(100% + 3rem); aspect-ratio: 5 / 3;
  object-fit: cover; margin: -1.5rem -1.5rem 1rem;
  filter: brightness(1.02) contrast(1.05);
}
}
.product-card .tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.product-card h4 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.2;
}
.product-card h4 span {
  font-size: 13px; color: var(--text-muted); font-weight: 400;
  font-style: italic; font-family: var(--font-body);
}
.product-card .product-desc { font-size: 14px; line-height: 1.6; color: var(--text); }
.product-card .product-stats {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.product-card .product-stats div { display: flex; align-items: baseline; gap: 0.75rem; }
.product-card .product-stats .k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; min-width: 62px;
}
.product-card .product-stats .v {
  font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--gold);
}

/* ── TWO-COL GRID (R&D + Software) ── */
.two-col-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.two-col-grid h3 {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  margin-bottom: 1rem; line-height: 1.2; color: var(--white);
}
.two-col-grid h3 em { color: var(--gold); font-style: italic; }

/* ── PULL QUOTE ── */
.pullquote {
  margin: 2.5rem 0; padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  text-align: center;
}
.pullquote q {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; color: var(--white); line-height: 1.3;
  quotes: '\201C' '\201D';
}
.pullquote q::before, .pullquote q::after { color: var(--gold); }
.pullquote .attr {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 1rem;
}

.officer-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  background: var(--bg-card);
}
.officer-quote p {
  font-family: var(--font-head); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--white); margin: 0;
}
.officer-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  font-style: normal;
}

/* ── TIMELINE ── */
.timeline { margin-top: 1.5rem; border-top: 1px solid var(--border); }
.timeline-row {
  display: grid; grid-template-columns: 100px 1fr 90px;
  gap: 1.5rem; padding: 1.1rem 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.timeline-date {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--gold); font-weight: 700; text-transform: uppercase;
}
.timeline-event { font-size: 15px; color: var(--text); line-height: 1.5; }
.timeline-event strong { color: var(--white); font-weight: 600; }
.timeline-stat {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-align: center;
  background: rgba(139,154,107,0.18); color: var(--green);
  padding: 5px 8px;
}
.timeline-stat.partial { background: rgba(184,168,138,0.15); color: var(--gold); }

/* ── LEGEND ── */
.legend-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 0.75rem; flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 14px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.legend-dot.green { background: var(--green); }
.legend-dot.amber { background: var(--gold); }

/* ── SCORE CARDS ── */
.score-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.score-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 2rem;
}
.score-card .score-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.score-card .score-num {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 800; line-height: 1; margin: 0.5rem 0;
}
.score-card .score-num.gold { color: var(--gold); }
.score-card .score-num.green { color: var(--green); }
.score-card .score-sub {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--text-muted); text-transform: uppercase; line-height: 1.4;
}

/* ── OFFICIALS ── */
.officials { display: flex; flex-direction: column; margin-top: 1.5rem; }
.official {
  display: grid; grid-template-columns: 8px 1fr auto;
  align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.official:last-child { border-bottom: none; }
.official .dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }
.official .who { color: var(--white); font-size: 18px; font-weight: 500; }
.official .when {
  font-family: var(--font-mono); font-size: 11px; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; text-align: right; white-space: nowrap;
}

/* ── PARTNERSHIPS ── */
.partners-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.partner-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 1.75rem 2rem;
}
.partner-block .country {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem;
}
.partner-block h5 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.2;
}
.partner-block p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0; }

/* ── DECORATIVE RULE ── */
.gold-rule { height: 1px; width: 80px; background: var(--gold); margin: 4rem auto; opacity: 0.6; }

/* ── BOTTOM LINE ── */
.bottom-line {
  background: linear-gradient(135deg, rgba(184,168,138,0.07), rgba(184,168,138,0.02));
  border: 1px solid rgba(184,168,138,0.3); border-left-width: 3px;
  padding: 2.5rem 3rem; margin: 2rem 0;
}
.bottom-line .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.bottom-line .text {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; color: var(--white); line-height: 1.4;
}
.bottom-line .text em { color: var(--gold); font-style: italic; }

/* ── CLOSING ── */
.closing-block {
  margin: 3rem auto 0; text-align: center; max-width: 520px;
  border-top: 1px solid rgba(184,168,138,0.2); padding-top: 2.5rem;
}
.closing-line {
  font-family: var(--font-head); font-style: italic; font-size: 18px;
  color: var(--text-muted); margin-bottom: 1rem; line-height: 1.45;
}
.closing-sig {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase;
}

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-indicator { animation: none; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .topbar-center { display: none; }
  .topbar { padding: 0 1rem; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .hero-subtitle { font-size: 17px; }
  .brand-logo-img { height: 44px; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric { padding: 1.5rem 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hive-gallery { grid-template-columns: 1fr; }
  .stat-sidebar .bullets { grid-template-columns: repeat(2, 1fr); }
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .partners-row { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 80px 1fr; }
  .timeline-stat { display: none; }
  .score-cards { grid-template-columns: 1fr; }
  .official { grid-template-columns: 8px 1fr; }
  .official .when { display: none; }
  .site-footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .bottom-line { padding: 1.75rem 1.5rem; }
}

/* ── PRINT ── */
@media print {
  .topbar, .scroll-indicator, .section-divider, .site-footer { display: none !important; }
  html { scroll-behavior: auto; }
  body { font-size: 11pt; line-height: 1.5; background: var(--bg); color: var(--text); }
  .screen-wrapper { display: block; padding: 0; background: var(--bg); }

  .page {
    width: 210mm; height: 297mm; padding: 18mm 18mm 20mm;
    max-width: none; margin: 0; position: relative;
    page-break-after: always; break-after: page; overflow: hidden;
  }
  .page:last-child { page-break-after: auto; break-after: auto; }
  .page-content { height: calc(297mm - 38mm - 12mm); overflow: hidden; }
  .page-footer {
    display: flex !important; position: absolute;
    bottom: 8mm; left: 18mm; right: 18mm;
    justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 7pt; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-muted);
    border-top: 1.5px solid rgba(184,168,138,0.3); padding-top: 2.5mm;
  }
  .page-footer .gold { color: var(--gold); font-weight: 600; }

  .section-label { margin-top: 0; margin-bottom: 2mm; font-size: 7.5pt; letter-spacing: 0.22em; padding-top: 0; }
  .section-label::before { width: 18px; }
  .section-title { font-size: 16pt; margin-bottom: 3mm; }
  .hero-title { font-size: 28pt; margin-bottom: 3mm; }
  .hero-subtitle { font-size: 11pt; }
  .issue-label { font-size: 7.5pt; letter-spacing: 0.22em; margin-bottom: 3mm; }
  .lede { font-size: 11pt; margin-bottom: 5mm; padding-left: 6mm; }
  p { font-size: 9.5pt; margin-bottom: 2.5mm; line-height: 1.5; }
  .masthead { padding-bottom: 7mm; margin-bottom: 6mm; }
  .masthead-row { margin-bottom: 5mm; }
  .brand-logo-img { height: 38px; }
  .masthead-meta { font-size: 7pt; }

  .metrics-strip { margin: 5mm 0 6mm; }
  .metric { padding: 5mm 4mm; }
  .metric-value { font-size: 22pt; margin-bottom: 2mm; }
  .metric-value .unit { font-size: 12pt; }
  .metric-label { font-size: 6.5pt; }

  .body-grid { grid-template-columns: 1.4fr 1fr; gap: 8mm; margin-top: 0; }
  .stat-sidebar .bullets { display: flex; flex-direction: column; gap: 2mm; }
  .stat-sidebar .bullets li { flex-direction: row; padding: 0; background: transparent; border: none; font-size: 9.5pt; gap: 3mm; }
  .stat-sidebar .bullets li::before { display: block; }
  .stat-sidebar .bullets li strong { font-family: var(--font-body); font-size: 10.5pt; display: inline; line-height: inherit; margin-bottom: 0; color: var(--white); }
  .stat-sidebar .card-eyebrow { font-size: 6.5pt; margin-bottom: 2mm; }
  .card { padding: 5mm; margin-bottom: 4mm; }
  .card-eyebrow { font-size: 6.5pt; margin-bottom: 2mm; }
  .card-body { font-size: 9.5pt; }
  .card-title { font-size: 13pt; }
  .bullets { gap: 2mm; margin-top: 2mm; }
  .bullets li { font-size: 9.5pt; gap: 3mm; line-height: 1.45; }

  .product-grid { gap: 3mm; margin: 2mm 0 3mm; }
  .product-card { padding: 4mm; }
  .product-card .tag { font-size: 6.5pt; margin-bottom: 2.5mm; }
  .product-card h4 { font-size: 12pt; margin-bottom: 2.5mm; }
  .product-card h4 span { font-size: 8pt; }
  .product-card .product-desc { font-size: 8.5pt; }
  .product-card .product-stats { margin-top: 2.5mm; padding-top: 2.5mm; gap: 1.5mm; }
  .product-card .product-stats .k { font-size: 6.5pt; min-width: auto; }
  .product-card .product-stats .v { font-size: 10pt; }

  .two-col-grid { gap: 8mm; margin-bottom: 6mm; grid-template-columns: 1fr 1fr; }
  .two-col-grid h3 { font-size: 14pt; margin-bottom: 3mm; }

  .pullquote { padding: 8mm 7mm; margin: 4mm 0; }
  .pullquote q { font-size: 20pt; }
  .pullquote .attr { font-size: 7.5pt; margin-top: 3mm; }

  .timeline { margin-top: 3mm; }
  .timeline-row { grid-template-columns: 22mm 1fr 28mm; gap: 5mm; padding: 2.5mm 0; }
  .timeline-date { font-size: 9pt; }
  .timeline-event { font-size: 9.5pt; }
  .timeline-stat { font-size: 10pt; padding: 1mm 2mm; display: block; }
  .legend-item { font-size: 9pt; gap: 2.5mm; }

  .score-cards { grid-template-columns: 1fr 1fr; gap: 6mm; margin-top: 4mm; }
  .score-card { padding: 5mm; }
  .score-card .score-eyebrow { font-size: 6.5pt; margin-bottom: 2mm; }
  .score-card .score-num { font-size: 28pt; margin: 2mm 0; }
  .score-card .score-sub { font-size: 8.5pt; }

  .officials { margin-top: 3mm; }
  .official { grid-template-columns: 6px 1fr 42mm; gap: 4mm; padding: 2.5mm 0; }
  .official .who { font-size: 9.5pt; }
  .official .when { display: block; font-size: 7.5pt; text-align: right; }

  .partners-row { gap: 4mm; margin: 4mm 0; }
  .partner-block { padding: 4mm 5mm; min-height: 45mm; }
  .partner-block .country { font-size: 6.5pt; margin-bottom: 2mm; }
  .partner-block h5 { font-size: 12pt; margin-bottom: 1.5mm; }
  .partner-block p { font-size: 8.5pt; }

  .gold-rule { width: 60mm; margin: 6mm auto; }
  .bottom-line { padding: 6mm 7mm; margin-top: 5mm; }
  .bottom-line .label { font-size: 7pt; margin-bottom: 2.5mm; }
  .bottom-line .text { font-size: 12pt; }
  .closing-block { margin-top: 7mm; padding-top: 0; border-top: none; }
  .closing-line { font-size: 11pt; margin-bottom: 2mm; }
  .closing-sig { font-size: 8pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
