:root {
  --ink: #080b0f;
  --ink-soft: #101722;
  --navy: #101a2a;
  --paper: #f3f1eb;
  --paper-bright: #faf9f5;
  --white: #fbfcff;
  --steel: #a8b0bc;
  --steel-dark: #697382;
  --cobalt: #3157f6;
  --cobalt-deep: #1a37b8;
  --electric: #9bb0ff;
  --signal: #ff6939;
  --hairline-light: rgba(255, 255, 255, 0.13);
  --hairline-dark: rgba(8, 11, 15, 0.14);
  --font-display: "Outfit", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --shell: min(92vw, 1420px);
  --measure: 760px;
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 12;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

.media-picture {
  display: block;
  width: 100%;
}

.hero-visual .media-picture,
.wide-media .media-picture,
.voice-hero-media .media-picture,
.context-media .media-picture,
.case-cover .media-picture {
  height: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

:target,
:focus {
  scroll-margin-top: 110px;
}

::selection {
  background: var(--electric);
  color: var(--ink);
}

.container {
  width: var(--shell);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transition: transform 300ms var(--ease-heavy);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(245px, 1fr);
  align-items: center;
  width: min(94vw, 1500px);
  min-height: 74px;
  margin-inline: auto;
  padding: 9px 12px 9px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 11, 15, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 70px rgba(0, 0, 0, 0.18);
  color: var(--white);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-type {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-type strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand-type small {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.34em;
  opacity: 0.72;
}

.desktop-nav ul,
.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 450ms var(--ease-heavy);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--electric);
  transition: transform 500ms var(--ease-heavy);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  min-height: 52px;
  padding: 6px 7px 6px 22px;
  gap: 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 500ms var(--ease-heavy), background 500ms var(--ease-heavy);
}

.nav-cta span,
.button-arrow {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 11, 15, 0.08);
  transition: transform 500ms var(--ease-heavy);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover span,
.button:hover .button-arrow {
  transform: translate(3px, -2px) scale(1.04);
}

.nav-cta:active,
.button:active {
  transform: scale(0.98);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 8px 9px 8px 25px;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 500ms var(--ease-heavy), background-color 500ms var(--ease-heavy), color 500ms var(--ease-heavy);
}

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

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

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

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

.button-dark .button-arrow,
.button-cobalt .button-arrow {
  background: rgba(255, 255, 255, 0.13);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 13px;
  font-size: 15px;
  font-weight: 450;
  text-decoration: none;
}

.text-link span {
  transition: transform 500ms var(--ease-heavy);
}

.text-link:hover span {
  transform: translateX(6px);
}

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

.eyebrow {
  margin: 0 0 25px;
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--electric);
}

.hero-home {
  position: relative;
  display: flex;
  min-height: 100dvh;
  padding: 170px 0 45px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(49, 87, 246, 0.28), transparent 44%),
    radial-gradient(circle at 90% 60%, rgba(36, 54, 90, 0.5), transparent 35%),
    var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-eyebrow {
  color: var(--electric);
}

.display {
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 8.9rem);
  font-weight: 350;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.hero-display {
  width: 92vw;
  max-width: 1320px;
  text-wrap: balance;
}

.hero-lede {
  max-width: 760px;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  text-wrap: balance;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(94vw, 1540px);
  height: clamp(260px, 34vh, 460px);
  padding: 8px;
  margin: 70px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hero-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premise-band {
  border-bottom: 1px solid var(--hairline-dark);
  background: var(--paper-bright);
}

.premise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.premise-row p {
  min-height: 94px;
  padding: 34px 30px;
  margin: 0;
  border-left: 1px solid var(--hairline-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.premise-row p:last-child {
  border-right: 1px solid var(--hairline-dark);
}

.section {
  position: relative;
  padding: clamp(120px, 14vw, 210px) 0;
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-steel {
  background: #dfe2e4;
  color: var(--ink);
}

.section-cobalt {
  background: var(--cobalt);
  color: var(--white);
}

.section-intro {
  max-width: 1260px;
  margin-bottom: clamp(65px, 7vw, 110px);
}

.section-title {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 6.5rem);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro-split,
.intro-row,
.editorial-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
}

.intro-split > p,
.page-lede,
.long-copy {
  color: #48515d;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.55;
}

.intro-row {
  align-items: end;
}

.intro-row .text-link {
  justify-self: end;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(310px, 360px));
  grid-auto-flow: dense;
  gap: 14px;
}

.bento-card {
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 15, 0.09);
  border-radius: 30px;
  background: rgba(8, 11, 15, 0.055);
  box-shadow: 0 20px 65px rgba(31, 38, 48, 0.07);
  transition: transform 700ms var(--ease-heavy), box-shadow 700ms var(--ease-heavy);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(31, 38, 48, 0.11);
}

.bento-main {
  grid-column: span 7;
  grid-row: span 2;
}

.bento-secondary {
  grid-column: span 5;
  grid-row: span 1;
}

.card-core {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(30px, 4vw, 62px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bento-main .card-core {
  background: var(--ink-soft);
  color: var(--white);
}

.card-kicker {
  margin: 0 0 25px;
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-main .card-kicker {
  color: var(--electric);
}

.card-core h3 {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.bento-secondary h3 {
  font-size: clamp(1.8rem, 2.5vw, 3.15rem);
}

.card-core > p:not(.card-kicker) {
  position: relative;
  z-index: 2;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.card-link {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: clamp(30px, 4vw, 62px);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.bento-main .card-link {
  color: var(--white);
}

.bento-main img {
  position: absolute;
  right: -10%;
  bottom: -4%;
  width: 74%;
  max-height: 47%;
  opacity: 0.62;
  object-fit: cover;
  mask-image: linear-gradient(to right, transparent, black 30%);
  transition: transform 900ms var(--ease-heavy), opacity 900ms var(--ease-heavy);
}

.bento-main:hover img {
  transform: scale(1.05) translateX(-2%);
  opacity: 0.82;
}

.bento-voice .card-core {
  background:
    repeating-radial-gradient(circle at 92% 110%, transparent 0 20px, rgba(49, 87, 246, 0.12) 21px 22px),
    var(--paper-bright);
}

.bento-custom .card-core {
  background:
    linear-gradient(130deg, transparent 50%, rgba(49, 87, 246, 0.11)),
    var(--paper-bright);
}

.bento-secondary .card-core {
  isolation: isolate;
  background: var(--ink-soft);
  color: var(--white);
}

.bento-secondary .card-core::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.97) 0%, rgba(8, 11, 15, 0.84) 45%, rgba(8, 11, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, 0.9), transparent 55%);
  content: "";
  pointer-events: none;
}

.bento-secondary .card-kicker {
  position: relative;
  z-index: 3;
  color: var(--electric);
}

.bento-secondary .card-link {
  color: var(--white);
}

.card-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 900ms var(--ease-heavy), opacity 900ms var(--ease-heavy);
}

.bento-voice .card-photo img {
  object-position: center 42%;
}

.bento-custom .card-photo img {
  object-position: center;
}

.bento-secondary:hover .card-photo img {
  transform: scale(1.045);
  opacity: 0.94;
}

.process-section {
  min-height: 120dvh;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  align-items: start;
  gap: clamp(60px, 10vw, 180px);
}

.process-heading {
  position: sticky;
  top: 130px;
}

.process-heading h2 {
  margin: 0 0 35px;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-statement {
  max-width: 900px;
  padding-bottom: 20vh;
  font-size: clamp(3.2rem, 6vw, 7.4rem);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.process-statement span {
  display: inline;
}

.accordion {
  display: flex;
  min-height: 570px;
  gap: 8px;
}

.accordion-item {
  position: relative;
  display: grid;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 26px;
  background: #dfe2e4;
  transition: flex 850ms var(--ease-heavy), background-color 650ms var(--ease-heavy);
}

.accordion-item.is-open {
  flex: 4.2 1 0;
  background: var(--ink-soft);
  color: var(--white);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 34px 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger span {
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.accordion-trigger small {
  padding-top: 9px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 450ms var(--ease-heavy);
}

.accordion-item.is-open .accordion-trigger small {
  opacity: 0.68;
}

.accordion-panel {
  align-self: end;
  max-width: 680px;
  padding: 0 40px 42px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms var(--ease-heavy), transform 650ms var(--ease-heavy);
}

.accordion-panel p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 22px);
}

.accordion-panel a {
  font-size: 14px;
  font-weight: 500;
}

.accordion-item.is-open .accordion-panel {
  opacity: 1;
  transform: translateY(0);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.case-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-weight: 350;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.case-copy > p:not(.eyebrow, .disclosure) {
  max-width: 690px;
  margin: 35px 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(18px, 1.7vw, 24px);
}

.case-copy .button {
  margin-top: 10px;
}

.disclosure {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.case-media {
  padding: 8px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.case-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.carousel {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--hairline-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 450ms var(--ease-heavy), color 450ms var(--ease-heavy), transform 450ms var(--ease-heavy);
}

.carousel-controls button:hover {
  transform: scale(1.05);
  background: var(--ink);
  color: var(--white);
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(370px, 45%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cobalt) transparent;
}

.insight-card {
  display: flex;
  min-height: 430px;
  padding: clamp(34px, 4.5vw, 65px);
  flex-direction: column;
  border-radius: 26px;
  background: #e2e4e6;
  scroll-snap-align: start;
  transition: transform 650ms var(--ease-heavy), background-color 650ms var(--ease-heavy);
}

.insight-card:nth-child(2) {
  background: var(--ink-soft);
  color: var(--white);
}

.insight-card:nth-child(3) {
  background: #ccd4ff;
}

.insight-card:hover {
  transform: translateY(-8px);
}

.insight-card > p,
.insight-list-card > p:first-child {
  margin: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 60px 0 35px;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.insight-card h3 a,
.insight-list-card h2 a {
  text-decoration: none;
}

.insight-card span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 83dvh;
  padding: clamp(180px, 18vw, 265px) 0 clamp(100px, 12vw, 170px);
  overflow: hidden;
}

.page-hero-light {
  background: var(--paper-bright);
  color: var(--ink);
}

.page-hero-dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(49, 87, 246, 0.23), transparent 34%),
    var(--ink);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(55px, 9vw, 160px);
}

.page-hero-aside {
  display: grid;
  align-self: stretch;
  align-content: end;
  gap: clamp(38px, 5vw, 72px);
}

.page-hero-aside .page-lede {
  margin: 0;
}

.approach-hero {
  min-height: 100dvh;
}

.approach-media {
  width: 100%;
  padding: 7px;
  margin: 0;
  border: 1px solid var(--hairline-dark);
  border-radius: 26px;
  background: rgba(8, 11, 15, 0.05);
  box-shadow: 0 30px 90px rgba(8, 11, 15, 0.09);
}

.approach-media .media-picture {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 19px;
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-media figcaption {
  padding: 14px 12px 8px;
  color: var(--steel-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-hero h1,
.case-hero h1,
.article-head h1,
.contact-intro h1,
.legal-page h1,
.status-page h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(4rem, 7.6vw, 9rem);
  font-weight: 350;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-wrap: balance;
}

.page-hero-dark .page-lede {
  color: rgba(255, 255, 255, 0.68);
}

.wide-media {
  position: relative;
  z-index: 2;
  width: min(94vw, 1540px);
  height: clamp(290px, 42vw, 680px);
  padding: 8px;
  margin: clamp(80px, 9vw, 140px) auto -32%;
  overflow: hidden;
  border: 1px solid var(--hairline-light);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.wide-media img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.wide-media-light {
  border-color: var(--hairline-dark);
  background: rgba(8, 11, 15, 0.04);
}

.precision-media {
  background:
    radial-gradient(circle at 50% 50%, rgba(49, 87, 246, 0.14), transparent 42%),
    var(--ink);
}

.precision-media img {
  padding: clamp(20px, 5vw, 76px);
  object-fit: contain;
}

.property-hero,
.company-hero,
.custom-hero {
  margin-bottom: clamp(170px, 29vw, 450px);
  overflow: visible;
}

.voice-hero {
  min-height: 100dvh;
}

.voice-hero > .container {
  position: relative;
  z-index: 2;
}

.voice-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.voice-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96) 0%, rgba(8, 11, 15, 0.8) 43%, rgba(8, 11, 15, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, 0.88), transparent 55%);
  content: "";
}

.voice-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.voice-wave {
  position: absolute;
  z-index: 2;
  right: 3vw;
  bottom: 0;
  left: 3vw;
  display: flex;
  height: 27vh;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 34px);
  opacity: 0.55;
}

.context-media {
  position: relative;
  height: clamp(390px, 47vw, 720px);
  padding: 8px;
  margin-top: clamp(75px, 9vw, 135px);
  margin-bottom: clamp(85px, 10vw, 150px);
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
  border-radius: 30px;
  background: rgba(8, 11, 15, 0.06);
}

.context-media img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.context-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 20px rgba(8, 11, 15, 0.7);
  text-transform: uppercase;
}

.voice-wave i {
  width: 2px;
  height: 25%;
  background: linear-gradient(to top, transparent, var(--electric));
  animation: wave 4.8s var(--ease-heavy) infinite alternate;
  transform-origin: bottom;
}

.voice-wave i:nth-child(3n) { height: 68%; animation-delay: -1.4s; }
.voice-wave i:nth-child(4n) { height: 92%; animation-delay: -2.7s; }
.voice-wave i:nth-child(5n) { height: 44%; animation-delay: -0.8s; }

@keyframes wave {
  from { transform: scaleY(0.42); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}

.method-list {
  display: grid;
  max-width: 1180px;
}

.method-list article {
  display: grid;
  grid-template-columns: 180px minmax(300px, 0.8fr) minmax(300px, 0.65fr);
  padding: 65px 0;
  gap: clamp(35px, 6vw, 90px);
  border-bottom: 1px solid var(--hairline-light);
}

.method-list span,
.voice-flow span {
  color: var(--electric);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-list h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4.5rem);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1;
}

.method-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.editorial-pair {
  align-items: start;
}

.editorial-pair h2,
.sector-matrix h2,
.two-column-list h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 6.5rem);
  font-weight: 350;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.long-copy {
  align-self: end;
}

.long-copy p {
  margin: 0 0 1.3em;
}

.long-copy a,
.legal-body a,
.article-body a:not(.button) {
  font-weight: 450;
}

.capability-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline-dark);
}

.capability-ledger article {
  min-height: 290px;
  padding: 48px 7vw 48px 0;
  border-bottom: 1px solid var(--hairline-dark);
}

.capability-ledger article:nth-child(even) {
  padding-right: 0;
  padding-left: 7vw;
  border-left: 1px solid var(--hairline-dark);
}

.capability-ledger h3,
.decision-grid h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.capability-ledger p,
.decision-grid p {
  max-width: 540px;
  margin: 0;
  color: #56606d;
}

.sector-matrix {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: start;
  gap: clamp(70px, 12vw, 190px);
}

.sector-matrix ul,
.two-column-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sector-matrix li,
.two-column-list li {
  position: relative;
  padding: 25px 45px 25px 0;
  border-bottom: 1px solid rgba(8, 11, 15, 0.16);
  font-size: clamp(1.35rem, 2.2vw, 2.5rem);
  letter-spacing: -0.03em;
}

.sector-matrix li::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "↗";
  transform: translateY(-50%);
  color: var(--cobalt);
  font-size: 18px;
}

.source-note {
  padding-top: 0;
}

.voice-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-dark);
}

