:root {
  --ink: #0b1519;
  --ink-soft: #142126;
  --paper: #f1ede4;
  --paper-deep: #e5dfd3;
  --copper: #2498aa;
  --copper-light: #55b7c4;
  --sage: #9da79c;
  --line: rgba(11, 21, 25, .17);
  --white-line: rgba(255, 255, 255, .17);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 24px;
  padding: 12px 16px;
  background: var(--paper);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .4s ease, height .4s ease, color .4s ease, border-color .4s ease;
}
.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(241, 237, 228, .94);
  border-color: var(--line);
  backdrop-filter: blur(15px);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  width: 205px;
  height: auto;
}
.logo-on-light { display: none; }
.site-header.scrolled .logo-on-dark { display: none; }
.site-header.scrolled .logo-on-light { display: block; }
.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  display: block;
  border: 1px solid currentColor;
}
.brand-mark::before { transform: skewY(-27deg); }
.brand-mark::after { transform: skewY(27deg); }
.brand-mark i {
  position: absolute;
  width: 13px;
  height: 1px;
  border-width: 1px 0 0;
  top: 16px;
}
.brand-mark i:first-child { left: 3px; transform: rotate(-35deg); }
.brand-mark i:last-child { right: 3px; transform: rotate(35deg); }
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .18em;
  line-height: .9;
}
.brand-name small {
  display: block;
  margin-top: 7px;
  font: 8px/1 var(--sans);
  letter-spacing: .21em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  gap: 35px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid currentColor;
}
.menu-toggle, .mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero-image, .hero-wash, .hero-grid {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url("assets/kai-hero.png") center/cover no-repeat;
  transform: scale(1.025);
  animation: heroIn 1.7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-wash {
  background:
    linear-gradient(90deg, rgba(6, 17, 22, .62) 0%, rgba(6, 17, 22, .18) 58%, rgba(6, 17, 22, .1) 100%),
    linear-gradient(0deg, rgba(4, 11, 14, .55), transparent 45%);
}
.hero-grid {
  left: 4.5vw;
  right: 4.5vw;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.hero-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 64%;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 21vh 10vw 8vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 26px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--copper);
}
.hero-eyebrow { color: rgba(255, 255, 255, .7); animation: fadeUp .8s .2s both; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 1080px;
  margin: 0;
  font: 400 clamp(58px, 7vw, 112px)/.88 var(--display);
  letter-spacing: -.055em;
  animation: fadeUp 1s .35s both;
}
h1 em, h2 em {
  font-weight: 400;
  color: var(--copper-light);
}
.hero-lower {
  width: 54%;
  margin-top: 8vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10%;
  align-items: end;
  animation: fadeUp 1s .55s both;
}
.hero-lower p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font: 16px/1.65 var(--sans);
}
.text-link {
  display: flex;
  justify-content: space-between;
  padding: 0 0 13px;
  font-size: 11px;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}
