:root {
  --forest: #063f2e;
  --evergreen: #042419;
  --moss: #127a49;
  --mint: #b9ff4a;
  --leaf: #42bd6f;
  --blue: #263f57;
  --gold: #d6b65f;
  --paper: #f4f6ef;
  --white: #ffffff;
  --ink: #071d16;
  --muted: #536a61;
  --line: rgba(6, 63, 46, .16);
  --measure: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; overflow-wrap: break-word; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  transform: translateY(-180%);
  background: var(--evergreen);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  background: rgba(244, 246, 239, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--measure), calc(100vw - 56px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 284px;
}
.brand img { display: block; width: 112px; height: auto; }
.brand span { max-width: 210px; color: var(--muted); font-size: 13px; line-height: 1.3; }
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
nav a { position: relative; padding: 28px 0; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--moss);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48vw;
  min-width: 520px;
  background: url("images/hero.webp") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 48%, rgba(244, 246, 239, .72) 56%, rgba(244, 246, 239, .08) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--measure), calc(100vw - 56px));
  margin: 0 auto;
  padding: 146px 0 86px;
}
.page-hero {
  min-height: 520px;
  padding: 126px max(28px, calc((100vw - var(--measure)) / 2)) 76px;
  background:
    linear-gradient(90deg, rgba(4, 36, 25, .96), rgba(6, 63, 46, .9) 54%, rgba(18, 122, 73, .72)),
    url("images/hero.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--moss); }
h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h1 {
  max-width: 820px;
  font-size: 72px;
  line-height: .98;
  font-weight: 680;
}
h2 {
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
}
h3 {
  font-size: 18px;
  line-height: 1.28;
  font-weight: 760;
}
.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.72;
}
.hero .lead { color: var(--muted); }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--mint);
  border-radius: 4px;
  background: var(--mint);
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 850;
}
.button--light {
  background: transparent;
  color: var(--white);
}
.hero .button--light {
  border-color: var(--forest);
  color: var(--forest);
}
.hero-metrics {
  max-width: 880px;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-metrics span {
  min-width: 0;
  padding: 18px 20px 18px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--moss);
  font-size: 30px;
  line-height: 1;
}
.intro-grid,
.detail-grid,
.section,
.site-footer {
  width: min(var(--measure), calc(100vw - 56px));
  margin: 0 auto;
}
.intro-grid {
  padding: 78px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.intro-item,
.detail {
  min-width: 0;
  padding-top: 22px;
  border-top: 2px solid var(--moss);
}
.intro-item p,
.detail p,
.section-head p,
.tile small,
.module p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}
.detail-grid {
  padding: 76px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}
.section--dark {
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--measure)) / 2));
  padding-right: max(28px, calc((100vw - var(--measure)) / 2));
  background: var(--evergreen);
  color: var(--white);
  border-top: 0;
}
.section--dark .section-head p,
.section--dark .module p { color: rgba(255, 255, 255, .7); }
.section-head {
  display: grid;
  grid-template-columns: .52fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 36px;
}
.section-head h2 { max-width: 640px; }
.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}
.module {
  min-height: 260px;
  min-width: 0;
  padding: 25px;
  background: var(--forest);
}
.module span {
  display: block;
  margin-bottom: 42px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}
.evidence-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.evidence-list span {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile {
  min-height: 245px;
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-radius: 0;
}
.tile:hover,
.tile:focus-visible { background: #edf7e6; }
.tile span {
  color: var(--moss);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tile strong { color: var(--forest); font-size: 19px; line-height: 1.26; }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.faq-list article {
  padding-top: 18px;
  border-top: 2px solid var(--gold);
}
.site-footer {
  padding: 72px 0 82px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
}
.site-footer img { width: 118px; height: auto; }
.footer-note { color: var(--moss) !important; font-weight: 750; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--forest);
}
.footer-grid a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 1040px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .brand { min-width: 0; }
  nav { flex-wrap: wrap; gap: 8px 18px; }
  nav a { padding: 4px 0; }
  nav a::after { bottom: -2px; }
  .intro-grid,
  .detail-grid,
  .section-head,
  .site-footer { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiles,
  .evidence-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-header { min-height: 0; }
  .header-inner { width: calc(100vw - 28px); gap: 12px; padding: 13px 0 12px; }
  .brand img { width: 106px; }
  .brand span { display: none; }
  nav {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
    gap: 8px 10px;
    padding-bottom: 4px;
    font-size: 11px;
  }
  nav a { white-space: normal; padding: 0; }
  .hero { min-height: 720px; }
  .hero::before {
    width: 100%;
    min-width: 0;
    opacity: .18;
    background-position: 64% center;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(244, 246, 239, .96) 0%, rgba(244, 246, 239, .92) 58%, rgba(244, 246, 239, .86) 100%);
  }
  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 118px 24px 54px;
  }
  .intro-grid,
  .detail-grid,
  .section,
  .site-footer {
    width: calc(100% - 48px);
    max-width: 356px;
    margin-left: 24px;
    margin-right: 24px;
  }
  .page-hero {
    min-height: 500px;
    padding: 92px 14px 52px;
  }
  h1 { max-width: 312px; font-size: 32px; line-height: 1.12; }
  h2 { font-size: 24px; }
  .lead { max-width: 312px; font-size: 16px; line-height: 1.65; }
  .actions { margin-top: 26px; }
  .button { max-width: 100%; min-height: 44px; white-space: normal; text-align: center; }
  .hero-metrics,
  .module-grid,
  .tiles,
  .evidence-list,
  .faq-list,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-metrics { margin-top: 38px; }
  .hero-metrics span { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, .18); }
  .intro-grid,
  .detail-grid { gap: 28px; padding-top: 58px; }
  .section { padding: 62px 0; }
  .section--dark {
    padding-left: 14px;
    padding-right: 14px;
  }
  .module,
  .tile { min-height: 180px; }
}

