:root {
  --navy-1000: #030d1c;
  --navy-950: #051328;
  --navy-900: #071a34;
  --navy-800: #0a2554;
  --navy-700: #123a70;
  --blue-600: #186fdb;
  --blue-500: #246bce;
  --blue-100: #dbe9fb;
  --gold-500: #f5b81b;
  --gold-400: #f7c43a;
  --gold-300: #ffd66d;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --mist-100: #f3f6fa;
  --ink: #0a1c36;
  --ink-700: #31465f;
  --ink-600: #526274;
  --ink-500: #6c7989;
  --slate: #5f6b7a;
  --line: rgba(10, 37, 84, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(5, 19, 40, 0.1);
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-950);
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(5, 19, 40, 0.98);
  box-shadow: 0 10px 36px rgba(2, 10, 22, 0.14);
}

.site-header.is-scrolled:not(.site-header--solid) {
  position: fixed;
  background: rgba(5, 19, 40, 0.95);
  box-shadow: 0 12px 40px rgba(2, 10, 22, 0.18);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-shell,
.site-header--solid .header-shell {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 44px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

.brand-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a,
.header-login,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-login {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.header-login:hover,
.header-login:focus-visible {
  border-color: rgba(245, 184, 27, 0.72);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.header-cta {
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(6, 23, 47, 0.22);
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.header-cta[aria-current="page"] {
  border-color: var(--gold-500);
  background: rgba(245, 184, 27, 0.12);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(6, 23, 47, 0.32);
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 112px max(24px, calc((100vw - 720px) / 2)) 48px;
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 107, 206, 0.22), transparent 36%),
    rgba(3, 13, 28, 0.99);
  color: #fff;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: clamp(1.85rem, 7vw, 3.2rem);
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
}

.mobile-nav a[aria-current="page"] {
  color: var(--gold-300);
}

.mobile-nav .mobile-nav-cta {
  justify-content: center;
  width: min(100%, 360px);
  min-height: 52px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(800px, 100svh);
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(3, 13, 28, 0.96) 0%, rgba(4, 17, 35, 0.86) 40%, rgba(5, 19, 40, 0.28) 76%, rgba(5, 19, 40, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 13, 28, 0.72) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 100px;
  padding-bottom: 70px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--blue-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
}

.eyebrow span {
  flex: 0 0 38px;
  width: 38px;
  height: 2px;
  background: var(--gold-500);
}

.kicker--light {
  color: var(--gold-300);
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6vw, 6.7rem);
  font-weight: 650;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.1vw, 4.5rem);
  font-weight: 650;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.closing-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(245, 184, 27, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-300);
  box-shadow: 0 16px 34px rgba(245, 184, 27, 0.24);
}

.button-primary svg {
  width: 20px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--navy-900);
  color: #fff;
}

.button-outline {
  border-color: rgba(10, 37, 84, 0.28);
  background: #fff;
  color: var(--navy-800);
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link {
  color: #fff;
}

.inline-link {
  color: var(--navy-800);
  text-decoration-color: rgba(10, 37, 84, 0.35);
}

.inline-link span {
  margin-left: 7px;
  transition: transform 160ms ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-500);
}

.proof-rail {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--navy-900);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  padding: 24px 24px 25px;
  border-right: 1px solid var(--line-dark);
}

.proof-grid article:first-child {
  border-left: 1px solid var(--line-dark);
}

.proof-grid span,
.accountability-grid span,
.record-grid span,
.division-grid span,
.release-label,
.article-meta span,
.article-meta time,
.article-meta p {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.proof-grid strong {
  font-size: 0.92rem;
}

.section {
  padding: 112px 0;
}

.section--mist {
  background: var(--mist);
}

.section--navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(36, 107, 206, 0.24), transparent 35%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.section-head {
  max-width: 800px;
}

.section-head > p:last-child {
  max-width: 690px;
  color: var(--slate);
  font-size: 1.05rem;
}

.section--navy .section-head > p:last-child,
.principle-section .section-head > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.section-head--center {
  margin: 0 auto 54px;
  text-align: center;
}

.section-head--center > p:last-child {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 8vw;
  align-items: start;
}

.split--wide {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.lead-copy {
  padding-top: 38px;
  color: var(--slate);
  font-size: 1.13rem;
}

.lead-copy p:last-child {
  margin-bottom: 0;
}

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

.output-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(5, 19, 40, 0.04);
}

.output-card > span,
.process-grid > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 800;
}

