:root {
  --ink: #0b1230;
  --ink-2: #242b43;
  --muted: #596074;
  --quiet: #848b9b;
  --orange: #ff5a15;
  --paper: #ffffff;
  --white: #ffffff;
  --wash: #f5f5f7;
  --line: #e6e7eb;
  --dark: #0a0f2c;
  --dark-2: #111735;
  --max: 1240px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --h1-size: clamp(44px, 5.1vw, 68px);
  --h2-size: clamp(30px, 3.35vw, 46px);
  --body-size: clamp(16px, 1.2vw, 18px);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  letter-spacing: 0;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(11 18 48 / 10%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.hero,
.section__inner,
.cta__inner,
.footer__inner,
.logos__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(106px, 10vw, 134px);
  height: auto;
  flex: 0 0 auto;
}

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

.nav {
  gap: clamp(16px, 2.6vw, 34px);
}

.nav a,
.text-link {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav a:hover,
.footer__email:hover,
.text-link:hover {
  color: var(--orange);
}

.nav .button {
  color: #fff;
}

.nav .button:hover {
  color: var(--dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--orange);
  color: var(--dark);
}

.button--small {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 14px;
}

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

.button--orange:hover {
  background: #fff;
  color: var(--dark);
}

.body-emphasis {
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(374px, 4.5fr);
  align-items: start;
  gap: clamp(40px, 8vw, 116px);
  padding-block: clamp(44px, 5vw, 64px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(8px, 1.2vw, 18px);
}

.eyebrow,
.kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 12.6ch;
  color: var(--ink);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 span,
.cta h2 span {
  color: var(--orange);
}

.lede {
  max-width: 620px;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.52;
  text-wrap: pretty;
}

.hero__actions {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.text-link {
  position: relative;
  padding-bottom: 4px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.hero__visual {
  position: relative;
  padding-top: var(--hero-media-offset, 0px);
}

.hero__media {
  width: var(--hero-media-width, 100%);
  height: var(--hero-media-height, auto);
  max-width: none;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: #f5f5f7;
  box-shadow: 0 30px 80px rgb(11 18 48 / 13%);
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center center;
}

.signal-list {
  width: min(84%, 360px);
  margin: 22px 0 0 auto;
  padding: 0;
  border-top: 1px solid rgb(11 18 48 / 18%);
}

.signal-list div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(11 18 48 / 12%);
}

.signal-list dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.signal-list dd {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  scroll-margin-top: 68px;
}

.section__inner {
  padding-block: clamp(78px, 9vw, 128px);
}

.section__heading {
  position: relative;
  align-self: start;
  padding-top: 1px;
}

.section__heading::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--orange);
}

.kicker {
  margin-bottom: 10px;
  color: var(--quiet);
}

.section h2,
.cta h2 {
  max-width: 13.5ch;
  color: var(--ink);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.06;
  text-wrap: balance;
}

.section p,
.section li,
.cta p:not(.kicker),
.footer address,
.footer__meta {
  font-size: var(--body-size);
  line-height: 1.62;
}

.intro-grid,
.split-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.1fr);
  gap: 42px clamp(56px, 10vw, 132px);
}

.section--intro {
  background: var(--wash);
}

.intro-copy,
.about-copy {
  display: grid;
  gap: 24px;
  max-width: 720px;
  color: var(--ink-2);
}

.section--dark {
  background:
    linear-gradient(90deg, rgb(255 90 21 / 9%) 0 1px, transparent 1px 100%),
    var(--dark);
  background-size: 74px 100%, auto;
  color: #fff;
}

.section--dark .section__inner {
  padding-block: clamp(84px, 9.5vw, 140px);
}

.section--dark .section__heading::before {
  margin-bottom: 18px;
}

.section--dark .kicker {
  color: rgb(229 232 244 / 72%);
}

.section--dark h2 {
  color: rgb(246 247 252 / 94%);
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 42px clamp(42px, 7vw, 88px);
  align-items: start;
}

.strategy-copy {
  display: grid;
  gap: 22px;
  max-width: 650px;
  color: rgb(235 238 247 / 87%);
}

