:root {
  --signal-blue: #006cff;
  --human-black: #050608;
  --ink-black: #0b0908;
  --clear-white: #fafaf7;
  --gallery-white: #f4f1ea;
  --wall-white: #efede6;
  --graphite: #2a2e35;
  --mist: #e7ecf2;
  --concrete: #b9b6ad;
  --civic-green: #2e7d5b;
  --prairie-green: #4f7d49;
  --deep-prairie: #173d2c;
  --new-grass: #9bbe6f;
  --auburn: #8a3f2d;
  --deep-auburn: #4b1f1a;
  --clay-auburn: #b66a4b;
  --mauve: #a9788a;
  --deep-mauve: #6e4358;
  --wisp-mauve: #d8b8c7;
  --rain-blue: #8fb5d6;
  --storm-blue: #27465f;
  --radiant-core: #f1b66c;
  --line: rgba(11, 9, 8, 0.14);
  --line-dark: rgba(250, 250, 247, 0.18);
  --shadow: 0 34px 89px rgba(11, 9, 8, 0.2);
  --max: 1220px;
  --r3: 3px;
  --r5: 5px;
  --r8: 8px;
  --r13: 13px;
  --r21: 21px;
  --r34: 34px;
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-black);
  background:
    linear-gradient(144deg, rgba(23, 61, 44, 0.1), transparent 38.2%),
    linear-gradient(55deg, rgba(201, 154, 168, 0.18), transparent 61.8%),
    var(--gallery-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: var(--clear-white);
  background: var(--auburn);
}

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

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

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

.skip-link {
  position: fixed;
  left: 21px;
  top: 13px;
  z-index: 200;
  padding: 10px 13px;
  border-radius: var(--r8);
  color: var(--clear-white);
  background: var(--human-black);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 13px clamp(13px, 4vw, 55px);
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.7), transparent);
  transition: opacity 220ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.nav-shell {
  position: relative;
  width: min(var(--max), 100%);
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 21px;
  padding: 10px 13px 10px 21px;
  border: 1px solid rgba(250, 250, 247, 0.2);
  border-radius: 999px;
  color: var(--clear-white);
  background:
    linear-gradient(89deg, rgba(11, 9, 8, 0.86), rgba(75, 31, 26, 0.68) 38.2%, rgba(23, 61, 44, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(21px);
  pointer-events: auto;
}

.brand {
  width: 132px;
  min-width: 112px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 26px);
  color: rgba(250, 250, 247, 0.74);
  font-size: 0.84rem;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--signal-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--clear-white);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 740;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  color: var(--clear-white);
  border-color: rgba(250, 250, 247, 0.27);
  background: rgba(250, 250, 247, 0.09);
}

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

.button.primary {
  color: var(--ink-black);
  background: linear-gradient(89deg, var(--radiant-core), var(--wisp-mauve));
  box-shadow: 0 21px 55px rgba(241, 182, 108, 0.22);
}

.button.secondary {
  color: var(--clear-white);
  border-color: rgba(250, 250, 247, 0.32);
  background: rgba(250, 250, 247, 0.08);
}

.button.tertiary {
  color: var(--ink-black);
  border-color: rgba(11, 9, 8, 0.18);
  background: rgba(250, 250, 247, 0.62);
}

.nav-toggle {
  display: none;
  justify-self: end;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(250, 250, 247, 0.24);
  border-radius: 999px;
  color: var(--clear-white);
  background: rgba(250, 250, 247, 0.08);
}

.hero {
  position: relative;
  min-height: min(92svh, 920px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--clear-white);
  background-color: var(--human-black);
  background-position: center;
  background-size: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    repeating-linear-gradient(103deg, transparent 0 34px, rgba(143, 181, 214, 0.23) 35px 36px, transparent 37px 89px),
    linear-gradient(90deg, rgba(250, 250, 247, 0.06) 1px, transparent 1px) 0 0 / 89px 89px;
  mix-blend-mode: screen;
  opacity: 0.68;
}

.hero::after {
  width: 1px;
  left: 50%;
  right: auto;
  background: linear-gradient(180deg, transparent, rgba(0, 108, 255, 0.96) 38.2%, rgba(241, 182, 108, 0.74) 61.8%, transparent);
  opacity: 0.75;
}

.hero-home {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.9), rgba(75, 31, 26, 0.72) 38.2%, rgba(23, 61, 44, 0.44) 61.8%, rgba(11, 9, 8, 0.74)),
    url("../molilom_assets/visual6.webp");
}

