@font-face {
  font-family: "Scale Display";
  src: local("Arial Narrow Bold"), local("Arial Narrow");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --green: #78f23d;
  --green-strong: #49d817;
  --ink: #090d0a;
  --ink-2: #111712;
  --ink-3: #19211b;
  --paper: #eef2ee;
  --white: #ffffff;
  --steel: #b8c2bb;
  --muted: #667069;
  --line: #d4dbd5;
  --line-dark: #2c352e;
  --max-width: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2 {
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--green);
}

.section-shell,
.nav-shell {
  width: min(var(--max-width), calc(100% - 64px));
  margin: 0 auto;
}

.main-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.main-header.is-scrolled,
.page-inner .main-header {
  background: rgba(9, 13, 10, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 30px;
}

.main-logo {
  width: 148px;
  height: 42px;
  display: flex;
  align-items: center;
}

.main-logo img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--green);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.72rem;
}

.button-green {
  background: var(--green);
  color: var(--ink);
}

.button-green:hover,
.button-green:focus-visible {
  background: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(9, 13, 10, 0.32);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.home-hero {
  position: relative;
  height: min(820px, calc(100svh - 56px));
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  background-image: url("/assets/site/blueprint-bg.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.48;
}

.hero-blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 6, 0.54);
}

.hero-founders {
  position: absolute;
  right: max(-36px, calc((100vw - var(--max-width)) / 2 - 80px));
  bottom: 54px;
  z-index: 2;
  width: min(58vw, 780px);
  max-height: calc(100% - 86px);
  overflow: hidden;
  opacity: 0.96;
}

.hero-founders img {
  width: 100%;
  height: auto;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max-width), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 30px) 0 105px;
}

