:root {
  --bg: #f7f7f2;
  --bg-alt: #eef3f8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --ink: #101010;
  --text: #1d1d1d;
  --text-soft: rgba(29, 29, 29, 0.72);
  --muted: rgba(29, 29, 29, 0.56);
  --line: rgba(16, 16, 16, 0.14);
  --line-strong: rgba(16, 16, 16, 0.28);
  --primary: #005eb8;
  --primary-dark: #063b73;
  --accent: #b3261e;
  --oxygen: #d8dee8;
  --gold: #f3c14b;
  --mist: #d8dee8;
  --shadow: 0 18px 45px rgba(6, 59, 115, 0.10);
  --shadow-soft: 0 10px 24px rgba(16, 16, 16, 0.06);
  --radius-panel: 2px;
  --radius-card: 0;
  --radius-control: 2px;
  --container: 1240px;
  --font-body: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-prose: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  background:
    linear-gradient(90deg, rgba(0, 94, 184, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  background-size: 72px 72px, auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 16, 16, 0.035) 1px, transparent 1px);
  background-size: 100% 9px;
  opacity: 0.52;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 86%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(0, 94, 184, 0.42);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a:hover {
  text-decoration-color: var(--accent);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100vw - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.78rem 1rem;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 94, 184, 0.10) 0 5px, transparent 5px 100%),
    linear-gradient(90deg, transparent, rgba(0, 94, 184, 0.04), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-lockup span {
  display: grid;
  gap: 0.05rem;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.56rem 0.82rem;
  border-radius: var(--radius-control);
  color: var(--text-soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(0, 124, 120, 0.11);
  color: var(--primary-dark);
}

.site-nav a:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero-section,
.page-hero {
  padding: clamp(2rem, 5vw, 4.25rem) 0 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.hero-grid.narrow {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 66ch;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-grid.narrow .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.lead,
.hero-copy > p,
.section-heading p {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.eyebrow,
.card-kicker,
.pill {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.08rem;
  border-radius: var(--radius-control);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), color 180ms var(--ease-out);
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(231, 95, 79, 0.24);
}

.button-primary:hover {
  background: #cd4d40;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(253, 252, 243, 0.72);
  color: var(--ink);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.chip:focus-visible,
.blog-card a:focus-visible {
  outline: 3px solid rgba(231, 95, 79, 0.36);
  outline-offset: 3px;
}

.hero-badges,
.meta-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-badges span,
.chip,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: rgba(253, 252, 243, 0.74);
  color: var(--text-soft);
  font-weight: 700;
}

.hero-badges span {
  padding: 0.42rem 0.75rem;
  font-size: 0.92rem;
}

.hero-panel,
.article-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-panel::after,
.article-hero-media::after,
.blog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 29, 0.09));
}

.hero-panel img,
.article-hero-media img,
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-panel img {
  aspect-ratio: 4 / 3;
}

.page-section {
  padding: clamp(1.8rem, 4vw, 3.2rem) 0;
}

.section-heading {
  display: grid;
  max-width: 76ch;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.stat-grid,
.feature-grid,
.contact-grid,
.palette-grid,
.brand-kit-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.stat-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.palette-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.brand-kit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid,
.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.card,
.info-panel,
.palette-swatch,
.timeline-item,
.search-shell,
.article-body .callout {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.card,
.info-panel,
.palette-swatch {
  padding: 1.1rem;
}

.stat-card {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 0.62rem;
}

.stat-card strong,
.card h3,
.info-panel h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.stat-card p,
.card p,
.info-panel p,
.palette-swatch p {
  color: var(--text-soft);
}

.card-kicker {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
}

.card-link {
  text-decoration: none;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 95, 79, 0.34);
  box-shadow: 0 24px 48px rgba(7, 26, 29, 0.13);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.blog-card-body {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
}

.blog-card-body h3 {
  font-size: 1.2rem;
}

.blog-card-body h3 a,
.card h3 a {
  text-decoration: none;
}

.blog-card-body p {
  color: var(--text-soft);
}

.pill {
  padding: 0.35rem 0.62rem;
  background: rgba(0, 124, 120, 0.10);
  color: var(--primary-dark);
  font-size: 0.66rem;
}

.meta-row {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1rem;
  align-items: start;
}

.prose,
.rich-content {
  display: grid;
  gap: 1rem;
  max-width: 72ch;
}

.prose p,
.prose li,
.rich-content p,
.rich-content li {
  color: var(--text-soft);
}

.rich-content > h1,
.rich-content > h2,
.rich-content > h3,
.rich-content > h4,
.rich-content > h5,
.rich-content > h6 {
  margin-top: 1.4rem;
  margin-bottom: 0.1rem;
}

.rich-content h1,
.rich-content h2,
.rich-content h3 {
  font-family: var(--font-display);
}

.rich-content ul,
.rich-content ol {
  margin: 0;
  padding-left: 1.35rem;
}

.rich-content li + li {
  margin-top: 0.34rem;
}

.rich-content figure {
  margin: 0;
}

.rich-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.rich-content blockquote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  background: rgba(231, 95, 79, 0.08);
}

.rich-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  border-collapse: collapse;
}

.rich-content th,
.rich-content td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.rich-content iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-card);
}