.hero-manifesto {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.9), rgba(75, 31, 26, 0.76) 38.2%, rgba(39, 70, 95, 0.52) 61.8%, rgba(11, 9, 8, 0.86)),
    url("../molilom_assets/visual1.webp");
}

.hero-philosophy {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.86), rgba(54, 40, 92, 0.7) 38.2%, rgba(39, 70, 95, 0.64) 61.8%, rgba(11, 9, 8, 0.82)),
    url("../molilom_assets/vitruvian-man.webp");
  background-position: center 38%;
}

.hero-ecosystem {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.92), rgba(39, 70, 95, 0.72) 38.2%, rgba(46, 125, 91, 0.54) 61.8%, rgba(11, 9, 8, 0.86)),
    url("../molilom_assets/visual7.webp");
}

.hero-roadmap {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.9), rgba(23, 61, 44, 0.75) 38.2%, rgba(143, 181, 214, 0.4) 61.8%, rgba(11, 9, 8, 0.86)),
    url("../molilom_assets/visual9.webp");
}

.hero-governance {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.9), rgba(39, 70, 95, 0.74) 38.2%, rgba(46, 125, 91, 0.52) 61.8%, rgba(11, 9, 8, 0.86)),
    url("../molilom_assets/visual8.webp");
}

.hero-participate {
  background-image:
    linear-gradient(117deg, rgba(11, 9, 8, 0.88), rgba(75, 31, 26, 0.68) 38.2%, rgba(79, 125, 73, 0.56) 61.8%, rgba(11, 9, 8, 0.8)),
    url("../molilom_assets/visual5.webp");
}

.hero-inner,
.container {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
}

.hero-inner {
  padding: calc(var(--nav-height) + 90px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(260px, 1fr);
  gap: clamp(34px, 6vw, 89px);
  align-items: end;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.3rem, 11vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 690;
}

.hero .page-title {
  font-size: clamp(3.4rem, 9.5vw, 8.6rem);
}

.kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 21px;
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  color: rgba(250, 250, 247, 0.76);
}

.kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--radiant-core), var(--wisp-mauve), var(--signal-blue));
}

.hero-copy {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(250, 250, 247, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-note {
  justify-self: end;
  max-width: 377px;
  padding: 21px;
  border-left: 1px solid rgba(250, 250, 247, 0.32);
  color: rgba(250, 250, 247, 0.76);
  line-height: 1.55;
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--clear-white);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 144px) 0;
  overflow: hidden;
}

.section.light {
  background:
    linear-gradient(144deg, rgba(239, 237, 230, 0.86), rgba(244, 241, 234, 0.95)),
    var(--wall-white);
}

.section.dark {
  color: var(--clear-white);
  background:
    linear-gradient(117deg, rgba(11, 9, 8, 0.98), rgba(75, 31, 26, 0.76) 38.2%, rgba(39, 70, 95, 0.74) 61.8%, rgba(11, 9, 8, 0.98)),
    var(--ink-black);
}

.section.green {
  color: var(--clear-white);
  background:
    linear-gradient(144deg, rgba(23, 61, 44, 0.98), rgba(79, 125, 73, 0.86) 61.8%, rgba(11, 9, 8, 0.96)),
    var(--deep-prairie);
}

.section.rain {
  background:
    linear-gradient(144deg, rgba(39, 70, 95, 0.14), rgba(143, 181, 214, 0.24) 38.2%, rgba(250, 250, 247, 0.92)),
    var(--gallery-white);
}

.section::before {
  content: "";
  position: absolute;
  right: -13%;
  top: 13%;
  width: 61.8%;
  height: 34%;
  border-radius: 55% 45% 61.8% 38.2%;
  background: linear-gradient(144deg, rgba(79, 125, 73, 0.12), rgba(201, 154, 168, 0.16), transparent 70%);
  transform: rotate(-5deg);
  pointer-events: none;
}

.section.dark::before,
.section.green::before {
  background: linear-gradient(144deg, rgba(143, 181, 214, 0.12), rgba(241, 182, 108, 0.13), transparent 70%);
}

.container {
  position: relative;
  z-index: 1;
}

.section-kicker {
  color: var(--graphite);
}

.dark .section-kicker,
.green .section-kicker,
.dark .section-lede,
.green .section-lede {
  color: rgba(250, 250, 247, 0.72);
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 690;
}

.section-lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--graphite);
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.split {
  margin-top: 55px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 1fr);
  gap: clamp(34px, 6vw, 89px);
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr);
}

