:root {
  --purple: #131359;
  --purple-900: #0f0f43;
  --purple-100: #f4f1ff;
  --ink: #16141f;
  --muted: #676174;
  --line: #e6e1f6;
  --white: #ffffff;
  --teal: #2d948b;
  --silver: #f7f7fa;
  --shadow: 0 24px 60px rgba(23, 16, 69, 0.12);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(230, 225, 246, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 35px rgba(23, 16, 69, 0.08);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: rgba(37, 23, 122, 0.14);
  box-shadow: 0 18px 40px rgba(23, 16, 69, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark,
.brand-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--purple);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  object-fit: cover;
}

.brand-name {
  color: var(--purple-900);
  font-size: 0.98rem;
  font-weight: 780;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--purple);
}

.site-nav a[aria-current="page"] {
  color: var(--purple);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 39%, rgba(255, 255, 255, 0.18) 76%),
    url("assets/brand/hero-abstract.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 185px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  content: "";
}

.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 180px 0 64px;
}

.eyebrow,
.section-kicker,
.partner-role {
  margin: 0;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--purple-900);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero-title {
  max-width: none;
}

.home-hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: #373145;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 74px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--purple);
  font-size: 0.92rem;
  font-weight: 760;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  background: var(--purple);
  color: var(--white);
}

.button.primary:hover {
  background: var(--purple-900);
  border-color: var(--purple-900);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple);
}

.button.secondary:hover {
  background: var(--purple-100);
}

.hero-facts {
  display: grid;
  width: min(100%, 820px);
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--purple-900);
  font-size: 1.08rem;
  font-weight: 800;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.page-hero {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 172px 0 86px;
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -96px;
  bottom: 28px;
  z-index: -1;
  width: min(40vw, 520px);
  aspect-ratio: 1.45;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.42)),
    url("assets/brand/hero-abstract.png");
  background-position: right center;
  background-size: cover;
  opacity: 0.3;
  content: "";
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.intro-grid,
.process,
.strategy,
.contact-page,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 78px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.process h2,
.strategy h2,
.team h2,
.team-page h2,
.contact h2 {
  margin: 14px 0 0;
  color: var(--purple-900);
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy {
  padding-top: 34px;
}

.intro-copy p,
.process-copy p,
.strategy-copy p,
.partner-copy p,
.partner-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.band {
  width: 100%;
  max-width: none;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(244, 241, 255, 0.78), rgba(255, 255, 255, 0.94)),
    var(--purple-100);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

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

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.edge-item {
  min-height: 340px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.86);
}

.edge-index {
  display: block;
  margin-bottom: 86px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.edge-item h3 {
  margin-bottom: 14px;
  color: var(--purple-900);
  font-size: 1.28rem;
}

.edge-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.process-copy p {
  max-width: 600px;
  margin: 24px 0 0;
}

.process-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-grid article {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
}

.process-grid h3 {
  margin-bottom: 10px;
  color: var(--purple-900);
  font-size: 1.18rem;
}

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

.strategy {
  align-items: center;
}

.strategy-copy p {
  max-width: 560px;
  margin: 24px 0 0;
}

.strategy-panel {
  border-top: 1px solid var(--purple);
  border-bottom: 1px solid var(--purple);
}

.focus-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.focus-row:last-child {
  border-bottom: 0;
}

.focus-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 790;
  text-transform: uppercase;
}

.focus-row strong {
  color: var(--purple-900);
  font-size: 1.2rem;
}

.domains {
  padding-top: 20px;
}

.domain-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.domain-list li {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: var(--white);
  color: var(--purple-900);
  font-size: 1.08rem;
  font-weight: 790;
}

.domain-list li:nth-child(2n) {
  background: var(--silver);
}