.output-card p,
.audience-card p,
.validation-grid p,
.division-grid p,
.accountability-grid p,
.record-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

.output-card--accent {
  border-color: rgba(245, 184, 27, 0.65);
  background: linear-gradient(145deg, #fff8df, #fff);
}

.output-card--accent > span {
  background: var(--gold-500);
  color: var(--navy-950);
}

.section-action {
  margin: 34px 0 0;
  text-align: center;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 9vw;
}

.story-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.story-intro > p:not(.kicker) {
  color: var(--slate);
  font-size: 1.05rem;
}

blockquote {
  margin: 34px 0 28px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gold-500);
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 0 0 36px 26px;
  border-left: 1px solid rgba(36, 107, 206, 0.28);
}

.timeline li::before {
  position: absolute;
  top: 4px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 1px rgba(245, 184, 27, 0.7);
  content: "";
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline time {
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 5px;
}

.timeline p {
  margin-bottom: 0;
  color: var(--slate);
}

.system-section .section-head {
  max-width: 900px;
}

.object-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 54px 0 46px;
}

.object-chain span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 750;
}

.object-chain i {
  color: var(--gold-500);
  font-style: normal;
}

.system-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.system-bottom p {
  margin: 0;
}

.system-bottom p:first-child {
  color: rgba(255, 255, 255, 0.68);
}

.system-bottom p:last-child {
  color: var(--gold-300);
  font-family: var(--display);
  font-weight: 800;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 8vw;
}

.value-list,
.numbered-list,
.brief-intro ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li,
.numbered-list li,
.brief-intro li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.value-list span,
.numbered-list span,
.brief-intro li span {
  color: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 800;
}

.value-list p,
.numbered-list p,
.brief-intro li p {
  margin: 0;
  font-weight: 700;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.release-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.release-card--now {
  border-color: rgba(36, 107, 206, 0.4);
  box-shadow: var(--shadow);
}

.release-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue-500);
}

.release-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fb36d;
  box-shadow: 0 0 0 5px rgba(47, 179, 109, 0.11);
}

.release-card h3 {
  max-width: 480px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.release-card ul,
.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.release-card li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
}

.release-card li::before,
.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  color: var(--blue-500);
  content: "—";
  font-weight: 800;
}

.release-card--now li::before {
  color: #21965a;
  content: "✓";
}

.direction-line {
  margin: 30px 0 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--gold-300);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.accountability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.accountability-grid article {
  min-height: 238px;
  padding: 28px;
  background: #fff;
}

.accountability-grid span {
  color: var(--blue-500);
}

.disclaimer {
  max-width: 880px;
  margin: 28px auto 0;
  color: var(--slate);
  font-size: 0.9rem;
  text-align: center;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--navy-950);
  color: #fff;
}

.closing-glow {
  position: absolute;
  inset: auto auto -260px 50%;
  width: 720px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 107, 206, 0.38), transparent 68%);
  transform: translateX(-50%);
}

.closing-content {
  position: relative;
  max-width: 920px;
  text-align: center;
}

.closing-content > img {
  width: 82px;
  height: 72px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.closing-content h2 {
  margin-inline: auto;
}

.closing-content > p:not(.kicker) {
  max-width: 670px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-1000);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.05fr) minmax(280px, 1.3fr) auto auto;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  color: #fff;
}

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

.footer-grid > div > p {
  margin: 10px 0 0;
  font-size: 0.84rem;
}

.footer-contact {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.58;
}

.footer-contact strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  text-decoration-color: var(--gold-400);
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 7px 24px;
}

.footer-grid nav a {
  min-height: 32px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: #fff;
}

.footer-legal {
  justify-self: end;
  margin: 0;
  font-size: 0.82rem;
  text-align: right;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 115px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 19, 40, 0.98), rgba(10, 37, 84, 0.92)),
    var(--navy-950);
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(245, 184, 27, 0.2);
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  top: -220px;
  right: -90px;
  width: 590px;
  height: 590px;
}

