:root {
  color-scheme: dark;
  --gr20-bg: #080c0a;
  --gr20-bg-soft: #101511;
  --gr20-panel: rgba(255,255,255,.045);
  --gr20-panel-strong: rgba(255,255,255,.075);
  --gr20-text: #f5f1e8;
  --gr20-muted: rgba(245,241,232,.72);
  --gr20-subtle: rgba(245,241,232,.52);
  --gr20-line: rgba(255,255,255,.12);
  --gr20-accent: #f2b66d;
  --gr20-mountain: #6f8f6c;
  --gr20-radius: 24px;
  --gr20-radius-sm: 12px;
  --gr20-shadow: 0 28px 80px rgba(0,0,0,.34);
  --bg: var(--gr20-bg);
  --surface: var(--gr20-bg-soft);
  --surface2: rgba(255,255,255,.065);
  --surface3: rgba(255,255,255,.09);
  --border: var(--gr20-line);
  --ink: var(--gr20-text);
  --ink2: var(--gr20-muted);
  --ink3: var(--gr20-subtle);
  --accent: var(--gr20-accent);
  --accent2: #ffd09a;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-disp: Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html {
  background: var(--gr20-bg);
  color: var(--gr20-text);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 0%, rgba(242,182,109,.10), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(111,143,108,.10), transparent 30rem),
    var(--gr20-bg);
  color: var(--gr20-text);
  font-family: var(--font-body);
  line-height: 1.65;
}

a {
  color: inherit;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

main {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gr20-accent);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transition: transform .2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
}