.voice-flow article {
  min-height: 400px;
  padding: 45px 28px;
  border-right: 1px solid var(--hairline-dark);
}

.voice-flow article:last-child {
  border-right: 0;
}

.voice-flow h3 {
  margin: 130px 0 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 350;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(65px, 11vw, 170px);
}

.two-column-list h2 {
  max-width: 570px;
  margin-bottom: 55px;
}

.two-column-list li {
  border-color: var(--hairline-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 2px;
}

.decision-grid article {
  min-height: 340px;
  padding: clamp(38px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.055);
}

.decision-grid article:nth-child(2),
.decision-grid article:nth-child(3) {
  background: rgba(49, 87, 246, 0.16);
}

.decision-grid h3 {
  color: var(--white);
}

.decision-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.build-principles {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  margin-top: clamp(100px, 12vw, 180px);
  background: var(--ink);
  color: var(--white);
}

.build-principles article {
  min-height: 430px;
  padding: clamp(35px, 4vw, 64px);
  border-right: 1px solid var(--hairline-light);
}

.build-principles article:last-child {
  border-right: 0;
}

.build-principles span {
  color: var(--electric);
  font-family: var(--font-mono);
}

.build-principles h3 {
  margin: 150px 0 20px;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 350;
  letter-spacing: -0.05em;
}

.build-principles p {
  color: rgba(255, 255, 255, 0.62);
}

.case-hero {
  padding: clamp(190px, 18vw, 280px) 0 0;
  overflow: visible;
  background: var(--cobalt);
  color: var(--white);
}

.case-hero h1 {
  max-width: 1280px;
}

.case-dek {
  max-width: 820px;
  margin: 38px 0 85px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 28px);
}

