:root {
  --black: #07090a;
  --black-2: #0c1011;
  --panel: #111516;
  --panel-2: #151a1b;
  --white: #f3f0e9;
  --paper: #e5ddd1;
  --paper-2: #d8cfc2;
  --muted: #aaa59c;
  --muted-dark: #5f5a53;
  --red: #d8202d;
  --red-bright: #ef3340;
  --bronze: #b08f56;
  --line: rgba(243, 240, 233, 0.14);
  --line-dark: rgba(7, 9, 10, 0.14);
  --max: 1380px;
  --header-height: 86px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.cursor-aura {
  display: none;
}

.shell {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 128px;
}

.section-dark {
  background: var(--black);
}

.section-panel {
  background: var(--black-2);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bronze);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--red);
}

.section-number {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 1050px;
  margin-top: 24px;
  font-size: clamp(3.4rem, 7.1vw, 7.7rem);
}

.section-heading span,
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.55);
}

.section-light .section-heading span,
.section-light .outline-text {
  -webkit-text-stroke-color: rgba(7, 9, 10, 0.5);
}

.section-lede {
  max-width: 770px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.section-light .section-lede {
  color: var(--muted-dark);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(216, 32, 45, 0.18);
}

.button-primary:hover {
  background: var(--red-bright);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(243, 240, 233, 0.28);
}

.button-secondary:hover {
  border-color: rgba(243, 240, 233, 0.58);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 9, 10, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(275px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 30px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand picture {
  display: block;
  width: 146px;
  height: 56px;
  overflow: hidden;
}

.brand img {
  width: 146px;
  height: 56px;
  display: block;
  object-fit: cover;
  object-position: center 43%;
}

.brand-wordmark {
  max-width: 155px;
  padding-left: 14px;
  border-left: 1px solid rgba(176, 143, 86, 0.7);
  font-size: 0.59rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a,
.header-cta {
  color: #c5c0b7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(243, 240, 233, 0.42);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 55;
  padding: 34px 28px 42px;
  display: none;
  align-content: start;
  background: rgba(7, 9, 10, 0.985);
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2.5rem, 12vw, 4.8rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mobile-menu .button {
  margin-top: 30px;
}

/* Home hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 78% 34%, rgba(216, 32, 45, 0.16), transparent 29%),
    radial-gradient(circle at 17% 60%, rgba(176, 143, 86, 0.09), transparent 30%),
    linear-gradient(135deg, #0e1213 0%, #07090a 62%);
}

.topography {
  position: absolute;
  inset: -8%;
  z-index: -4;
  background: url("./assets/topography.svg") center / cover no-repeat;
  opacity: 0.45;
  filter: drop-shadow(0 0 24px rgba(176, 143, 86, 0.08));
  mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.38), #000 42%, rgba(0, 0, 0, 0.18));
  -webkit-mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.38), #000 42%, rgba(0, 0, 0, 0.18));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-inner {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 150px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.hero-copy-block {
  max-width: 1000px;
}

.hero h1 {
  max-width: 990px;
  margin-top: 28px;
  font-size: clamp(4.5rem, 9.3vw, 9.5rem);
}

.hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.72);
}

.hero-description {
  max-width: 780px;
  margin-top: 31px;
  color: #c3beb5;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.program-card {
  position: relative;
  min-height: 410px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(17, 21, 22, 0.92), rgba(7, 9, 10, 0.88));
  border: 1px solid rgba(243, 240, 233, 0.2);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(216, 32, 45, 0.08);
  pointer-events: none;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 6px rgba(239, 51, 64, 0.08);
}

.program-card h2 {
  margin-top: 56px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.program-card > div > p {
  margin-top: 22px;
  color: var(--muted);
}

.program-meta {
  margin-top: 30px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  border-top: 1px solid var(--line);
}

.program-meta span {
  color: #77736c;
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-meta strong {
  justify-self: end;
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.hero-rail {
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #716d66;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 70px;
  height: 1px;
  display: block;
  background: rgba(243, 240, 233, 0.18);
}

/* Homepage content */

.mission-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mission-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.22s ease, transform 0.22s ease;
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.028);
  transform: translateY(-4px);
}

.mission-card h3 {
  margin-top: auto;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}

.mission-card p {
  margin-top: 22px;
  color: var(--muted);
}

.focus-panel {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 610px;
  background: var(--paper);
  color: var(--black);
  border: 1px solid rgba(243, 240, 233, 0.16);
}

.focus-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 68% 46%, rgba(216, 32, 45, 0.2), transparent 24%),
    linear-gradient(135deg, #111516, #07090a 65%);
}

.focus-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background: url("./assets/topography.svg") center / cover no-repeat;
  opacity: 0.5;
}

.focus-visual::after {
  content: "SNARE-1A";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(243, 240, 233, 0.035);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.abstract-system {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 560px);
  aspect-ratio: 2.1 / 1;
  transform: translate(-50%, -50%) rotate(-7deg);
  filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.55));
}