.text-link span { color: var(--copper-light); }
.hero-aside {
  position: absolute;
  z-index: 2;
  right: calc(4.5vw - 5px);
  top: 50%;
  display: flex;
  gap: 34px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right top;
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-aside span + span::before { content: "◆"; margin-right: 32px; color: var(--copper); font-size: 5px; }
.hero-index {
  position: absolute;
  z-index: 2;
  left: 4.5vw;
  bottom: 5vh;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  letter-spacing: .14em;
}
.hero-index span { display: inline-block; width: 45px; height: 1px; margin: 0 9px 3px; background: rgba(255, 255, 255, .3); }

.section { padding: 135px 7.5vw; }
.section-kicker {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.section-kicker span { color: var(--copper); }
.section-kicker p { margin: 0; }
.section-kicker.light::after { background: var(--white-line); }

.intro {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  grid-template-areas:
    "kicker kicker"
    "lead detail"
    "quote quote";
  column-gap: 8vw;
  row-gap: 72px;
}
.intro .section-kicker { grid-area: kicker; margin-bottom: 12px; }
.intro-copy { grid-area: lead; }
.intro-copy h2, .strategies h2, .approach h2, .contact h2 {
  margin-bottom: 52px;
  font: 400 clamp(46px, 5.25vw, 82px)/1.02 var(--display);
  letter-spacing: -.045em;
}
.intro-copy h2 em, .approach h2 em { color: var(--copper); }
.intro-detail {
  grid-area: detail;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 60px;
}
.intro-detail p {
  margin: 0;
  color: #4c5658;
  font-size: 14px;
  line-height: 1.75;
}
.statement-card {
  grid-area: quote;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7vw;
  align-items: end;
  padding: 50px 55px;
  color: var(--paper);
  background: var(--ink-soft);
}
.statement-card blockquote {
  max-width: 910px;
  margin: 0;
  font: italic clamp(24px, 2.25vw, 36px)/1.35 var(--display);
}
.statement-attribution { min-width: 175px; padding-bottom: 6px; }
.statement-line { width: 55px; height: 1px; margin-bottom: 16px; background: var(--copper); }
.statement-card p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.strategies {
  color: var(--paper);
  background: var(--ink);
}
.strategies .section-kicker { margin-bottom: 80px; }
.strategies-heading {
  max-width: 1150px;
  margin: 0 auto 65px;
}
.strategies-heading .eyebrow { color: rgba(255,255,255,.52); }
.strategies h2 { margin: 0; }
.platform-layout {
  width: 100%;
  max-width: 1150px;
  min-height: 590px;
  position: relative;
  display: grid;
  grid-template-columns: 520px minmax(360px, 480px);
  gap: 70px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 35px;
  border-top: 1px solid var(--white-line);
}
.platform-orbit { position: relative; width: 520px; height: 500px; }
.capability {
  position: absolute;
  width: 245px;
  height: 245px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85,183,196,.75);
  border-radius: 50%;
  background: rgba(36,152,170,.13);
  box-shadow: inset 0 0 70px rgba(36,152,170,.07);
  color: var(--paper);
  text-align: center;
  font: 400 27px/1.05 var(--display);
  transition: background .35s ease, transform .35s ease;
}
.capability:hover { z-index: 3; transform: scale(1.035); background: rgba(36,152,170,.25); }
.capability-equity { top: 0; left: 30px; }
.capability-credit { top: 0; left: 238px; }
.capability-special { top: 205px; left: 30px; }
.capability-managed { top: 205px; left: 238px; }
.platform-quote {
  max-width: 560px;
  margin: 0;
  padding-left: 36px;
  border-left: 1px solid var(--copper);
  color: var(--copper-light);
  font: 400 clamp(26px, 2.5vw, 42px)/1.22 var(--display);
}

.approach { padding-bottom: 0; }
.approach-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: 90px;
}
.approach h2 { margin: 0; }
.approach-lead { margin: 0 0 8px; color: #4c5658; font: 18px/1.6 var(--display); }
.principles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles li { min-height: 330px; display: grid; grid-template-rows: auto 1fr; padding: 34px 35px 40px; }
.principles li + li { border-left: 1px solid var(--line); }
.principles li > span { margin-bottom: 76px; color: var(--copper); font: italic 12px var(--display); }
.principles li > div { align-self: start; }
.principles h3 { margin: 0 0 18px; font: 400 36px/1.08 var(--display); }
.principles p { margin: 0; color: #5b6464; font-size: 15px; line-height: 1.7; }
.license-band {
  position: relative;
  top: 70px;
  z-index: 2;
  min-height: 240px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 55px;
  align-items: center;
  padding: 45px 55px;
  color: var(--paper);
  background: var(--ink-soft);
}
.license-seal {
  width: 130px;
  height: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
}
.license-seal::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(36,152,170,.35); border-radius: 50%; }
.license-seal span, .license-seal small { font: 7px var(--sans); letter-spacing: .22em; }
.license-seal strong { margin: 7px 0 4px; color: var(--copper-light); font: 400 31px var(--display); }
.license-copy .eyebrow { margin-bottom: 15px; color: rgba(255,255,255,.5); }
.license-copy h3 { margin: 0 0 12px; font: 400 26px var(--display); }
.license-copy > p:last-child { max-width: 650px; margin: 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.65; }
.outline-link {
  min-width: 188px;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.outline-link:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.contact {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  padding: 185px 7.5vw 85px;
  color: var(--paper);
  background: #081216;
}
.contact-glow {
  position: absolute;
  top: -240px;
  left: 42%;
  width: 750px;
  height: 750px;
  opacity: .15;
  border-radius: 50%;
  background: radial-gradient(circle, var(--copper) 0%, transparent 66%);
  filter: blur(20px);
}
.contact .section-kicker { position: relative; margin-bottom: 110px; }
.contact-inner { position: relative; max-width: 990px; margin: 0 auto; text-align: center; }
.contact-inner .eyebrow { color: rgba(255,255,255,.52); }
.contact h2 { margin-bottom: 70px; font-size: clamp(58px, 7vw, 108px); }
.contact-button {
  width: 250px;
  height: 250px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 39px;
  text-align: left;
  background: var(--copper);
  border-radius: 50%;
  transition: transform .35s ease, background .35s ease;
}
.contact-button:hover { transform: rotate(-4deg) scale(1.04); background: #42adbd; }
.contact-button span { max-width: 125px; font: 25px/1.15 var(--display); }
.contact-button i { align-self: flex-end; font-style: normal; font-size: 28px; }
.contact-meta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 6vw;
  margin-top: 120px;
  padding-top: 30px;
  border-top: 1px solid var(--white-line);
}
.contact-meta span { display: block; margin-bottom: 14px; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.contact-meta p, .contact-meta a { margin: 0; font: 15px var(--display); }

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr .8fr 1.6fr auto;
  gap: 4vw;
  align-items: center;
  padding: 45px 4.5vw;
  color: #859094;
  background: #050c0f;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand { color: var(--paper); }
footer p { margin: 0; font-size: 9px; line-height: 1.6; }
.footer-legal { max-width: 420px; }
.back-top { color: var(--paper); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: .4; transform: scale(1.09); } to { opacity: 1; transform: scale(1.025); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 9px;
    background: transparent;
    border: 0;
  }
  .menu-toggle span { width: 100%; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 8vw 55px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid var(--white-line); font: 42px var(--display); }
  .mobile-menu nav span { display: inline-block; width: 50px; color: var(--copper); font: italic 10px var(--display); }
  .mobile-menu > p { margin: auto 0 0; color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
  .hero-content { padding-left: 8vw; padding-right: 8vw; }
  .hero-lower { width: 70%; }
  .intro { column-gap: 6vw; }
  .statement-card { grid-template-columns: 1fr; gap: 34px; }
  .platform-layout { grid-template-columns: 1fr; gap: 45px; }
  .platform-orbit { justify-self: center; }
  .platform-quote { max-width: 720px; }
  .approach-top { gap: 6vw; }
  .principles h3 { min-height: 144px; font-size: clamp(32px, 4.2vw, 36px); }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 76px; padding: 0 22px; }
  .site-header .brand { min-width: 0; }
  .site-header .brand-logo { width: 168px; }
  .menu-toggle { position: absolute; top: 17px; right: 14px; z-index: 2; flex: 0 0 auto; }
  .hero-content { min-width: 0; padding: 18vh 24px 10vh; justify-content: flex-end; }
  .hero h1 { max-width: 100%; font-size: clamp(50px, 14vw, 62px); line-height: .9; }
  .hero h1 span { display: block; }
  .hero h1 br { display: none; }
  .hero-lower { width: calc(100vw - 48px); max-width: calc(100vw - 48px); grid-template-columns: minmax(0, 1fr); gap: 35px; margin-top: 50px; }
  .hero-lower p { width: 100%; max-width: 100%; overflow-wrap: anywhere; font-size: 14px; }
  .hero-aside { display: none; }
  .hero-index { left: 24px; }
  .hero-grid { left: 22px; right: 22px; }
  .hero-grid::before { display: none; }
  .section { padding: 90px 24px; }
  .section-kicker { margin-bottom: 65px; }
  .intro { min-height: 0; display: block; }
  .intro .section-kicker { margin-bottom: 70px; }
  .intro-copy h2, .strategies h2, .approach h2 { font-size: 47px; }
  .intro-detail { gap: 26px; padding: 0; }
  .statement-card { width: 100%; margin: 65px 0 0; padding: 38px 28px; }
  .statement-card blockquote { font-size: 24px; }
  .strategies-heading { display: block; margin-bottom: 45px; }
  .strategies-heading .eyebrow { padding-top: 0; }
  .platform-layout { min-height: 0; padding-top: 50px; }
  .platform-orbit { width: 308px; height: 300px; }
  .capability { width: 166px; height: 166px; font-size: 20px; }
  .capability-equity { top: 0; left: 0; }
  .capability-credit { top: 0; left: 142px; }
  .capability-special { top: 134px; left: 0; }
  .capability-managed { top: 134px; left: 142px; }
  .platform-quote { padding-left: 22px; font-size: 27px; }
  .approach { padding-bottom: 0; }
  .approach-top { display: block; }
  .approach-lead { margin-top: 40px; }
  .principles { grid-template-columns: 1fr; }
  .principles li { min-height: 240px; padding: 30px 10px; }
  .principles li + li { border-top: 1px solid var(--line); border-left: 0; }
  .principles li > span { margin-bottom: 45px; }
  .principles h3 { min-height: 0; font-size: 34px; }
  .contact { min-height: 760px; padding: 145px 24px 65px; }
  .contact h2 { font-size: 57px; }
  .contact-button { width: 205px; height: 205px; padding: 31px; }
  .contact-button span { font-size: 22px; }
  footer { grid-template-columns: 1fr; padding: 55px 24px; }
  .footer-brand { margin-bottom: 15px; }
  .back-top { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