.case-cover {
  position: relative;
  z-index: 2;
  width: min(96vw, 1620px);
  height: clamp(430px, 55vw, 860px);
  padding: 8px;
  margin: 0 auto -180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.case-cover img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.case-facts {
  padding: 290px 0 120px;
}

.case-facts dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 35px;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.case-facts dl div {
  min-height: 130px;
  padding: 27px;
  border-right: 1px solid var(--hairline-dark);
}

.case-facts dl div:last-child {
  border-right: 0;
}

.case-facts dt {
  margin-bottom: 25px;
  color: var(--steel-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  font-size: 17px;
}

.case-facts > p {
  max-width: 760px;
  color: #59616c;
  font-size: 13px;
}

.article-body {
  width: min(88vw, 920px);
  padding-bottom: clamp(120px, 15vw, 220px);
  margin: 0 auto;
}

.article-body > section {
  padding: 70px 0;
  border-top: 1px solid var(--hairline-dark);
}

.article-body h2 {
  margin: 0 0 35px;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.article-body p,
.article-body li {
  color: #414a55;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.72;
}

.case-products {
  display: grid;
  width: min(94vw, 1400px);
  margin-left: 50%;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  transform: translateX(-50%);
  border: 0 !important;
}

.case-products article {
  padding: clamp(45px, 6vw, 85px);
  background: #e0e3e8;
}

.case-products article:last-child {
  background: var(--ink);
  color: var(--white);
}

.case-products article:last-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.article-hero {
  padding: clamp(190px, 18vw, 280px) 0 clamp(110px, 13vw, 190px);
  background:
    radial-gradient(circle at 77% 8%, rgba(49, 87, 246, 0.22), transparent 31%),
    var(--ink);
  color: var(--white);
}

.article-head {
  width: min(90vw, 1240px);
  margin-inline: auto;
}

.article-head h1 {
  max-width: 1200px;
}

.article-head > p:last-child {
  max-width: 820px;
  margin: 45px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(20px, 2.2vw, 29px);
}

.insight-article .article-body {
  padding-top: 120px;
}

.article-sources ul {
  padding-left: 1.2em;
}

.article-next {
  padding: clamp(45px, 7vw, 90px);
  margin-top: 70px;
  background: #dfe2e8;
}

.article-next > p {
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-next h2 {
  margin-top: 45px;
}

.insight-list {
  display: grid;
}

.insight-list-card {
  display: grid;
  grid-template-columns: 190px minmax(320px, 1fr) minmax(230px, 0.55fr) 100px;
  align-items: start;
  padding: 58px 0;
  gap: 40px;
  border-top: 1px solid var(--hairline-dark);
}

.insight-list-card:last-child {
  border-bottom: 1px solid var(--hairline-dark);
}

.insight-list-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 4.5rem);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1;
}

.insight-list-card > p:not(:first-child) {
  margin: 0;
  color: #55606d;
}

.insight-list-card > span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2px;
}

.principles article {
  min-height: 390px;
  padding: clamp(40px, 6vw, 85px);
  background: rgba(255, 255, 255, 0.52);
}

.principles article:nth-child(2),
.principles article:nth-child(5) {
  background: var(--ink);
  color: var(--white);
}

.principles article:last-child {
  grid-column: 1 / -1;
  min-height: 310px;
}

.principles h2 {
  margin: 0 0 90px;
  font-size: clamp(2.5rem, 4.5vw, 5.4rem);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.principles p {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
}

.principles article:nth-child(2) p,
.principles article:nth-child(5) p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-page {
  padding: clamp(170px, 17vw, 260px) 0 clamp(120px, 14vw, 200px);
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.7fr);
  align-items: start;
  gap: clamp(70px, 11vw, 170px);
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro h1 {
  font-size: clamp(4rem, 7vw, 8.2rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(18px, 1.8vw, 24px);
}

.contact-direct {
  display: grid;
  margin-top: 70px;
  gap: 10px;
}

.contact-direct span {
  color: var(--electric);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.contact-direct p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-form {
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  margin-bottom: 24px;
  gap: 10px;
}

.field label {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  transition: border-color 400ms var(--ease-heavy), background-color 400ms var(--ease-heavy), box-shadow 400ms var(--ease-heavy);
}

.field select option {
  background: var(--ink-soft);
  color: var(--white);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--electric);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(155, 176, 255, 0.12);
}

.field-help,
.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  margin: 5px 0 30px;
  gap: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--cobalt);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin-top: 18px;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-page header {
  padding: clamp(190px, 18vw, 270px) 0 100px;
  background: var(--ink);
  color: var(--white);
}

.legal-page h1 {
  font-size: clamp(4rem, 7vw, 8rem);
}

.legal-page header p:last-child {
  color: rgba(255, 255, 255, 0.55);
}

.legal-body {
  width: min(88vw, 860px);
  padding: 110px 0 180px;
  margin: 0 auto;
}

.legal-body section {
  padding: 45px 0;
  border-top: 1px solid var(--hairline-dark);
}

.legal-body h2 {
  margin: 0 0 25px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 350;
  letter-spacing: -0.045em;
}

.legal-body p {
  color: #48515d;
  font-size: 18px;
  line-height: 1.72;
}

.status-page {
  display: grid;
  min-height: 100dvh;
  padding: 180px 0 100px;
  place-items: center;
  background:
    radial-gradient(circle at 78% 25%, rgba(49, 87, 246, 0.25), transparent 35%),
    var(--ink);
  color: var(--white);
}

.status-page .container {
  max-width: 1160px;
}

.status-page p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(18px, 1.8vw, 24px);
}

.site-footer {
  padding: clamp(90px, 12vw, 170px) max(4vw, 24px) 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-cta {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  align-items: start;
  padding-bottom: clamp(90px, 12vw, 160px);
  gap: 40px;
  border-bottom: 1px solid var(--hairline-light);
}

.footer-cta p {
  margin: 13px 0 0;
  color: var(--electric);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cta a {
  justify-self: end;
  max-width: 1050px;
  font-size: clamp(3.4rem, 7.2vw, 8.8rem);
  font-weight: 350;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-align: right;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 0.7fr);
  padding: 80px 0;
  gap: 55px;
}

.brand-footer {
  margin-bottom: 30px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 27px;
  color: var(--electric);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid li {
  margin-bottom: 13px;
}

.footer-grid li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 400ms var(--ease-heavy);
}

.footer-grid li a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-light);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle i {
    position: absolute;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 500ms var(--ease-heavy);
  }

  .menu-toggle i:first-of-type { transform: translateY(-4px); }
  .menu-toggle i:last-of-type { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: grid;
    padding: 140px 6vw 50px;
    place-items: center;
    background: rgba(8, 11, 15, 0.94);
    color: var(--white);
    backdrop-filter: blur(28px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .mobile-menu li {
    opacity: 0;
    transform: translateY(35px);
    animation: menuReveal 700ms var(--ease-heavy) forwards;
  }

  .mobile-menu li:nth-child(2) { animation-delay: 60ms; }
  .mobile-menu li:nth-child(3) { animation-delay: 120ms; }
  .mobile-menu li:nth-child(4) { animation-delay: 180ms; }
  .mobile-menu li:nth-child(5) { animation-delay: 240ms; }
  .mobile-menu li:nth-child(6) { animation-delay: 300ms; }

  .mobile-menu a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    font-size: clamp(2.1rem, 7vw, 4.2rem);
    font-weight: 350;
    letter-spacing: -0.04em;
    text-decoration: none;
  }

  .menu-open {
    overflow: hidden;
  }

  @keyframes menuReveal {
    to { opacity: 1; transform: translateY(0); }
  }

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

  .voice-flow article:nth-child(2n) {
    border-right: 0;
  }

  .voice-flow article:last-child {
    grid-column: 1 / -1;
  }

  .insight-list-card {
    grid-template-columns: 150px 1fr;
  }

  .insight-list-card > p:not(:first-child),
  .insight-list-card > span {
    grid-column: 2;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 899px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    width: calc(100vw - 24px);
    min-height: 66px;
    padding: 7px 8px 7px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-type strong { font-size: 12px; }
  .brand-type small { font-size: 6.5px; }

  .hero-home {
    min-height: auto;
    padding: 150px 0 25px;
  }

  .display,
  .page-hero h1,
  .case-hero h1,
  .article-head h1,
  .contact-intro h1,
  .legal-page h1,
  .status-page h1 {
    font-size: clamp(3.35rem, 13.2vw, 6rem);
    line-height: 0.94;
  }

  .hero-display {
    width: 94vw;
  }

  .hero-lede {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 30px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 390px;
  }

  .hero-visual {
    width: calc(100vw - 24px);
    height: 360px;
    margin-top: 50px;
    border-radius: 22px;
  }

  .hero-visual img {
    border-radius: 15px;
  }

  .hero-visual figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
    font-size: 8px;
  }

  .premise-row {
    grid-template-columns: 1fr;
  }

  .premise-row p {
    min-height: 64px;
    padding: 22px;
    border-right: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
  }

  .section {
    padding: 105px 0;
  }

  .section-intro {
    margin-bottom: 58px;
  }

  .section-title,
  .editorial-pair h2,
  .sector-matrix h2,
  .two-column-list h2,
  .case-copy h2 {
    font-size: clamp(2.8rem, 11vw, 5.2rem);
  }

  .intro-split,
  .intro-row,
  .editorial-pair,
  .page-hero-grid,
  .case-grid,
  .process-layout,
  .sector-matrix,
  .two-column-list {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero-aside {
    gap: 38px;
  }

  .approach-media {
    width: min(100%, 620px);
    justify-self: center;
  }

  .intro-row .text-link {
    justify-self: start;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .bento-main,
  .bento-secondary {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-card {
    min-height: 520px;
  }

  .bento-secondary {
    min-height: 380px;
  }

  .bento-secondary .card-core::after {
    background:
      linear-gradient(90deg, rgba(8, 11, 15, 0.98) 0%, rgba(8, 11, 15, 0.82) 58%, rgba(8, 11, 15, 0.32) 100%),
      linear-gradient(0deg, rgba(8, 11, 15, 0.9), transparent 65%);
  }

  .card-core {
    padding: 34px 28px;
  }

  .card-link {
    bottom: 27px;
    left: 28px;
  }

  .process-section {
    min-height: auto;
  }

  .process-heading {
    position: static;
  }

  .process-statement {
    padding-bottom: 0;
    font-size: clamp(3rem, 12vw, 5.5rem);
  }

  .accordion {
    display: grid;
    min-height: auto;
  }

  .accordion-item,
  .accordion-item.is-open {
    display: block;
    min-height: auto;
    border-radius: 20px;
  }

  .accordion-trigger {
    align-items: center;
    padding: 26px 24px;
  }

  .accordion-trigger span {
    font-size: 1.65rem;
    white-space: normal;
  }

  .accordion-trigger small {
    display: none;
  }

  .accordion-panel {
    display: none;
    padding: 5px 24px 30px;
    opacity: 1;
    transform: none;
  }

  .accordion-item.is-open .accordion-panel {
    display: block;
  }

  .case-media {
    order: -1;
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

  .insight-card {
    min-height: 390px;
  }

  .page-hero {
    min-height: auto;
    padding: 160px 0 95px;
  }

  .page-lede,
  .intro-split > p,
  .long-copy {
    font-size: 18px;
  }

  .wide-media {
    width: calc(100vw - 24px);
    height: 370px;
    margin-top: 60px;
    margin-bottom: -250px;
  }

  .property-hero,
  .company-hero,
  .custom-hero {
    margin-bottom: 250px;
  }

  .method-list article {
    grid-template-columns: 1fr;
    padding: 48px 0;
    gap: 20px;
  }

  .capability-ledger {
    grid-template-columns: 1fr;
  }

  .capability-ledger article,
  .capability-ledger article:nth-child(even) {
    min-height: auto;
    padding: 38px 0;
    border-left: 0;
  }

  .sector-matrix ul {
    min-width: 0;
  }

  .voice-flow {
    grid-template-columns: 1fr;
  }

  .voice-flow article,
  .voice-flow article:nth-child(2n),
  .voice-flow article:last-child {
    grid-column: 1;
    min-height: auto;
    padding: 38px 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-dark);
  }

  .voice-flow h3 {
    margin-top: 65px;
  }

  .voice-hero-media::after {
    background:
      linear-gradient(0deg, rgba(8, 11, 15, 0.96) 0%, rgba(8, 11, 15, 0.52) 60%, rgba(8, 11, 15, 0.68) 100%),
      linear-gradient(90deg, rgba(8, 11, 15, 0.75), transparent);
  }

  .voice-hero-media img {
    object-position: center;
  }

  .context-media {
    height: min(126vw, 620px);
    margin-top: 75px;
    margin-bottom: 95px;
  }

  .context-media figcaption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .two-column-list > div + div {
    padding-top: 60px;
    border-top: 1px solid var(--hairline-light);
  }

  .decision-grid,
  .build-principles,
  .principles {
    grid-template-columns: 1fr;
  }

  .decision-grid article,
  .build-principles article,
  .principles article,
  .principles article:last-child {
    grid-column: 1;
    min-height: auto;
  }

  .build-principles h3,
  .principles h2 {
    margin-top: 75px;
  }

  .case-cover {
    width: calc(100vw - 24px);
    height: 430px;
    margin-bottom: -90px;
  }

  .case-facts {
    padding-top: 180px;
  }

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

  .case-facts dl div:nth-child(2) {
    border-right: 0;
  }

  .case-facts dl div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline-dark);
  }

  .case-products {
    grid-template-columns: 1fr;
  }

  .insight-list-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .insight-list-card > p:not(:first-child),
  .insight-list-card > span {
    grid-column: 1;
  }

  .contact-layout {
    gap: 70px;
  }

  .contact-form {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-cta a {
    justify-self: start;
    font-size: clamp(3rem, 12vw, 5.8rem);
    text-align: left;
  }

  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .brand-type small {
    letter-spacing: 0.24em;
  }

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

  .context-media figcaption span:last-child {
    display: none;
  }

  .button {
    padding-left: 20px;
    gap: 12px;
    font-size: 13px;
  }

  .bento-card {
    min-height: 560px;
  }

  .bento-secondary {
    min-height: 390px;
  }

  .carousel-track {
    grid-auto-columns: 94%;
  }

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

  .case-facts dl div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-dark);
  }

  .case-facts dl div:last-child {
    border-bottom: 0;
  }

  .article-body {
    width: calc(100vw - 32px);
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

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

@media (forced-colors: active) {
  .nav-shell,
  .contact-form,
  .bento-card,
  .case-media,
  .wide-media {
    border: 1px solid CanvasText;
  }
}
