:root {
  --orange: #f99d1f;
  --blue: #3c6cb8;
  --periwinkle: #a8b3db;
  --slate: #727476;
  --ink: #222833;
  --cloud: #f7f8fa;
  --line: rgba(34, 40, 51, 0.12);
  --shadow: 0 18px 45px rgba(34, 40, 51, 0.08);
  --radius: 20px;
  --max: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--cloud) 100%);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: auto; }
.skip:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 10px 12px; border-radius: 10px; }
header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; height: 32px; width: auto; }
nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 0; align-items: center; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--slate); font-weight: 600; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
.cta { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.cta.primary { background: var(--orange); color: #1f1f1f; }
.cta.secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.hero {
  padding: 72px 0 36px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center;
}
.eyebrow { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; }
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); letter-spacing: -0.04em; margin-top: 10px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); letter-spacing: -0.03em; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 16px; color: #313744; }
.lede { font-size: 1.12rem; max-width: 62ch; }
.hero-card, .card, .panel {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.stat { padding: 16px; border-radius: 16px; background: linear-gradient(180deg, rgba(60,108,184,.08), rgba(249,157,31,.08)); border: 1px solid rgba(60,108,184,.12); }
.stat strong { display: block; font-size: 1.1rem; color: var(--ink); }
.stat span { color: var(--slate); font-size: .95rem; }
.section { padding: 30px 0; }
.section .head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 18px; }
.section .head p { max-width: 70ch; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card, .panel { padding: 22px; }
.accent { color: var(--blue); font-weight: 700; }
ul.clean { margin: 0; padding-left: 18px; }
ul.clean li { margin-bottom: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(60,108,184,.08); color: var(--blue); font-weight: 700; font-size: .92rem; }
.quote { font-size: 1.03rem; }
.quote p { margin-bottom: 12px; }
.quote .who { color: var(--slate); font-weight: 700; }
.footer {
  padding: 34px 0 50px; color: var(--slate); border-top: 1px solid var(--line); margin-top: 42px;
}
.footer .footgrid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.muted { color: var(--slate); }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.callout {
  background: linear-gradient(135deg, rgba(168,179,219,.22), rgba(249,157,31,.14));
  border: 1px solid rgba(60,108,184,.18);
}
.navgroup { display: flex; align-items: center; gap: 14px; }
.mobile-note { display: none; }
.list-cols { columns: 2; column-gap: 24px; }
.list-cols p { break-inside: avoid; margin-bottom: 10px; }
@media (max-width: 920px) {
  .hero-grid, .grid.two, .grid.three { grid-template-columns: 1fr; }
  .section .head { flex-direction: column; align-items: start; }
  nav ul { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .topbar { flex-direction: column; align-items: start; }
  .hero { padding-top: 40px; }
  .stats { grid-template-columns: 1fr; }
  .list-cols { columns: 1; }
  .mobile-note { display: block; color: var(--slate); font-size: .95rem; margin-top: 10px; }
}

.stack { display: grid; gap: 22px; }
.article { padding: 26px; }
.article-meta { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 16px; }
.article-meta h2 { margin-top: 8px; }
.article-meta-right { text-align: right; }
.article-body > p,
.article-body > ul { max-width: 74ch; }
.article-body p { margin-bottom: 16px; }
.article-kicker { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; }
.article-list { margin-bottom: 16px; }
.article-source { margin-top: 18px; font-size: .92rem; }
.archive-list { columns: 2; column-gap: 28px; }
.archive-list li { break-inside: avoid; margin-bottom: 8px; }
.insights-hero .stats.single { grid-template-columns: 1fr; }