.check-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li::marker {
  color: var(--accent);
}

.brand-story-card {
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 244, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 232, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(126, 216, 242, 0.2), transparent 14rem),
    var(--ink);
  background-size: 28px 28px, 28px 28px, auto, auto;
  color: #eef6f3;
}

.brand-story-card h3,
.brand-story-card .card-kicker {
  color: #fff;
}

.brand-story-card p {
  color: rgba(238, 246, 243, 0.78);
}

.palette-swatch {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 0.32rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(253, 252, 243, 0.16), rgba(253, 252, 243, 0.72)),
    linear-gradient(180deg, color-mix(in srgb, var(--swatch) 30%, white), color-mix(in srgb, var(--swatch) 80%, #ffffff));
}

.palette-swatch::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(7, 26, 29, 0.14);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 6px rgba(253, 252, 243, 0.28);
}

.palette-swatch span {
  font-family: var(--font-mono);
  color: rgba(7, 26, 29, 0.72);
  font-size: 0.82rem;
}

.brand-kit-section .section-heading {
  max-width: 82ch;
}

.brand-kit-grid .card {
  min-height: 220px;
}

.typography-card {
  align-content: space-between;
}

.typography-card:nth-child(1) h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.typography-card:nth-child(2) h3 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 3rem);
}

.typography-card:nth-child(3) h3 {
  font-family: var(--font-mono);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.brand-mark-card {
  grid-column: span 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(126, 216, 242, 0.22), transparent 15rem),
    linear-gradient(135deg, var(--ink), #0b2b2f);
  color: var(--surface-strong);
}

.brand-mark-card img {
  width: 96px;
  height: 96px;
  margin-bottom: 1.2rem;
}

.brand-mark-card h3,
.brand-mark-card .card-kicker {
  color: var(--surface-strong);
}

.brand-mark-card p,
.brand-mark-card li {
  color: rgba(253, 252, 243, 0.78);
}

.brand-rule-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.brand-rule-list li::marker {
  color: var(--oxygen);
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  padding: 1rem;
}

.timeline-item span {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: var(--radius-control);
  background: rgba(0, 124, 120, 0.10);
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-weight: 600;
}

.article-shell {
  padding: 2.2rem 0 3rem;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.article-hero-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 68ch;
}

.article-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.article-hero-media {
  aspect-ratio: 4 / 3;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.66fr);
  gap: 1.1rem;
  align-items: start;
}

.article-body .lede {
  color: var(--ink);
  font-size: 1.15rem;
}

.article-body .callout {
  padding: 1rem;
  background: rgba(253, 252, 243, 0.92);
}