.site-top-anchor {
  position: absolute;
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--gr20-line);
  background: rgba(8,12,10,.88);
  backdrop-filter: blur(18px) saturate(1.18);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  gap: 4px;
  min-width: 150px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand__title {
  color: var(--gr20-accent);
  font-family: var(--font-mono);
  font-size: clamp(.88rem, 1vw, 1.05rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .22em;
}

.site-brand__subtitle {
  color: var(--gr20-subtle);
  font-family: var(--font-mono);
  font-size: clamp(.52rem, .65vw, .66rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

.site-nav a,
.site-nav__trigger,
.site-mobile-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--gr20-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.site-nav__trigger {
  gap: 7px;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-nav__dropdown-wrap:hover > .site-nav__trigger,
.site-nav__dropdown-wrap:focus-within > .site-nav__trigger,
.site-nav__dropdown-wrap.is-active > .site-nav__trigger,
.site-nav__dropdown-wrap.is-open > .site-nav__trigger,
.site-mobile-nav a:hover,
.site-mobile-nav a:focus-visible,
.site-mobile-nav a[aria-current="page"] {
  border-color: rgba(242,182,109,.38);
  background: rgba(242,182,109,.10);
  color: var(--gr20-text);
  outline: none;
}

.site-nav__dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__chevron {
  color: var(--gr20-accent);
  font-size: .7rem;
  line-height: 1;
  transition: transform .18s ease;
}

.site-nav__dropdown-wrap:hover .site-nav__chevron,
.site-nav__dropdown-wrap:focus-within .site-nav__chevron,
.site-nav__dropdown-wrap.is-open .site-nav__chevron {
  transform: translateY(1px) rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 920;
  width: min(260px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    rgba(8,12,10,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-nav__dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.site-nav__dropdown-wrap:hover .site-nav__dropdown,
.site-nav__dropdown-wrap:focus-within .site-nav__dropdown,
.site-nav__dropdown-wrap.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .site-nav__dropdown a {
  width: 100%;
  min-height: 40px;
  justify-content: flex-start;
  border-radius: 14px;
  padding: 0 12px;
  color: rgba(245,241,232,.76);
}

.site-nav .site-nav__dropdown a + a {
  margin-top: 3px;
}

.site-nav .site-nav__dropdown a:hover,
.site-nav .site-nav__dropdown a:focus-visible,
.site-nav .site-nav__dropdown a[aria-current="page"] {
  border-color: rgba(242,182,109,.32);
  background: rgba(242,182,109,.12);
  color: var(--gr20-text);
}

.site-menu-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gr20-line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.065);
  color: var(--gr20-text);
  font: 850 13px var(--font-body);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  border-color: rgba(242,182,109,.45);
  background: rgba(242,182,109,.10);
  outline: none;
}

.site-mobile-nav {
  display: none;
}

.breadcrumb {
  width: min(980px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 0;
  color: var(--gr20-subtle);
  font-size: .88rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "\203a";
  color: rgba(245,241,232,.35);
}

.breadcrumb a {
  color: var(--gr20-muted);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gr20-accent);
  outline: none;
}

.breadcrumb [aria-current="page"],
.breadcrumb li[aria-current="page"] {
  color: var(--gr20-text);
}

.article-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(42px, 6vw, 78px) 0 clamp(72px, 8vw, 120px);
  background:
    radial-gradient(circle at 18% 0%, rgba(242,182,109,.10), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(111,143,108,.10), transparent 32rem),
    var(--gr20-bg);
  color: var(--gr20-text);
}

.article-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.article-hero {
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--gr20-line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(12,16,13,.74);
  box-shadow: var(--gr20-shadow), inset 0 1px 0 rgba(255,255,255,.08);
}

.article-eyebrow,
.article-section__kicker,
.kicker,
.eyebrow {
  color: var(--gr20-accent);
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-eyebrow {
  margin: 0 0 14px;
}

.article-hero h1,
.article-shell h1,
.article-wrap h1,
.legal-wrap h1 {
  max-width: 880px;
  margin: 0;
  color: var(--gr20-text);
  font-family: var(--font-disp);
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: 0;
}

.article-lead,
.article-shell .lead,
.article-wrap .lead,
.legal-wrap .lead,
.lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(245,241,232,.80);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--gr20-line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.055);
  color: rgba(245,241,232,.70);
  font-size: .88rem;
  font-weight: 750;
}

.article-section,
.legal-card,
.panel,
.stage-card,
.content-card,
.note,
.footer-cta,
.error-panel {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--gr20-radius);
  background: var(--gr20-panel);
  color: var(--gr20-text);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.article-section {
  margin-top: clamp(28px, 5vw, 48px);
  padding: clamp(22px, 4vw, 34px);
  scroll-margin-top: 90px;
}

.article-section + .article-section {
  margin-top: 24px;
}

.article-section__kicker {
  margin: 0 0 10px;
}

.article-section h2,
.article-shell h2,
.article-wrap h2,
.legal-wrap h2 {
  margin: 0 0 16px;
  color: var(--gr20-text);
  font-family: var(--font-disp);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-section h3,
.article-shell h3,
.article-wrap h3,
.legal-wrap h3 {
  margin: 22px 0 8px;
  color: #fff7e8;
  font-size: 1.15rem;
  line-height: 1.25;
}

.article-section p,
.article-section li,
.article-shell p,
.article-shell li,
.article-wrap p,
.article-wrap li,
.legal-wrap p,
.legal-wrap li,
.panel p,
.stage-card small {
  color: var(--gr20-muted);
}

.article-grid,
.checklist-grid,
.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-card,
.check-card,
.content-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(0,0,0,.18);
}

.article-callout,
.note,
.notice,
.stage-retain {
  margin-top: 24px;
  padding: 20px;
  border-left: 3px solid var(--gr20-accent);
  border-radius: 18px;
  background: rgba(242,182,109,.10);
  color: rgba(245,241,232,.82);
}

.article-callout:first-child {
  margin-top: 0;
}

.article-actions,
.actions,
.link-row,
.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-button,
.btn,
.stage-actions .btn,
.gr20-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255,255,255,.055);
  color: rgba(245,241,232,.90);
  font-size: .94rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.article-button:hover,
.article-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.stage-actions .btn:hover,
.stage-actions .btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242,182,109,.55);
  background: rgba(242,182,109,.10);
  color: var(--gr20-text);
  outline: none;
  text-decoration: none;
}

.article-button--primary,
.btn.primary,
.stage-actions .btn.primary {
  border-color: rgba(242,182,109,.48);
  background: linear-gradient(135deg, rgba(242,182,109,.26), rgba(242,182,109,.08));
  color: #fff3dc;
}

