/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B3558;    /* deep navy — nav / hero / footer backgrounds */
  --teal: #1258A8;    /* primary blue — buttons, links, data highlights */
  --teal-lt: #1565C0; /* lighter blue — hover states */
  --gold: #B45309;    /* amber accent — 4.5:1 on white, colorblind-safe with blue */
  --cream: #F4F6F9;   /* light blue-gray page background */
  --text: #1A2B3C;    /* dark blue-gray primary text */
  --muted: #485E72;   /* medium blue-gray secondary text */
  --border: #C2CDD8;  /* subtle border */
}
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; }
a[href] { text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }

/* ── ACCESSIBILITY ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--teal); color: white; padding: 10px 20px; font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0; z-index: 200; font-size: 14px; font-family: Arial, sans-serif; transition: top .2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid #F0A500; outline-offset: 3px; border-radius: 2px; }
main { display: block; }
#main-content:focus { outline: none; }

/* ── HERO ALERT (first-visit popup, home only) ── */
.hero-alert-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(27, 53, 88, 0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.hero-alert-overlay.is-visible { opacity: 1; visibility: visible; }
.hero-alert-card {
  background: linear-gradient(145deg, var(--teal), var(--teal-lt));
  color: white; max-width: 440px; width: 100%;
  border-radius: 20px; padding: 32px 36px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  position: relative;
}
.hero-alert-card h3 { font-family: Arial, sans-serif; font-size: 22px; margin-bottom: 12px; color: white; }
.hero-alert-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.hero-alert-card a { color: white; text-decoration: underline; font-weight: 600; }
.hero-alert-card a:hover { text-decoration: underline; }
.hero-alert-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-alert-dismiss {
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: Arial, sans-serif; cursor: pointer;
  background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.35);
  transition: background .2s, border-color .2s;
}
.hero-alert-dismiss:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.5); }

/* ── LOGO IMAGES ── */
/* Displayed at half native resolution so they're naturally 2x on standard screens
   and pixel-perfect on HiDPI displays. Never scale past native to avoid blur. */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1);
}
.quote-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  padding: 4px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.page-hero-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  opacity: 0.9;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: Arial, sans-serif; font-size: 18px; color: white; flex-shrink: 0; }
.logo-text { font-family: Arial, sans-serif; color: white; font-size: 18px; white-space: nowrap; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: color .2s, background .2s; cursor: pointer; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 8px 18px !important; border-radius: 6px; }
.nav-cta:hover { background: var(--teal-lt) !important; }

/* Hamburger button — hidden on desktop */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; border-radius: 6px; transition: background .2s; }
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: var(--navy); flex-direction: column; padding: 12px 20px 20px; border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.nav-drawer.open { display: flex; }
.nav-drawer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; font-weight: 500; padding: 12px 10px; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
.nav-drawer a:hover, .nav-drawer a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-drawer .nav-cta { margin-top: 8px; text-align: center; }

/* ── PAGES ── */
.page { display: none; padding-top: 68px; min-height: 100vh; }
.page.active { display: block; }

/* ── HERO ── */
.hero { background: var(--navy); color: white; padding: 100px 40px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(18,88,168,0.20) 100%); pointer-events: none; }
.hero-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #F0A500; margin-bottom: 18px; } /* bright amber — 5.6:1 on navy */
.hero h1 { font-family: Arial, sans-serif; font-size: clamp(38px, 5vw, 58px); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: white; }
.hero-sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 420px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px; backdrop-filter: blur(8px); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { text-align: center; padding: 20px; }
.stat-num { font-family: Arial, sans-serif; font-size: 42px; color: white; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.76); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 16px 0; }
.hero-badge { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.78); }
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all .2s; font-family: Arial, sans-serif; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.07); }
.btn-submit { width: 100%; padding: 14px; background: var(--teal); color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; font-family: Arial, sans-serif; }
.btn-submit:hover { background: var(--teal-lt); }

/* ── SECTIONS ── */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.section-title { font-family: Arial, sans-serif; font-size: clamp(28px, 3.5vw, 40px); line-height: 1.2; margin-bottom: 18px; color: var(--navy); }
.section-body { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 680px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 60px 0; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-top: 48px; }
.card { background: white; border-radius: 16px; padding: 32px; border: 1px solid var(--border); transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: 0 12px 40px rgba(13,33,55,0.1); transform: translateY(-3px); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(18,88,168,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.card h3 { font-family: Arial, sans-serif; font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.card p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; cursor: pointer; transition: gap .2s; }
.card-link:hover { gap: 10px; }

/* ── PARTNERS ── */
.partners-section { background: var(--navy); padding: 60px 40px; }
.partners-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.partners-inner h3 { font-family: Arial, sans-serif; color: white; font-size: 22px; margin-bottom: 8px; }
.partners-inner p { color: rgba(255,255,255,0.76); font-size: 14px; margin-bottom: 40px; }
.partner-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; }
a.chip { text-decoration: none; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
a.chip:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); color: white; }