.page-hero::after {
  top: -150px;
  right: -20px;
  width: 450px;
  height: 450px;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 7vw;
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.page-hero-grid > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.story-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
}

.story-hero-content blockquote {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 300px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
}

.process-grid li:first-child {
  border-radius: 20px 0 0 20px;
}

.process-grid li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 20px 20px 0;
}

.process-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: -8px;
  color: var(--gold-500);
  content: "→";
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.93rem;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.record-grid article {
  min-height: 205px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.record-grid span {
  color: var(--gold-300);
  font-size: 0.74rem;
}

.record-grid p {
  color: rgba(255, 255, 255, 0.68);
}

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

.audience-card {
  min-height: 280px;
  padding: 32px;
  border-top: 4px solid var(--gold-500);
  background: var(--mist);
}

.card-index {
  color: var(--blue-500) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-section {
  padding: 95px 0;
  background:
    linear-gradient(120deg, rgba(7, 26, 52, 0.98), rgba(10, 37, 84, 0.96)),
    var(--navy-950);
  color: #fff;
}

.principle-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 6vw;
  align-items: center;
}

.principle-grid > p:last-child {
  grid-column: 2;
  margin: -25px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.principle-line {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
  font-weight: 750;
  line-height: 1.5;
}

.principle-line span {
  padding: 0 8px;
  color: var(--gold-500);
}

.date-band {
  background: var(--gold-500);
  color: var(--navy-950);
}

.date-band .shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 25px;
}

.date-band .shell > div:last-child {
  text-align: right;
}

.date-band span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.date-band time {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
}

.date-band i {
  width: 110px;
  height: 1px;
  background: rgba(5, 19, 40, 0.36);
}

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

.validation-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.validation-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-500);
  font-weight: 800;
}

.evidence-layout,
.boundary-layout,
.proof-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
  align-items: start;
}

.confidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.confidence-list div {
  padding: 22px;
  background: #fff;
}

.confidence-list dt {
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.confidence-list dd {
  margin: 6px 0 0;
  color: var(--slate);
}

.boundary-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(245, 184, 27, 0.6);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff9e7, #fff);
  box-shadow: var(--shadow);
}

.boundary-card h3:not(:first-child) {
  margin-top: 30px;
}

.boundary-card p {
  color: var(--slate);
}

.boundary-note {
  margin: 30px 0 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--navy-950);
  color: #fff !important;
}

.timeline--full {
  max-width: 920px;
  margin: 58px auto 0;
}

.timeline--full li {
  grid-template-columns: 180px 1fr;
  gap: 44px;
  padding-bottom: 58px;
}

.timeline--full h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

.timeline-chapter {
  margin-bottom: 8px !important;
  color: var(--blue-500) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.laboratory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
}

.laboratory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.laboratory-grid p {
  min-height: 110px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.name-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
  align-items: center;
}

.name-story {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
}

.name-story > div {
  min-height: 210px;
  padding: 34px;
  border-radius: 22px;
  background: var(--mist);
}

.name-story strong {
  display: block;
  margin-bottom: 22px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: 0.08em;
}

.name-story > span {
  color: var(--gold-500);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
}

.name-story p {
  margin: 0;
  color: var(--slate);
}

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

