:root {
  color-scheme: light;
  --ink: #111315;
  --ink-soft: #23272b;
  --paper: #f2f2ef;
  --paper-deep: #e7e7e2;
  --white: #ffffff;
  --muted: #62686d;
  --line: #caccc9;
  --line-dark: rgba(255, 255, 255, 0.22);
  --gold: #bea46e;
  --steel: #36546b;
  --container: 1240px;
  --pad: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 88px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(17, 19, 21, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  font-size: 16px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.site-nav button {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:not(.nav-status)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-status {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  border-radius: 4px;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-label {
  font-size: 12px;
  font-weight: 650;
}

.menu-icon {
  position: relative;
  width: 26px;
  height: 18px;
  display: block;
}

.menu-icon i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon i:first-child {
  transform: translateY(-4px);
}

.menu-icon i:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] .menu-icon i:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon i:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: left center;
}

.hero-shade {
  background: rgba(5, 7, 9, 0.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - (var(--pad) * 2)));
  margin-left: max(var(--pad), calc((100vw - var(--container)) / 2));
  padding: 190px 0 70px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #766441;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: #d4bc88;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 0.88;
}

.hero-line {
  margin: 30px 0 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

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

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.section {
  padding: 150px 0;
}

.mission {
  background: var(--paper);
}

.mission-grid,
.perspective-grid {
  display: grid;
}

.mission-grid {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 80px;
}

.perspective-grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--muted);
}

.section-kicker p {
  margin: 0;
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.section-number {
  color: #8a7348;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.mission-copy h2,
.perspective-heading h2,
.executive-ai-heading h2,
.section-heading h2,
.principles-intro h2,
.team-heading h2,
.launch h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.05;
}

.perspective-heading h2 {
  font-size: 56px;
}

.copy-columns {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.executive-introduction {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.executive-introduction-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
}

.executive-introduction-grid > .eyebrow {
  margin: 6px 0 0;
}

.executive-introduction-copy {
  margin-top: 0;
}

.mobile-scroll-cue {
  display: none;
}

@keyframes executive-scroll-cue {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); }
  50% { transform: rotate(45deg) translate(1px, 1px); }
}

.copy-columns p,
.perspective-body p,
.section-heading > p,
.team-heading > p,
.humanity-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.mission-partnership {
  grid-column: 1 / -1;
  max-width: 720px;
}

