:root {
  color-scheme: light;
  --bg: #f5f4ed;
  --bg-elevated: #fbfaf5;
  --bg-soft: #ece8dc;
  --surface: rgba(255, 252, 244, 0.82);
  --surface-strong: #fffdf7;
  --surface-dark: #141413;
  --surface-dark-2: #20201e;
  --surface-dark-3: #30302e;
  --text: #1f1f1d;
  --text-strong: #11110f;
  --text-muted: #5e5d59;
  --text-subtle: #87867f;
  --border: rgba(94, 93, 89, 0.18);
  --border-strong: rgba(94, 93, 89, 0.3);
  --border-soft: rgba(240, 238, 230, 0.95);
  --accent: #c96442;
  --accent-strong: #b35030;
  --accent-soft: #efd1c6;
  --accent-wash: rgba(201, 100, 66, 0.12);
  --green: #6f7d61;
  --green-soft: rgba(111, 125, 97, 0.14);
  --sand: #e5dcc6;
  --stone: #d8d2c0;
  --shadow-sm: 0 1px 2px rgba(53, 41, 31, 0.06), 0 4px 14px rgba(53, 41, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(42, 33, 23, 0.1), 0 2px 8px rgba(42, 33, 23, 0.05);
  --shadow-lg: 0 22px 50px rgba(42, 33, 23, 0.14), 0 2px 12px rgba(42, 33, 23, 0.08);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max-width: 1180px;
  --max-width-narrow: 980px;
  --page-pad: clamp(1rem, 3vw, 2rem);
  --section-gap: clamp(2rem, 5vw, 4.5rem);
  --grid-gap: clamp(0.9rem, 2vw, 1.4rem);
  --focus: 0 0 0 4px rgba(201, 100, 66, 0.18), 0 0 0 1px rgba(201, 100, 66, 0.45) inset;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(.2,.8,.2,1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --topbar-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 100, 66, 0.08), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(111, 125, 97, 0.09), transparent 24%),
    linear-gradient(180deg, #f7f5ee 0%, var(--bg) 34%, #f3f1e8 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(31,31,29,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(31,31,29,0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 55%);
  opacity: .5;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; margin: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--text-strong); letter-spacing: -0.03em; }
h1, h2 { font-family: var(--serif); font-weight: 600; }
h1 { font-size: clamp(3rem, 7vw, 6.2rem); line-height: 0.95; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.18; }
h4 { font-size: 1rem; line-height: 1.2; }
small, .micro { font-size: 0.875rem; color: var(--text-subtle); }
.container {
  width: min(var(--max-width), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}
.container.narrow { width: min(var(--max-width-narrow), calc(100% - (var(--page-pad) * 2))); }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; outline: none; box-shadow: var(--focus), var(--shadow-sm); }
.site-shell {
  position: relative;
  z-index: 1;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(245, 244, 237, 0.72);
  border-bottom: 1px solid rgba(94, 93, 89, 0.1);
}
.topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}
.brand-mark {
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), transparent 28%),
    conic-gradient(from 140deg, var(--accent), #9b4b31, #d67d5a, var(--accent));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.34), 0 10px 18px rgba(201,100,66,.18);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
}
.brand-copy { min-width: 0; }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-tag {
  display: block;
  margin-top: .16rem;
  color: var(--text-subtle);
  font-size: .78rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  padding: .78rem .98rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--text-strong);
  background: rgba(255,255,255,.65);
  transform: translateY(-1px);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(94,93,89,.14);
}
.nav a[aria-current="page"] {
  color: var(--text-strong);
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 1px rgba(201,100,66,.16), var(--shadow-sm);
}
.hero {
  padding: clamp(2rem, 4vw, 4rem) 0 var(--section-gap);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}