.article-body .callout h2 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.article-aside {
  position: sticky;
  top: 6.4rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.related-link {
  display: block;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.related-link:first-of-type {
  border-top: 0;
}

.search-row {
  display: grid;
  gap: 0.85rem;
}

.search-shell {
  padding: 0.65rem 0.85rem;
}

.archive-search {
  gap: 0.72rem;
}

.archive-search label {
  flex: 1 1 auto;
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.search-shell input::placeholder {
  color: var(--muted);
}

.chip {
  padding: 0.54rem 0.82rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.chip:hover,
.chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(231, 95, 79, 0.30);
  background: rgba(231, 95, 79, 0.11);
  color: var(--ink);
}

.topic-child-row {
  margin-top: 0.78rem;
}

.topic-child-row .chip {
  white-space: nowrap;
}

.page-section.archive-hero {
  padding-bottom: 0.5rem;
}

.archive-meta {
  justify-content: flex-start;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.pagination-status {
  color: var(--muted);
  font-size: 0.95rem;
}

.pagination-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.42;
  pointer-events: none;
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  background: rgba(253, 252, 243, 0.56);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.75fr));
  gap: 1.1rem;
}

.footer-stack {
  display: grid;
  gap: 1.35rem;
}

.footer-brand {
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-note {
  max-width: 48ch;
  color: var(--text-soft);
}

.footer-grid h2 {
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WHO-meets-newspaper editorial restyle */
.header-inner {
  min-height: 72px;
  padding: 0.65rem 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--primary);
}

.brand-lockup {
  gap: 0.82rem;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.brand-lockup small {
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  gap: 0;
}

.site-nav a {
  min-height: 36px;
  padding: 0.4rem 0.7rem;
  border-radius: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}

.hero-section,
.page-hero {
  padding: clamp(2.2rem, 5vw, 4.8rem) 0 clamp(1.4rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line-strong);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.hero-grid.narrow {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
}

.hero-copy {
  gap: 0.9rem;
}

.hero-copy h1,
.hero-grid.narrow .hero-copy h1,
.section-heading h1,
.section-heading h2,
.article-hero-copy h1 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: -0.048em;
}

.hero-copy h1 {
  max-width: 13.5ch;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
}

.hero-grid.narrow .hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 5.4vw, 4.8rem);
}

.lead,
.hero-copy > p,
.section-heading p {
  color: var(--text-soft);
  font-family: var(--font-prose);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.eyebrow,
.card-kicker,
.pill {
  color: var(--primary-dark);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.button {
  min-height: 44px;
  padding: 0.72rem 1.02rem;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--primary);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: var(--surface-strong);
  border-color: var(--line-strong);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.chip:focus-visible,
.blog-card a:focus-visible {
  outline: 3px solid rgba(0, 94, 184, 0.34);
}

.hero-badges span,
.chip,
.pill {
  background: var(--surface-strong);
  border-radius: 0;
}

.hero-badges span {
  border-top: 3px solid var(--primary);
}

.hero-panel,
.article-hero-media {
  border-color: var(--line-strong);
  border-radius: 0;
  box-shadow: none;
}

.hero-panel::after,
.article-hero-media::after,
.blog-card-media::after {
  background: linear-gradient(180deg, transparent, rgba(0, 94, 184, 0.08));
}

.page-section {
  padding: clamp(2rem, 4vw, 3.8rem) 0;
}

.section-heading {
  max-width: 78ch;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--ink);
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.75rem);
}

.stat-grid,
.feature-grid,
.contact-grid,
.palette-grid,
.brand-kit-grid,
.blog-grid {
  gap: 0;
}

.feature-grid,
.stat-grid {
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.stat-card,
.card,
.info-panel,
.palette-swatch,
.timeline-item,
.search-shell,
.article-body .callout {
  border-radius: 0;
  box-shadow: none;
}

.stat-card,
.card,
.info-panel {
  border-width: 0 1px 1px 0;
  background: rgba(255, 255, 255, 0.82);
}

.stat-card,
.card,
.info-panel,
.palette-swatch {
  padding: 1.15rem;
}

.stat-card strong,
.card h3,
.info-panel h3,
.blog-card-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.stat-card p,
.card p,
.info-panel p,
.palette-swatch p,
.blog-card-body p {
  color: var(--text-soft);
}

.card-kicker {
  color: var(--primary);
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #f2f6fb;
  box-shadow: none;
}

.blog-grid {
  border-top: 3px solid var(--ink);
  border-left: 1px solid var(--line);
}

.blog-card {
  border-width: 0 1px 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-card-media {
  border-bottom: 1px solid var(--line);
  background: #e7edf5;
}

.blog-card-body {
  gap: 0.64rem;
  padding: 1rem 1rem 1.1rem;
}

.blog-card-body h3 {
  font-size: clamp(1.22rem, 2vw, 1.52rem);
  line-height: 1.04;
}

.pill {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
}

.meta-row {
  color: var(--muted);
  font-size: 0.72rem;
}

.split-grid {
  gap: 1.2rem;
}

.prose,
.rich-content {
  gap: 1.05rem;
}

.prose p,
.prose li,
.rich-content p,
.rich-content li {
  color: var(--text);
  font-family: var(--font-prose);
  font-size: 1.08rem;
  line-height: 1.72;
}

.rich-content h1,
.rich-content h2,
.rich-content h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.rich-content blockquote {
  border-left-color: var(--primary);
  background: #eef3f8;
}

.rich-content table {
  border-radius: 0;
}

.brand-story-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--primary-dark);
  background-size: 18px 18px, 18px 18px, auto;
}

.brand-story-card h3,
.brand-story-card .card-kicker {
  color: #fff;
}

.brand-story-card p {
  color: rgba(255, 255, 255, 0.82);
}

.palette-swatch {
  border-radius: 0;
}

.palette-swatch::before {
  border-radius: 0;
}

.typography-card:nth-child(1) h3 {
  font-family: var(--font-display);
}

.typography-card:nth-child(2) h3 {
  font-family: var(--font-body);
}

.brand-mark-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--primary-dark);
  background-size: 18px 18px, 18px 18px, auto;
}