.team {
  display: grid;
  grid-template-columns: 0.68fr 1.1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.team-roster {
  display: grid;
  gap: 22px;
}

.partner-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.partner-profile.featured {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.team-page {
  display: grid;
  gap: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.portrait-placeholder,
.partner-portrait {
  display: grid;
  width: 180px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 23, 122, 0.94), rgba(37, 23, 122, 0.72)),
    var(--purple);
  color: var(--white);
}

.partner-portrait {
  border: 1px solid var(--line);
  background: var(--purple-100);
}

.partner-portrait img,
.mini-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder span {
  font-size: 3.2rem;
  font-weight: 850;
}

.partner-copy h2,
.partner-copy h3 {
  margin: 8px 0 18px;
  color: var(--purple-900);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--purple);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.partner-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 154px;
  padding: 22px;
  background: var(--white);
}

.mini-portrait {
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: var(--purple-100);
  color: var(--purple);
  font-weight: 850;
}

.mini-portrait span {
  font-size: 1.15rem;
}

.partner-card h2,
.partner-card h3 {
  margin: 8px 0 4px;
  color: var(--purple-900);
  font-size: 1.2rem;
}

.partner-grid.expanded .partner-card {
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 250px;
  align-items: start;
  padding: 30px;
}

.partner-grid.expanded .mini-portrait {
  width: 150px;
}

.partner-grid.expanded .partner-card h2 {
  font-size: 1.55rem;
}

.partner-card .text-link {
  max-width: 100%;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.advisors-section {
  padding-top: 10px;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.advisor-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  background: var(--white);
}

.advisor-portrait {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 23, 122, 0.92), rgba(45, 148, 139, 0.68)),
    var(--purple);
  color: var(--white);
}

.advisor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-portrait span {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 850;
}

.advisor-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.advisor-copy h2 {
  margin: 0 0 12px;
  color: var(--purple-900);
  font-size: 1.42rem;
  line-height: 1.12;
}

.advisor-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.advisor-copy .advisor-note {
  margin-top: 6px;
  font-size: 0.82rem;
}

.advisor-copy .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--purple-900);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--silver);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}

.contact-directory {
  display: grid;
  gap: 18px;
}

.contact-page {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  padding-top: 32px;
}

.contact-page .contact-actions a {
  border-color: var(--line);
  background: var(--white);
  color: var(--purple-900);
}

.contact-page .contact-actions a:hover {
  border-color: rgba(37, 23, 122, 0.38);
  background: var(--purple-100);
}


.contact {
  width: 100%;
  max-width: none;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--purple-900);
  color: var(--white);
}

.contact h2,
.contact .section-kicker {
  color: var(--white);
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-self: center;
}

.contact-actions a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 760;
  overflow-wrap: anywhere;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.contact-actions a:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  gap: 46px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 36px 0 42px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  color: var(--purple-900);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .intro-grid,
  .process,
  .strategy,
  .team,
  .contact-page,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .edge-item {
    min-height: auto;
  }

  .edge-index {
    margin-bottom: 42px;
  }

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

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

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

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
    min-height: 64px;
    padding: 0 10px 0 12px;
  }

  .brand-mark,
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    font-size: 0.76rem;
  }

  .site-nav a {
    min-height: 32px;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
  }

  .hero-visual {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.32) 100%),
      url("assets/brand/hero-abstract.png");
    background-position: 62% center;
  }

  .hero-inner,
  .page-hero,
  .section,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .page-hero {
    padding-top: 152px;
    padding-bottom: 58px;
  }

  .page-hero::after {
    display: none;
  }

  .hero-inner {
    padding-top: 158px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-actions {
    margin-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
    padding: 18px;
  }

  .section,
  .band,
  .contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .focus-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-grid article {
    min-height: auto;
  }

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

  .domain-list li {
    min-height: 84px;
  }

  .partner-profile {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder,
  .partner-portrait {
    width: min(100%, 220px);
  }

  .partner-card {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px;
  }

  .partner-grid.expanded .partner-card {
    grid-template-columns: 1fr;
  }

  .mini-portrait {
    width: 54px;
  }

  .partner-grid.expanded .mini-portrait {
    width: 68px;
  }

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

  .advisor-card {
    min-height: auto;
  }

  .advisor-copy {
    padding: 22px;
  }

  .contact-form {
    padding: 20px;
  }
}

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