.hero-copy {
  width: min(720px, 62%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-dark {
  color: #278d08;
}

.hero-copy h1 {
  max-width: 710px;
  margin-bottom: 25px;
  font-size: 4.75rem;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #d6ddd7;
  font-size: 1.08rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 0 max(32px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 13, 10, 0.9);
}

.hero-proof span {
  padding: 4px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof span:last-child {
  border-right: 0;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-white {
  background: var(--white);
  color: var(--ink);
}

.section-dark {
  background: var(--ink-2);
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.split-heading h2,
.section-heading h2,
.membership-intro h2,
.operator-lead h2,
.mastermind-inner h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 3.7rem;
}

.split-heading > p,
.section-heading > p:last-child,
.operator-lead > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.issue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bfc8c1;
  border-left: 1px solid #bfc8c1;
}

.issue-list article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid #bfc8c1;
  border-bottom: 1px solid #bfc8c1;
}

.issue-list article > span,
.system-grid article > span,
.benefit-list span {
  display: block;
  margin-bottom: 36px;
  color: #2b8d0d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
  font-weight: 800;
}

.issue-list h3,
.system-grid h3,
.process-list h3 {
  margin-bottom: 12px;
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.issue-list p,
.system-grid p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.section-heading-wide {
  max-width: 960px;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin-top: 24px;
  color: var(--steel);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.system-grid article {
  min-height: 180px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 38px 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.system-grid article:nth-child(odd) {
  padding-right: 52px;
  border-right: 1px solid var(--line-dark);
}

.system-grid article:nth-child(even) {
  padding-left: 52px;
}

.system-grid article > span {
  margin: 4px 0 0;
  color: var(--green);
}

.system-grid h3 {
  color: var(--white);
  font-size: 1.85rem;
}

.system-grid p {
  max-width: 430px;
  color: var(--steel);
}

.membership-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.membership-intro {
  position: sticky;
  top: 118px;
}

.membership-intro h2 {
  margin-bottom: 24px;
}

.membership-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list span {
  margin: 0;
}

.benefit-list p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 760;
}

.operators-section {
  background: #0b180d;
  color: var(--white);
}

.operator-lead {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.operator-lead > p {
  color: var(--steel);
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.operator-card {
  overflow: hidden;
  border: 1px solid #2b392d;
  border-radius: 6px;
  background: #101712;
}

.operator-photo {
  height: 390px;
  overflow: hidden;
  background: #070a08;
}

.operator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.operator-copy {
  min-height: 165px;
  padding: 24px;
  border-top: 4px solid var(--green);
}

.operator-copy p {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.operator-copy h3 {
  margin-bottom: 8px;
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.operator-copy span {
  color: var(--steel);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-block: 8px;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--green);
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(120, 242, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 242, 61, 0.035) 1px, transparent 1px),
    #e8ede9;
  background-size: 44px 44px;
  color: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.process-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 4.25rem;
}

.process-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.process-list li {
  position: relative;
  min-width: 0;
  min-height: 348px;
  padding: 30px 24px 26px;
  overflow: hidden;
  border: 1px solid #cbd4cd;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(19, 35, 23, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.process-list li::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green-strong);
  content: "";
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.process-list li:hover {
  border-color: #9fb0a2;
  box-shadow: 0 20px 42px rgba(19, 35, 23, 0.12);
  transform: translateY(-6px);
}

.process-list li:hover::before {
  transform: scaleX(1);
}

.process-letter {
  display: block;
  margin-bottom: 58px;
  color: #2c9e0d;
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 0.78;
}

.process-step {
  position: absolute;
  top: 28px;
  right: 24px;
  color: #718078;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.process-list h3 {
  min-height: 46px;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.process-list p {
  max-width: 210px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.logo-section {
  padding: 76px 0 84px;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.logo-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.logo-section-heading .eyebrow {
  margin-bottom: 0;
}

.logo-section-heading > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.logo-marquee {
  --marquee-duration: 46s;
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
}

.logo-marquee.is-ready .logo-marquee-track {
  animation: logo-marquee-flow var(--marquee-duration) linear infinite;
  will-change: transform;
}

.logo-marquee-reverse {
  --marquee-duration: 34s;
}

.logo-marquee-reverse.is-ready .logo-marquee-track {
  animation-direction: reverse;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.logo-tile {
  position: relative;
  width: 176px;
  height: 112px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.logo-tile img {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  max-width: none;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.logo-tile:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.partner-heading {
  margin: 46px auto 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.partner-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.logo-marquee-dark .logo-tile {
  width: 210px;
  height: 96px;
  overflow: hidden;
  border-color: #263027;
  background: var(--ink);
}

.logo-marquee-dark .logo-tile img {
  filter: none;
  opacity: 1;
}

@keyframes logo-marquee-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mastermind-promo {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0e0b;
}

.mastermind-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/source/event-room.webp");
  background-position: center 38%;
  background-size: cover;
  opacity: 0.32;
}

.mastermind-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 8, 0.48);
}

.mastermind-inner {
  position: relative;
  z-index: 2;
}

.mastermind-inner h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.35rem;
}

.mastermind-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d4dbd5;
  font-size: 1.04rem;
}

.final-cta {
  padding: 88px 0;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}

.final-cta h2 {
  max-width: 860px;
  font-size: 3.25rem;
}

.main-footer {
  background: #050706;
  border-top: 1px solid #202721;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 62px;
}

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

.footer-brand p {
  max-width: 340px;
  color: #8f9991;
}

.footer-label {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 10px;
  color: #b9c2bb;
  font-size: 0.9rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #202721;
  color: #7c867e;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

/* Interior pages */
.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 92px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/site/blueprint-bg.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: 4.75rem;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #c4ccc6;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-foundation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: center;
}

.about-foundation h2,
.contact-intro h2,
.legal-content h1,
.legal-content h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: 3.6rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-foundation p:not(.eyebrow),
.contact-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.foundation-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 6px;
  background: #0b100c;
}

.foundation-image img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
}

.bio-list {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.bio-row {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
  background: var(--ink-2);
}

.bio-row:nth-child(even) {
  grid-template-columns: 1.14fr 0.86fr;
}

.bio-row:nth-child(even) .bio-image {
  order: 2;
}

.bio-image {
  min-height: 480px;
  overflow: hidden;
  background: #080b09;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.bio-copy .bio-number {
  margin-bottom: 52px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
  font-weight: 800;
}

.bio-copy h2 {
  margin-bottom: 10px;
  font-size: 3rem;
}

.bio-copy h3 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.bio-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
  align-items: start;
}

.contact-details {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-details div {
  margin-bottom: 26px;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: #288b0a;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details p,
.contact-details a {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
}

.contact-alt-cta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-alt-cta a {
  color: #1f7009;
  font-weight: 700;
  text-decoration: underline;
}

.contact-form-wrap {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-field label span {
  margin-left: 4px;
  color: #237b09;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: #1f7009;
  background: var(--white);
  outline: none;
}

.form-consent-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.form-consent-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #1f7009;
}

.form-checkbox span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-checkbox strong {
  color: var(--ink);
}

.contact-form .button {
  align-self: flex-start;
}

.form-legal-links {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-legal-links a {
  color: #1f7009;
  font-weight: 700;
  text-decoration: underline;
}

.form-status {
  margin: 0;
  color: #1f7009;
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-main {
  padding: 150px 0 100px;
  background: var(--paper);
  color: var(--ink);
}

.legal-content {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 4.2rem;
}

.legal-content .legal-updated {
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #39423b;
  line-height: 1.75;
}

.legal-content a {
  color: #237b09;
  font-weight: 700;
  text-decoration: underline;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid #288c09;
  background: #dfe8e0;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 140px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  .hero-copy {
    width: 64%;
  }

  .hero-founders {
    right: -72px;
    width: 62vw;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-heading h2 {
    font-size: 3.5rem;
  }

  .membership-layout {
    gap: 58px;
  }

  .operator-photo {
    height: 330px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .section-shell,
  .nav-shell,
  .hero-inner {
    width: min(100% - 40px, var(--max-width));
  }

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

  .main-logo {
    width: 136px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: 0;
    display: block;
    overflow: hidden;
    background: #080b09;
    border-bottom: 1px solid var(--line-dark);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding: 18px 20px 28px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid #222b24;
    font-size: 0.86rem;
  }

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

  .hero-inner {
    align-items: flex-start;
    padding-top: 142px;
  }

  .hero-copy {
    width: 72%;
  }

  .hero-copy h1 {
    font-size: 3.75rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-founders {
    right: -120px;
    bottom: 58px;
    width: 70vw;
    opacity: 0.66;
  }

  .split-heading,
  .operator-lead,
  .about-foundation,
  .contact-layout,
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-heading h2,
  .section-heading h2,
  .membership-intro h2,
  .operator-lead h2,
  .about-foundation h2,
  .contact-intro h2 {
    font-size: 3.1rem;
  }

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

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

  .membership-intro {
    position: static;
  }

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

  .operator-card:last-child {
    grid-column: 1 / -1;
  }

  .operator-card:last-child .operator-photo {
    height: 390px;
  }

  .mastermind-inner h2 {
    font-size: 3.65rem;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta h2 {
    font-size: 2.85rem;
  }

  .bio-copy {
    padding: 48px;
  }

  .page-hero {
    min-height: 540px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .nav-shell,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .main-header.is-scrolled,
  .page-inner .main-header,
  .main-header.menu-active {
    background: #080b09;
  }

  .home-hero {
    height: min(780px, calc(100svh - 36px));
    min-height: 720px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 146px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: 3.2rem;
  }

  .hero-lead {
    max-width: 94%;
    margin-bottom: 24px;
    color: #eef2ee;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .eyebrow::before {
    width: 26px;
  }

  .button-row {
    gap: 8px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.74rem;
  }

  .hero-founders {
    right: -80px;
    bottom: 46px;
    width: 85vw;
    opacity: 0.34;
  }

  .hero-blueprint {
    opacity: 0.35;
  }

  .hero-proof {
    min-height: 48px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 8px;
  }

  .hero-proof span {
    padding: 3px 6px;
    font-size: 0.58rem;
  }

  .hero-proof span:nth-child(4),
  .hero-proof span:nth-child(5) {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .split-heading {
    margin-bottom: 44px;
  }

  .split-heading h2,
  .section-heading h2,
  .membership-intro h2,
  .operator-lead h2,
  .about-foundation h2,
  .contact-intro h2 {
    font-size: 2.55rem;
  }

  .issue-list,
  .system-grid,
  .operator-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .issue-list article {
    min-height: 210px;
    padding: 26px;
  }

  .issue-list article > span {
    margin-bottom: 28px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .system-grid article,
  .system-grid article:nth-child(odd),
  .system-grid article:nth-child(even) {
    grid-template-columns: 44px 1fr;
    min-height: 160px;
    padding: 26px 0;
    border-right: 0;
  }

  .benefit-list > div {
    grid-template-columns: 48px 1fr;
  }

  .operator-card:last-child {
    grid-column: auto;
  }

  .operator-photo,
  .operator-card:last-child .operator-photo {
    height: 360px;
  }

  .operator-lead {
    margin-bottom: 44px;
  }

  .process-heading {
    margin-bottom: 38px;
  }

  .process-heading h2 {
    font-size: 2.9rem;
  }

  .process-list {
    gap: 10px;
  }

  .process-list li {
    min-height: 250px;
    padding: 24px 22px;
  }

  .process-letter {
    margin-bottom: 34px;
    font-size: 4.6rem;
  }

  .process-step {
    top: 24px;
    right: 22px;
  }

  .process-list h3 {
    min-height: 0;
  }

  .process-list p {
    max-width: none;
  }

  .logo-section {
    padding: 64px 0;
  }

  .logo-section-heading {
    display: block;
  }

  .logo-section-heading .eyebrow {
    margin-bottom: 14px;
  }

  .logo-tile {
    width: 142px;
    height: 90px;
    padding: 12px;
  }

  .logo-tile img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .logo-marquee-dark .logo-tile {
    width: 172px;
    height: 88px;
  }

  .logo-marquee {
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }

  .mastermind-promo {
    min-height: 570px;
  }

  .mastermind-inner h2 {
    font-size: 3rem;
  }

  .mastermind-media {
    background-position: 48% center;
    opacity: 0.26;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .footer-bottom {
    min-height: 84px;
    display: block;
    padding: 20px 0;
  }

  .footer-bottom p + p {
    margin-top: 5px;
  }

  .page-hero {
    min-height: 500px;
    padding: 135px 0 70px;
  }

  .page-hero h1 {
    font-size: 3.25rem;
  }

  .page-hero p:last-child {
    font-size: 0.96rem;
  }

  .foundation-image {
    min-height: 390px;
  }

  .bio-row,
  .bio-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .bio-row:nth-child(even) .bio-image {
    order: 0;
  }

  .bio-image {
    min-height: 390px;
  }

  .bio-copy {
    padding: 36px 24px 44px;
  }

  .bio-copy .bio-number {
    margin-bottom: 28px;
  }

  .bio-copy h2 {
    font-size: 2.5rem;
  }

  .legal-main {
    padding: 120px 0 72px;
  }

  .legal-content {
    width: calc(100% - 32px);
  }

  .legal-content h1 {
    font-size: 3.1rem;
  }

  .legal-content h2 {
    font-size: 1.55rem;
  }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink-2);
}

.event-card-media {
  position: relative;
  height: 220px;
}

.event-card-media-photo {
  background-image: url("/assets/source/event-room.webp");
  background-position: center 30%;
  background-size: cover;
}

.event-card-media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 10, 0.2) 0%, var(--ink-2) 96%);
}

.event-card-media-logo {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 16px;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}

.event-card-media-grid {
  display: flex;
  align-items: flex-end;
  background: var(--scale-furnace-black, #020403);
  border-bottom: 1px solid rgba(25, 240, 68, 0.25);
}

.event-card-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.event-card-glow {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  opacity: 0.8;
  background: radial-gradient(circle, rgba(25, 240, 68, 0.32) 0%, rgba(25, 240, 68, 0.1) 40%, transparent 72%);
  filter: blur(4px);
}

.event-card-media-kicker {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 28px 20px;
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.event-card-media-kicker span {
  color: #19f044;
}

.event-card-media-grid-blue {
  border-bottom: 1px solid rgba(22, 140, 255, 0.25);
}

.event-card-glow-blue {
  background: radial-gradient(circle, rgba(22, 140, 255, 0.32) 0%, rgba(22, 140, 255, 0.1) 40%, transparent 72%);
}

.event-card-media-kicker-blue span {
  color: #168cff;
}

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 40px 40px;
}

.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.event-card-label {
  margin: 0;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card-tag {
  margin: 0;
  padding: 5px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h2 {
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.event-card-date {
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.event-card-copy {
  margin-bottom: 28px;
  color: var(--steel);
}

.event-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0 0 28px;
  border: 1px solid rgba(120, 242, 61, 0.3);
  border-radius: 10px;
  padding: 14px 10px;
  background: rgba(5, 9, 8, 0.6);
}

.event-countdown div {
  text-align: center;
}

.event-countdown div + div {
  border-left: 1px solid var(--line-dark);
}

.event-countdown strong {
  display: block;
  font-family: "Scale Display", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.event-countdown span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card .button {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .event-card-media {
    height: 170px;
  }

  .event-card-body {
    padding: 26px 22px 32px;
  }

  .event-card h2 {
    font-size: 2rem;
  }

  .event-countdown {
    padding: 12px 6px;
  }
}

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

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

  .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .logo-marquee.is-ready .logo-marquee-track {
    width: 100%;
    animation: none;
  }

  .logo-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-marquee-group[data-marquee-clone] {
    display: none;
  }
}