.longform {
  width: min(var(--measure), calc(100vw - 56px));
  margin: 0 auto;
  padding: 54px 0 12px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.longform-toc {
  position: sticky;
  top: 96px;
  padding-top: 8px;
}
.longform-toc p {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.longform-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}
.longform-toc a:hover,
.longform-toc a:focus-visible { color: var(--forest); }
.longform-body { min-width: 0; max-width: 760px; }
.longform-body > h2,
.module-article h2,
.faq-block h2 {
  margin: 46px 0 14px;
  color: var(--forest);
}
.longform-body > h2:first-child,
.module-article h2:first-child { margin-top: 0; }
.longform-body h3,
.module-article h3 {
  margin: 28px 0 10px;
  color: var(--forest);
}
.longform-body p,
.module-article p,
.faq-block p,
.prose p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}
.longform-body ul,
.module-article ul,
.prose ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.longform-body li,
.module-article li { margin: 0 0 8px; }
.callout {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--mint);
}
.callout strong { display: block; margin-bottom: 8px; color: var(--forest); }
.callout p:last-child { margin-bottom: 0; }
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.page-meta span { border-left: 2px solid var(--mint); padding-left: 10px; }
.artifact-grid,
.audience-grid,
.track-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.artifact-grid article,
.audience-grid article,
.track-grid article,
.insight-grid article {
  min-width: 0;
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.artifact-grid h3,
.audience-grid h3,
.track-grid h3,
.insight-grid h3 { color: var(--forest); }
.artifact-grid p,
.audience-grid p,
.track-grid p,
.insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.insight-grid a { color: var(--moss); font-size: 13px; font-weight: 800; }
.weekly-rhythm {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.weekly-rhythm article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.weekly-rhythm strong { color: var(--forest); }
.weekly-rhythm p { margin: 6px 0 0; color: var(--muted); }
.faq-block {
  width: min(var(--measure), calc(100vw - 56px));
  margin: 0 auto;
  padding: 20px 0 40px;
}
.faq-block .faq-list { gap: 32px 40px; }
.faq-block article h3 { margin-bottom: 8px; color: var(--forest); }
.module-article {
  width: min(760px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 12px 0 20px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 8px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-strip div {
  min-width: 0;
  padding: 20px;
  background: var(--white);
}
.stat-strip strong {
  display: block;
  color: var(--moss);
  font-size: 22px;
  line-height: 1.1;
}
.stat-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.prose {
  width: min(var(--measure), calc(100vw - 56px));
  margin: 0 auto;
  padding: 28px 0 8px;
}
.prose-wide { max-width: 760px; }
.cta-band {
  width: min(var(--measure), calc(100vw - 56px));
  margin: 28px auto 12px;
  padding: 36px 40px;
  background: var(--forest);
  color: var(--white);
}
.cta-band h2 { max-width: 640px; }
.cta-band p { max-width: 640px; color: rgba(255,255,255,.78); }
.checklist {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  list-style: none;
  padding: 14px 16px 14px 18px;
  background: var(--white);
  border-left: 3px solid var(--leaf);
  color: var(--ink);
}
.footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
nav { gap: 18px; }

@media (max-width: 1040px) {
  .longform,
  .weekly-rhythm article { grid-template-columns: 1fr; }
  .longform-toc { position: static; }
  .artifact-grid,
  .audience-grid,
  .track-grid,
  .insight-grid,
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .longform,
  .faq-block,
  .module-article,
  .prose,
  .cta-band {
    width: calc(100% - 48px);
    max-width: 356px;
    margin-left: 24px;
    margin-right: 24px;
  }
  .cta-band { padding: 28px 18px; }
  .artifact-grid,
  .audience-grid,
  .track-grid,
  .insight-grid,
  .stat-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .weekly-rhythm article { grid-template-columns: 1fr; gap: 8px; }
}