.abstract-system::before,
.abstract-system::after {
  content: "";
  position: absolute;
  background: linear-gradient(155deg, #252a2c, #0b0e0f 70%);
  border: 1px solid rgba(243, 240, 233, 0.16);
}

.abstract-system::before {
  inset: 18% 8% 20% 4%;
  clip-path: polygon(0 30%, 8% 15%, 72% 0, 100% 20%, 95% 72%, 64% 100%, 16% 86%);
}

.abstract-system::after {
  left: 30%;
  bottom: 0;
  width: 19%;
  height: 48%;
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.abstract-mark {
  position: absolute;
  left: 9%;
  top: 11%;
  padding: 7px 10px;
  color: var(--white);
  border-left: 2px solid var(--red);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.focus-copy {
  padding: clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.focus-copy .eyebrow {
  color: #8f7040;
}

.focus-copy h2 {
  margin-top: 25px;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
}

.focus-copy > p {
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.attribute-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.attribute-list li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.attribute-list li::before {
  content: "+";
  color: var(--red);
}

.focus-copy .text-link {
  margin-top: 34px;
  width: fit-content;
}

.pathway {
  margin-top: 78px;
  border-top: 1px solid var(--line-dark);
}

.pathway-step {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.55fr) minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.pathway-step .step-number {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pathway-step h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
}

.pathway-step p {
  color: var(--muted-dark);
}

.step-status {
  min-width: 128px;
  padding: 8px 11px;
  color: var(--black);
  border: 1px solid rgba(7, 9, 10, 0.24);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.step-status.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.founder-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.founder-stamp {
  min-height: 470px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 30%, rgba(216, 32, 45, 0.12), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent);
}

.founder-stamp strong {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.founder-stamp strong span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.5);
}

.founder-stamp dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 25px;
}

.founder-stamp dt {
  color: #77736d;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-stamp dd {
  margin: 0;
  justify-self: end;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin-top: 24px;
  font-size: clamp(3.7rem, 6.5vw, 7rem);
}

.founder-copy > p {
  max-width: 720px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.credibility-list li {
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  color: #c5c0b7;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.partner-card {
  min-height: 315px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.partner-card h3 {
  margin-top: auto;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.partner-card p {
  margin-top: 18px;
  color: var(--muted-dark);
}

.partner-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.partner-cta p {
  max-width: 650px;
  color: var(--muted-dark);
}

/* Interior page hero */

.page-hero {
  position: relative;
  min-height: 73svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero .topography {
  opacity: 0.36;
}

.page-hero-inner {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 170px 0 88px;
}

.page-hero h1 {
  max-width: 1100px;
  margin-top: 28px;
  font-size: clamp(5rem, 10.5vw, 10.5rem);
}

.page-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.62);
}

.page-hero-copy {
  max-width: 800px;
  margin-top: 30px;
  color: #c0bbb2;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.page-hero-meta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip {
  padding: 9px 12px;
  border: 1px solid rgba(243, 240, 233, 0.2);
  color: #a8a39b;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 140px);
}

.content-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.content-aside h2 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
}

.content-aside p {
  margin-top: 22px;
  color: var(--muted);
}

.content-stack {
  display: grid;
}

.content-row {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
}

.content-row:last-child {
  border-bottom: 1px solid var(--line);
}

.content-row .row-number {
  color: var(--red);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.content-row h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
}

.content-row p {
  color: var(--muted);
}

.disclosure-box {
  margin-top: 76px;
  padding: clamp(35px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  color: var(--black);
  background: var(--paper);
}

.disclosure-box h2 {
  margin-top: 20px;
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
}

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

.boundary-card {
  padding: 26px;
  border: 1px solid var(--line-dark);
}

.boundary-card h3 {
  font-size: 1.55rem;
}

.boundary-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted-dark);
  font-size: 0.85rem;
}

.boundary-card li {
  padding-left: 18px;
  position: relative;
}

.boundary-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 2px;
  background: var(--red);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.founder-monogram {
  aspect-ratio: 1 / 1.08;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 70% 25%, rgba(216, 32, 45, 0.18), transparent 28%),
    linear-gradient(145deg, #14191a, #090b0c);
  border: 1px solid var(--line);
}

.founder-monogram strong {
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.1em;
}

.founder-monogram span {
  color: var(--bronze);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-founder-copy h2 {
  margin-top: 22px;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
}

.about-founder-copy p {
  margin-top: 27px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-founder-copy .founder-name {
  color: var(--white);
  font-weight: 800;
}

.standard-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.standard-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.standard-card h3 {
  margin-top: auto;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.standard-card p {
  margin-top: 20px;
  color: var(--muted-dark);
}

/* Partner page and form */

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

.engagement-card {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engagement-card h2 {
  margin-top: auto;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.engagement-card p {
  margin-top: 20px;
  color: var(--muted);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.inquiry-intro h2 {
  margin-top: 22px;
  font-size: clamp(3.5rem, 6.3vw, 7rem);
}

.inquiry-intro > p {
  margin-top: 27px;
  color: var(--muted-dark);
}

.direct-contact {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.direct-contact span {
  display: block;
  color: #77716a;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact a {
  margin-top: 9px;
  display: inline-block;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.inquiry-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--paper-2);
  border: 1px solid var(--line-dark);
}

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

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

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

.field label,
.field legend {
  color: #514d47;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 9, 10, 0.34);
  border-radius: 0;
  outline: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
}

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

.checkbox-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.checkbox-field label {
  color: #57524b;
  font-size: 0.8rem;
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 24px;
  color: #6a4f24;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-note {
  grid-column: 1 / -1;
  color: #69635c;
  font-size: 0.73rem;
}

/* Legal */

.legal-shell {
  width: min(calc(100% - 56px), 940px);
  margin-inline: auto;
}

.legal-content {
  padding-block: 110px;
}

.legal-content h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal-content .updated {
  margin-top: 20px;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-copy {
  margin-top: 62px;
  color: #c3beb5;
}

.legal-copy h2 {
  margin-top: 48px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-copy p,
.legal-copy ul {
  margin-top: 18px;
}

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

.legal-copy a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #050708;
}

.footer-main {
  padding: 68px 0 48px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 70px;
  align-items: start;
}

.footer-brand picture {
  width: 200px;
  height: 82px;
  display: block;
  overflow: hidden;
}

.footer-brand img {
  width: 200px;
  height: 82px;
  object-fit: cover;
  object-position: center 43%;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  color: #77736d;
  font-size: 0.78rem;
}

.footer-column h2 {
  color: #77736d;
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.footer-column nav {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: #b9b4ac;
  font-size: 0.8rem;
}

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

.footer-bottom {
  min-height: 72px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #6f6a63;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 404 */

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(216, 32, 45, 0.16), transparent 24%),
    url("./assets/topography.svg") center / cover,
    var(--black);
}

.error-page h1 {
  font-size: clamp(8rem, 25vw, 18rem);
}

.error-page h2 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.error-page p {
  max-width: 560px;
  margin: 25px auto 0;
  color: var(--muted);
}

.error-page .button {
  margin-top: 34px;
}

/* Animation and accessibility */

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

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-aura {
    position: fixed;
    width: 460px;
    height: 460px;
    margin: -230px 0 0 -230px;
    z-index: 1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(216, 32, 45, 0.06), transparent 67%);
    transition: opacity 0.25s ease;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(260px, 1fr) auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    gap: 50px;
  }

  .mission-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .standard-card {
    min-height: 290px;
  }

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

  .footer-main {
    grid-template-columns: 1fr auto auto;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 100px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .program-card {
    min-height: 350px;
  }

  .hero-rail {
    display: none;
  }

  .focus-panel,
  .content-grid,
  .disclosure-box,
  .about-founder,
  .inquiry-layout,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .focus-visual {
    min-height: 480px;
  }

  .content-aside {
    position: relative;
    top: auto;
  }

  .pathway-step {
    grid-template-columns: 55px 1fr auto;
  }

  .pathway-step p {
    grid-column: 2 / -1;
  }

  .boundary-lists {
    grid-template-columns: 1fr;
  }

  .founder-stamp {
    min-height: 400px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .shell,
  .header-inner,
  .hero-inner,
  .page-hero-inner,
  .legal-shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .brand picture,
  .brand img {
    width: 108px;
    height: 43px;
  }

  .brand-wordmark {
    max-width: 125px;
    padding-left: 10px;
    font-size: 0.44rem;
    letter-spacing: 0.1em;
  }

  .hero-inner {
    padding: 112px 0 76px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .program-card {
    min-height: 330px;
    padding: 26px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    font-size: clamp(3.3rem, 15vw, 5.8rem);
  }

  .mission-grid,
  .partner-grid,
  .engagement-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .focus-visual {
    min-height: 390px;
  }

  .focus-copy {
    padding: 38px 27px 44px;
  }

  .pathway-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .pathway-step p,
  .pathway-step .step-status {
    grid-column: 2;
  }

  .step-status {
    justify-self: start;
  }

  .credibility-list {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 68svh;
  }

  .page-hero-inner {
    padding: 132px 0 64px;
  }

  .page-hero h1 {
    font-size: clamp(4.4rem, 19vw, 7rem);
  }

  .content-row {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .content-row p {
    grid-column: 2;
  }

  .disclosure-box {
    padding: 35px 24px;
  }

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

  .field-full,
  .checkbox-field,
  .form-actions,
  .form-note {
    grid-column: auto;
  }

  .inquiry-form {
    padding: 30px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .brand-wordmark {
    display: none;
  }
}

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

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

  .reveal,
  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* Defensive intrinsic sizing for narrow viewports */
.hero-inner > *,
.focus-panel > *,
.content-grid > *,
.disclosure-box > *,
.founder-grid > *,
.about-founder > *,
.inquiry-layout > *,
.footer-main > *,
.mission-grid > *,
.partner-grid > *,
.engagement-grid > *,
.standard-grid > * {
  min-width: 0;
}

.section-heading,
.section-heading span,
.inquiry-intro h2,
.direct-contact a {
  overflow-wrap: anywhere;
}

/* Preserve natural headline wrapping; only long email addresses break anywhere. */
.section-heading,
.section-heading span,
.inquiry-intro h2 {
  overflow-wrap: normal;
  word-break: normal;
}

.direct-contact a {
  overflow-wrap: anywhere;
}