/* ── PAGE HEADERS ── */
.page-hero { background: var(--navy); padding: 80px 40px 60px; text-align: center; color: white; }
.page-hero .eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #F0A500; margin-bottom: 14px; } /* bright amber — 5.6:1 on navy */
.page-hero h1 { font-family: Arial, sans-serif; font-size: clamp(36px, 5vw, 52px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.feature-list li:first-child { border-top: 1px solid var(--border); }
.check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: white; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feature-list li p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); align-items: start; gap: 28px; margin-top: 48px; }
.team-card { align-self: start; height: auto; background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.team-card:hover { box-shadow: 0 12px 40px rgba(13,33,55,0.12); transform: translateY(-3px); }
.team-photo-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(135deg, var(--teal), var(--navy)); }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-card-body { padding: 24px; display: flex; flex-direction: column; }
.team-card h3 { font-weight: 700; font-size: 17px; margin-bottom: 3px; color: var(--navy); }
.team-role { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 14px; line-height: 1.65; color: var(--muted); }
.team-bio-short { display: block; }
.team-bio-full {
  font-size: 14px; line-height: 1.65; color: var(--muted); margin-top: 8px;
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease;
}
.team-bio-full > span { overflow: hidden; }
.team-bio-full.open { grid-template-rows: 1fr; }
.team-read-more {
  align-self: flex-start; margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px 6px 16px;
  background: rgba(18,88,168,0.07); color: var(--teal);
  border: 1.5px solid rgba(18,88,168,0.20); border-radius: 100px;
  font-size: 13px; font-weight: 600; font-family: Arial, sans-serif;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.team-read-more:hover { background: rgba(18,88,168,0.13); border-color: var(--teal); }
.team-read-more .chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.35s ease;
}
.team-read-more.open .chevron { transform: rotate(180deg); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: Arial, sans-serif; font-size: 34px; margin-bottom: 16px; color: var(--navy); }
.contact-info p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(18,88,168,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text { font-size: 15px; color: var(--text); }
.contact-detail-text a { color: var(--teal); text-decoration: none; }
.contact-detail-text a:hover { text-decoration: underline; }
.form-card { background: white; border-radius: 20px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 4px 30px rgba(13,33,55,0.06); }
.form-card h3 { font-family: Arial, sans-serif; font-size: 22px; margin-bottom: 8px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: Arial, sans-serif; color: var(--text); background: white; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); outline: none; }
.form-group input:focus-visible, .form-group textarea:focus-visible, .form-group select:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-status { min-height: 20px; margin-top: 12px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.form-status.is-success { color: var(--teal); }
.form-status.is-error { color: #9f1239; }
.form-status-dark { color: rgba(255,255,255,0.82); }
.form-status-dark.is-success { color: white; }
.form-status-dark.is-error { color: #fecdd3; }
.btn-submit:disabled, .btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

/* ── RESEARCH ── */
.research-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.research-item { background: white; border-radius: 16px; border: 1px solid var(--border); padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; transition: box-shadow .25s; }
.research-item-with-thumb { grid-template-columns: auto 136px 1fr; }
.research-item:hover { box-shadow: 0 8px 30px rgba(13,33,55,0.08); }
.research-num { font-family: Arial, sans-serif; font-size: 40px; color: var(--border); line-height: 1; }
.research-thumb {
  display: block;
  width: 136px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  box-shadow: 0 6px 18px rgba(13,33,55,0.08);
}
.research-thumb-cover {
  aspect-ratio: 3 / 4;
  width: 120px;
  justify-self: center;
}
.research-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.research-thumb-cover img { object-fit: contain; background: white; }
.research-item h3 { font-family: Arial, sans-serif; font-size: 22px; margin-bottom: 10px; color: var(--navy); }
.research-item p { font-size: 15px; line-height: 1.75; color: var(--muted); }
.research-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag { padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 500; background: var(--cream); color: var(--muted); border: 1px solid var(--border); }

/* ── TIMELINE ── */
.timeline { margin-top: 40px; position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--teal); }
.timeline-card { background: white; border-radius: 14px; padding: 24px 28px; border: 1px solid var(--border); }
.timeline-date { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.timeline-card h3 { font-family: Arial, sans-serif; font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.timeline-card p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ── TABLEAU SLIDER ── */
#tableau-slider { position: relative; overflow: hidden; width: 100%; }
.ts-slide { position: absolute; width: 100%; top: 0; left: 0; opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
.ts-slide.active { position: relative; opacity: 1; visibility: visible; }
.viz-host { width: 100%; min-height: 520px; }
.viz-host iframe, .viz-host object, .viz-host embed { width: 100% !important; max-width: 100% !important; border: 0 !important; display: block; }
.slider-controls { margin: 20px 0 0; display: flex; justify-content: space-between; gap: 12px; }
.ts-nav-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 8px 32px; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.071em; color: white; background: var(--teal); border: none; border-radius: 48px; cursor: pointer; transition: background .2s; }
.ts-nav-btn:hover { background: var(--teal-lt); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 60px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.78); text-decoration: none; cursor: pointer; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-muted { color: rgba(255,255,255,0.46) !important; cursor: default; font-weight: 400; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.78); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .hero-grid, .contact-grid, .two-col, .footer-top { grid-template-columns: 1fr; }
  .hero-stat-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .hero, .page-hero { padding: 60px 24px; }
  .research-item, .research-item-with-thumb { grid-template-columns: 1fr; }
  .research-num { font-size: 28px; }
  .research-thumb, .research-thumb-cover { width: 100%; max-width: 220px; aspect-ratio: 4 / 3; justify-self: start; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .partners-section, .footer { padding-left: 24px; padding-right: 24px; }
}