.article-table-wrap,
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(0,0,0,.16);
}

.article-table,
.article-table-wrap table,
.table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.article-table th,
.article-table td,
.article-table-wrap th,
.article-table-wrap td,
.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(245,241,232,.74);
  text-align: left;
  vertical-align: top;
}

.article-table th,
.article-table-wrap th,
.table-wrap th {
  background: rgba(255,255,255,.045);
  color: var(--gr20-text);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.source-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(242,182,109,.68);
  border-radius: 4px;
  background: rgba(242,182,109,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.related-links,
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-links a,
.related-grid a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.045);
  color: rgba(245,241,232,.82);
  font-weight: 800;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus-visible,
.related-grid a:hover,
.related-grid a:focus-visible {
  border-color: rgba(242,182,109,.5);
  color: var(--gr20-accent);
}

.hero {
  color: var(--gr20-text);
}

.site-header + .hero {
  min-height: clamp(620px, 74svh, 760px);
  align-items: start;
  margin-top: 0;
}

.site-header + .hero .hero-inner {
  padding-top: clamp(72px, 10vh, 108px);
  padding-bottom: clamp(44px, 7vh, 76px);
}

.site-header + .hero .hero-actions {
  margin-top: clamp(22px, 3vh, 30px);
}

.site-header + .hero .hero-stats {
  margin-top: clamp(26px, 4vh, 38px);
  margin-bottom: 0;
}

.site-header + .hero .hero-stat {
  padding: 16px 20px;
}

.site-header + .hero + main .summary-strip {
  margin-top: clamp(18px, 3vw, 30px);
}

.section-cta {
  margin-top: 26px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(242,182,109,.10), rgba(255,255,255,.035)),
    rgba(255,255,255,.04);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.section-cta__content {
  min-width: 0;
}

.section-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--gr20-accent);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-cta h3 {
  margin: 0;
  color: var(--gr20-text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-cta p {
  margin: 10px 0 0;
  max-width: 680px;
  color: var(--gr20-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-cta__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(242,182,109,.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242,182,109,.24), rgba(242,182,109,.08));
  color: #fff3dc;
  font-size: .94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.section-cta__button:hover,
.section-cta__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242,182,109,.70);
  background: rgba(242,182,109,.14);
  text-decoration: none;
  outline: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 48px rgba(0,0,0,.26);
}

.stage-nav {
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
}

.short-embed {
  width: min(420px, 100%);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.short-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.back-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 850;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242,182,109,.46);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(16,21,17,.94);
  color: var(--gr20-text);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 1000;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(16,21,17,.96);
  color: var(--gr20-text);
  box-shadow: 0 16px 42px rgba(0,0,0,.36);
}

.gr20-site-footer {
  position: relative;
  margin-top: clamp(72px, 10vw, 140px);
  padding: clamp(28px, 4vw, 52px) 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 18% 0%, rgba(242,182,109,.14), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(111,143,108,.12), transparent 30rem),
    linear-gradient(180deg, rgba(8,12,10,.96), #050706 72%);
  color: var(--gr20-text);
}

.gr20-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(242,182,109,.08), transparent);
  opacity: .55;
}