.brand-rule-list li::marker {
  color: #fff;
}

.timeline-item span {
  border-radius: 0;
  background: #eef3f8;
  color: var(--primary-dark);
}

.article-shell {
  padding: 2.4rem 0 3.4rem;
}

.article-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.74fr);
  padding-bottom: 1.6rem;
  border-bottom: 3px solid var(--ink);
}

.article-hero-copy h1 {
  font-size: clamp(2.45rem, 5.6vw, 5.4rem);
  line-height: 0.98;
}

.article-hero-copy p,
.article-body {
  font-family: var(--font-prose);
}

.article-layout {
  gap: 1.4rem;
}

.article-body {
  padding-top: 0.3rem;
}

.article-body .lede {
  font-family: var(--font-prose);
}

.article-body .callout {
  background: #eef3f8;
}

.article-aside .info-panel {
  border-top: 3px solid var(--primary);
}

.related-link {
  color: var(--ink);
}

.search-shell {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.search-shell input {
  font-family: var(--font-body);
}

.chip:hover,
.chip.is-active {
  border-color: var(--primary);
  background: #eef3f8;
}

.pagination {
  border-top-color: var(--line-strong);
}

.site-footer {
  border-top: 5px solid var(--primary);
  background: #f1f4f8;
}

.footer-grid h2 {
  font-family: var(--font-body);
  color: var(--primary-dark);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Professional company homepage */
.page-home {
  background:
    linear-gradient(90deg, rgba(0, 94, 184, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 56%, #eef3f8 100%);
  background-size: 96px 96px, auto;
}

.home-hero {
  padding: 3.8rem 0 2.8rem;
  border-bottom: 1px solid var(--line-strong);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.58fr);
  gap: 2.8rem;
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 1.05rem;
  min-width: 0;
}

.home-kicker {
  width: fit-content;
  margin: 0;
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 4.7rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-lead {
  max-width: 64ch;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.home-hero-panel {
  justify-self: end;
  overflow: hidden;
  width: 100%;
  max-width: 34rem;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(6, 59, 115, 0.13);
}

.home-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.95rem;
  border-bottom: 1px solid var(--line);
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 0.75rem;
  background: #f4f7fb;
  border-bottom: 1px solid var(--line);
}

.home-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.home-metric-grid div {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
}

.home-metric-grid div:last-child {
  border-right: 0;
}

.home-metric-grid dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-metric-grid dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.1;
}

.home-proof {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: 0.62fr 0.62fr 1.35fr;
}

.home-proof-grid div {
  display: grid;
  gap: 0.2rem;
  padding: 1.05rem 1.1rem;
  border-right: 1px solid var(--line);
}

.home-proof-grid div:last-child {
  border-right: 0;
}

.home-proof-grid strong {
  color: var(--primary-dark);
  font-size: 1.32rem;
  line-height: 1.1;
}

.home-proof-grid span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.home-section {
  padding: 3.35rem 0;
}

.home-intro {
  padding-top: 3.8rem;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.home-intro-grid h2,
.home-section-header h2,
.home-topic-copy h2,
.home-cta-panel h2 {
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.home-intro-copy {
  display: grid;
  gap: 1rem;
  max-width: 70ch;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.72;
}

.home-section-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.home-section-header h2 {
  max-width: 15ch;
}

.home-section-header p,
.home-topic-copy p,
.home-cta-panel p {
  max-width: 65ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.home-focus-card {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
  padding: 1.55rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.home-focus-card span,
.home-page-links span,
.home-topic-list span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-focus-card h3,
.home-page-links h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.home-focus-card p,
.home-page-links p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.62;
}

.home-topic-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  border: 1px solid var(--line-strong);
  background: #ffffff;
}

.home-topic-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.65rem;
  border-right: 1px solid var(--line-strong);
}

.home-topic-copy h2 {
  max-width: 11ch;
}

.home-topic-copy .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.home-topic-list {
  display: grid;
}

.home-topic-list a {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.home-topic-list a:last-child {
  border-bottom: 0;
}

.home-topic-list a:hover {
  background: #eef3f8;
}

.home-topic-list strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.24;
}

.home-topic-list em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  white-space: nowrap;
}

.home-page-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.home-page-links a {
  display: grid;
  gap: 0.58rem;
  min-width: 0;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.home-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-left: 1px solid var(--line);
}

.home-report-grid .blog-card {
  border-width: 0 1px 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.home-report-grid .blog-card-media {
  aspect-ratio: 16 / 9;
}

.home-report-grid .blog-card-body {
  gap: 0.66rem;
  padding: 1.05rem;
}

.home-report-grid .blog-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.home-report-grid .blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.52;
}

.home-cta {
  padding: 0 0 3.8rem;
}

.home-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem;
  border: 1px solid var(--line-strong);
  border-top: 5px solid var(--primary);
  background: #ffffff;
}

.home-cta-panel h2 {
  max-width: 16ch;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .article-hero,
  .article-layout,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .blog-grid,
  .feature-grid,
  .stat-grid,
  .palette-grid,
  .brand-kit-grid,
  .contact-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-mark-card {
    grid-column: span 2;
  }

  .home-hero {
    padding: 2.8rem 0 2.2rem;
  }

  .home-hero-grid,
  .home-intro-grid,
  .home-topic-panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .home-hero-copy h1 {
    max-width: 13ch;
    font-size: 3.8rem;
  }

  .home-hero-panel {
    justify-self: start;
    max-width: 38rem;
  }

  .home-topic-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .home-focus-grid,
  .home-report-grid,
  .home-page-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100vw - 1.1rem));
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-lockup small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0.55rem;
    right: 0.55rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(253, 252, 243, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-copy h1,
  .hero-grid.narrow .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .blog-grid,
  .feature-grid,
  .stat-grid,
  .palette-grid,
  .brand-kit-grid,
  .contact-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .brand-mark-card {
    grid-column: auto;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .article-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .button {
    width: 100%;
  }

  .home-hero {
    padding: 1.65rem 0 1.35rem;
  }

  .home-hero-grid,
  .home-intro-grid,
  .home-topic-panel {
    gap: 1rem;
  }

  .home-hero-copy h1 {
    max-width: 10ch;
    font-size: 3.05rem;
    line-height: 1;
  }

  .home-lead,
  .home-intro-copy,
  .home-section-header p,
  .home-topic-copy p,
  .home-cta-panel p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .home-actions {
    gap: 0.55rem;
  }

  .home-panel-header,
  .home-metric-grid div {
    padding: 0.75rem;
  }

  .home-metric-grid,
  .home-proof-grid,
  .home-focus-grid,
  .home-report-grid,
  .home-page-links {
    grid-template-columns: 1fr;
  }

  .home-metric-grid div,
  .home-proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-metric-grid div:last-child,
  .home-proof-grid div:last-child {
    border-bottom: 0;
  }

  .home-section {
    padding: 2.25rem 0;
  }

  .home-intro {
    padding-top: 2.5rem;
  }

  .home-intro-grid h2,
  .home-section-header h2,
  .home-topic-copy h2 {
    max-width: 12ch;
    font-size: 2.1rem;
  }

  .home-focus-card,
  .home-topic-copy,
  .home-page-links a,
  .home-cta-panel {
    padding: 1.05rem;
  }

  .home-topic-list a {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.9rem 1.05rem;
  }

  .home-topic-list em {
    white-space: normal;
  }

  .home-cta {
    padding-bottom: 2.5rem;
  }

  .home-cta-panel h2 {
    max-width: 13ch;
    font-size: 1.82rem;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
