:root {
  --ink: #f3f1ea;
  --muted: #b8b4aa;
  --paper: #e7e1d2;
  --copper: #c4834e;
  --blue: #7da8bc;
  --black: #090b0d;
  --charcoal: #11161a;
  --line: rgba(243, 241, 234, 0.14);
  --shadow: rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--black);
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--black);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--ink);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(9, 11, 13, 0.76), rgba(9, 11, 13, 0));
  pointer-events: none;
}

.wordmark,
.site-nav {
  display: flex;
  align-items: center;
}

.wordmark {
  gap: 10px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark-copy {
  display: grid;
  gap: 3px;
}

.wordmark-former {
  color: rgba(243, 241, 234, 0.58);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.wordmark-mark {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(243, 241, 234, 0.82);
  border-radius: 50%;
  box-shadow:
    9px 0 0 -5px var(--copper),
    0 0 18px rgba(196, 131, 78, 0.42);
}

.site-nav {
  gap: clamp(12px, 2.2vw, 24px);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 92vh);
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.04) brightness(0.96);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 36%, rgba(125, 168, 188, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(9, 11, 13, 0.97) 0%, rgba(9, 11, 13, 0.8) 42%, rgba(9, 11, 13, 0.32) 100%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.5), rgba(9, 11, 13, 0.1));
}

.hero-content {
  align-self: center;
  width: min(760px, calc(100% - 40px));
  padding: 120px 0 80px;
  margin-left: clamp(20px, 7vw, 88px);
}

.eyebrow,
.section-kicker,
.availability {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--paper);
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 11vw, 9.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(243, 241, 234, 0.86);
  font-size: clamp(1.2rem, 2.1vw, 1.78rem);
  line-height: 1.36;
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(243, 241, 234, 0.64);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

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

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--black);
  background: var(--paper);
  border: 1px solid rgba(243, 241, 234, 0.78);
  border-radius: 2px;
  box-shadow: 0 18px 48px var(--shadow);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #fff9eb;
  border-color: #fff9eb;
  transform: translateY(-1px);
}

.availability {
  color: rgba(243, 241, 234, 0.62);
}

.signal-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 23, 27, 0.98), #0b0e11),
    var(--charcoal);
}

.signal-shell {
  width: min(1120px, calc(100% - 40px));
  padding: 62px 0 76px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 28px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: 46px;
}

.section-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.section-intro p {
  max-width: 620px;
  margin: 0 0 8px;
  color: rgba(243, 241, 234, 0.74);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.64;
}

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

.signal-grid article {
  min-height: 210px;
  padding: clamp(22px, 4vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.signal-grid h3 {
  margin: 46px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0;
}

.signal-grid p {
  max-width: 27ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.cred-band {
  border-top: 1px solid var(--line);
  background: #090b0d;
}

.cred-shell {
  width: min(1120px, calc(100% - 40px));
  padding: 76px 0 84px;
  margin: 0 auto;
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: end;
  margin-bottom: 38px;
}

.team-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.team-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.8vw, 4.75rem);
}

.team-heading p {
  margin: 0;
  color: rgba(243, 241, 234, 0.72);
  font-size: 1.02rem;
  line-height: 1.64;
}

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

.team-grid article {
  min-height: 430px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-grid h3 {
  min-height: 2.4em;
  margin: 0 0 18px;
  color: var(--paper);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.2;
}

.logo-row {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  margin: 24px 0 0;
}

.logo-row img {
  width: 108px;
  max-width: none;
  height: 38px;
  object-fit: contain;
  padding: 6px 9px;
  border: 1px solid rgba(243, 241, 234, 0.14);
  border-radius: 2px;
  background: rgba(243, 241, 234, 0.045);
  box-shadow: inset 0 1px 0 rgba(243, 241, 234, 0.06);
  opacity: 0.9;
}

.logo-row .logo-light {
  background: rgba(243, 241, 234, 0.045);
}

.logo-row .logo-dark {
  background: rgba(243, 241, 234, 0.045);
}

.logo-row .logo-compact {
  width: 72px;
}

.logo-row .logo-firm {
  width: 126px;
}

.logo-row .logo-vc,
.logo-row .logo-school {
  width: 106px;
}

.logo-row .logo-harvard {
  width: 128px;
  padding-inline: 8px;
}

.logo-row .logo-dartmouth {
  width: 112px;
  height: 36px;
  padding-inline: 9px;
}

.logo-row .logo-yale {
  width: 76px;
}

.logo-row .logo-washu {
  width: 94px;
}

.logo-row .logo-square {
  width: 70px;
  height: 46px;
  padding: 5px 6px;
}

.bio-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
  list-style: none;
}

.bio-list li {
  position: relative;
  padding-left: 17px;
}

.bio-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--copper);
}