.hero-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(94,93,89,.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,253,247,.55));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -18% -36% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,100,66,.16), transparent 70%);
  pointer-events: none;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(201,100,66,.08);
  color: var(--accent-strong);
  border: 1px solid rgba(201,100,66,.15);
  font-size: .82rem;
  letter-spacing: .02em;
}
.hero-kicker::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,100,66,.14);
}
.hero h1 { margin-top: 1rem; max-width: 11ch; }
.hero-lede {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  color: var(--text-muted);
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
.button,
button,
input,
select,
textarea {
  font: inherit;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .22s var(--ease-spring), box-shadow .22s var(--ease-spring), background-color .22s var(--ease-spring), border-color .22s var(--ease-spring);
  cursor: pointer;
  user-select: none;
}
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.button-primary {
  background: linear-gradient(180deg, #d06f4d, var(--accent));
  color: #fffaf6;
  box-shadow: 0 14px 24px rgba(201,100,66,.24);
}
.button-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 30px rgba(201,100,66,.28); }
.button-secondary {
  background: rgba(255,255,255,.72);
  color: var(--text-strong);
  border-color: rgba(94,93,89,.18);
}
.button-secondary:hover { transform: translateY(-1px); background: #fff; }
.hero-aside {
  display: grid;
  gap: var(--grid-gap);
  align-content: start;
}
.mini-card,
.info-card,
.resource-card,
.proof-card,
.quote-card,
.panel,
.stat-strip,
.editorial-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94,93,89,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,253,248,.9));
  box-shadow: var(--shadow-sm);
}
.mini-card { padding: 1rem; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.stat {
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(94,93,89,.12);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat span { color: var(--text-subtle); font-size: .84rem; line-height: 1.45; }
.visual-rail {
  min-height: 100%;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
.visual-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,100,66,.18), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(111,125,97,.17), transparent 22%),
    linear-gradient(180deg, rgba(245,244,237,.2), rgba(245,244,237,.92));
  pointer-events: none;
}
.visual-rail > * { position: relative; z-index: 1; }
.editorial-stack {
  display: grid;
  gap: .85rem;
}
.diagram {
  padding: 1rem;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(94,93,89,.12);
  border-radius: 22px;
}
.diagram-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: .8rem;
}
.diagram-title span { color: var(--text-subtle); font-size: .8rem; }
.sparkline {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(201,100,66,.08), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(94,93,89,.08) 1px, transparent 1px),
    linear-gradient(rgba(94,93,89,.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(201,100,66,.08), rgba(111,125,97,.08));
  background-size: auto, 20% 100%, 100% 20%, auto;
  position: relative;
  overflow: hidden;
}
.sparkline::before,
.sparkline::after {
  content: "";
  position: absolute;
  inset: 12% 6% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,100,66,.65), transparent);
  box-shadow: 0 42px 0 rgba(111,125,97,.28), 0 84px 0 rgba(94,93,89,.18), 0 126px 0 rgba(201,100,66,.52);
}
.sparkline::after {
  inset: auto 6% 14% 6%;
  height: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 10% 52%, rgba(201,100,66,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 30% 44%, rgba(201,100,66,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 36%, rgba(111,125,97,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 50%, rgba(94,93,89,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 90% 28%, rgba(201,100,66,.78) 0 3px, transparent 4px);
}
.section {
  padding: var(--section-gap) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
}
.section-head p {
  max-width: 52ch;
  color: var(--text-muted);
}
.pill-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pill,
.tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .46rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(94,93,89,.14);
  background: rgba(255,255,255,.64);
  color: var(--text-muted);
  font-size: .8rem;
  white-space: nowrap;
}
.pill-accent {
  background: rgba(201,100,66,.1);
  border-color: rgba(201,100,66,.16);
  color: var(--accent-strong);
}
.overview-grid,
.card-grid,
.resource-grid,
.proof-grid,
.split-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.overview-card {
  grid-column: span 4;
  padding: 1.25rem;
  min-height: 100%;
}
.overview-card:nth-child(2) { transform: translateY(12px); }
.overview-card:nth-child(3) { transform: translateY(24px); }
.overview-card .eyebrow,
.resource-card .eyebrow,
.proof-card .eyebrow,
.quote-card .eyebrow {
  display: inline-block;
  margin-bottom: .7rem;
  color: var(--accent-strong);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
}
.card-copy { margin-top: .7rem; color: var(--text-muted); }
.grid-span-6 { grid-column: span 6; }
.grid-span-7 { grid-column: span 7; }
.grid-span-8 { grid-column: span 8; }
.grid-span-12 { grid-column: 1 / -1; }
.resource-card {
  padding: 1.1rem;
  display: grid;
  gap: .7rem;
}
.resource-card a {
  color: var(--text-strong);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  color: var(--text-subtle);
  font-size: .82rem;
}
.resource-card p { color: var(--text-muted); }
.resource-card:hover,
.proof-card:hover,
.info-card:hover,
.editorial-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.resource-card,
.proof-card,
.info-card,
.editorial-box { transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out), border-color .24s var(--ease-out); }
.proof-card {
  padding: 1.15rem;
  min-height: 100%;
}
.proof-card strong,
.stat strong,
.info-card strong { font-family: var(--serif); }
.stat-strip {
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.stat-strip .metric { padding-right: .8rem; border-right: 1px solid rgba(94,93,89,.12); }
.stat-strip .metric:last-child { border-right: 0; }
.metric strong { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2.2rem); line-height: 1; }
.metric span { display: block; margin-top: .34rem; color: var(--text-subtle); font-size: .82rem; }
.quote-card {
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
}
.quote-card::after {
  content: "“";
  position: absolute;
  right: .9rem;
  top: .3rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,100,66,.16);
}
.quote-card p { color: var(--text-muted); font-size: 1.03rem; max-width: 48ch; }
.quote-card cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  color: var(--text-subtle);
  font-size: .92rem;
}
.panel {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}
.callout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(201,100,66,.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,250,243,.84));
  border: 1px solid rgba(201,100,66,.14);
  box-shadow: var(--shadow-md);
}
.callout p { color: var(--text-muted); max-width: 58ch; }
.callout-actions {
  display: flex;
  justify-content: flex-end;
  gap: .8rem;
  flex-wrap: wrap;
}
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(94,93,89,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-note { color: var(--text-muted); max-width: 48ch; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--text-muted);
  padding: .45rem 0;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-strong);
  border-bottom-color: rgba(94,93,89,.22);
  outline: none;
}
[data-hidden] { display: none !important; }
[data-shpitto-blog-root] {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(94,93,89,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,253,247,.92));
  box-shadow: var(--shadow-md);
}
[data-shpitto-blog-list] {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}
[data-shpitto-blog-list] > * {
  grid-column: 1 / -1;
}
.blog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}
.filter-button {
  border: 1px solid rgba(94,93,89,.14);
  background: rgba(255,255,255,.74);
  color: var(--text-muted);
  border-radius: 999px;
  padding: .55rem .9rem;
  cursor: pointer;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.filter-button[aria-pressed="true"] {
  color: var(--text-strong);
  background: rgba(201,100,66,.1);
  border-color: rgba(201,100,66,.16);
}
.filter-button:hover,
.filter-button:focus-visible { transform: translateY(-1px); outline: none; }
.article-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  padding: 1.05rem;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94,93,89,.14);
  box-shadow: var(--shadow-sm);
}
.article-card .media {
  min-height: 10rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 26%, rgba(201,100,66,.26), transparent 16%),
    radial-gradient(circle at 72% 30%, rgba(111,125,97,.22), transparent 18%),
    linear-gradient(135deg, rgba(240,234,220,.95), rgba(251,249,243,.95));
  border: 1px solid rgba(94,93,89,.1);
}
.article-card .body { display: grid; gap: .7rem; align-content: start; }
.article-card .body p { color: var(--text-muted); }
.article-card .meta { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--text-subtle); font-size: .82rem; }
.article-card .title { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.12; }
.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(94,93,89,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,253,247,.92));
}
.media-frame video,
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
[data-carousel] { position: relative; }
[data-carousel] .carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}
[data-carousel] .carousel-track > * {
  flex: 0 0 min(88%, 420px);
  scroll-snap-align: start;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.field {
  display: grid;
  gap: .45rem;
}
label { font-size: .88rem; color: var(--text-muted); }
input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: .82rem 1rem;
  color: var(--text-strong);
  border-radius: 14px;
  border: 1px solid rgba(94,93,89,.18);
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
textarea { min-height: 8.5rem; resize: vertical; }
input::placeholder,
textarea::placeholder { color: #9b9992; }
hr {
  border: 0;
  border-top: 1px solid rgba(94,93,89,.12);
  margin: 1.25rem 0;
}
.footer-fineprint {
  color: var(--text-subtle);
  font-size: .82rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .callout,
  .footer-grid,
  .section-head,
  .article-card,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .overview-card,
  .grid-span-6,
  .grid-span-7,
  .grid-span-8 {
    grid-column: 1 / -1;
  }
  .overview-card:nth-child(2),
  .overview-card:nth-child(3) { transform: none; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-links { justify-content: flex-start; }
  .callout-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --topbar-h: 70px; }
  .topbar-inner { align-items: flex-start; padding: .85rem 0; }
  .brand-tag { display: none; }
  .nav {
    gap: .25rem;
    margin-left: auto;
  }
  .nav a { padding: .68rem .82rem; }
  .hero { padding-top: 1.2rem; }
  .hero h1 { max-width: 100%; }
  .hero-actions,
  .blog-tools,
  .tag-row,
  .pill-row,
  .callout-actions { gap: .65rem; }
  .button { width: 100%; }
  .button-secondary,
  .button-primary { justify-content: center; }
  .stat-grid,
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip .metric { border-right: 0; border-bottom: 1px solid rgba(94,93,89,.12); padding-bottom: .8rem; }
  .stat-strip .metric:last-child { border-bottom: 0; padding-bottom: 0; }
  .resource-grid,
  .proof-grid,
  .card-grid,
  .overview-grid,
  .article-grid { gap: .8rem; }
  .article-card { padding: .9rem; }
  .article-card .media { min-height: 8.5rem; }
  .section { padding: 2.2rem 0; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 9vw, 2.7rem); }
}

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

@container (max-width: 640px) {
  .section-head { grid-template-columns: 1fr; }
  .nav { justify-content: flex-start; }
}