/* Wexolab standalone stylesheet: index.html
   Canonical source: styles.css */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap");

:root {
  --ink: #080808;
  --ink-soft: #111111;
  --surface: #161616;
  --surface-2: #202020;
  --paper: #f5f3ed;
  --white: #ffffff;
  --copy: #b8b8b8;
  --muted: #747474;
  --line: rgba(255, 255, 255, 0.14);
  --paper-line: rgba(8, 8, 8, 0.16);
  --orange: #ff7900;
  --orange-dark: #c64e00;
  --font: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --container: min(92vw, 1440px);
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(96px, 12vw, 190px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: var(--section-space);
}

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

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

.section--tight {
  padding-block: clamp(72px, 8vw, 120px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.section--orange .section-kicker::before {
  background: var(--ink);
}

.display,
.headline-xl,
.headline-lg,
.headline-md {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.display {
  max-width: 1200px;
  font-size: clamp(4rem, 9.4vw, 9.4rem);
  line-height: 0.87;
}

.headline-xl {
  max-width: 1180px;
  font-size: clamp(3.25rem, 7.2vw, 7.8rem);
  line-height: 0.9;
}

.headline-lg {
  max-width: 1000px;
  font-size: clamp(2.8rem, 5.7vw, 6.2rem);
  line-height: 0.93;
}

.headline-md {
  font-size: clamp(2.1rem, 3.7vw, 4.4rem);
  line-height: 0.98;
}

.accent {
  color: var(--orange);
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.lede {
  max-width: 720px;
  color: var(--copy);
  font-size: clamp(1.14rem, 1.5vw, 1.45rem);
  line-height: 1.5;
}

.section--paper .lede,
.section--orange .lede {
  color: rgba(8, 8, 8, 0.72);
}

.meta-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  transition: transform 300ms var(--ease), background 250ms ease, color 250ms ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--white);
}

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

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

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--white);
}

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

.button__arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

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

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 103;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 300ms var(--ease), background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: var(--container);
  min-height: 60px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: clamp(158px, 12vw, 190px);
  align-items: center;
  justify-self: start;
  line-height: 0;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 12px 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav > .nav-home {
  padding: 10px 16px;
  border: 1px solid rgba(255, 121, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 121, 0, 0.1);
  color: var(--orange);
}

.desktop-nav > .nav-home[aria-current="page"],
.desktop-nav > .nav-home:hover {
  background: var(--orange);
  color: var(--ink);
}

.desktop-nav > .nav-home::after {
  display: none;
}

.desktop-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 300ms var(--ease);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > button svg {
  transition: transform 250ms var(--ease);
}

.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(680px, 80vw);
  padding: 18px;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  grid-template-columns: repeat(2, 1fr);
  transition: opacity 220ms ease, transform 300ms var(--ease), visibility 220ms;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel,
.nav-dropdown.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-panel a {
  padding: 13px 15px;
  color: #d0d0d0;
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--orange);
  color: var(--ink);
}

.header-action {
  justify-self: end;
}

.header-action .button {
  min-height: 46px;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 250ms var(--ease), opacity 200ms ease;
}

.menu-toggle::before {
  top: 17px;
}

.menu-toggle span {
  top: 23px;
}