.division-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.division-grid span {
  color: var(--blue-500);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.north-star {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 24px;
  background: var(--navy-950);
  color: #fff;
  box-shadow: var(--shadow);
}

.north-star > span {
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.north-star p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
}

.north-star strong {
  color: var(--gold-300);
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  border-color: rgba(36, 107, 206, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.insight-card > span {
  margin-bottom: 28px;
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card p {
  color: var(--slate);
}

.insight-card strong {
  margin-top: auto;
  color: var(--navy-800);
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 720px);
  gap: 7vw;
  justify-content: center;
}

.article-meta {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 6px;
}

.article-meta span,
.article-meta time,
.article-meta p {
  color: var(--blue-500);
}

.article-meta time,
.article-meta p {
  color: var(--slate);
  letter-spacing: 0.07em;
}

.article-body h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.article-body h3 {
  margin-top: 38px;
  font-size: 1.55rem;
}

.article-body > p {
  color: #344760;
  font-size: 1.05rem;
}

.article-body .article-lead {
  margin-bottom: 28px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.article-takeaway {
  margin-top: 38px;
  padding: 26px;
  border-left: 4px solid var(--gold-500);
  background: #fff;
}

.article-takeaway strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-500);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-takeaway p {
  margin: 0;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 7vw;
  align-items: start;
}

.brief-intro {
  position: sticky;
  top: 108px;
}

.brief-intro > p:not(.kicker) {
  color: var(--slate);
}

.brief-intro ol {
  margin: 30px 0;
}

.privacy-note {
  padding: 22px;
  border-radius: 16px;
  background: var(--blue-100);
}

.privacy-note strong {
  color: var(--navy-800);
}

.privacy-note p {
  margin: 6px 0 0;
  color: #415675;
  font-size: 0.9rem;
}

.assessment-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.assessment-form fieldset {
  margin: 0 0 38px;
  padding: 0 0 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.assessment-form fieldset:last-of-type {
  margin-bottom: 18px;
}

.assessment-form legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 750;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #233a58;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-grid label > span b,
.required-note b {
  color: #b64832;
}

.form-span {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(10, 37, 84, 0.23);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  line-height: 1.5;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8290a2;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  outline: 3px solid rgba(36, 107, 206, 0.15);
}

.required-note {
  color: var(--slate);
  font-size: 0.8rem;
}

.form-submit {
  width: 100%;
}

.brief-result[hidden] {
  display: none;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 6vw;
  align-items: start;
}

.result-layout > div > p:not(.kicker) {
  color: var(--slate);
}

.result-actions {
  margin-top: 26px;
}

.result-actions .button {
  min-height: 46px;
  padding: 10px 17px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #28734b !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.brief-output {
  max-height: 720px;
  margin: 0;
  padding: 30px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: #203651;
  font: 0.88rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px;
  background: var(--navy-950);
  color: #fff;
  text-align: center;
}

.error-page main {
  max-width: 680px;
}

.error-code {
  margin: 0 0 18px;
  color: var(--gold-500);
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 800;
  line-height: 0.8;
}

.error-page p {
  color: rgba(255, 255, 255, 0.7);
}

.login-page {
  background: var(--navy-1000);
}

.funder-login-main {
  background: var(--navy-950);
}

.login-section {
  position: relative;
  display: grid;
  min-height: 780px;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(24, 111, 219, 0.17), transparent 34%),
    linear-gradient(135deg, var(--navy-1000), #0b2b5b 72%, #10346a);
  color: #fff;
}

.login-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent 70%);
  pointer-events: none;
}

.login-orbit {
  position: absolute;
  top: -270px;
  right: -240px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(245, 184, 27, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(245, 184, 27, 0.035), 0 0 0 184px rgba(24, 111, 219, 0.035);
}

.login-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  gap: clamp(56px, 8vw, 126px);
  align-items: center;
}

.login-copy h1 {
  max-width: 760px;
  margin: 22px 0 28px;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: 0.94;
}

.login-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.login-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
  list-style: none;
}

.login-principles li:not(:last-child)::after {
  margin-left: 22px;
  color: var(--gold-400);
  content: "·";
}

.login-panel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 84px rgba(1, 10, 24, 0.42);
  color: var(--navy-950);
}

.login-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.login-panel-intro {
  margin: 0 0 28px;
  color: var(--ink-600);
}

.login-form {
  display: grid;
  gap: 20px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 780;
}

.login-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy-950);
  font: inherit;
}

.login-form input:hover {
  border-color: #9aa9bd;
}

.login-form input:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(24, 111, 219, 0.14);
  outline-offset: 0;
}

.login-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.login-response {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  background: var(--mist-100);
}

.login-response:focus {
  outline: 3px solid rgba(24, 111, 219, 0.2);
  outline-offset: 3px;
}

.login-response strong {
  display: block;
  color: var(--navy-950);
}

.login-response p {
  margin: 6px 0 12px;
  color: var(--ink-700);
}