.gr20-site-footer__inner,
.gr20-site-footer__bottom {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gr20-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(10,14,11,.74);
  box-shadow: var(--gr20-shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.gr20-site-footer__brand {
  min-width: 0;
}

.gr20-site-footer__logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.gr20-site-footer__logo-main {
  color: var(--gr20-accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.gr20-site-footer__logo-sub {
  color: var(--gr20-text);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 850;
  line-height: 1.08;
}

.gr20-site-footer__text {
  max-width: 470px;
  margin: 20px 0 0;
  color: var(--gr20-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.gr20-site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gr20-site-footer__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255,255,255,.055);
  color: rgba(245,241,232,.86);
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}

.gr20-site-footer__button--primary {
  border-color: rgba(242,182,109,.45);
  background: linear-gradient(135deg, rgba(242,182,109,.24), rgba(242,182,109,.09));
  color: #fff3dc;
}

.gr20-site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gr20-site-footer__col {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.035);
}

.gr20-site-footer__heading {
  margin: 0 0 14px;
  color: var(--gr20-accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.1;
  text-transform: uppercase;
}

.gr20-site-footer__col a {
  display: flex;
  min-height: 34px;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--gr20-muted);
  font-size: .94rem;
  line-height: 1.25;
  text-decoration: none;
}

.gr20-site-footer__col a + a {
  margin-top: 4px;
}

.gr20-site-footer__col a:hover,
.gr20-site-footer__col a:focus-visible,
.gr20-site-footer__bottom a:hover,
.gr20-site-footer__bottom a:focus-visible {
  color: var(--gr20-accent);
  outline: none;
}

.gr20-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  color: var(--gr20-subtle);
  font-size: .88rem;
}

.gr20-site-footer__bottom p {
  margin: 0;
}

.gr20-site-footer__bottom a {
  color: rgba(245,241,232,.68);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .gr20-site-footer__inner,
  .article-grid,
  .checklist-grid,
  .stage-grid {
    grid-template-columns: 1fr;
  }

  .gr20-site-footer__text {
    max-width: 760px;
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    position: relative;
    min-height: 66px;
  }

  .site-brand {
    min-width: auto;
  }

  .site-brand__title {
    font-size: .82rem;
    letter-spacing: .18em;
  }

  .site-brand__subtitle {
    font-size: .5rem;
    letter-spacing: .12em;
  }

  .site-nav {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-mobile-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 14px;
  }

  .site-mobile-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-mobile-nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    background: rgba(255,255,255,.045);
  }

  .site-header + .hero {
    min-height: clamp(560px, 72svh, 700px);
  }

  .site-header + .hero .hero-inner {
    padding-top: clamp(58px, 9vh, 82px);
    padding-bottom: 40px;
  }

  .site-header + .hero .hero-actions {
    margin-top: 22px;
  }

  .site-header + .hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    margin-bottom: 0;
  }

  .site-header + .hero .hero-stat {
    flex: initial;
    border-right: 1px solid var(--border);
    padding: 13px 16px;
  }

  .site-header + .hero .hero-stat:nth-child(even) {
    border-right: 0;
  }

  .site-header + .hero .hero-stat:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .site-header + .hero + main .summary-strip {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .section-cta {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }

  .section-cta__button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-header + .hero {
    min-height: clamp(520px, 68svh, 640px);
  }

  .site-header + .hero .hero-inner {
    padding-top: clamp(44px, 7vh, 64px);
    padding-bottom: 28px;
  }

  .site-header + .hero .eyebrow {
    margin-bottom: 16px;
  }

  .site-header + .hero .hero-lead {
    margin-top: 20px;
  }

  .site-header + .hero .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .site-header + .hero .btn {
    height: 42px;
    padding: 0 16px;
  }

  .site-header + .hero .hero-stats {
    margin-top: 18px;
  }

  .site-header + .hero .hero-stat {
    padding: 10px 12px;
  }

  .site-header + .hero .hero-stat small {
    margin-bottom: 5px;
  }

  .site-header + .hero .hero-stat strong {
    font-size: 18px;
  }

  .breadcrumb,
  .article-shell {
    width: min(100% - 24px, 980px);
  }

  .article-page {
    padding-top: 28px;
  }

  .article-hero {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .article-section {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .article-actions,
  .actions,
  .link-row {
    flex-direction: column;
  }

  .article-button,
  .btn {
    width: 100%;
  }

  .gr20-site-footer {
    margin-top: 64px;
    padding: 24px 0;
  }

  .gr20-site-footer__inner {
    width: min(100% - 24px, 1180px);
    border-radius: 24px;
    padding: 26px 20px;
  }

  .gr20-site-footer__nav {
    grid-template-columns: 1fr;
  }

  .gr20-site-footer__col {
    border-radius: 18px;
    padding: 16px;
  }

  .gr20-site-footer__bottom {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
    align-items: flex-start;
  }
}

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