.deploy-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 22, 26, 0.96), #090b0d 62%),
    #090b0d;
}

.deploy-shell {
  width: min(1120px, calc(100% - 40px));
  padding: 72px 0 88px;
  margin: 0 auto;
}

.deployment-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  margin-bottom: 42px;
}

.deployment-intro h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.deployment-intro p {
  max-width: 620px;
  margin: 0 0 8px;
  color: rgba(243, 241, 234, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.62;
}

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

.deployment-grid article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.015);
}

.deployment-grid span {
  display: block;
  max-width: 19ch;
  color: var(--paper);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  font-weight: 720;
  line-height: 1.18;
}

.deployment-grid p {
  max-width: 30ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(243, 241, 234, 0.6);
  background: #090b0d;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0;
}

.site-footer .former-name {
  margin-top: 5px;
  color: rgba(243, 241, 234, 0.38);
  font-size: 0.76rem;
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  .wordmark {
    font-size: 0.76rem;
  }

  .wordmark-former {
    font-size: 0.52rem;
  }

  .hero {
    min-height: 88vh;
  }

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

  .hero-shade {
    background:
      radial-gradient(circle at 80% 28%, rgba(125, 168, 188, 0.12), transparent 30%),
      linear-gradient(90deg, rgba(9, 11, 13, 0.95) 0%, rgba(9, 11, 13, 0.78) 68%, rgba(9, 11, 13, 0.42) 100%),
      linear-gradient(0deg, rgba(9, 11, 13, 0.58), rgba(9, 11, 13, 0.18));
  }

  .hero-content {
    width: min(100% - 40px, 560px);
    padding: 106px 0 64px;
    margin-inline: auto;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(4.1rem, 23vw, 6.4rem);
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .signal-shell {
    padding-top: 46px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-intro h2 {
    max-width: 9ch;
  }

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

  .signal-grid article {
    min-height: 172px;
  }

  .signal-grid h3 {
    margin-top: 34px;
  }

  .cred-shell,
  .team-heading,
  .deployment-intro {
    grid-template-columns: 1fr;
  }

  .cred-shell {
    padding: 54px 0 68px;
  }

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

  .team-grid article {
    min-height: 0;
  }

  .logo-row {
    min-height: 0;
    margin-top: 22px;
  }

  .logo-row img {
    width: 96px;
    height: 34px;
    padding: 5px 8px;
  }

  .logo-row .logo-compact {
    width: 66px;
  }

  .logo-row .logo-firm {
    width: 114px;
  }

  .logo-row .logo-vc,
  .logo-row .logo-school {
    width: 96px;
  }

  .logo-row .logo-harvard {
    width: 116px;
  }

  .logo-row .logo-dartmouth {
    width: 100px;
    height: 32px;
  }

  .logo-row .logo-yale {
    width: 68px;
  }

  .logo-row .logo-washu {
    width: 86px;
  }

  .logo-row .logo-square {
    width: 64px;
    height: 42px;
  }

  .team-grid h3 {
    min-height: 0;
    margin-bottom: 18px;
  }

  .deploy-shell {
    padding: 54px 0 68px;
  }

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

  .deployment-grid article {
    min-height: 0;
  }

  .deployment-grid p {
    margin-top: 18px;
  }

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

@media (max-width: 430px) {
  .site-nav {
    display: none;
  }

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

  h1 {
    font-size: clamp(3.7rem, 25vw, 5.25rem);
  }
}

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