.login-noscript {
  margin: 24px 0 0;
  padding: 16px;
  border-left: 4px solid var(--gold-500);
  background: var(--mist-100);
  color: var(--ink-700);
}

.login-privacy {
  margin: 18px 0 0;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.5;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .login-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 48px;
  }

  .output-grid,
  .division-grid,
  .insight-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .process-grid li {
    grid-column: span 2;
    min-height: 245px;
    border: 1px solid var(--line);
    border-radius: 18px !important;
  }

  .process-grid li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .process-grid li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-block: 12px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
    width: 100%;
    padding-top: 6px;
    overflow-x: auto;
  }

  .header-login,
  .header-cta {
    display: none;
  }

  .js .header-shell {
    min-height: 72px;
    padding-block: 0;
  }

  .js .primary-nav {
    display: none;
  }

  .js .menu-button {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .login-section {
    min-height: auto;
    padding: 142px 0 88px;
  }

  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-copy,
  .login-panel {
    max-width: 660px;
  }

  .hero-content {
    padding-top: 138px;
  }

  h1 {
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid article,
  .proof-grid article:first-child {
    border: 0;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-grid article:nth-child(even) {
    border-right: 0;
  }

  .story-layout,
  .value-layout,
  .brief-layout,
  .evidence-layout,
  .boundary-layout,
  .proof-plan,
  .laboratory-layout,
  .name-layout,
  .mission-grid,
  .result-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-intro,
  .brief-intro,
  .article-meta {
    position: static;
  }

  .release-grid,
  .audience-grid,
  .validation-grid {
    grid-template-columns: 1fr;
  }

  .release-card,
  .audience-card,
  .validation-grid article {
    min-height: auto;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 28px;
  }

  .page-hero-grid > p {
    max-width: 580px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .principle-grid > p:last-child {
    grid-column: auto;
    margin: 0;
  }

}

@media (max-width: 700px) {
  .section {
    padding: 82px 0;
  }

  .split,
  .split--wide {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead-copy {
    padding-top: 0;
  }

  .output-grid,
  .accountability-grid,
  .record-grid,
  .division-grid,
  .insight-card-grid {
    grid-template-columns: 1fr;
  }

  .output-card,
  .accountability-grid article,
  .record-grid article,
  .division-grid article,
  .insight-card {
    min-height: auto;
  }

  .object-chain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .object-chain i {
    display: none;
  }

  .system-bottom {
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:nth-child(4) {
    grid-column: auto;
  }

  .date-band .shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .date-band .shell > div:last-child {
    text-align: left;
  }

  .date-band i {
    width: 100%;
  }

  .timeline li,
  .timeline--full li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 22px;
  }

  .laboratory-grid,
  .confidence-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-span {
    grid-column: auto;
  }

  .name-story {
    grid-template-columns: 1fr;
  }

  .name-story > span {
    text-align: center;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-legal {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .login-section {
    padding: 120px 0 64px;
  }

  .login-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .login-principles {
    display: grid;
    gap: 8px;
  }

  .login-principles li::after {
    display: none;
  }

  .login-panel {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 122px;
    padding-bottom: 48px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(3, 13, 28, 0.95), rgba(3, 13, 28, 0.65)), linear-gradient(0deg, rgba(3, 13, 28, 0.7), transparent);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.67rem;
  }

  .eyebrow span {
    margin-top: 8px;
  }

  .hero-actions,
  .closing-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .closing-actions .button,
  .result-actions .button {
    width: 100%;
  }

  .trust-line {
    gap: 6px 8px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 470px;
    padding-top: 94px;
  }

  .object-chain {
    grid-template-columns: 1fr;
  }

  .timeline--full li {
    padding-bottom: 42px;
  }

  .assessment-form,
  .release-card,
  .boundary-card {
    padding: 24px 20px;
  }

  .brief-output {
    padding: 20px;
    font-size: 0.78rem;
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .site-header,
  .mobile-nav,
  .site-footer,
  .closing-section,
  .brief-intro,
  .result-actions {
    display: none !important;
  }

  .brief-result {
    padding: 0;
    background: #fff;
  }

  .result-layout {
    display: block;
  }

  .brief-output {
    max-height: none;
    border: 0;
  }
}