.pathway {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.pathway::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;
  bottom: 10px;
  width: 1px;
  background: rgb(255 255 255 / 24%);
}

.pathway li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 36px;
}

.pathway li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 1px solid rgb(255 255 255 / 66%);
  border-radius: 999px;
  background: var(--dark);
}

.pathway li:last-child {
  padding-bottom: 0;
}

.pathway .is-current::before {
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 0;
  background: var(--orange);
}

.pathway span {
  display: block;
  order: 1;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 720;
  line-height: 1.1;
}

.pathway p {
  order: 2;
  margin-top: 7px;
  color: rgb(226 230 242 / 64%);
  font-size: 13px;
  line-height: 1.35;
}

.pathway .is-current span,
.pathway .is-current p {
  color: var(--orange);
}

.evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.evidence article {
  padding-top: 18px;
  border-top: 1px solid rgb(11 18 48 / 30%);
}

.evidence h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.18;
}

.evidence p {
  color: var(--ink-2);
}

.section--experience {
  background: var(--wash);
}

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

.logos__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 38px clamp(54px, 7vw, 112px);
  padding-block: clamp(78px, 8vw, 118px);
}

.logos__heading {
  max-width: 380px;
}

.logos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 5vw, 62px) clamp(34px, 5vw, 68px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.logos__grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
}

.client-logo {
  width: auto;
  max-width: min(100%, 124px);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.section--about {
  background: var(--wash);
}

.section--about .section__inner {
  border-top: 0;
}

.cta {
  scroll-margin-top: 68px;
  background: var(--dark);
  color: #fff;
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(180px, 0.32fr);
  align-items: end;
  gap: 36px 72px;
  padding-block: clamp(70px, 8vw, 118px);
}

.cta .kicker {
  grid-column: 1 / -1;
  margin-bottom: -10px;
  color: var(--orange);
}

.cta h2 {
  max-width: 820px;
  color: #fff;
}

.cta p:not(.kicker) {
  color: rgb(255 255 255 / 82%);
}

.cta .button {
  grid-column: 2;
  grid-row: 2;
  width: auto;
  min-width: 146px;
  justify-self: end;
}

.footer {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(190px, 0.85fr) minmax(190px, 0.9fr) minmax(140px, 0.65fr);
  gap: 36px 48px;
  padding-block: clamp(46px, 5vw, 68px) 34px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__email {
  color: var(--muted);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.62;
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(89 96 116 / 45%);
  text-underline-offset: 4px;
}

.footer address,
.footer__meta,
.footer__contact {
  color: var(--muted);
  font-size: var(--body-size);
  font-style: normal;
  line-height: 1.62;
}

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

@media (max-width: 980px) {
  .nav a:not(.button) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__media {
    width: min(100%, 720px);
    height: auto;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .signal-list {
    width: 100%;
  }

  .strategy-grid {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }

  .pathway {
    grid-column: 2;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --h1-size: 40px;
    --h2-size: 30px;
    --body-size: 16px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .hero,
  .intro-grid,
  .strategy-grid,
  .split-grid,
  .logos__inner,
  .about-grid,
  .cta__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-block: 34px 58px;
  }

  .hero__copy,
  .hero__visual {
    padding-top: 0;
  }

  .hero h1,
  .section h2 {
    max-width: 13ch;
  }

  .cta h2 {
    max-width: 18ch;
  }

  .lede {
    margin-top: 22px;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .hero__media {
    width: min(100%, 420px);
    height: auto;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .signal-list {
    margin-left: 0;
  }

  .section__inner,
  .section--dark .section__inner,
  .cta__inner {
    padding-block: 62px;
  }

  .logos__inner {
    gap: 30px;
    padding-block: 54px 62px;
  }

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

  .pathway {
    grid-column: auto;
  }

  .cta .kicker {
    grid-column: auto;
    margin-bottom: -12px;
  }

  .cta .button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

}

@media (max-width: 460px) {
  :root {
    --gutter: 18px;
    --h1-size: 37px;
    --h2-size: 28px;
  }

  .brand {
    font-size: 19px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .button--small {
    min-height: 38px;
    padding: 9px 13px;
  }

  .signal-list div {
    grid-template-columns: 64px 1fr;
  }
}