.menu-toggle::after {
  top: 29px;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 101;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 116px 5vw max(40px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  background: var(--ink);
  transition: opacity 260ms ease, transform 420ms var(--ease), visibility 260ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__main {
  display: grid;
  gap: 4px;
}

.mobile-menu__main > a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.mobile-menu__services {
  display: grid;
  margin: 32px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-menu__services a {
  padding: 12px 6px;
  color: var(--copy);
  font-size: 14px;
}

.mobile-menu__main > a,
.mobile-menu__services,
.mobile-menu > .button {
  opacity: 0;
  transform: translateY(16px);
}

.mobile-menu.is-open .mobile-menu__main > a,
.mobile-menu.is-open .mobile-menu__services,
.mobile-menu.is-open > .button {
  animation: menu-item-in 480ms var(--ease) both;
}

.mobile-menu.is-open .mobile-menu__main > a:nth-child(1) { animation-delay: 60ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(2) { animation-delay: 95ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(3) { animation-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(4) { animation-delay: 165ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(5) { animation-delay: 200ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(6) { animation-delay: 235ms; }
.mobile-menu.is-open .mobile-menu__services { animation-delay: 220ms; }
.mobile-menu.is-open > .button { animation-delay: 270ms; }

@keyframes menu-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding: clamp(150px, 17vh, 210px) 0 clamp(48px, 8vh, 88px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 55vw;
  height: 55vw;
  max-width: 860px;
  max-height: 860px;
  right: -16vw;
  top: -22vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.18), rgba(255, 121, 0, 0) 66%);
  content: "";
}

.hero__inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(30px, 5vh, 64px);
  color: #d7d7d7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 121, 0, 0.1);
  content: "";
}

.hero__line {
  display: block;
}

.hero__line--offset {
  padding-left: clamp(0px, 9vw, 150px);
}

.js .hero__eyebrow,
.js .hero__line,
.js .hero__bottom,
.js .page-hero .service-code,
.js .page-hero .display,
.js .page-hero__meta {
  opacity: 0;
  transform: translateY(28px);
}

.js .hero__line,
.js .page-hero .display {
  clip-path: inset(0 0 100% 0);
}

.js .hero__eyebrow,
.js .hero__line,
.js .hero__bottom,
.js .page-hero .service-code,
.js .page-hero .display,
.js .page-hero__meta,
.js .signal {
  transition:
    opacity 620ms ease,
    transform 820ms var(--ease),
    clip-path 900ms var(--ease),
    filter 820ms var(--ease);
}

.js .hero__line:nth-child(2) { transition-delay: 90ms; }
.js .hero__bottom { transition-delay: 210ms; }
.js .page-hero .display { transition-delay: 80ms; }
.js .page-hero__meta { transition-delay: 190ms; }

.js .signal {
  opacity: 0;
  filter: blur(8px);
}

.js body.is-ready .hero__eyebrow,
.js body.is-ready .hero__line,
.js body.is-ready .hero__bottom,
.js body.is-ready .page-hero .service-code,
.js body.is-ready .page-hero .display,
.js body.is-ready .page-hero__meta {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.js body.is-ready .signal {
  opacity: var(--signal-opacity, 1);
  filter: blur(0);
}

.hero__bottom {
  display: grid;
  margin-top: clamp(46px, 8vh, 86px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr minmax(300px, 530px);
  align-items: end;
  gap: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__copy {
  margin-bottom: 0;
  color: var(--copy);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.signal {
  --signal-opacity: 1;
  position: absolute;
  top: 24%;
  right: 3vw;
  display: grid;
  width: clamp(128px, 13vw, 220px);
  aspect-ratio: 1;
  place-items: center;
  pointer-events: none;
  transform: translate3d(calc(var(--pointer-x, 0) * 8px), calc(var(--pointer-y, 0) * 8px), 0);
  transition: transform 600ms var(--ease), opacity 620ms ease, filter 820ms var(--ease);
}

.js .signal {
  transition-delay: 300ms;
}

.signal__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.signal__ring::before,
.signal__ring::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.signal__ring::before {
  top: 14%;
  left: 13%;
}

.signal__ring::after {
  right: 4%;
  bottom: 33%;
}

.signal__core {
  display: grid;
  width: 62%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 80px rgba(255, 121, 0, 0.33);
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 52px);
  transform: rotate(-45deg);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.capability-strip {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  contain: inline-size paint;
}

.capability-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.capability-strip:hover .capability-strip__track,
.capability-strip:focus-within .capability-strip__track {
  animation-play-state: paused;
}

.capability-strip__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.capability-strip span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  color: #d3d3d3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Introduction */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.intro-grid__aside {
  position: sticky;
  top: 120px;
}

.intro-grid__body p {
  margin-bottom: 32px;
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.intro-grid__body p span {
  color: var(--orange-dark);
}

.intro-grid__note {
  max-width: 540px;
  color: rgba(8, 8, 8, 0.64);
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
}

/* Work */
.section-heading-row {
  display: flex;
  margin-bottom: clamp(52px, 7vw, 100px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.project-list {
  display: grid;
  gap: clamp(54px, 7vw, 110px);
}

.project-card {
  position: relative;
}

.project-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 38%);
  content: "";
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 500ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card__index {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.35);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.project-card__body {
  display: grid;
  padding-top: 25px;
  grid-template-columns: 1fr;
  gap: 30px;
}

.project-card__body h3 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-card__body p {
  margin: 0;
  color: var(--copy);
}

.project-grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(38px, 5vw, 80px) 24px;
}

.project-grid--editorial .project-card:nth-child(1) {
  grid-column: 1 / 13;
}

.project-grid--editorial .project-card:nth-child(2) {
  grid-column: 1 / 8;
}

.project-grid--editorial .project-card:nth-child(3) {
  grid-column: 8 / 13;
  margin-top: 16vw;
}

.project-grid--editorial .project-card:nth-child(2) .project-card__media,
.project-grid--editorial .project-card:nth-child(3) .project-card__media {
  aspect-ratio: 4 / 5;
}

/* Services */
.service-groups {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--paper-line);
  grid-template-columns: 1fr 1fr;
}

.service-group {
  padding: 34px clamp(24px, 4vw, 70px) 0 0;
}

.service-group + .service-group {
  padding-right: 0;
  padding-left: clamp(24px, 4vw, 70px);
  border-left: 1px solid var(--paper-line);
}

.service-group__title {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  color: rgba(8, 8, 8, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--paper-line);
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  transition: padding 300ms var(--ease), color 200ms ease;
}

.service-row:hover {
  padding-left: 12px;
  color: var(--orange-dark);
}

.service-row__number {
  color: rgba(8, 8, 8, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.service-row__name {
  font-size: clamp(1.35rem, 2.4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-row__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  transition: background 250ms ease, transform 300ms var(--ease);
}

.service-row:hover .service-row__arrow {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--ink);
}

/* Design + Growth statement */
.dual-engine {
  overflow: hidden;
}

.dual-engine__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.dual-engine__word {
  font-size: clamp(4.5rem, 13vw, 13.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.76;
  text-transform: uppercase;
}

.dual-engine__word:last-child {
  justify-self: end;
  color: var(--orange);
}

.dual-engine__plus {
  display: grid;
  width: clamp(70px, 9vw, 130px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 5rem);
}

.dual-engine__body {
  display: grid;
  margin-top: clamp(70px, 10vw, 150px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr minmax(300px, 650px);
  gap: 40px;
}

.dual-engine__body p {
  margin: 0;
  color: var(--copy);
  font-size: clamp(1.35rem, 2.3vw, 2.65rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

/* Process */
.process-list {
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--paper-line);
}

.process-item {
  display: grid;
  padding: clamp(28px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--paper-line);
  grid-template-columns: 90px minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 30px;
}

.process-item__number {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-item h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-item p {
  max-width: 570px;
  margin: 0;
  color: rgba(8, 8, 8, 0.64);
  font-size: 17px;
}

/* Keep service process-card copy legible on the dark hover state. */
section[aria-labelledby="process-title"] .process-item:hover h3 {
  color: #fff !important;
}

section[aria-labelledby="process-title"] .process-item:hover p {
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Principles */
.principle-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  min-height: 360px;
  padding: clamp(26px, 3vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle__number {
  display: block;
  margin-bottom: 90px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  margin: 0;
  color: var(--copy);
}

/* Insights */
.insight-grid {
  display: grid;
  margin-top: clamp(62px, 8vw, 110px);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
}

.insight-card {
  display: flex;
  min-height: 430px;
  padding: clamp(26px, 3vw, 44px);
  flex-direction: column;
  background: var(--paper);
  transition: background 300ms ease, color 300ms ease;
}

.insight-card:hover {
  background: var(--orange);
  color: var(--ink);
}

.insight-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-card__index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  font-size: 11px;
}

.insight-card h3 {
  margin: auto 0 22px;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.insight-card p {
  margin: 0;
  color: rgba(8, 8, 8, 0.58);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(450px, 1.3fr);
  gap: clamp(50px, 9vw, 150px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 28px 64px 28px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 550;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: transform 280ms var(--ease);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  max-width: 650px;
  padding: 0 60px 28px 0;
  color: var(--copy);
}

/* CTA and footer */
.closing-cta {
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 180px);
  background: var(--orange);
  color: var(--ink);
}

.closing-cta__top {
  display: flex;
  margin-bottom: clamp(70px, 10vw, 145px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.closing-cta__badge {
  display: grid;
  width: clamp(90px, 12vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 50%;
  font-size: clamp(2rem, 4vw, 4.5rem);
  transform: rotate(-45deg);
}

.closing-cta .headline-xl {
  max-width: 1270px;
}

.closing-cta__bottom {
  display: flex;
  margin-top: clamp(55px, 8vw, 100px);
  padding-top: 28px;
  border-top: 1px solid rgba(8, 8, 8, 0.24);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* Consistent compact closing CTA across every service page. */
body[data-service] .closing-cta {
  padding-block: clamp(54px, 5.2vw, 76px);
}

body[data-service] .closing-cta__top {
  margin-bottom: clamp(30px, 3.4vw, 46px);
  align-items: center;
}

body[data-service] .closing-cta__top .section-kicker {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

body[data-service] .closing-cta__top .section-kicker::before {
  background: var(--orange);
}

body[data-service] .closing-cta__badge {
  width: clamp(68px, 6.5vw, 92px);
  border: 0;
  background: #fff4e8;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  transform: none;
}

body[data-service] .closing-cta .headline-xl {
  max-width: 1100px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.91;
}

body[data-service] .closing-cta__bottom {
  margin-top: clamp(28px, 3.2vw, 44px);
  padding-top: clamp(18px, 1.8vw, 24px);
}

body[data-service] .closing-cta__bottom p {
  max-width: 440px;
  margin: 0;
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

body[data-service] .closing-cta .button--dark {
  min-width: 190px;
  min-height: 50px;
  justify-content: space-between;
}

.site-footer {
  position: relative;
  padding: clamp(28px, 4vw, 54px) 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 121, 0, 0.12), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 88px 88px, 88px 88px, auto;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.footer-cta {
  display: flex;
  min-height: 330px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 121, 0, 0.34), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
}

.footer-cta__eyebrow {
  display: inline-flex;
  margin-bottom: clamp(44px, 6vw, 86px);
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-cta__eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(2.9rem, 6.1vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.footer-cta h2 em {
  color: var(--orange);
  font-family: inherit;
  font-weight: 500;
}

.footer-cta > .button {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.footer-grid {
  display: grid;
  margin-top: 0;
  padding-bottom: 20px;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 14px;
}

.footer-intro,
.footer-column {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-intro .wordmark {
  width: min(224px, 100%);
  margin-bottom: 30px;
}

.footer-intro p {
  max-width: 380px;
  color: var(--copy);
}

.footer-contact {
  display: grid;
  max-width: 390px;
  margin-top: 28px;
  gap: 13px;
  font-style: normal;
}

.footer-contact a {
  display: grid;
  width: fit-content;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-contact a > span:first-child {
  color: var(--orange);
  font-size: 17px;
  line-height: 1.2;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-column h3 {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column h3::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column--contact .footer-contact {
  margin-top: 0;
}

.footer-column--contact .footer-contact a {
  display: grid;
  margin: 0;
  color: #f2f2f2;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62d48f;
  box-shadow: 0 0 0 5px rgba(98, 212, 143, 0.1);
}

.footer-back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(18px, 2.5vw, 38px);
  bottom: clamp(18px, 2.5vw, 38px);
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: transform 220ms var(--ease), background 180ms ease, opacity 180ms ease, visibility 180ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.footer-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.footer-back-to-top svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-back-to-top:hover {
  transform: translateY(-5px);
  background: var(--white);
}

/* Inner pages */
.page-hero {
  position: relative;
  display: flex;
  min-height: 80svh;
  align-items: flex-end;
  padding: 180px 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(58vw, 900px);
  height: 100%;
  background: radial-gradient(circle at 65% 35%, rgba(255, 121, 0, 0.2), transparent 42%), linear-gradient(135deg, transparent 49.7%, rgba(255, 255, 255, 0.05) 50%, transparent 50.3%);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.page-hero__meta {
  display: flex;
  margin-top: clamp(50px, 7vw, 100px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.page-hero__meta p {
  max-width: 610px;
  margin: 0;
  color: var(--copy);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.service-hero {
  min-height: 92svh;
}

.service-hero .display {
  max-width: 1320px;
}

.service-code {
  display: inline-flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 12px;
  color: var(--copy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-code::before {
  width: 30px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.service-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 10vw, 170px);
}

.service-intro__body > p:first-child {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service-intro .meta-label {
  display: block;
}

.service-intro__mark {
  display: block;
  width: clamp(78px, 7vw, 104px);
  height: auto;
  margin: clamp(42px, 5vw, 72px) 0;
  object-fit: contain;
}

.service-intro__body > p:last-child {
  max-width: 660px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 17px;
}

.service-overview {
  overflow: hidden;
}

.service-visual {
  margin-top: clamp(64px, 9vw, 140px);
}

.service-visual__figure {
  margin: 0;
}

.service-visual__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 34px 90px rgba(8, 8, 8, 0.16);
  isolation: isolate;
}

.service-visual__frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 121, 0, 0.2), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, 0.24), transparent 35%);
  content: "";
  pointer-events: none;
}

.service-visual__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 700ms ease;
}

.service-visual__stamp {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 2.4vw, 34px);
  left: clamp(16px, 2.4vw, 34px);
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 8, 8, 0.62);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  backdrop-filter: blur(12px);
}

.service-visual__caption {
  display: grid;
  padding: 18px 0 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-visual__caption > span:first-child {
  color: var(--ink);
}

.service-visual__caption a {
  color: inherit;
  transition: color 200ms ease;
}

.service-visual__caption a:hover {
  color: var(--orange);
}

@media (hover: hover) {
  .service-visual__figure:hover .service-visual__image {
    transform: scale(1.025);
  }
}

.deliverable-grid {
  display: grid;
  margin-top: clamp(65px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.deliverable-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-card__number {
  display: block;
  margin-bottom: clamp(65px, 8vw, 110px);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.deliverable-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.deliverable-card p {
  margin: 0;
  color: var(--copy);
}

.outcome-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 100px);
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.outcome-card {
  min-height: 320px;
  padding: clamp(26px, 3vw, 45px);
  background: var(--white);
  color: var(--ink);
}

.outcome-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 85px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 19px;
}

.outcome-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-faq .faq-list {
  border-color: var(--paper-line);
}

.service-faq .faq-item {
  border-color: var(--paper-line);
}

.service-faq .faq-item__answer {
  color: rgba(8, 8, 8, 0.64);
}

/* About */
.manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto__line {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.manifesto__line:nth-child(even) {
  color: var(--orange);
  text-align: right;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(50px, 10vw, 180px);
}

.about-story__copy p:first-child {
  font-size: clamp(1.8rem, 3.4vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-story__copy p:not(:first-child) {
  max-width: 650px;
  color: rgba(8, 8, 8, 0.65);
  font-size: 17px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 150px);
}

.contact-details {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contact-details h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-details p {
  color: rgba(8, 8, 8, 0.62);
}

.contact-details a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}

.project-form {
  display: grid;
  gap: 32px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.field input,
.field select {
  min-height: 62px;
}

.field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 1px 0 var(--orange-dark);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #315c22;
  font-weight: 700;
}

/* Utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 850ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .signal {
    top: 21%;
    right: 2vw;
    --signal-opacity: 0.72;
  }

  .project-grid--editorial .project-card:nth-child(2),
  .project-grid--editorial .project-card:nth-child(3) {
    grid-column: span 6;
  }

  .project-grid--editorial .project-card:nth-child(3) {
    margin-top: 12vw;
  }

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

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

  .footer-intro {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(90vw, 720px);
  }

  .hero {
    min-height: auto;
    padding-top: 155px;
  }

  .mobile-menu {
    min-height: 100dvh;
  }

  .hero__line--offset {
    padding-left: 0;
  }

  .signal {
    position: relative;
    top: auto;
    right: auto;
    width: 110px;
    margin: 35px 0 0 auto;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .hero__bottom,
  .intro-grid,
  .dual-engine__body,
  .faq-layout,
  .service-intro,
  .about-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid__aside,
  .contact-details {
    position: static;
  }

  .project-grid--editorial {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-grid--editorial .project-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .project-grid--editorial .project-card:nth-child(2) .project-card__media,
  .project-grid--editorial .project-card:nth-child(3) .project-card__media {
    aspect-ratio: 16 / 10;
  }

  .service-groups {
    grid-template-columns: 1fr;
  }

  .service-group + .service-group {
    padding-left: 0;
    border-left: 0;
  }

  .dual-engine__head {
    display: flex;
    flex-wrap: wrap;
  }

  .dual-engine__word:last-child {
    margin-left: auto;
  }

  .process-item {
    grid-template-columns: 58px 1fr;
  }

  .process-item p {
    grid-column: 2;
  }

  .insight-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .page-hero__meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-intro {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-cta {
    min-height: 300px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta > .button {
    margin-top: auto;
  }
}

@media (max-width: 640px) {
  .service-visual {
    margin-top: 54px;
  }

  .service-visual__frame {
    aspect-ratio: 4 / 5;
    box-shadow: 0 24px 55px rgba(8, 8, 8, 0.14);
  }

  .service-visual__caption {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 38px);
    --section-space: 72px;
  }

  .display {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
    line-height: 0.92;
  }

  .headline-xl {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: 128px;
    padding-bottom: 52px;
  }

  .hero__eyebrow {
    margin-bottom: 28px;
  }

  .signal {
    width: 102px;
    margin-top: 26px;
  }

  .hero__bottom {
    margin-top: 38px;
    padding-top: 22px;
    gap: 24px;
  }

  .page-hero {
    padding-top: 126px;
    padding-bottom: 64px;
  }

  .page-hero__meta {
    margin-top: 38px;
    padding-top: 20px;
    gap: 22px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .project-card__body {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 28px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .service-row__arrow {
    width: 36px;
    height: 36px;
  }

  .dual-engine__head {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .dual-engine__word:last-child {
    grid-column: 1 / 3;
    justify-self: end;
  }

  .dual-engine__plus {
    width: 62px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .process-item p {
    grid-column: auto;
  }

  .principle-grid,
  .deliverable-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: auto;
  }

  .principle,
  .deliverable-card,
  .outcome-card,
  .insight-card {
    min-height: 0;
  }

  .principle__number,
  .deliverable-card__number {
    margin-bottom: 44px;
  }

  .outcome-card__icon {
    margin-bottom: 48px;
  }

  .section-heading-row,
  .closing-cta__top,
  .closing-cta__bottom,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-cta__badge {
    width: 92px;
  }

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

  .footer-intro,
  .footer-column:last-child {
    grid-column: auto;
  }

  .mobile-menu__services {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 20px;
  }

  .footer-grid {
    padding-bottom: 20px;
  }

  .footer-cta {
    min-height: 360px;
    padding: 28px;
    border-radius: 22px;
  }

  .footer-cta__eyebrow {
    margin-bottom: 46px;
  }

  .footer-cta h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .footer-cta > .button {
    width: 100%;
  }

  .footer-intro,
  .footer-column {
    padding: 26px;
    border-radius: 18px;
  }
}

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

  .wordmark {
    width: 146px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle::before {
    top: 15px;
  }

  .menu-toggle span {
    top: 21px;
  }

  .menu-toggle::after {
    top: 27px;
  }

  .service-row {
    grid-template-columns: 26px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .service-row__name {
    font-size: 1.2rem;
    overflow-wrap: anywhere;
  }
}

@media (hover: none) {
  .button:active,
  .menu-toggle:active,
  .service-row:active .service-row__arrow {
    transform: scale(0.97);
  }

  .project-card:active img {
    transform: scale(1.018);
  }
}

@media (max-width: 560px) {
  body[data-service] .closing-cta {
    padding-block: 42px;
  }

  body[data-service] .closing-cta__top {
    margin-bottom: 26px;
    align-items: center;
    flex-direction: row;
  }

  body[data-service] .closing-cta__badge {
    width: 56px;
    flex: 0 0 56px;
  }

  body[data-service] .closing-cta .headline-xl {
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
  }

  body[data-service] .closing-cta__bottom {
    margin-top: 25px;
    gap: 22px;
  }

  body[data-service] .closing-cta .button--dark {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .js .hero__eyebrow,
  .js .hero__line,
  .js .hero__bottom,
  .js .page-hero .service-code,
  .js .page-hero .display,
  .js .page-hero__meta,
  .js .signal {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
}


/* Page-specific source: page-overrides/index.css */
/* Homepage-only hero brand mark and logo-wall motion treatment. */
.page-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 121, 0, 0.5);
  pointer-events: none;
  will-change: transform;
}

.hero {
  overflow: hidden;
}

.hero__inner {
  position: static;
}

/* Keep the hero message on one side so the brand mark has its own visual space. */
@media (min-width: 821px) {
  .hero .display,
  .hero__eyebrow,
  .hero__bottom {
    width: min(61vw, 880px);
  }

  .hero .display {
    font-size: clamp(4rem, 6.35vw, 7.15rem);
  }

  .hero__line--offset {
    padding-left: 0;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    max-width: 640px;
  }
}

.hero .display,
.hero__eyebrow,
.hero__bottom {
  position: relative;
  z-index: 2;
}

.signal--brand {
  --signal-opacity: 1;
  z-index: 1;
  top: 50%;
  right: clamp(-24px, 2vw, 38px);
  width: clamp(470px, 46vw, 720px);
  transform: translate3d(calc(var(--pointer-x, 0) * 5px), calc(-50% + var(--pointer-y, 0) * 5px), 0);
  perspective: 1400px;
  isolation: isolate;
}

.signal--brand::before {
  position: absolute;
  z-index: -1;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.16), rgba(255, 121, 0, 0) 66%);
  filter: blur(32px);
  content: "";
}

.signal__brand-plane {
  position: relative;
  display: grid;
  width: 100%;
  transform-style: preserve-3d;
  animation: hero-brand-turn 12s linear infinite;
  place-items: center;
  will-change: transform;
}

.signal__brand-plane::before {
  display: none;
}

.signal__brand {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  transform: translateZ(3px);
  backface-visibility: hidden;
  filter: none;
}

.signal__brand-depth,
.signal__brand-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.signal__brand-depth {
  z-index: 1;
  transform: translateZ(var(--layer-z));
  backface-visibility: visible;
  opacity: var(--layer-opacity);
  filter: none;
}

.signal__brand-back {
  z-index: 0;
  transform: translateZ(-24px) rotateY(180deg);
  backface-visibility: hidden;
  opacity: 0.72;
  filter: none;
}

@keyframes hero-brand-turn {
  from {
    transform: translateZ(0) rotateX(5deg) rotateY(0deg);
  }
  to {
    transform: translateZ(0) rotateX(5deg) rotateY(360deg);
  }
}

/* Homepage insights: a more expressive editorial card treatment. */
section[aria-labelledby="insights-title"] {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 9%, rgba(255, 121, 0, 0.13), transparent 22%),
    linear-gradient(180deg, #fff4e8 0%, var(--paper) 72%);
}

section[aria-labelledby="insights-title"]::before {
  position: absolute;
  top: 4%;
  right: -9vw;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 8, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

section[aria-labelledby="insights-title"] .section-heading-row {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
}

.insight-grid {
  position: relative;
  z-index: 1;
  gap: clamp(14px, 1.5vw, 24px);
  background: transparent;
}

.insight-card {
  position: relative;
  min-height: clamp(390px, 34vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.88);
  box-shadow: 0 18px 45px rgba(45, 24, 5, 0.06);
  isolation: isolate;
  transition:
    transform 420ms var(--ease),
    border-color 320ms ease,
    box-shadow 420ms ease,
    background 320ms ease,
    color 320ms ease;
}

.insight-card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0.22);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 420ms var(--ease);
}

.insight-card::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.21em;
  color: rgba(8, 8, 8, 0.045);
  font-size: clamp(9rem, 15vw, 15rem);
  font-weight: 650;
  letter-spacing: -0.09em;
  line-height: 1;
  content: "01";
  pointer-events: none;
}

.insight-card:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 121, 0, 0.2), transparent 30%),
    #101010;
  color: #fff;
  box-shadow: 0 24px 55px rgba(8, 8, 8, 0.18);
}

.insight-card:nth-child(2)::after {
  color: rgba(255, 255, 255, 0.055);
  content: "02";
}

.insight-card:nth-child(3)::after {
  content: "03";
}

.insight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 121, 0, 0.75);
  background: #ff7900;
  color: var(--ink);
  box-shadow: 0 28px 65px rgba(61, 30, 0, 0.18);
}

.insight-card:hover::before {
  transform: scaleX(1);
  background: var(--ink);
}

.insight-card__top {
  position: relative;
  z-index: 1;
}

.insight-card .meta-label {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: inherit;
}

.insight-card:nth-child(2) .meta-label {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.insight-card__index {
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--ink);
  color: #fff;
  transition: transform 420ms var(--ease), background 320ms ease, color 320ms ease;
}

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

.insight-card:hover .insight-card__index {
  transform: rotate(10deg) scale(1.08);
  background: var(--ink);
  color: #fff;
}

.insight-card h3 {
  position: relative;
  z-index: 1;
  max-width: 11.5em;
  margin-bottom: 28px;
  font-size: clamp(1.75rem, 2.35vw, 2.75rem);
  line-height: 0.99;
}

.insight-card p {
  position: relative;
  z-index: 1;
  max-width: 29em;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  color: rgba(8, 8, 8, 0.64);
  transition: border-color 320ms ease, color 320ms ease;
}

.insight-card:nth-child(2) p {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
}

.insight-card:hover p {
  border-color: rgba(8, 8, 8, 0.24);
  color: rgba(8, 8, 8, 0.72);
}

/* Homepage principles: dimensional cards replace the flat bordered grid. */
section[aria-labelledby="principles-title"] {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 121, 0, 0.12), transparent 23%),
    radial-gradient(circle at 92% 88%, rgba(255, 121, 0, 0.08), transparent 26%),
    #080808;
}

section[aria-labelledby="principles-title"]::before {
  position: absolute;
  top: clamp(70px, 9vw, 130px);
  right: clamp(20px, 5vw, 90px);
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 121, 0, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.018), 0 0 0 64px rgba(255, 255, 255, 0.012);
  content: "";
  pointer-events: none;
}

section[aria-labelledby="principles-title"] > .container {
  position: relative;
  z-index: 1;
}

.principle-grid {
  border: 0;
  background: transparent;
  gap: clamp(14px, 1.5vw, 24px);
}

.principle {
  position: relative;
  display: flex;
  min-height: clamp(390px, 32vw, 475px);
  padding: clamp(28px, 3.2vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #0c0c0c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  transition:
    opacity 700ms var(--ease),
    transform 420ms var(--ease),
    border-color 320ms ease,
    box-shadow 420ms ease,
    background 320ms ease,
    color 320ms ease;
}

.principle::before {
  position: absolute;
  z-index: -1;
  top: -68px;
  right: -68px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 121, 0, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.13), transparent 64%);
  content: "";
  transition: transform 600ms var(--ease), background 320ms ease;
}

.principle::after {
  position: absolute;
  z-index: -1;
  right: -0.02em;
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(10rem, 17vw, 17rem);
  font-weight: 650;
  letter-spacing: -0.1em;
  line-height: 1;
  content: "01";
  pointer-events: none;
}

.principle:nth-child(2) {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.principle:nth-child(2)::before {
  border-color: rgba(8, 8, 8, 0.16);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 64%);
}

.principle:nth-child(2)::after {
  color: rgba(8, 8, 8, 0.065);
  content: "02";
}

.principle:nth-child(3)::after {
  content: "03";
}

.principle:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.34);
}

.principle:nth-child(2):hover {
  border-color: #ff9d43;
  background: #ff8a1f;
}

.principle:hover::before {
  transform: translate(-18px, 18px) scale(1.22);
}

.principle__number {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0;
  padding: 9px 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
  letter-spacing: 0.1em;
}

.principle:nth-child(2) .principle__number {
  border-color: rgba(8, 8, 8, 0.18);
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink);
}

.principle h3 {
  position: relative;
  z-index: 1;
  max-width: 11em;
  margin: auto 0 22px;
  font-size: clamp(1.9rem, 2.55vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.principle p {
  position: relative;
  z-index: 1;
  max-width: 31em;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
}

.principle:nth-child(2) p {
  border-color: rgba(8, 8, 8, 0.2);
  color: rgba(8, 8, 8, 0.68);
}

/* Homepage CTA: compact, high-impact closing panel. */
.closing-cta {
  position: relative;
  padding-block: clamp(46px, 4.8vw, 68px);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.2), transparent 21%),
    linear-gradient(135deg, #ff7900 0%, #ff6b00 100%);
  isolation: isolate;
}

.closing-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 8, 8, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.055) 1px, transparent 1px);
  background-size: clamp(72px, 8vw, 120px) clamp(72px, 8vw, 120px);
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 100%);
}

.closing-cta::after {
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -24vw;
  width: min(50vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(8, 8, 8, 0.025), 0 0 0 100px rgba(8, 8, 8, 0.018);
  content: "";
}

.closing-cta > .container {
  position: relative;
  z-index: 1;
}

.closing-cta__top {
  margin-bottom: clamp(24px, 2.6vw, 36px);
  align-items: center;
}

.closing-cta__top .section-kicker {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.closing-cta__top .section-kicker::before {
  background: var(--orange);
}

.closing-cta__badge {
  width: clamp(62px, 6vw, 84px);
  border: 0;
  background: var(--ink);
  color: var(--orange);
  box-shadow: 0 16px 36px rgba(8, 8, 8, 0.2);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  transform: none;
  transition: transform 420ms var(--ease), background 280ms ease, color 280ms ease;
}

.closing-cta:hover .closing-cta__badge {
  transform: rotate(45deg);
  background: #fff4e8;
  color: var(--ink);
}

.closing-cta .headline-xl {
  max-width: 1060px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.91;
}

.closing-cta .headline-xl em {
  position: relative;
  color: #fff4e8;
  font-weight: 500;
}

.closing-cta .headline-xl em::after {
  position: absolute;
  right: 0;
  bottom: 0.02em;
  left: 0;
  height: 0.045em;
  background: currentColor;
  content: "";
  transform: scaleX(0.82);
  transform-origin: left;
}

.closing-cta__bottom {
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: clamp(18px, 1.7vw, 23px);
  border-top-color: rgba(8, 8, 8, 0.3);
}

.closing-cta__bottom p {
  max-width: 430px;
  margin: 0;
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.closing-cta .button--dark {
  min-width: 180px;
  min-height: 50px;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.16);
}

/* Homepage system polish: shared rhythm, surfaces and interaction language. */
main > .section {
  padding-block: clamp(88px, 9.5vw, 148px);
}

main > .section .section-heading-row {
  margin-bottom: clamp(48px, 6vw, 82px);
}

main > .section .section-heading-row > .lede {
  max-width: 520px;
}

/* The capability rail acts as a crisp divider between showcase and story. */
.capability-strip {
  border-color: rgba(255, 121, 0, 0.24);
  background: #0b0b0b;
}

.capability-strip span {
  padding-block: 19px;
  color: rgba(255, 255, 255, 0.72);
}

.capability-strip span::after {
  box-shadow: 0 0 0 5px rgba(255, 121, 0, 0.1);
}

/* Intro manifesto. */
.capability-strip + .section--paper {
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 90%, rgba(255, 121, 0, 0.13), transparent 23%),
    #fff0e1;
}

.capability-strip + .section--paper::after {
  position: absolute;
  top: -0.3em;
  right: 1vw;
  color: rgba(8, 8, 8, 0.035);
  font-family: Georgia, serif;
  font-size: clamp(16rem, 34vw, 36rem);
  line-height: 1;
  content: "\201C";
  pointer-events: none;
}

.capability-strip + .section--paper .intro-grid {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 26px;
  background: rgba(255, 249, 242, 0.68);
  box-shadow: 0 28px 70px rgba(63, 31, 3, 0.07);
  gap: clamp(36px, 6vw, 90px);
}

.capability-strip + .section--paper .intro-grid__aside {
  position: static;
  display: flex;
  min-height: 360px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 19px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 121, 0, 0.25), transparent 38%),
    var(--ink);
  color: #fff;
}

.capability-strip + .section--paper .intro-grid__aside .meta-label {
  color: rgba(255, 255, 255, 0.56);
}

.capability-strip + .section--paper .intro-grid__body {
  padding: clamp(24px, 3vw, 48px) clamp(12px, 2vw, 28px) clamp(20px, 2vw, 34px) 0;
}

.capability-strip + .section--paper .intro-grid__body > p:first-child {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.04;
}

.capability-strip + .section--paper .intro-grid__note {
  padding-top: 24px;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

/* Work showcase. */
section[aria-labelledby="work-title"] {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 94% 6%, rgba(255, 121, 0, 0.16), transparent 25%),
    linear-gradient(145deg, transparent 56%, rgba(255, 121, 0, 0.035)),
    var(--ink);
}

section[aria-labelledby="work-title"]::before {
  position: absolute;
  top: -8%;
  right: -9vw;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 121, 0, 0.12);
  border-radius: 50%;
  content: "";
}

section[aria-labelledby="work-title"] .section-heading-row {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: clamp(28px, 3vw, 46px);
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.52fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 121, 0, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.18);
}

section[aria-labelledby="work-title"] .section-kicker {
  margin-bottom: 24px;
}

section[aria-labelledby="work-title"] .headline-lg {
  font-size: clamp(3rem, 5.1vw, 5.7rem);
}

.work-heading__note {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
}

section[aria-labelledby="work-title"] .section-heading-row .text-link {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  white-space: nowrap;
  transition: transform 300ms var(--ease), background 250ms ease;
}

section[aria-labelledby="work-title"] .section-heading-row .text-link:hover {
  transform: translateY(-3px);
  background: #fff;
}

.project-grid--editorial {
  position: relative;
  z-index: 1;
  gap: clamp(24px, 2.4vw, 38px);
}

.project-grid--editorial .project-card:nth-child(1) {
  grid-column: 1 / 13;
}

.project-grid--editorial .project-card:nth-child(2) {
  grid-column: 1 / 7;
}

.project-grid--editorial .project-card:nth-child(3) {
  grid-column: 7 / 13;
  margin-top: 0;
}

.project-grid--editorial .project-card:nth-child(1) .project-card__media {
  aspect-ratio: 16 / 8.4;
}

.project-grid--editorial .project-card:nth-child(2) .project-card__media,
.project-grid--editorial .project-card:nth-child(3) .project-card__media {
  aspect-ratio: 16 / 10;
}

.project-card > a {
  position: relative;
  display: block;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transition: transform 420ms var(--ease), border-color 300ms ease, box-shadow 420ms ease;
}

.project-card:hover > a {
  transform: translateY(-7px);
  border-color: rgba(255, 121, 0, 0.5);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.34);
}

.project-card > a::after {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  content: "\2197";
  font-size: 20px;
  opacity: 0;
  transform: translateY(8px) rotate(-20deg);
  transition: opacity 280ms ease, transform 420ms var(--ease), background 280ms ease;
}

.project-card:hover > a::after {
  opacity: 1;
  transform: translateY(0) rotate(0);
  background: var(--orange);
}

.project-card__media {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  box-shadow: none;
}

.project-card__body {
  margin-top: 0;
  padding: 24px 16px 14px;
}

.project-grid--editorial .project-card:nth-child(1) .project-card__body {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  left: 30px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(18px);
}

.project-grid--editorial .project-card:nth-child(1) .project-card__body h3 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.project-card__body h3 {
  transition: color 250ms ease;
}

.project-card:hover .project-card__body h3 {
  color: var(--orange);
}

/* Services become two clear capability panels. */
section[aria-labelledby="services-title"] {
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    #f5f0e8;
  background-size: 92px 92px;
}

section[aria-labelledby="services-title"] .section-heading-row {
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.15);
}

.service-groups {
  margin-top: 0;
  border: 0;
  gap: clamp(16px, 2vw, 28px);
}

.service-group,
.service-group + .service-group {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(49, 27, 6, 0.055);
}

.service-group:nth-child(2) {
  background: #fff0e1;
}

.service-group__title {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.13);
}

.service-row {
  min-height: 82px;
  padding: 18px 14px;
  border-bottom-color: rgba(8, 8, 8, 0.11);
  border-radius: 12px;
}

.service-row:hover {
  padding-left: 20px;
  border-bottom-color: transparent;
  background: var(--ink);
  color: #fff;
}

.service-row:hover .service-row__number {
  color: var(--orange);
}

/* Design + Growth bridge. */
.dual-engine {
  padding-block: clamp(86px, 9vw, 140px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 121, 0, 0.11), transparent 32%),
    #080808;
}

.dual-engine__head {
  gap: clamp(14px, 1.6vw, 24px);
}

.dual-engine__word {
  font-size: clamp(4.35rem, 10.7vw, 10.8rem);
}

.dual-engine__plus {
  border: 0;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(255, 121, 0, 0.08), 0 18px 45px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  transition: transform 500ms var(--ease);
}

.dual-engine:hover .dual-engine__plus {
  transform: rotate(180deg);
}

.dual-engine__body {
  margin-top: clamp(48px, 6vw, 82px);
}

/* Process cards. */
section[aria-labelledby="process-title"] {
  background:
    radial-gradient(circle at 2% 2%, rgba(255, 121, 0, 0.11), transparent 24%),
    #fff0e1;
}

.process-list {
  display: grid;
  margin-top: 0;
  border: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.process-item {
  position: relative;
  display: flex;
  min-height: 350px;
  padding: clamp(24px, 2.7vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.13);
  border-radius: 18px;
  flex-direction: column;
  background: rgba(255, 250, 244, 0.72);
  gap: 0;
  transition: transform 380ms var(--ease), background 280ms ease, color 280ms ease, box-shadow 380ms ease;
}

.process-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: var(--orange);
  content: "";
  transition: transform 420ms var(--ease);
}

.process-item:hover {
  transform: translateY(-8px);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 26px 55px rgba(48, 25, 3, 0.16);
}

.process-item:hover::before {
  transform: scaleX(1);
}

.process-item__number {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
}

.process-item h3 {
  margin: auto 0 22px;
}

.process-item p {
  padding-top: 18px;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

.process-item:hover p {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

/* FAQ gets clearer tappable rows and a sticky visual anchor. */
section[aria-labelledby="faq-title"] {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 14%, rgba(255, 121, 0, 0.13), transparent 24%),
    var(--ink);
}

section[aria-labelledby="faq-title"] .faq-layout > div:first-child {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
}

section[aria-labelledby="faq-title"] .faq-list {
  display: grid;
  border: 0;
  gap: 12px;
}

section[aria-labelledby="faq-title"] .faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 250ms ease, background 250ms ease;
}

section[aria-labelledby="faq-title"] .faq-item:hover,
section[aria-labelledby="faq-title"] .faq-item[open] {
  border-color: rgba(255, 121, 0, 0.65);
  background: rgba(255, 121, 0, 0.07);
}

section[aria-labelledby="faq-title"] .faq-item summary {
  padding: 24px 70px 24px 24px;
}

section[aria-labelledby="faq-title"] .faq-item summary::before,
section[aria-labelledby="faq-title"] .faq-item summary::after {
  right: 25px;
}

section[aria-labelledby="faq-title"] .faq-item__answer {
  max-width: 700px;
  padding: 0 70px 25px 24px;
}

.logo-wall {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 9vw, 142px) clamp(76px, 8vw, 128px);
  border-top: 1px solid var(--paper-line);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 121, 0, 0.1), transparent 25%),
    #fff0e1;
  color: var(--ink);
  isolation: isolate;
}