.text-flow {
  max-width: 760px;
}

.text-flow p {
  margin: 0 0 21px;
  color: var(--graphite);
  font-size: 1.02rem;
  line-height: 1.72;
}

.dark .text-flow p,
.green .text-flow p {
  color: rgba(250, 250, 247, 0.76);
}

.text-flow h2,
.text-flow h3 {
  margin: 34px 0 13px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.quote-panel {
  padding: clamp(26px, 4vw, 55px);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(144deg, rgba(250, 250, 247, 0.76), rgba(231, 236, 242, 0.64)),
    rgba(250, 250, 247, 0.4);
}

.dark .quote-panel,
.green .quote-panel {
  border-left-color: rgba(250, 250, 247, 0.3);
  background: rgba(250, 250, 247, 0.06);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.14;
}

.quote-panel small {
  display: block;
  margin-top: 21px;
  color: var(--graphite);
  line-height: 1.5;
}

.dark .quote-panel small,
.green .quote-panel small {
  color: rgba(250, 250, 247, 0.68);
}

.art-object {
  border: 1px solid var(--line);
  border-radius: var(--r5);
  overflow: hidden;
  background: rgba(250, 250, 247, 0.5);
  box-shadow: var(--shadow);
}

.dark .art-object,
.green .art-object {
  border-color: rgba(250, 250, 247, 0.18);
  background: rgba(250, 250, 247, 0.05);
}

.art-object img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.art-object.wide img {
  aspect-ratio: 16 / 10;
}

.wall-label {
  padding: 13px 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-size: 0.8rem;
  line-height: 1.45;
}

.dark .wall-label,
.green .wall-label {
  border-top-color: rgba(250, 250, 247, 0.16);
  color: rgba(250, 250, 247, 0.74);
}

.wall-label strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-black);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dark .wall-label strong,
.green .wall-label strong {
  color: var(--clear-white);
}

.card-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r5);
  background: var(--line);
  overflow: hidden;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(250, 250, 247, 0.92);
}

.dark .signal-card,
.green .signal-card {
  background: rgba(250, 250, 247, 0.07);
}

.signal-card.featured {
  color: var(--clear-white);
  background:
    linear-gradient(144deg, rgba(75, 31, 26, 0.48), transparent 55%),
    var(--ink-black);
}

.signal-card .number,
.timeline-item .number,
.program-card .number {
  color: var(--auburn);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark .signal-card .number,
.green .signal-card .number,
.signal-card.featured .number {
  color: var(--radiant-core);
}

.signal-card h3,
.program-card h3,
.timeline-item h3 {
  margin: 24px 0 13px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.04;
}

.signal-card p,
.program-card p,
.timeline-item p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.58;
}

.dark .signal-card p,
.green .signal-card p,
.signal-card.featured p,
.dark .program-card p,
.green .program-card p,
.dark .timeline-item p,
.green .timeline-item p {
  color: rgba(250, 250, 247, 0.74);
}

.signal-card a {
  margin-top: 28px;
  color: var(--signal-blue);
  font-weight: 760;
}

.dark .signal-card a,
.green .signal-card a,
.signal-card.featured a {
  color: var(--rain-blue);
}

.list-stack {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.dark .list-stack,
.green .list-stack {
  border-top-color: rgba(250, 250, 247, 0.18);
}

.list-stack li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 21px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  line-height: 1.6;
}

.list-stack li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--signal-blue);
  box-shadow: 0 0 18px rgba(0, 108, 255, 0.55);
}

.dark .list-stack li,
.green .list-stack li {
  border-bottom-color: rgba(250, 250, 247, 0.18);
  color: rgba(250, 250, 247, 0.78);
}

.manifesto-text {
  max-width: 860px;
  margin: 55px auto 0;
  padding-left: clamp(21px, 4vw, 55px);
  border-left: 1px solid var(--line);
}

.manifesto-text p {
  margin: 0 0 18px;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.48;
}

.dark .manifesto-text {
  border-left-color: rgba(250, 250, 247, 0.22);
}

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

.compare-panel {
  padding: clamp(26px, 4vw, 55px);
  background: rgba(250, 250, 247, 0.92);
}

.compare-panel h3 {
  margin: 0 0 21px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.compare-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  line-height: 1.52;
}

.principle-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.principle {
  min-height: 188px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--r8);
  background: rgba(250, 250, 247, 0.72);
}

