:root {
  --font-sans:
    "Manrope",
    "Inter",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  --display-xl: 4.6rem;
  --display-lg: 3.1rem;
  --display-md: 2.15rem;
  --heading-sm: 1.7rem;
  --text-lg: 1.14rem;
  --ink: #13211c;
  --ink-soft: #244138;
  --muted: #586963;
  --paper: #f5f8f6;
  --surface: #ffffff;
  --surface-soft: #edf5f1;
  --forest: #12382f;
  --forest-deep: #0c231d;
  --teal: #1f8a73;
  --coral: #f26a4b;
  --gold: #ddb04a;
  --line: #d8e4de;
  --line-strong: #b9cfc4;
  --shadow: 0 18px 48px rgba(19, 33, 28, 0.08);
  --shadow-strong: 0 26px 74px rgba(19, 33, 28, 0.18);
  --radius: 8px;
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  letter-spacing: 0;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 40;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  transform-origin: left center;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--radius);
  padding: 11px 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216, 228, 222, 0.7);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(185, 207, 196, 0.82);
  box-shadow: 0 10px 32px rgba(19, 33, 28, 0.08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  transition: color var(--ease);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transition: right var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--forest);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.94) contrast(0.96) brightness(0.64);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 27, 22, 0.92) 0%, rgba(8, 27, 22, 0.82) 44%, rgba(8, 27, 22, 0.44) 100%),
    linear-gradient(180deg, rgba(15, 42, 35, 0.18) 0%, rgba(15, 42, 35, 0.36) 100%);
}

.hero-grid-lines {
  left: auto;
  width: min(44vw, 560px);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 28%, rgba(0, 0, 0, 1) 100%);
  opacity: 0.18;
}

.hero-home {
  min-height: 840px;
  display: grid;
  align-items: center;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
  padding: 126px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: var(--display-xl);
  line-height: 1;
  font-weight: 800;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--text-lg);
  line-height: 1.72;
}

.hero-actions,
.form-actions,
.quick-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 22px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f46f51, #eb5b5f);
  box-shadow: 0 18px 38px rgba(242, 106, 75, 0.28);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.section .button-secondary,
.article-page .button-secondary,
.page-hero .button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(19, 33, 28, 0.06);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-points div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-points span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-stack {
  position: relative;
  display: grid;
  gap: 18px;
  align-items: start;
  padding-top: 34px;
}

.hero-panel,
.hero-story-card,
.topic-card,
.article-card,
.resource-card,
.article-aside,
.editorial-list > div,
.empty-state {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(135deg, rgba(21, 62, 52, 0.66) 0%, rgba(10, 33, 27, 0.72) 100%);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.panel-kicker,
.card-meta {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 12px 0 16px;
  font-size: var(--display-md);
  line-height: 1.1;
  font-weight: 800;
}

.hero-panel ul,
.editorial-list,
.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.hero-panel li + li {
  margin-top: 12px;
}

.hero-story-card {
  display: grid;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(216, 228, 222, 0.84);
  box-shadow: var(--shadow);
}

.hero-story-card:hover,
.hero-story-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(19, 33, 28, 0.14);
}

.hero-story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 440ms ease;
}

.hero-story-card:hover img,
.hero-story-card:focus-visible img {
  transform: scale(1.04);
}

.hero-story-body {
  padding: 24px 24px 22px;
}

.hero-story-body h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: var(--heading-sm);
  line-height: 1.12;
}

.hero-story-body p {
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-story-link,
.topic-card strong,
.text-link {
  color: var(--teal);
  font-weight: 800;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 0 0 6px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  transform: translateY(-56px);
}

.trust-strip div {
  min-height: 164px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.trust-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.12;
}

.trust-strip span,
.section-heading p,
.split-heading p,
.article-card p,
.resource-card p,
.editorial-copy p,
.editorial-list span,
.article-aside p,
.policy-body p,
.empty-state p,
.spotlight-copy > p:not(.eyebrow),
.spotlight-points span {
  color: var(--muted);
}

.spotlight-section {
  padding-top: 34px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 54px;
  align-items: center;
}

.spotlight-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.spotlight-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 620ms ease;
}

.spotlight-media:hover img {
  transform: scale(1.03);
}