.logo-wall::before {
  position: absolute;
  z-index: -1;
  top: -42%;
  left: 7%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: 50%;
  content: "";
}

.logo-wall__header {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 88px);
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(42px, 7vw, 110px);
}

.logo-wall__header > div:first-child .section-kicker {
  display: flex;
  width: max-content;
}

.logo-wall__header > div:first-child .meta-label {
  display: block;
}

.logo-wall__headline {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 25px clamp(28px, 4vw, 64px);
}

.logo-wall__headline h2 {
  grid-column: 1 / -1;
}

.logo-wall__headline p {
  max-width: 620px;
  margin: 0;
  color: rgba(8, 8, 8, 0.64);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.logo-wall__lanes {
  overflow: hidden;
  background: #fff0e1;
}

.logo-lane {
  position: relative;
  overflow: hidden;
}

.logo-lane__track {
  display: block;
  width: 100%;
}

.logo-lane__group {
  display: grid;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 128px;
  padding: 18px;
  place-items: center;
  overflow: hidden;
  background: #fff0e1;
}

.logo-card > span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.logo-card small {
  font-size: 0.47em;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.logo-wall.is-enhanced .logo-lane {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.logo-wall.is-enhanced .logo-lane__track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: logo-wall-marquee var(--logo-duration, 44s) linear infinite;
  animation-play-state: paused;
}

.logo-wall.is-enhanced .logo-lane:nth-child(1) .logo-lane__track {
  --logo-duration: 42s;
  animation-delay: -11s;
}

.logo-wall.is-enhanced .logo-lane:nth-child(2) .logo-lane__track {
  --logo-duration: 48s;
  animation-delay: -28s;
  animation-direction: reverse;
}

.logo-wall.is-enhanced .logo-lane:nth-child(3) .logo-lane__track {
  --logo-duration: 45s;
  animation-delay: -19s;
}

.logo-wall.is-enhanced .logo-lane__group {
  --logo-cell: clamp(210px, 17vw, 274px);
  width: auto;
  flex: 0 0 auto;
  grid-template-columns: repeat(6, var(--logo-cell));
}

.logo-wall.is-enhanced.is-active .logo-lane__track {
  animation-play-state: running;
  will-change: transform;
}

.logo-wall.is-enhanced.is-active.is-document-hidden .logo-lane__track {
  animation-play-state: paused;
  will-change: auto;
}

@keyframes logo-wall-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Compact CSS-rendered wordmarks keep the wall sharp on every screen. */
.logo-card--motley > span {
  font-size: clamp(0.82rem, 1.2vw, 1.08rem);
  letter-spacing: -0.03em;
}

.motley-mark {
  position: relative;
  width: 28px;
  height: 14px;
  border-radius: 18px 18px 4px 4px;
  background: #ea188b;
}

.motley-mark::before,
.motley-mark::after {
  position: absolute;
  bottom: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5b2d7;
  content: "";
}

.motley-mark::before { left: 3px; }
.motley-mark::after { right: 3px; }

.logo-card--daxtra b {
  color: #43ad58;
  font-size: 1.2em;
  font-weight: 500;
}

.logo-card--arrive > span {
  color: #eb1d56;
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.09em;
}

.river-mark,
.ondeck-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 19px;
  font-style: normal;
}

.logo-card--river > span {
  font-weight: 800;
}

.logo-card--grameen > span {
  font-size: clamp(0.64rem, 0.92vw, 0.84rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.grameen-mark {
  position: relative;
  width: 36px;
  height: 28px;
  transform: rotate(-12deg);
}

.grameen-mark::before,
.grameen-mark::after {
  position: absolute;
  width: 22px;
  height: 10px;
  border-radius: 100% 0 100% 0;
  background: #13a8df;
  content: "";
}

.grameen-mark::before { top: 2px; left: 1px; transform: rotate(24deg); }
.grameen-mark::after { right: 0; bottom: 3px; transform: rotate(204deg); }

.logo-card--tamara > span {
  padding: 8px 13px;
  border-radius: 9px;
  background: linear-gradient(100deg, #fee7a8, #f9b5bd 70%, #d7d4f7);
  font-size: clamp(1rem, 1.45vw, 1.4rem);
  font-weight: 800;
}

.logo-card--visa > span {
  color: #16549f;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-style: italic;
  font-weight: 850;
}

.qatar-mark {
  display: inline-flex;
  width: 42px;
  flex-wrap: wrap;
  gap: 3px;
}

.qatar-mark i {
  display: block;
  width: 15px;
  height: 12px;
  transform: rotate(45deg);
  border-radius: 3px;
  background: #43bff0;
}

.qatar-mark i:nth-child(2) { background: #ed4b6d; }
.qatar-mark i:nth-child(3) { margin-left: 10px; background: #f1c545; }

.logo-card--panther > span {
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
  font-weight: 750;
}

.panther-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: rotate(-8deg);
  border-radius: 48% 52% 45% 55%;
  background: #16a5c8;
  color: #fff;
  font-size: 15px;
}

.logo-card--docshipper > span {
  display: grid;
  color: #172b48;
  font-size: clamp(0.96rem, 1.35vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.logo-card--docshipper > span > span { color: #3073ac; }
.logo-card--docshipper small { display: block; margin-top: 4px; color: #aa4860; font-size: 0.38em; letter-spacing: 0.08em; }

.logo-card--ondeck > span {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: -0.04em;
}

.ondeck-mark {
  border: 2px solid #111;
  background: transparent;
  color: #111;
  font-size: 15px;
}

.logo-card--microsoft > span {
  color: #696969;
  font-size: clamp(0.9rem, 1.25vw, 1.18rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.microsoft-mark {
  display: grid;
  width: 29px;
  height: 29px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.microsoft-mark i:nth-child(1) { background: #f25022; }
.microsoft-mark i:nth-child(2) { background: #7fba00; }
.microsoft-mark i:nth-child(3) { background: #00a4ef; }
.microsoft-mark i:nth-child(4) { background: #ffb900; }

.logo-card--telenor > span {
  color: #5f8290;
  font-weight: 350;
}

.telenor-mark {
  position: relative;
  display: block;
  width: 40px;
  height: 38px;
}

.telenor-mark i {
  position: absolute;
  width: 24px;
  height: 11px;
  border-radius: 100% 0 100% 0;
  background: #28b9ee;
}

.telenor-mark i:nth-child(1) { top: 1px; left: 8px; transform: rotate(-48deg); }
.telenor-mark i:nth-child(2) { right: 0; bottom: 8px; transform: rotate(72deg); }
.telenor-mark i:nth-child(3) { bottom: 4px; left: 0; transform: rotate(188deg); }

.logo-card--prime > span {
  display: grid;
  color: #08a8cf;
  text-align: center;
}

.logo-card--prime b { font-style: italic; letter-spacing: -0.08em; }
.logo-card--prime small { color: #2494bd; font-size: 0.4em; }

.cyber-mark {
  width: 38px;
  aspect-ratio: 1;
  border: 5px double #165ed2;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #19c7d0;
}

.logo-card--cyber > span { gap: 11px; }
.logo-card--cyber small { color: #565656; font-size: 0.42em; }

.logo-card--ministry > span {
  color: #2b8d72;
  gap: 10px;
  text-align: center;
}

.ministry-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #c2a64b;
  border-radius: 50%;
  color: #c2a64b;
  font-size: 21px;
}

.logo-card--ministry small { font-size: 0.37em; }
.logo-card--ministry small span { color: #32947a; font-size: 1.45em; }

.raqamyah-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  transform: rotate(45deg);
  border-radius: 8px 2px 8px 2px;
  background: #04a792;
  color: #fff;
  font-size: 17px;
}

.raqamyah-mark::first-letter { transform: rotate(-45deg); }
.logo-card--raqamyah small { color: #127e78; font-size: 0.48em; }

.logo-card--cts > span {
  color: #075692;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.cts-mark {
  width: 29px;
  aspect-ratio: 1;
  border: 4px dotted #25b99a;
  border-radius: 50%;
}

@media (max-width: 1100px) {
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: 1 / -1;
  }

  .signal--brand {
    --signal-opacity: 1;
    top: 50%;
    right: -7vw;
    width: clamp(400px, 46vw, 540px);
  }

  .logo-wall__header {
    grid-template-columns: minmax(155px, 0.48fr) minmax(0, 1.52fr);
  }

  .logo-wall.is-enhanced .logo-lane__group {
    --logo-cell: clamp(190px, 23vw, 245px);
  }
}

@media (max-width: 820px) {
  main > .section {
    padding-block: clamp(78px, 12vw, 104px);
  }

  section[aria-labelledby="work-title"] .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  section[aria-labelledby="work-title"] .section-heading-row .text-link {
    width: max-content;
  }

  .work-heading__note {
    max-width: 580px;
  }

  .project-grid--editorial {
    grid-template-columns: 1fr;
  }

  .project-grid--editorial .project-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .project-grid--editorial .project-card:nth-child(1) .project-card__media,
  .project-grid--editorial .project-card:nth-child(2) .project-card__media,
  .project-grid--editorial .project-card:nth-child(3) .project-card__media {
    aspect-ratio: 16 / 10;
  }

  .project-grid--editorial .project-card:nth-child(1) .project-card__body {
    position: static;
    padding: 24px 16px 14px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .capability-strip + .section--paper .intro-grid {
    padding: 16px;
    gap: 12px;
  }

  .capability-strip + .section--paper .intro-grid__aside {
    min-height: 240px;
  }

  .capability-strip + .section--paper .intro-grid__body {
    padding: 28px 18px 24px;
  }

  .service-group,
  .service-group + .service-group {
    padding: 24px;
  }

  section[aria-labelledby="faq-title"] .faq-layout > div:first-child {
    position: static;
  }

  section[aria-labelledby="principles-title"]::before {
    top: 80px;
    right: -50px;
    width: 170px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: auto;
  }

  .principle {
    min-height: 350px;
  }

  .principle h3 {
    max-width: 15em;
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  section[aria-labelledby="insights-title"]::before {
    top: 2%;
    right: -24vw;
    width: 72vw;
  }

  .insight-grid {
    gap: 16px;
  }

  .insight-card {
    min-height: 340px;
    border-radius: 16px;
  }

  .insight-card h3 {
    max-width: 15em;
    font-size: clamp(1.8rem, 5.5vw, 2.65rem);
  }

  .insight-card::after {
    font-size: clamp(10rem, 34vw, 14rem);
  }

  .signal--brand {
    --signal-opacity: 1;
    position: relative;
    top: auto;
    right: auto;
    width: min(64vw, 390px);
    margin: 34px auto 0;
    transform: none;
  }

  .logo-wall {
    padding-block: 78px;
  }

  .logo-wall__header {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .logo-wall__headline {
    max-width: 680px;
  }

  .logo-lane__group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-wall.is-enhanced .logo-lane__group {
    --logo-cell: clamp(180px, 30vw, 230px);
  }

  .logo-wall.is-enhanced .logo-lane {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  }
}

@media (max-width: 560px) {
  main > .section {
    padding-block: 72px;
  }

  main > .section .section-heading-row {
    margin-bottom: 40px;
  }

  section[aria-labelledby="work-title"] .section-heading-row {
    margin-bottom: 18px;
    padding: 23px;
    border-radius: 18px;
    gap: 20px;
  }

  section[aria-labelledby="work-title"] .section-kicker {
    margin-bottom: 19px;
  }

  section[aria-labelledby="work-title"] .headline-lg {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  section[aria-labelledby="work-title"] .section-heading-row .text-link {
    min-height: 50px;
  }

  .project-grid--editorial {
    gap: 18px;
  }

  .project-card > a {
    padding: 7px;
    border-radius: 18px;
  }

  .project-card:hover > a {
    transform: translateY(-3px);
  }

  .project-card__body,
  .project-grid--editorial .project-card:nth-child(1) .project-card__body {
    padding: 20px 12px 12px;
  }

  .capability-strip span {
    padding: 16px 22px;
  }

  .capability-strip + .section--paper .intro-grid {
    border-radius: 18px;
  }

  .capability-strip + .section--paper .intro-grid__aside {
    min-height: 205px;
    border-radius: 13px;
  }

  .capability-strip + .section--paper .intro-grid__body {
    padding: 24px 8px 18px;
  }

  .project-card__media {
    border-radius: 15px;
  }

  .project-card > a::after {
    top: 16px;
    right: 16px;
    width: 44px;
    opacity: 1;
    transform: none;
  }

  .service-group,
  .service-group + .service-group {
    padding: 19px;
    border-radius: 15px;
  }

  .service-row {
    min-height: 68px;
    padding-inline: 6px;
  }

  .dual-engine {
    padding-block: 76px;
  }

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

  .process-item {
    min-height: 290px;
    border-radius: 15px;
  }

  section[aria-labelledby="faq-title"] .faq-layout > div:first-child {
    padding: 25px;
    border-radius: 15px;
  }

  section[aria-labelledby="faq-title"] .faq-item summary {
    padding: 21px 58px 21px 19px;
  }

  section[aria-labelledby="faq-title"] .faq-item summary::before,
  section[aria-labelledby="faq-title"] .faq-item summary::after {
    right: 20px;
  }

  section[aria-labelledby="faq-title"] .faq-item__answer {
    padding: 0 24px 22px 19px;
  }

  .closing-cta {
    padding-block: 42px;
  }

  .closing-cta__top {
    margin-bottom: 26px;
    align-items: center;
    flex-direction: row;
  }

  .closing-cta__top .section-kicker {
    max-width: 210px;
    padding: 9px 12px;
  }

  .closing-cta__badge {
    width: 56px;
    flex: 0 0 56px;
  }

  .closing-cta .headline-xl {
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
  }

  .closing-cta__bottom {
    margin-top: 25px;
    gap: 22px;
  }

  .closing-cta .button--dark {
    width: 100%;
  }

  .principle {
    min-height: 320px;
    border-radius: 15px;
  }

  .principle:hover {
    transform: translateY(-4px);
  }

  .principle h3 {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }

  .principle p {
    padding-top: 16px;
  }

  section[aria-labelledby="insights-title"] .section-heading-row {
    padding-bottom: 28px;
  }

  .insight-card {
    min-height: 320px;
    border-radius: 14px;
  }

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

  .insight-card__index {
    width: 44px;
    height: 44px;
  }

  .insight-card h3 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 8.2vw, 2.25rem);
  }

  .insight-card p {
    padding-top: 16px;
  }

  .signal--brand {
    --signal-opacity: 1;
    width: min(74vw, 280px);
    margin-top: 28px;
  }

  .hero .display {
    font-size: clamp(2.5rem, 10.5vw, 3.15rem);
    line-height: 0.94;
  }

  .logo-wall {
    padding-block: 68px;
  }

  .logo-wall::before {
    top: -8%;
    left: 48%;
    width: 88vw;
  }

  .logo-wall__header {
    margin-bottom: 42px;
    gap: 26px;
  }

  .logo-wall__headline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-wall__headline h2 {
    grid-column: auto;
  }

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

  .logo-card {
    min-height: 100px;
    padding: 14px;
  }

  .logo-wall.is-enhanced .logo-lane__group {
    --logo-cell: clamp(160px, 47vw, 184px);
  }

  .logo-card > span {
    transform: scale(0.92);
  }
}

@media (max-width: 360px) {
  .signal--brand {
    width: 238px;
  }

  .logo-wall.is-enhanced .logo-lane__group {
    --logo-cell: 158px;
  }

  .logo-card {
    min-height: 94px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .closing-cta__badge {
    transition: none;
  }

  .closing-cta:hover .closing-cta__badge {
    transform: none;
  }

  .signal__brand-plane {
    transform: none;
    animation: none !important;
    will-change: auto;
  }

  .signal__brand-plane::before {
    display: none;
  }

  .logo-lane__group--clone {
    display: none !important;
  }

  .logo-wall.is-enhanced .logo-lane {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-wall.is-enhanced .logo-lane__track {
    display: block;
    width: 100%;
    transform: none;
    animation: none !important;
  }

  .logo-wall.is-enhanced .logo-lane__group {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 820px) {
  .logo-wall.is-enhanced .logo-lane__group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 560px) {
  .logo-wall.is-enhanced .logo-lane__group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