.principle span {
  color: var(--auburn);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle h3 {
  margin: 34px 0 0;
  font-size: 1rem;
  line-height: 1.26;
}

.axiom-list {
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: axiom;
  border-top: 1px solid var(--line);
}

.axiom-list li {
  counter-increment: axiom;
  display: grid;
  grid-template-columns: 89px 1fr;
  gap: 21px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.axiom-list li::before {
  content: counter(axiom, decimal-leading-zero);
  color: var(--auburn);
  font-weight: 820;
  letter-spacing: 0.13em;
}

.axiom-list h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.axiom-list p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.6;
}

.ecosystem-flow {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r5);
  overflow: hidden;
}

.flow-step {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.82);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: var(--auburn);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.flow-step h3 {
  margin: 34px 0 13px;
  font-size: 1.25rem;
}

.flow-step p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.55;
}

.program-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.program-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r8);
  background: rgba(250, 250, 247, 0.76);
}

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

.timeline-item {
  min-height: 260px;
  padding: 30px;
  background: rgba(250, 250, 247, 0.92);
}

.timeline-item.deep {
  color: var(--clear-white);
  background:
    linear-gradient(144deg, rgba(46, 125, 91, 0.18), rgba(0, 108, 255, 0.16)),
    var(--ink-black);
}

.dark .timeline-item {
  background: rgba(250, 250, 247, 0.07);
}

.arc {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r5);
  overflow: hidden;
  background: var(--line-dark);
}

.arc div {
  min-height: 170px;
  padding: 24px;
  background: rgba(250, 250, 247, 0.07);
}

.arc span {
  display: block;
  color: var(--radiant-core);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.arc strong {
  display: block;
  margin-top: 34px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.trust-table {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  border: 1px solid var(--line);
  border-radius: var(--r5);
  overflow: hidden;
}

.trust-row {
  display: contents;
}

.trust-row > * {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.82);
}

.trust-row:last-child > * {
  border-bottom: 0;
}

.trust-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

.trust-row p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.55;
}

.form-panel {
  padding: clamp(26px, 4vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--r8);
  background: rgba(250, 250, 247, 0.82);
}

.form-panel h2 {
  margin: 0 0 13px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.form-panel p {
  margin: 0 0 30px;
  color: var(--graphite);
  line-height: 1.6;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(11, 9, 8, 0.18);
  border-radius: var(--r8);
  padding: 13px 14px;
  color: var(--ink-black);
  background: rgba(250, 250, 247, 0.92);
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 21px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--civic-green);
  font-size: 0.92rem;
}

.site-footer {
  color: var(--clear-white);
  background:
    linear-gradient(117deg, rgba(11, 9, 8, 0.98), rgba(75, 31, 26, 0.76) 38.2%, rgba(23, 61, 44, 0.78) 61.8%, rgba(11, 9, 8, 0.98)),
    var(--human-black);
  padding: 55px clamp(17px, 4vw, 55px) 34px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 55px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 520px;
  margin: 21px 0 0;
  color: rgba(250, 250, 247, 0.72);
  line-height: 1.62;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 34px;
}

.footer-nav a {
  color: rgba(250, 250, 247, 0.72);
}

.footer-nav a:hover {
  color: var(--clear-white);
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 55px auto 0;
  padding-top: 21px;
  border-top: 1px solid rgba(250, 250, 247, 0.16);
  color: rgba(250, 250, 247, 0.58);
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 14px;
    font-size: 0.79rem;
  }

  .card-grid,
  .card-grid.four,
  .principle-grid,
  .program-grid,
  .ecosystem-flow,
  .arc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    border-radius: var(--r21);
  }

  .brand {
    width: 118px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px 0 4px;
  }

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

  .site-nav a {
    padding: 12px 10px;
    border-top: 1px solid rgba(250, 250, 247, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 128px;
    padding-bottom: 55px;
  }

  .hero h1,
  .hero .page-title {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .hero-note {
    justify-self: start;
    max-width: 100%;
  }

  .split,
  .split.reverse,
  .footer-inner,
  .trust-table {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .timeline,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .principle-grid,
  .program-grid,
  .ecosystem-flow,
  .arc,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .signal-card,
  .program-card,
  .timeline-item,
  .flow-step {
    min-height: auto;
  }

  .trust-row {
    display: block;
  }

  .trust-row > * {
    display: block;
  }

  .axiom-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .signal-card,
  .program-card,
  .timeline-item,
  .principle,
  .flow-step,
  .compare-panel {
    padding: 21px;
  }
}

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