.spotlight-copy h2,
.section-heading h2,
.split-heading h2,
.editorial-copy h2 {
  margin-bottom: 18px;
  font-size: var(--display-lg);
  line-height: 1.06;
  font-weight: 800;
}

.spotlight-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.spotlight-points div {
  padding-left: 18px;
  border-left: 3px solid rgba(31, 138, 115, 0.18);
}

.spotlight-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.topic-grid,
.article-grid,
.resource-grid {
  display: grid;
  gap: 22px;
}

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

.topic-card,
.article-card,
.resource-card,
.article-aside,
.editorial-list > div,
.empty-state {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.topic-card::before,
.article-card::before,
.resource-card::before,
.editorial-list > div::before,
.article-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.topic-card:hover,
.article-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 56px rgba(19, 33, 28, 0.12);
}

.topic-card {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(237, 245, 241, 0.58) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.topic-index {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.topic-card h3 {
  margin: 0 0 12px;
  font-size: var(--heading-sm);
  line-height: 1.1;
}

.article-band {
  background: linear-gradient(180deg, #f6faf8 0%, #ffffff 100%);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card a:first-child {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 440ms ease;
}

.article-card:hover img {
  transform: scale(1.04);
}

.article-card > div {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card h2,
.article-card h3 {
  margin: 10px 0 12px;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 800;
}

.article-card p {
  margin-bottom: 16px;
}

.article-card .text-link {
  margin-top: auto;
}

.article-grid-home .article-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.article-grid-home .article-card:first-child a:first-child {
  height: 100%;
}

.article-grid-home .article-card:first-child img {
  height: 100%;
  min-height: 100%;
}

.article-grid-home .article-card:first-child > div {
  padding: 30px;
}

.article-grid-home .article-card:first-child h3 {
  font-size: 1.92rem;
}

.resource-section {
  background: var(--surface-soft);
}

.resource-card {
  padding: 30px;
}

.resource-card > span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 14px 0 14px;
  font-size: 1.6rem;
  line-height: 1.12;
}

.editorial-section {
  background:
    linear-gradient(180deg, #10221c 0%, #091915 100%);
  color: #ffffff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.editorial-copy p,
.editorial-list span {
  color: rgba(255, 255, 255, 0.74);
}

.editorial-list {
  display: grid;
  gap: 16px;
  padding-left: 0;
}

.editorial-list > div {
  padding: 24px 24px 24px 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.editorial-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.pillars-section {
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pillar-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.pillar-card:hover,
.pillar-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 56px rgba(19, 33, 28, 0.12);
}

.pillar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.pillar-card:hover img,
.pillar-card:focus-within img {
  transform: scale(1.04);
}

.pillar-card-body {
  padding: 24px;
}

.pillar-card-body h3 {
  margin: 10px 0 12px;
  font-size: 1.48rem;
  line-height: 1.14;
}

.metrics-section {
  padding-top: 30px;
  background: var(--surface-soft);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card h3 {
  margin: 0 0 10px;
  font-size: 1.36rem;
  line-height: 1.15;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid .editorial-copy p,
.about-grid .editorial-list span {
  color: var(--muted);
}

.about-grid .editorial-list > div {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.page-hero,
.article-hero {
  padding: 128px 0 88px;
  background:
    linear-gradient(135deg, #eff5f2 0%, #ffffff 52%, #f5f8f6 100%);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 800;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.article-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.page-count {
  margin-top: 18px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 780px);
  gap: 56px;
  align-items: start;
  padding: 80px 0 110px;
}

.article-aside {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.article-toc {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.article-toc a {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.36;
  transition: color var(--ease);
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--teal);
}

.toc-level-3 {
  padding-left: 14px;
  font-size: 0.94rem;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 22px;
}

.article-body li {
  margin: 8px 0;
}

.article-body blockquote {
  margin: 24px 0;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: #f1f8f5;
}

.article-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.article-body thead th {
  background: var(--surface-soft);
  font-weight: 800;
}

.article-body figure {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f201b;
}

.article-body figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body figcaption {
  padding: 14px 18px;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.95rem;
}

.article-body figcaption a {
  color: inherit;
  text-decoration: underline;
}

.takeaways-box {
  margin-bottom: 40px;
  border: 1px solid rgba(31, 138, 115, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, #eef8f3 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.takeaways-box h2 {
  margin: 0 0 14px;
  font-size: 1.62rem;
}

.takeaways-box ul,
.takeaways-box ol {
  margin-bottom: 0;
}

.inline-cta {
  margin: 40px 0;
  border: 1px solid rgba(15, 123, 108, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 123, 108, 0.06), rgba(255, 255, 255, 0.94));
}

.inline-cta-inner {
  padding: 30px;
}

.inline-cta-kicker {
  margin: 0 0 10px;
  color: #0f7b6c;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-cta h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.inline-cta p {
  margin-bottom: 16px;
}

.article-body h2 {
  margin: 46px 0 14px;
  font-size: 2.3rem;
  line-height: 1.08;
  font-weight: 800;
}

.article-body h3 {
  margin: 32px 0 12px;
  font-size: 1.62rem;
  line-height: 1.15;
}

.article-body a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 54px 0 8px;
  border: 1px solid rgba(31, 138, 115, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, #eef8f3 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.article-body .article-cta h2 {
  margin: 0 0 10px;
  font-size: 1.94rem;
}

.article-cta p {
  margin: 0;
}

.article-body .article-cta a {
  color: #ffffff;
  text-decoration: none;
}

.comments-section {
  padding-top: 26px;
}

.comments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 22px;
  align-items: start;
}

.comments-panel,
.comment-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.comments-panel h2,
.comment-form-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.comment-summary {
  display: grid;
  gap: 4px;
  margin: 16px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 138, 115, 0.22);
  border-radius: var(--radius);
  background: #f2faf6;
}

.comment-summary strong {
  font-size: 1.5rem;
}

.comment-summary span {
  color: var(--muted);
}

.comment-list {
  display: grid;
  gap: 12px;
}

.comment-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.comment-item header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.comment-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-item p {
  margin: 0;
}

.comment-form {
  display: grid;
  gap: 12px;
}

.comment-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.comment-alert {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
}

.comment-alert-success {
  background: #edf8f2;
  border-color: #b9e4cd;
  color: #0f6f49;
}

.comment-alert-info {
  background: #eef6ff;
  border-color: #c9ddfb;
  color: #1f4f95;
}

.comment-alert-error {
  background: #fff0f0;
  border-color: #efc8c8;
  color: #8b2f2f;
}

.policy-body {
  max-width: 860px;
}

.search-form {
  width: min(760px, 100%);
  margin-top: 28px;
}

.search-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.search-form div {
  display: flex;
  gap: 12px;
}

.search-form input {
  flex: 1;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--surface);
  font: inherit;
  color: var(--ink);
}

.empty-state {
  padding: 34px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 38px;
}

.pagination a {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.pagination a:hover,
.pagination a:focus-visible,
.pagination .is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--forest-deep);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.76fr 0.76fr 1.13fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer .brand small,
.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin: 10px 0;
  transition: color var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

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

  .hero-home {
    min-height: 980px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-points,
  .trust-strip,
  .pillar-grid,
  .metrics-grid,
  .topic-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-grid-home .article-card:first-child {
    grid-column: 1 / -1;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 14px;
    background: var(--surface);
    font: inherit;
    font-weight: 800;
    color: var(--ink);
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .spotlight-copy h2,
  .section-heading h2,
  .split-heading h2,
  .editorial-copy h2,
  .comments-panel h2,
  .comment-form-card h3,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.75rem;
  }

  .article-grid-home .article-card:first-child {
    grid-template-columns: 1fr;
  }

  .article-grid-home .article-card:first-child img {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .hero-home {
    min-height: 860px;
  }

  .hero-grid {
    padding: 102px 0 80px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .hero-points,
  .trust-strip,
  .pillar-grid,
  .metrics-grid,
  .topic-grid,
  .article-grid,
  .article-grid-home,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-copy h2,
  .section-heading h2,
  .split-heading h2,
  .editorial-copy h2,
  .comments-panel h2,
  .comment-form-card h3,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 78px 0;
  }

  .spotlight-section {
    padding-top: 14px;
  }

  .trust-strip {
    transform: none;
  }

  .hero-actions,
  .search-form div,
  .footer-bottom,
  .article-cta {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .article-card img,
  .hero-story-card img,
  .pillar-card img {
    height: 210px;
  }

  .comments-panel,
  .comment-form-card {
    padding: 20px;
  }

  .spotlight-media img {
    min-height: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