.audience {
  color: var(--white);
  background: var(--steel);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-item {
  min-height: 360px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.audience-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.audience-item > span,
.process-number,
.principle > span {
  color: #d9c59b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.audience-item h3 {
  margin: auto 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.audience-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.perspective {
  background: var(--white);
}

.perspective-heading .eyebrow {
  margin-bottom: 28px;
}

.perspective-body {
  padding-top: 52px;
}

.perspective-body p + p {
  margin-top: 24px;
}

.perspective-body .lead-copy {
  color: var(--ink-soft);
  font-size: 24px;
  line-height: 1.5;
}

.executive-ai {
  padding: 150px 0;
  color: var(--white);
  background: #10171b;
}

.executive-ai-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 60px;
  align-items: end;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.64);
}

.executive-ai-heading .eyebrow {
  margin-bottom: 28px;
}

.executive-ai-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.capability-list {
  margin-top: 90px;
  border-top: 1px solid var(--line-dark);
}

.capability {
  min-height: 160px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
}

.capability > span {
  color: #d9c59b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.capability h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.capability p {
  max-width: 620px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.executive-ai-distinction {
  padding-top: 42px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.executive-ai-distinction p {
  margin: 0;
}

.executive-ai-distinction strong {
  color: var(--white);
  font-weight: 400;
}

.humanity {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  color: var(--white);
  background: var(--ink-soft);
}

.humanity-image-wrap {
  min-height: 760px;
  overflow: hidden;
}

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

.humanity-content {
  padding: 110px max(var(--pad), calc((100vw - var(--container)) / 2)) 110px 72px;
  align-self: center;
}

.humanity-content h2 {
  margin: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
}

.humanity-content > p {
  color: rgba(255, 255, 255, 0.68);
}

.humanity-content blockquote {
  margin: 44px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.45;
}

.approach {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 48px 80px;
  align-items: end;
}

.section-heading > p {
  padding-bottom: 2px;
}

.process-grid {
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 190px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.process-step > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 1fr);
  gap: 60px;
}

.process-step h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.principles {
  padding: 150px 0;
  color: var(--white);
  background: #182127;
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.principles-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.protocol-link {
  margin-top: 38px;
}

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

.principle {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 42px minmax(200px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.principle h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.team {
  background: var(--white);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 80px;
  align-items: end;
}

.team-heading .section-kicker {
  margin-bottom: 34px;
}

.team-heading > p {
  padding-bottom: 4px;
}

.team-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 28px;
}

.member {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.member-index {
  min-height: 28px;
  display: block;
  color: #8a7348;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.member-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6f72;
  background: var(--paper-deep);
  border: 1px solid #d3d4d0;
  border-radius: 4px;
}

.member-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.member-portrait-robert img {
  object-position: center 22%;
}

.member-portrait-placeholder::before,
.member-portrait-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(17, 19, 21, 0.12);
}

.member-portrait-placeholder::before {
  inset: 32px;
}

.member-portrait-placeholder::after {
  inset: 48px;
}

.member-portrait > strong {
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 400;
}

.member-content {
  min-height: 250px;
  padding: 24px 2px 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.member-content .member-role {
  min-height: 30px;
  margin: 0 0 12px;
  color: #8a7348;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.member-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.member-summary {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.member-action {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.member-action span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.member-action:hover span,
.member-action:focus-visible span {
  transform: translateX(5px);
}

.member-pending .member-content {
  min-height: 250px;
}

.founder-dialog {
  width: min(1100px, calc(100% - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.founder-dialog::backdrop {
  background: rgba(8, 11, 13, 0.76);
  backdrop-filter: blur(8px);
}

.founder-dialog-inner {
  position: relative;
  height: min(720px, calc(100dvh - 40px));
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.founder-dialog-media {
  width: 220px;
  height: 220px;
  min-height: 0;
  margin: 72px 0 0 58px;
  overflow: hidden;
  align-self: start;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.founder-dialog-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-dialog-media.is-robert img {
  object-position: center 22%;
}

.founder-dialog-content {
  padding: 72px 68px 52px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.founder-dialog-role {
  margin: 0 48px 12px 0;
  color: #8a7348;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.founder-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.02;
}

.founder-dialog-bio {
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.founder-dialog-bio p {
  margin: 0;
}

.founder-dialog-bio p + p,
.founder-dialog-bio p + .member-specialties,
.founder-dialog-bio .member-specialties + p {
  margin-top: 18px;
}

.member-specialties {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.member-specialties li {
  position: relative;
  padding-left: 18px;
}

.member-specialties li + li {
  margin-top: 10px;
}

.member-specialties li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #9a7f4d;
  border-radius: 50%;
  content: "";
}

.founder-dialog-bio strong {
  color: var(--ink);
  font-weight: 700;
}

.founder-dialog-bio blockquote {
  margin: 24px 0 0;
  padding: 0 0 0 18px;
  color: var(--ink);
  border-left: 2px solid #9a7f4d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
}

.founder-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.founder-dialog-close:hover,
.founder-dialog-close:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.founder-dialog-less {
  min-height: 46px;
  margin-top: 34px;
  padding: 0 20px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.founder-dialog-less:hover,
.founder-dialog-less:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.launch {
  padding: 150px 0;
  color: var(--white);
  background: var(--steel);
}

.launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
}

.launch .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.launch h2 {
  max-width: 900px;
}

.site-footer {
  padding: 48px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}

.brand-dark {
  color: var(--ink);
}

.footer-relation,
.footer-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-relation {
  text-align: center;
}

.footer-relation strong {
  color: var(--ink);
}

.footer-relation a,
.footer-meta a {
  font-weight: 700;
  text-decoration: none;
}

.footer-relation a:hover,
.footer-relation a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
}

.access-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.access-dialog::backdrop {
  background: rgba(8, 11, 13, 0.72);
  backdrop-filter: blur(8px);
}

.access-dialog-inner {
  position: relative;
  padding: 56px;
}

.access-dialog-inner::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gold);
  content: "";
}

.access-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.access-close:hover,
.access-close:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.access-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.access-eyebrow {
  margin: 0 0 14px;
  color: #8a7348;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.access-intro h2 {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
}

.access-intro > p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.access-form {
  margin-top: 38px;
}

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

.access-field {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.access-field > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.access-field input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #c9cbc8;
  border-radius: 4px;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.access-field input::placeholder {
  color: #929794;
}

.access-field input:focus {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 19, 21, 0.08);
}

.access-field input[aria-invalid="true"] {
  border-color: #a43c35;
}

.access-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.access-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.access-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: #a43c35;
  font-size: 12px;
  font-weight: 650;
}

.access-submit {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.access-submit:hover,
.access-submit:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.access-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.access-success {
  padding: 38px 0 10px;
}

.access-success > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #285f50;
  border-radius: 50%;
  font-size: 19px;
}

.access-success h3 {
  margin: 26px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.access-success p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.access-success button {
  margin-top: 30px;
  min-height: 46px;
  padding: 0 22px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

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

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

@media (max-width: 1080px) {
  :root {
    --pad: 36px;
  }

  .hero h1 {
    font-size: 96px;
  }

  .mission-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 50px;
  }

  .executive-introduction-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 50px;
  }

  .perspective-grid {
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
    gap: 50px;
  }

  .mission-copy h2,
  .perspective-heading h2,
  .executive-ai-heading h2,
  .section-heading h2,
  .principles-intro h2,
  .team-heading h2,
  .launch h2 {
    font-size: 52px;
  }

  .perspective-heading h2 {
    font-size: 48px;
  }

  .executive-ai-heading {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 44px 50px;
  }

  .executive-ai-heading > p {
    grid-column: 2;
  }

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

  .humanity-content {
    padding-left: 48px;
  }

  .humanity-content h2 {
    font-size: 46px;
  }

  .section-heading {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 44px 50px;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .process-step {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 50px;
  }

  .principles-grid {
    gap: 60px;
  }

  .principle {
    grid-template-columns: 36px minmax(180px, 0.7fr) 1fr;
  }

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

}

@media (max-width: 820px) {
  :root {
    --pad: 24px;
  }

  .site-header {
    min-height: 72px;
    padding: 0 var(--pad);
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 72px);
    padding: 38px var(--pad) 50px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #111315;
  }

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

  .site-nav a,
  .site-nav button {
    padding: 22px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .site-nav .nav-status {
    margin-top: auto;
    padding: 18px;
    font-family: inherit;
    font-size: 13px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background: rgba(5, 7, 9, 0.55);
  }

  .hero-content {
    width: calc(100% - (var(--pad) * 2));
    margin-left: var(--pad);
    padding: 130px 0 116px;
  }

  .hero h1 {
    font-size: 72px;
    line-height: 0.92;
  }

  .hero-line {
    font-size: 15px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 15px;
  }

  .hero-index {
    right: var(--pad);
    bottom: 22px;
    left: var(--pad);
  }

  .section {
    padding: 100px 0;
  }

  .executive-ai {
    padding: 100px 0;
  }

  .mission-grid,
  .executive-introduction-grid,
  .perspective-grid,
  .executive-ai-heading,
  .section-heading,
  .team-heading,
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .mission-copy h2,
  .perspective-heading h2,
  .executive-ai-heading h2,
  .section-heading h2,
  .principles-intro h2,
  .team-heading h2,
  .launch h2 {
    font-size: 46px;
  }

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

  .executive-introduction {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 116px 0 86px;
    display: flex;
    align-items: center;
  }

  .executive-introduction-grid > .eyebrow {
    margin-top: 0;
  }

  .executive-introduction-grid {
    min-height: calc(100dvh - 202px);
    align-content: center;
  }

  .executive-introduction-copy {
    min-height: auto;
    display: block;
    margin-top: clamp(58px, 10vh, 88px);
  }

  .executive-introduction-copy p + p {
    margin-top: clamp(48px, 7vh, 68px);
  }

  .executive-introduction-copy p {
    color: var(--ink);
    font-size: clamp(23px, 5.95vw, 36px);
    font-weight: 650;
    line-height: 1.15;
  }

  .mobile-scroll-cue {
    position: absolute;
    right: var(--pad);
    top: calc(100svh - 52px);
    bottom: auto;
    left: var(--pad);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #766441;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-scroll-cue i {
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    animation: executive-scroll-cue 1.6s ease-in-out infinite;
  }

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

  .audience-item {
    min-height: 260px;
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .audience-item:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .perspective-body {
    padding-top: 0;
  }

  .executive-ai-heading > p {
    grid-column: auto;
  }

  .capability-list {
    margin-top: 60px;
  }

  .capability {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .capability p {
    grid-column: 2;
  }

  .executive-ai-distinction {
    flex-direction: column;
    gap: 12px;
  }

  .humanity {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .humanity-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .humanity-content {
    padding: 90px var(--pad);
  }

  .section-heading > p {
    grid-column: auto;
  }

  .process-grid {
    margin-top: 60px;
  }

  .process-step {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 20px;
  }

  .process-step > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principles {
    padding: 100px 0;
  }

  .principles-intro {
    position: static;
  }

  .principle {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .principle p {
    grid-column: 2;
  }

  .team-grid {
    margin-top: 60px;
    gap: 50px 22px;
  }

  .member-content {
    min-height: 240px;
  }

  .founder-dialog-inner {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .founder-dialog-media {
    width: 190px;
    height: 190px;
    margin: 64px 0 0 28px;
  }

  .founder-dialog-content {
    padding: 64px 34px 42px;
  }

  .founder-dialog h2 {
    font-size: 40px;
  }

  .launch {
    padding: 100px 0;
  }

  .launch-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .launch .eyebrow {
    grid-column: auto;
    margin-bottom: -10px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 48px;
    white-space: nowrap;
  }

  .hero-index span:last-child {
    display: none;
  }

  .mission-copy h2,
  .perspective-heading h2,
  .executive-ai-heading h2,
  .section-heading h2,
  .principles-intro h2,
  .team-heading h2,
  .launch h2 {
    font-size: 40px;
  }

  .perspective-body .lead-copy {
    font-size: 21px;
  }

  .humanity-content h2 {
    font-size: 40px;
  }

  .humanity-content blockquote {
    font-size: 20px;
  }

  .process-step h3 {
    font-size: 34px;
  }

  .capability h3 {
    font-size: 29px;
  }

  .team-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .member-content h3 {
    font-size: 34px;
  }

  .member-content,
  .member-pending .member-content {
    min-height: 230px;
  }

  .founder-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .founder-dialog-inner {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .founder-dialog-media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
  }

  .founder-dialog-content {
    padding: 38px 22px 30px;
    overflow: visible;
  }

  .founder-dialog-role {
    margin-right: 0;
  }

  .founder-dialog h2 {
    font-size: 38px;
  }

  .founder-dialog-close {
    top: 14px;
    right: 14px;
  }

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

  .footer-relation {
    text-align: left;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .access-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .access-dialog-inner {
    padding: 38px 22px 28px;
  }

  .access-close {
    top: 16px;
    right: 16px;
  }

  .access-mark {
    margin-bottom: 46px;
  }

  .access-intro h2 {
    padding-right: 12px;
    font-size: 32px;
  }

  .access-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 374px) {
  .hero h1 {
    font-size: 44px;
  }
}

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

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

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