@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-primary: #044ab3;
  --page-bg: #fff;
  --surface-base: #fff;
  --surface-subtle: #f5f5f7;
  --surface-hover: #f3f3f3;
  --surface-elevated: #fff;
  --neutral-0: #fff;
  --neutral-100: #000;
  --neutral-70: rgba(0, 0, 0, 0.7);
  --neutral-60: rgba(0, 0, 0, 0.6);
  --neutral-50: rgba(0, 0, 0, 0.5);
  --neutral-35: rgba(0, 0, 0, 0.35);
  --line-soft: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.14);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  --font-h1: 56px;
  --font-h2: 48px;
  --font-h3: 32px;
  --font-h4: 22px;
  --font-body-l: 18px;
  --font-body-m: 16px;
  --font-body-s: 14px;
  --font-btn-l: 16px;
  --font-btn-s: 14px;
  --font-tag: 12px;

  --lh-h1: 1.1;
  --lh-h2: 1.1;
  --lh-h3: 1.2;
  --lh-h4: 1.3;
  --lh-body-l: 1.6;
  --lh-body-m: 1.5;
  --lh-body-s: 1.6;
  --lh-btn-l: 1.6;
  --lh-btn-s: 1.4;
  --lh-tag: 1.6;
  --ls-heading: -0.02em;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 56px;
  --space-9: 64px;
  --space-10: 72px;
  --space-11: 80px;
  --space-12: 96px;
  --space-13: 120px;
  --section-gap-md: 64px;
  --section-gap-lg: 128px;
  --site-max-width: 1520px;
  --desktop-power-line: 760px;
  --desktop-power-line-title: 652px;
}

html {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
  background: var(--page-bg);
  color: var(--neutral-100);
  font-family: "Suisse Intl", Arial, Helvetica, sans-serif;
  transition: background-color 320ms var(--ease-soft), color 320ms var(--ease-soft);
}

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

.site-header {
  width: 100%;
  height: 77px;
  padding: 0 40px;
  background: var(--surface-base);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  animation: header-enter 900ms var(--ease-out-expo) both;
}

.header-inner {
  width: 100%;
  max-width: 1600px;
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo {
  width: 155px;
  flex: 0 0 155px;
  --reveal-line-height: 1.2;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.48px;
  white-space: nowrap;
  transition: opacity 320ms var(--ease-soft);
}

.logo .line-reveal {
  display: block;
  height: 1em;
}

.logo .line-inner {
  transition: transform 420ms var(--ease-soft);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.theme-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition:
    color 320ms var(--ease-soft),
    transform 420ms var(--ease-soft),
    opacity 320ms var(--ease-soft);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--brand-primary);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 420ms var(--ease-soft);
}

html[data-theme="dark"] .theme-toggle {
  color: #fff;
}

html[data-theme="dark"] .theme-toggle svg {
  transform: scaleX(-1);
}

.main-nav {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.main-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  background: transparent;
  color: var(--neutral-70);
  font-size: var(--font-body-s);
  font-weight: 400;
  line-height: var(--lh-body-s);
  white-space: nowrap;
  transition:
    opacity 320ms var(--ease-soft),
    color 320ms var(--ease-soft),
    background-color 420ms var(--ease-soft);
}

.main-nav .nav-link .line-reveal {
  --reveal-line-height: 1.6;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  background: var(--surface-hover);
  color: var(--neutral-100);
}

.site-header .main-nav,
.site-header .menu-button,
.site-header .mobile-menu {
  display: none;
}

.header-cta {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 4px 4px 16px;
  background: var(--brand-primary);
  border-radius: 7px;
  color: #fff;
  font-size: var(--font-btn-s);
  font-weight: 500;
  line-height: var(--lh-btn-s);
  white-space: nowrap;
  transition: transform 420ms var(--ease-soft), background-color 420ms var(--ease-soft);
}

.button-text {
  --reveal-line-height: 1.4;
}

.cta-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.cta-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 620ms var(--ease-soft), opacity 620ms var(--ease-soft);
  z-index: 2;
}

.cta-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url("assets/arrow-up-right.svg") center / contain no-repeat;
  transform: translate(calc(-50% - 24px), calc(-50% + 24px)) scale(0.85);
  opacity: 0;
  transition: transform 620ms var(--ease-soft), opacity 620ms var(--ease-soft);
  z-index: 1;
}

.line-reveal {
  position: relative;
  display: inline-flex;
  height: calc(1em * var(--reveal-line-height, 1.4));
  line-height: inherit;
  overflow: hidden;
  vertical-align: top;
}

.line-inner {
  position: relative;
  display: block;
  line-height: inherit;
  transform: translateY(0);
  transition: transform 950ms var(--ease-out-expo);
  will-change: transform;
}

.line-inner::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  white-space: nowrap;
}

.site-header:has(.main-nav .line-reveal:hover) .main-nav .line-reveal {
  opacity: 0.65;
}

.site-header:has(.main-nav .line-reveal:hover) .main-nav .line-reveal:hover,
.site-header:has(.main-nav .line-reveal:focus-visible) .main-nav .line-reveal:focus-visible {
  opacity: 1;
}

.line-reveal:hover .line-inner,
.line-reveal:focus-visible .line-inner,
.header-cta:hover .button-text .line-inner,
.header-cta:focus-visible .button-text .line-inner,
.nav-link:hover .line-inner,
.nav-link:focus-visible .line-inner,
.hero-secondary:hover .line-inner,
.hero-secondary:focus-visible .line-inner {
  transform: translateY(-100%);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.header-cta:hover .cta-icon img,
.header-cta:focus-visible .cta-icon img {
  transform: translate(calc(-50% + 24px), calc(-50% - 24px)) scale(0.85);
  opacity: 0;
}

.header-cta:hover .cta-icon::after,
.header-cta:focus-visible .cta-icon::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-9) var(--space-6);
}

.hero-copy {
  width: 513px;
  flex: 0 0 513px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-title-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-tag {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--brand-primary);
  font-size: var(--font-tag);
  font-weight: 500;
  line-height: var(--lh-tag);
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.tag-cube {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--brand-primary);
  animation: tag-flicker 1.2s ease-in-out infinite;
}

.hero-kicker {
  margin: 0;
}

.hero-display {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h1);
  font-weight: 500;
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-heading);
}

.hero-description {
  width: 499px;
  margin: 0;
  color: var(--neutral-70);
  font-size: var(--font-body-l);
  font-weight: 400;
  line-height: var(--lh-body-l);
  letter-spacing: -0.36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-cta,
.hero-secondary {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: var(--font-btn-l);
  font-weight: 500;
  line-height: var(--lh-btn-l);
  white-space: nowrap;
  transition:
    transform 420ms var(--ease-soft),
    background-color 420ms var(--ease-soft),
    border-color 420ms var(--ease-soft);
}

.hero-cta {
  gap: 10px;
  padding: 4px 4px 4px 16px;
  background: var(--brand-primary);
  color: #fff;
}

.hero-secondary {
  padding: 9px 24px;
  border: 1px solid rgba(4, 74, 179, 0.3);
  color: var(--brand-primary);
}

.hero-cta .cta-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.hero-cta:hover,
.hero-cta:focus-visible,
.hero-secondary:hover,
.hero-secondary:focus-visible {
  transform: translateY(-1px);
}

.hero-secondary:hover,
.hero-secondary:focus-visible {
  background: var(--neutral-100);
  border-color: transparent;
  color: #fff;
}

.hero-cta:hover .cta-icon img,
.hero-cta:focus-visible .cta-icon img {
  transform: translate(calc(-50% + 24px), calc(-50% - 24px)) scale(0.85);
  opacity: 0;
}

.hero-cta:hover .cta-icon::after,
.hero-cta:focus-visible .cta-icon::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hero-visual {
  position: relative;
  width: 672px;
  height: 620px;
  flex: 0 0 672px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

html.hero-intro-ready .hero-intro-item {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  will-change: opacity, transform;
}

html.hero-intro-run .hero-intro-item {
  animation: hero-content-enter 1250ms var(--ease-out-expo) both;
}

html.hero-intro-run .hero-title-block .section-tag {
  animation-delay: 120ms;
}

html.hero-intro-run .hero-title-block .hero-display {
  animation-delay: 240ms;
}

html.hero-intro-run .hero-description {
  animation-delay: 430ms;
}

html.hero-intro-run .hero-actions {
  animation-delay: 580ms;
}

html.hero-intro-ready .hero-visual {
  transform: translate3d(0, 54px, 0) scale(0.972);
}

html.hero-intro-run .hero-visual {
  animation: hero-media-enter 1350ms var(--ease-out-expo) 330ms both;
}

.logos-section {
  position: relative;
  width: calc(100% - 80px);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line-soft);
}

.logos-caption {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--neutral-60);
  font-size: var(--font-body-s);
  font-weight: 400;
  line-height: var(--lh-body-s);
  text-align: center;
  white-space: nowrap;
}

.logos-caption::before,
.logos-caption::after {
  content: "";
  height: 1px;
  background: var(--line-soft);
}

.logos-row {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 2.5vw, 40px);
}

.client-logo {
  flex: 0 0 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: clamp(128px, 11vw, 158px);
  height: 30px;
  display: block;
  object-fit: contain;
}

.client-logo-duplicate {
  display: none;
}

.why-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 88px var(--space-6) 92px;
}

.why-heading {
  width: min(100%, 620px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-tag {
  width: auto;
  justify-content: center;
  margin-bottom: 17px;
}

.why-heading h2 {
  max-width: 640px;
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h2);
  font-weight: 500;
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-heading);
}

.why-heading p {
  max-width: 624px;
  margin: 18px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-l);
  font-weight: 400;
  line-height: var(--lh-body-l);
}

.why-grid {
  width: 100%;
  margin: var(--space-10) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.why-card {
  min-width: 0;
}

.why-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.365 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-subtle);
}

.why-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-card h3 {
  margin: 24px 0 0;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  font-weight: 500;
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
}

.why-card p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  font-weight: 400;
  line-height: var(--lh-body-m);
}

.deliver-section {
  width: calc(100% - 80px);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 0 var(--space-12);
}

.deliver-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: calc(var(--section-gap-lg) - 1px);
  background: var(--line-soft);
}

.deliver-heading {
  max-width: 860px;
}

.deliver-tag {
  width: auto;
  margin-bottom: 16px;
}

.deliver-heading h2 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h3);
  font-weight: 500;
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-heading);
}

.deliver-list {
  margin-top: var(--section-gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.deliver-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 36px clamp(320px, 39vw, 548px) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  row-gap: 12px;
  padding: 28px var(--space-5);
  background: var(--surface-subtle);
  border-radius: 8px;
}

.deliver-index {
  color: rgba(0, 0, 0, 0.45);
  font-size: var(--font-h4);
  font-weight: 400;
  line-height: var(--lh-h4);
}

.deliver-row h3 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  font-weight: 500;
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
}

.deliver-row p {
  width: 100%;
  max-width: 520px;
  margin: 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  font-weight: 400;
  line-height: var(--lh-body-m);
}

.deliver-link {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-left: 10px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  color: var(--brand-primary);
  font-size: var(--font-btn-s);
  font-weight: 500;
  line-height: var(--lh-btn-s);
  white-space: nowrap;
}

.deliver-link:hover .line-inner,
.deliver-link:focus-visible .line-inner {
  transform: translateY(-100%);
}

.mini-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--brand-primary);
  overflow: hidden;
}

.mini-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  display: block;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%);
  transition: transform 620ms var(--ease-soft), opacity 620ms var(--ease-soft);
}

.mini-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  background: url("assets/arrow-up-right.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translate(calc(-50% - 18px), calc(-50% + 18px)) scale(0.85);
  transition: transform 620ms var(--ease-soft), opacity 620ms var(--ease-soft);
}

.deliver-link:hover .mini-icon img,
.deliver-link:focus-visible .mini-icon img {
  opacity: 0;
  transform: translate(calc(-50% + 18px), calc(-50% - 18px)) scale(0.85);
}

.deliver-link:hover .mini-icon::after,
.deliver-link:focus-visible .mini-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 1280px) {
  .hero-section {
    width: calc(100% - 80px);
    max-width: var(--site-max-width);
    display: grid;
    grid-template-columns: minmax(0, var(--desktop-power-line)) minmax(0, 1fr);
    column-gap: 0;
    padding: var(--space-9) 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 513px;
    flex: none;
  }

  .hero-description {
    width: 100%;
    max-width: 499px;
  }

  .hero-visual {
    flex: none;
    justify-self: end;
  }

  .deliver-row {
    grid-template-columns: 36px var(--desktop-power-line-title) minmax(280px, 1fr) auto;
  }

  .process-section {
    grid-template-columns: minmax(0, var(--desktop-power-line)) minmax(0, 1fr);
    column-gap: 0;
  }

  .process-visual {
    max-width: 672px;
    justify-self: end;
  }

  .faq-section {
    grid-template-columns: minmax(0, var(--desktop-power-line)) minmax(0, 1fr);
    column-gap: 0;
  }
}

@media (min-width: 1440px) {
  .deliver-row {
    grid-template-columns: 36px var(--desktop-power-line-title) 388px minmax(0, 1fr) auto;
  }

  .deliver-row p {
    max-width: 388px;
  }

  .deliver-link {
    grid-column: 5;
  }
}

.outcomes-section,
.process-section,
.cases-section,
.proof-section,
.faq-section {
  width: calc(100% - 80px);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}

.outcomes-section {
  padding: calc(var(--section-gap-md) - 1px) 0 var(--space-11);
}

.process-section {
  padding: var(--section-gap-md) 0;
  border-top: 0;
}

.proof-section {
  padding: var(--section-gap-lg) 0 88px;
}

.cases-section,
.faq-section {
  padding-top: calc(var(--section-gap-lg) - 1px);
}

.cases-section {
  padding-top: var(--section-gap-lg);
  border-top: 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
}

.center-heading {
  align-items: center;
  text-align: center;
}

.compact-tag {
  width: fit-content;
  justify-content: center;
  margin-bottom: 16px;
}

.section-heading h2,
.proof-section h2,
.faq-section h2,
.process-copy h2 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h2);
  font-weight: 500;
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-heading);
}

.outcomes-section .section-heading h2,
.proof-section h2,
.process-copy h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
}

.section-heading p,
.process-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  font-weight: 400;
  line-height: var(--lh-body-m);
}

.outcomes-section .section-heading p {
  max-width: 620px;
  margin-top: 30px;
  font-size: var(--font-body-l);
  line-height: var(--lh-body-l);
}

.outcomes-grid,
.cases-grid,
.metrics-grid {
  margin-top: var(--section-gap-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.outcome-card {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-5);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-elevated);
}

.outcome-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 132px;
  height: 1px;
  background: var(--line-soft);
}

.outcome-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.outcome-card h3 {
  margin: 0;
  font-size: var(--font-h4);
  font-weight: 500;
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
}

.outcome-card p,
.case-card h3,
.metrics-grid p {
  margin: 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  font-weight: 400;
  line-height: var(--lh-body-m);
}

.dark-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--neutral-100);
  color: #fff;
  font-size: var(--font-body-m);
  line-height: 1;
}

.dark-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(640px, 1fr);
  align-items: center;
  gap: var(--space-11);
}

.process-copy h2 {
  max-width: 500px;
}

.process-copy .compact-tag {
  margin-bottom: 22px;
}

.process-copy p {
  max-width: 500px;
  margin-top: 36px;
  font-size: var(--font-body-l);
  line-height: var(--lh-body-l);
}

.process-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 14px;
  border-radius: 7px;
  background: var(--brand-primary);
  color: #fff;
  font-size: var(--font-btn-l);
  font-weight: 500;
  line-height: var(--lh-btn-l);
  transition:
    transform 420ms var(--ease-soft),
    background-color 420ms var(--ease-soft);
}

.hero-cta,
.hero-secondary,
.header-cta,
.mobile-cta,
.process-link,
.final-cta-button,
.project-submit {
  cursor: pointer;
}

.process-link:hover,
.process-link:focus-visible {
  background: var(--neutral-100);
  transform: translateY(-1px);
}

.process-link:hover .line-inner,
.process-link:focus-visible .line-inner {
  transform: translateY(-100%);
}

.process-link .mini-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  background: #fff;
}

.process-link .mini-icon img,
.process-link .mini-icon::after {
  width: 20px;
  height: 20px;
  filter: none;
}

.process-link:hover .mini-icon img,
.process-link:focus-visible .mini-icon img {
  opacity: 0;
  transform: translate(calc(-50% + 24px), calc(-50% - 24px)) scale(0.85);
}

.process-link:hover .mini-icon::after,
.process-link:focus-visible .mini-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.process-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 0.95 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-subtle);
}

.process-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.performance-card,
.activity-card {
  position: relative;
  display: none;
}

.perf-header {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-body-s);
  font-weight: 500;
}

.perf-header small {
  color: rgba(0, 0, 0, 0.45);
  font-size: var(--font-tag);
  font-weight: 400;
}

.bar-chart {
  height: 150px;
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.bar-chart span {
  width: 38px;
  border-radius: 8px 8px 0 0;
  background: #d8d0ff;
}

.bar-chart span:nth-child(1) { height: 44%; }
.bar-chart span:nth-child(2) { height: 62%; background: #b6a9ff; }
.bar-chart span:nth-child(3) { height: 88%; background: var(--brand-primary); }
.bar-chart span:nth-child(4) { height: 52%; }

.avatar-line {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.avatar-line i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b089, #6c4b36);
}

.activity-lines {
  height: 118px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity-lines span {
  width: 2px;
  height: 72px;
  background: rgba(0, 0, 0, 0.35);
}

.activity-lines span:nth-child(even) {
  height: 42px;
}

.case-media {
  --case-x: 50%;
  --case-y: 50%;
  position: relative;
  aspect-ratio: 1.18 / 1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-subtle);
  cursor: pointer;
}

.case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 720ms var(--ease-out-expo);
}

.case-media::after {
  content: "View\A case";
  position: absolute;
  left: var(--case-x);
  top: var(--case-y);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: var(--font-btn-l);
  font-weight: 500;
  line-height: var(--lh-btn-l);
  text-align: center;
  white-space: pre-line;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition:
    opacity 420ms var(--ease-soft),
    transform 520ms var(--ease-out-expo);
  pointer-events: none;
}

.case-card:focus-within .case-media img,
.case-media:hover img,
.case-media.is-case-hover img {
  transform: scale(1.025);
}

.case-card:focus-within .case-media::after,
.case-media:hover::after,
.case-media.is-case-hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cases-section .section-heading h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
}

.cases-section .cases-grid {
  margin-top: 64px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 64px 16px;
}

.case-card {
  min-width: 0;
}

.case-card--small {
  grid-column: span 4;
}

.case-card--large {
  grid-column: span 8;
}

.case-card--large .case-media {
  aspect-ratio: 1744 / 1280;
}

.case-card-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  align-items: start;
  gap: 24px;
}

.case-card h3 {
  margin: 28px 0 0;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  font-weight: 500;
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
}

.case-card-row h3 {
  max-width: 500px;
  margin: 0;
}

.case-card p {
  max-width: 420px;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8px;
}

.case-card-row p {
  max-width: 420px;
  margin: 0;
  justify-content: flex-end;
}

.case-card span {
  width: fit-content;
  padding: 4px 9px;
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  color: var(--brand-primary);
  font-size: var(--font-tag);
  font-weight: 500;
  line-height: var(--lh-tag);
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.case-card span:nth-child(4) {
  grid-column: 1 / -1;
}

.proof-section h2 {
  max-width: 680px;
  margin-top: 24px;
}

.metrics-grid article {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.metrics-grid article::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 132px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.metric-arrows {
  position: absolute;
  top: 36px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.metric-arrows span {
  width: 13px;
  height: 15px;
  display: block;
  background: #000;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='13' height='15' viewBox='0 0 13 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.31C1 1.12 2.32 .41 3.31 1.07L11.15 6.26C12.04 6.85 12.04 8.15 11.15 8.74L3.31 13.93C2.32 14.59 1 13.88 1 12.69V2.31Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='13' height='15' viewBox='0 0 13 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.31C1 1.12 2.32 .41 3.31 1.07L11.15 6.26C12.04 6.85 12.04 8.15 11.15 8.74L3.31 13.93C2.32 14.59 1 13.88 1 12.69V2.31Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.metrics-grid p {
  color: var(--neutral-100);
  font-size: var(--font-body-l);
  line-height: var(--lh-body-l);
}

.metrics-grid strong {
  color: transparent;
  font-size: var(--font-h1);
  font-weight: 500;
  line-height: var(--lh-h1);
  background: linear-gradient(90deg, #8b85e9 0%, #0b55b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(640px, 1fr);
  gap: 128px;
}

.faq-tag {
  width: auto;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.faq-section h2 {
  max-width: 360px;
}

.faq-list details {
  padding: 28px 0;
}

.faq-list details + details {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--neutral-100);
  font-size: var(--font-body-l);
  font-weight: 500;
  line-height: var(--lh-body-l);
  white-space: normal;
  transition: color 320ms var(--ease-soft), transform 420ms var(--ease-soft);
}

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

.faq-list summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 7px;
  background: url("assets/faq-plus.svg") center / contain no-repeat;
  background-size: 18px 18px;
  opacity: 0.7;
  transition:
    background-color 320ms var(--ease-soft),
    opacity 320ms var(--ease-soft),
    transform 420ms var(--ease-soft);
}

.faq-list details[open] summary::after {
  background-image: url("assets/faq-minus.svg");
}

.faq-list details[data-closing="true"] summary::after {
  background-image: url("assets/faq-plus.svg");
}

.faq-list details:hover summary,
.faq-list summary:focus-visible {
  color: var(--brand-primary);
}

.faq-list details:hover summary::after,
.faq-list summary:focus-visible::after {
  background-color: var(--surface-hover);
  opacity: 1;
  transform: translateX(0);
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 520ms var(--ease-out-expo);
}

.faq-list p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.final-cta {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #000;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 560px;
  margin: 0;
  font-size: var(--font-h2);
  font-weight: 500;
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-heading);
}

.final-cta p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.cta-light {
  height: 40px;
  gap: 10px;
  padding: 4px 4px 4px 14px;
  background: #fff;
  border-color: transparent;
  color: var(--brand-primary);
  font-size: var(--font-btn-s);
  line-height: var(--lh-btn-s);
}

.cta-light:hover,
.cta-light:focus-visible {
  background: var(--brand-primary);
  color: #fff;
  border-color: transparent;
}

.cta-light .mini-icon {
  background: var(--brand-primary);
  transition: background-color 420ms var(--ease-soft);
}

.cta-light:hover .mini-icon,
.cta-light:focus-visible .mini-icon {
  background: #fff;
}

.cta-light:hover .mini-icon img,
.cta-light:focus-visible .mini-icon img,
.cta-light:hover .mini-icon::after,
.cta-light:focus-visible .mini-icon::after {
  filter: none;
}

.site-footer {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-body-m);
}

.footer-meta {
  display: inline-flex;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  transition: color 280ms var(--ease-soft);
}

.footer-link:hover,
.footer-link:focus-visible,
.footer-link[aria-current="page"] {
  color: #fff;
}

.footer-side {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.footer-halo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-halo img {
  display: block;
  width: 105px;
  height: auto;
}

.project-drawer-open {
  overflow: hidden;
}

.project-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms var(--ease-soft);
}

.project-drawer[aria-hidden="false"],
.project-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-drawer-panel {
  position: relative;
  width: min(100%, 700px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--neutral-0);
  color: var(--neutral-100);
  transform: translateX(100%);
  transition: transform 720ms var(--ease-out-expo);
}

.project-drawer[aria-hidden="false"] .project-drawer-panel,
.project-drawer.is-open .project-drawer-panel {
  transform: translateX(0);
}

.project-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 40px 22px;
}

.project-drawer-head h2 {
  max-width: 460px;
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.project-drawer-head p {
  display: none;
}

.project-drawer-close {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: color 280ms var(--ease-soft), transform 280ms var(--ease-soft);
}

.project-drawer-close:hover,
.project-drawer-close:focus-visible {
  background: transparent;
  color: var(--neutral-100);
  transform: translateY(-1px);
}

.project-drawer-close span {
  position: relative;
  width: 20px;
  height: 20px;
}

.project-drawer-close span::before,
.project-drawer-close span::after {
  position: absolute;
  left: 9px;
  top: 0;
  width: 2px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.project-drawer-close span::before {
  transform: rotate(45deg);
}

.project-drawer-close span::after {
  transform: rotate(-45deg);
}

.project-drawer-body {
  overflow-y: auto;
  flex: 1;
  padding: 24px 40px 40px;
}

.project-form {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-field {
  display: grid;
  gap: 14px;
}

.project-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.project-input {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  padding: 12px 15px;
  background: #fff;
  color: var(--neutral-100);
  font: inherit;
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
  outline: none;
  transition: border-color 280ms var(--ease-soft), background-color 280ms var(--ease-soft);
}

.project-input:focus {
  border-color: var(--brand-primary);
  background: var(--neutral-0);
}

textarea.project-input {
  min-height: 162px;
  resize: vertical;
}

.project-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.project-fieldset legend {
  margin: 0;
  padding: 0 0 16px;
  color: rgba(0, 0, 0, 0.7);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.project-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-chip {
  position: relative;
  cursor: pointer;
}

.project-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-chip span {
  display: block;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 7px 15px;
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  font-size: var(--font-tag);
  line-height: var(--lh-tag);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 280ms var(--ease-soft),
    background-color 280ms var(--ease-soft),
    color 280ms var(--ease-soft);
}

.project-chip:hover span,
.project-chip input:focus-visible + span {
  border-color: var(--brand-primary);
  background: #fff;
  color: var(--brand-primary);
}

.project-chip input:checked + span {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.project-submit {
  width: fit-content;
  height: 48px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
  background: var(--brand-primary);
  color: #fff;
  font-size: var(--font-btn-l);
  line-height: var(--lh-btn-l);
  font-weight: 500;
  cursor: pointer;
  transition: transform 420ms var(--ease-soft), background-color 420ms var(--ease-soft);
}

.project-submit .button-text {
  display: block;
  overflow: hidden;
  pointer-events: none;
  --reveal-line-height: 1.4;
}

.project-submit:hover,
.project-submit:focus-visible {
  transform: translateY(-1px);
  background: #0047a8;
}

.project-submit:hover .button-text .line-inner,
.project-submit:focus-visible .button-text .line-inner {
  transform: translateY(-100%);
}

.project-submit:hover .cta-icon img,
.project-submit:focus-visible .cta-icon img {
  transform: translate(calc(-50% + 24px), calc(-50% - 24px)) scale(0.85);
  opacity: 0;
}

.project-submit:hover .cta-icon::after,
.project-submit:focus-visible .cta-icon::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.project-submit .cta-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 4px;
}

.project-drawer-note {
  margin: auto 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.project-drawer-note a {
  color: var(--neutral-100);
}

.project-success {
  display: grid;
  align-content: center;
  min-height: 420px;
  gap: 18px;
}

.project-success[hidden] {
  display: none;
}

.project-success h3 {
  margin: 0;
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.project-success p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms var(--ease-out-expo),
    transform 900ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal="media"] {
  transform: translate3d(0, 42px, 0) scale(0.985);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

@keyframes hero-content-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-media-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.972);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tag-flicker {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }

  25% {
    opacity: 0.52;
    filter: brightness(1.08);
  }

  50% {
    opacity: 0.25;
    filter: brightness(1.16);
  }

  75% {
    opacity: 0.9;
    filter: brightness(1.06);
  }
}

@keyframes logos-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 20px));
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 77px;
    padding: 0 20px;
    overflow: visible;
  }

  .header-inner {
    min-height: 76px;
    height: 76px;
  }

  .logo {
    width: auto;
    flex-basis: auto;
  }

  .main-nav,
  .header-actions > .header-cta {
    display: none;
  }

  .header-actions {
    gap: 16px;
  }

  .menu-button {
    position: relative;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--surface-hover);
    cursor: pointer;
    transition: background-color 420ms var(--ease-soft);
  }

  .menu-button span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--neutral-100);
    transition: transform 520ms var(--ease-soft);
  }

  .menu-button span:first-child {
    transform: translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle:checked ~ .menu-button span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle:checked ~ .menu-button span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 620ms var(--ease-out-expo),
      opacity 420ms var(--ease-soft),
      transform 620ms var(--ease-out-expo);
    overflow: hidden;
  }

  .site-header:has(.menu-toggle:checked) .mobile-menu {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-link,
  .mobile-cta {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 7px;
    font-size: 18px;
    line-height: 1.4;
    transition: background-color 320ms var(--ease-soft), color 320ms var(--ease-soft);
  }

  .mobile-link {
    color: var(--neutral-70);
  }

  .mobile-link:hover,
  .mobile-link:focus-visible {
    background: var(--surface-hover);
    color: var(--neutral-100);
  }

  .mobile-cta {
    justify-content: space-between;
    min-height: 48px;
    margin: 12px 0 20px;
    padding: 4px 4px 4px 16px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 48px 20px;
  }

  .hero-copy {
    width: min(100%, 620px);
    flex-basis: auto;
  }

  .hero-description {
    width: min(100%, 560px);
  }

  .hero-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 672 / 620;
    flex-basis: auto;
  }

  .logos-section {
    width: 100%;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .logos-caption {
    width: calc(100% - 40px);
    margin: 0 auto;
    gap: 14px;
    font-size: 12px;
  }

  .logos-row {
    width: max-content;
    margin-top: 34px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    animation: logos-marquee 22s linear infinite;
    will-change: transform;
  }

  .client-logo {
    flex: 0 0 auto;
    justify-content: center;
  }

  .client-logo-duplicate {
    display: inline-flex;
  }

  .logos-section::before,
  .logos-section::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 54px;
    bottom: 1px;
    width: 40px;
    pointer-events: none;
  }

  .logos-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--page-bg) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .logos-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--page-bg) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .why-section {
    padding: 72px 20px 76px;
  }

  .why-heading h2 {
    font-size: 36px;
  }

  .why-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-card p {
    max-width: 520px;
  }

  .deliver-section {
    width: calc(100% - 40px);
    padding: 0 0 76px;
  }

  .deliver-section::before {
    margin-bottom: 60px;
  }

  .deliver-heading h2 {
    max-width: 720px;
    font-size: 28px;
  }

  .deliver-list {
    margin-top: 40px;
  }

  .deliver-row {
    min-height: auto;
    grid-template-columns: 32px 1fr;
    column-gap: 12px;
    row-gap: 10px;
    padding: 20px;
  }

  .deliver-index {
    font-size: 18px;
  }

  .deliver-row h3 {
    font-size: 20px;
  }

  .deliver-row p {
    max-width: 100%;
    font-size: 16px;
  }

  .deliver-link {
    height: 32px;
    font-size: 15px;
  }

  .mini-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .mini-icon img,
  .mini-icon::after {
    width: 17px;
    height: 17px;
  }

  .deliver-row p,
  .deliver-link {
    grid-column: 2;
  }

  .deliver-link {
    width: fit-content;
    padding-left: 0;
  }

  .outcomes-section,
  .process-section,
  .cases-section,
  .proof-section,
  .faq-section {
    width: calc(100% - 40px);
    padding: 72px 0;
  }

  .section-heading h2,
  .proof-section h2,
  .faq-section h2,
  .process-copy h2 {
    font-size: 34px;
  }

  .outcomes-grid,
  .cases-grid,
  .metrics-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .cases-section .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-card--small,
  .case-card--large {
    grid-column: auto;
  }

  .case-card-row {
    display: block;
    margin-top: 20px;
  }

  .case-card-row p {
    max-width: none;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .process-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-list summary {
    white-space: normal;
  }

  .process-visual {
    min-height: 420px;
  }

  .performance-card,
  .activity-card {
    left: 8%;
    right: 8%;
  }

  .case-media {
    height: auto;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .site-footer {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 40px;
  }

  .hero-copy {
    width: min(100%, 620px);
    flex-basis: auto;
  }

  .hero-visual {
    width: 100%;
    flex-basis: auto;
  }

  .process-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-copy,
  .faq-copy {
    max-width: 620px;
  }

  .process-visual,
  .faq-list {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .cases-section .cases-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 48px 16px;
  }

  .case-card--small {
    grid-column: span 4;
  }

  .case-card--large {
    grid-column: span 8;
  }

  .case-card-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 20px;
  }

  .case-card-row p {
    max-width: none;
    margin-top: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-section {
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-copy {
    gap: 28px;
  }

  .hero-title-block .hero-display {
    font-size: 42px;
    letter-spacing: -0.84px;
  }

  .hero-description {
    font-size: 16px;
    letter-spacing: -0.24px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta,
  .hero-secondary {
    width: 100%;
  }

  .hero-cta {
    position: relative;
    justify-content: center;
    padding-right: 52px;
    padding-left: 52px;
  }

  .hero-cta .cta-icon {
    position: absolute;
    right: 4px;
    top: 4px;
  }

  .logos-row {
    gap: 32px;
    animation-duration: 20s;
  }

  .client-logo img {
    width: 128px;
  }

  .why-section {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .why-heading {
    align-items: flex-start;
    text-align: left;
  }

  .why-tag {
    justify-content: flex-start;
  }

  .why-heading h2 {
    font-size: 34px;
  }

  .why-heading p {
    font-size: 14px;
  }

  .why-card h3 {
    font-size: 17px;
  }

  .deliver-section::before {
    margin-bottom: 52px;
  }

  .deliver-heading h2 {
    font-size: 26px;
  }

  .deliver-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deliver-row p,
  .deliver-link {
    grid-column: auto;
  }

  .center-heading {
    align-items: flex-start;
    text-align: left;
  }

  .compact-tag {
    justify-content: flex-start;
  }

  .section-heading h2,
  .proof-section h2,
  .faq-section h2,
  .process-copy h2 {
    font-size: 30px;
  }

  .outcome-card,
  .metrics-grid article {
    min-height: 160px;
  }

  .outcome-card {
    justify-content: flex-start;
    gap: 28px;
  }

  .outcome-card::after {
    display: none;
  }

  .outcome-card div {
    justify-content: flex-start;
    align-items: center;
  }

  .outcome-card .dark-icon {
    order: -1;
    flex: 0 0 48px;
  }

  .process-visual {
    min-height: 360px;
  }

  .performance-card,
  .activity-card {
    padding: 16px;
  }

  .bar-chart {
    height: 112px;
    gap: 14px;
  }

  .bar-chart span {
    width: 28px;
  }

  .case-media {
    height: auto;
    font-size: 42px;
  }

  .cases-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .cases-section .cases-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-card h3 {
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.18;
  }

  .case-card p {
    margin-top: 16px;
    column-gap: 8px;
    row-gap: 8px;
  }

  .case-card span {
    padding: 5px 12px;
  }

  .metrics-grid strong {
    font-size: 38px;
  }

  .final-cta {
    min-height: 0;
    padding: 56px 20px 64px;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.08;
  }

  .final-cta p {
    margin: 16px 0 24px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .final-cta .cta-light {
    width: 100%;
    height: 56px;
    justify-content: center;
    padding: 4px 56px;
    border-radius: 18px;
    font-size: var(--font-btn-l);
    line-height: var(--lh-btn-l);
    position: relative;
  }

  .final-cta .cta-light .mini-icon {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 12px;
  }

  .final-cta .cta-light .mini-icon img,
  .final-cta .cta-light .mini-icon::after {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    gap: 18px;
    padding: 22px 20px 28px;
  }

  .footer-meta {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-side {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-halo {
    gap: 12px;
    font-size: 14px;
  }

  .footer-halo img {
    width: 118px;
  }
}

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

  .line-inner,
  .line-reveal:hover .line-inner,
  .line-reveal:focus-visible .line-inner,
  .header-cta:hover .button-text .line-inner,
  .header-cta:focus-visible .button-text .line-inner,
  .nav-link:hover .line-inner,
  .nav-link:focus-visible .line-inner,
  .hero-secondary:hover .line-inner,
  .hero-secondary:focus-visible .line-inner {
    transform: none;
  }

  .logos-row {
    animation: none;
  }

  html.hero-intro-ready .hero-intro-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.main-nav .nav-link.is-active {
  background: var(--surface-hover);
  color: var(--neutral-100);
}

.mobile-link.is-active {
  color: var(--brand-primary);
}

.page-main {
  overflow: hidden;
}

.page-container,
.page-hero,
.page-section,
.page-final-cta {
  width: calc(100% - 80px);
  max-width: var(--page-max);
  margin: 0 auto;
}

.page-hero {
  padding: 128px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
  gap: 96px;
  align-items: end;
}

.page-hero h1,
.page-section h2,
.page-final-cta h2 {
  margin: 0;
  color: var(--neutral-100);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.page-hero h1 {
  max-width: 820px;
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
}

.page-hero p {
  margin: 32px 0 0;
  max-width: 700px;
  color: var(--neutral-70);
  font-size: var(--font-body-l);
  line-height: var(--lh-body-l);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.page-hero-card,
.page-card,
.page-quote,
.page-stat-card {
  border-radius: 8px;
}

.page-hero-card {
  display: grid;
  gap: 48px;
  min-height: 420px;
  padding: 40px;
  background: var(--surface-subtle);
}

.page-hero-card span,
.page-card-kicker,
.page-stat-card span,
.page-method-number {
  color: var(--brand-primary);
  font-size: var(--font-tag);
  line-height: var(--lh-tag);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-card strong {
  align-self: end;
  max-width: 420px;
  color: var(--neutral-100);
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-heading);
}

.page-section {
  padding: 128px 0;
}

.page-section.with-border {
  border-bottom: 1px solid var(--line-soft);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1fr);
  gap: 96px;
  align-items: start;
}

.page-section h2 {
  max-width: 760px;
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
}

.page-copy {
  display: grid;
  gap: 22px;
  color: var(--neutral-70);
  font-size: var(--font-body-l);
  line-height: var(--lh-body-l);
}

.page-copy p {
  margin: 0;
}

.page-card-grid {
  display: grid;
  gap: 24px;
}

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

.page-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line-soft);
  background: var(--neutral-0);
}

.page-card h3,
.page-stat-card strong {
  margin: 28px 0 0;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
  font-weight: 500;
}

.page-card p {
  margin: 24px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.page-quote {
  padding: 64px;
  background: var(--neutral-100);
  color: var(--neutral-0);
}

.page-quote blockquote {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: var(--ls-heading);
}

.page-quote cite {
  display: block;
  margin-top: 32px;
  color: rgb(255 255 255 / 70%);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
  font-style: normal;
}

.page-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.page-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-list span {
  color: color-mix(in srgb, var(--neutral-100) 30%, transparent);
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
}

.page-list strong {
  display: block;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.page-list p {
  margin: 10px 0 0;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.page-stat-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid var(--line-soft);
}

.page-stat-card strong {
  display: block;
  margin-top: 52px;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  background: linear-gradient(135deg, #9c98ef 0%, #0c57bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-definition {
  max-width: 1040px;
  color: var(--neutral-100);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: var(--ls-heading);
}

.process-method-grid {
  display: grid;
  gap: 12px;
}

.process-method-row {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.85fr) minmax(420px, 1fr);
  gap: 32px;
  align-items: start;
  padding: 40px;
  border-radius: 8px;
  background: var(--surface-subtle);
}

.process-method-row h3 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
  font-weight: 500;
}

.process-method-row p,
.process-method-row li {
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.process-method-row p,
.process-method-row ul {
  margin: 0;
}

.process-method-row ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.process-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.process-pill-list span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--neutral-70);
  font-size: var(--font-body-s);
  line-height: var(--lh-body-s);
}

.page-faq {
  display: grid;
  gap: 0;
}

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

.page-faq details:first-child {
  border-top: 0;
}

.page-faq details:last-child {
  border-bottom: 0;
}

.page-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  color: var(--neutral-100);
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-heading);
  font-weight: 500;
}

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

.page-faq-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}

.page-faq summary:hover .page-faq-icon {
  background: var(--surface-hover);
}

html[data-theme="dark"] {
  --brand-primary: #035ee7;
  --page-bg: #0b0d12;
  --surface-base: #0f1218;
  --surface-subtle: #151a22;
  --surface-hover: #1c2330;
  --surface-elevated: #10151d;
  --neutral-0: #10151d;
  --neutral-100: #f5f7fb;
  --neutral-70: rgba(245, 247, 251, 0.72);
  --neutral-60: rgba(245, 247, 251, 0.6);
  --neutral-50: rgba(245, 247, 251, 0.5);
  --neutral-35: rgba(245, 247, 251, 0.36);
  --line-soft: rgba(245, 247, 251, 0.1);
  --line-strong: rgba(245, 247, 251, 0.18);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .page-hero-card,
html[data-theme="dark"] .deliver-row,
html[data-theme="dark"] .process-method-row,
html[data-theme="dark"] .project-input,
html[data-theme="dark"] .project-chip span {
  background: var(--surface-base);
}

html[data-theme="dark"] .project-drawer-panel {
  background: #fff;
  color: #000;
}

html[data-theme="dark"] .hero-visual,
html[data-theme="dark"] .why-media,
html[data-theme="dark"] .process-visual,
html[data-theme="dark"] .page-card,
html[data-theme="dark"] .page-stat-card,
html[data-theme="dark"] .outcome-card,
html[data-theme="dark"] .project-input:focus,
html[data-theme="dark"] .project-chip:hover span,
html[data-theme="dark"] .project-chip input:focus-visible + span,
html[data-theme="dark"] .project-chip span,
html[data-theme="dark"] .deliver-row,
html[data-theme="dark"] .process-method-row {
  background: var(--surface-subtle);
}

html[data-theme="dark"] .cta-icon,
html[data-theme="dark"] .process-link .mini-icon,
html[data-theme="dark"] .project-submit .cta-icon {
  background: #f5f7fb;
}

html[data-theme="dark"] .main-nav .nav-link:hover,
html[data-theme="dark"] .main-nav .nav-link:focus-visible,
html[data-theme="dark"] .main-nav .nav-link.is-active,
html[data-theme="dark"] .mobile-link:hover,
html[data-theme="dark"] .mobile-link:focus-visible,
html[data-theme="dark"] .page-faq summary:hover .page-faq-icon,
html[data-theme="dark"] .menu-button,
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus-visible {
  background: var(--surface-hover);
}

html[data-theme="dark"] .hero-secondary {
  border-color: var(--line-strong);
  color: var(--neutral-100);
  background: transparent;
}

html[data-theme="dark"] .final-cta .cta-light {
  border-color: transparent;
  background: #fff;
  color: var(--brand-primary);
}

html[data-theme="dark"] .final-cta .cta-light .mini-icon {
  background: var(--brand-primary);
}

html[data-theme="dark"] .hero-secondary:hover,
html[data-theme="dark"] .hero-secondary:focus-visible {
  background: var(--brand-primary);
  border-color: transparent;
  color: #fff;
}

html[data-theme="dark"] .final-cta .cta-light:hover,
html[data-theme="dark"] .final-cta .cta-light:focus-visible {
  background: var(--brand-primary);
  color: #fff;
}

html[data-theme="dark"] .final-cta .cta-light:hover .mini-icon,
html[data-theme="dark"] .final-cta .cta-light:focus-visible .mini-icon {
  background: #fff;
}

html[data-theme="dark"] .page-hero p,
html[data-theme="dark"] .page-copy,
html[data-theme="dark"] .page-card p,
html[data-theme="dark"] .page-list p,
html[data-theme="dark"] .process-method-row p,
html[data-theme="dark"] .process-method-row li,
html[data-theme="dark"] .page-faq-answer,
html[data-theme="dark"] .legal-header p,
html[data-theme="dark"] .legal-content p,
html[data-theme="dark"] .legal-content li,
html[data-theme="dark"] .project-drawer-note,
html[data-theme="dark"] .project-success p,
html[data-theme="dark"] .project-fieldset legend {
  color: var(--neutral-70);
}

html[data-theme="dark"] .project-drawer-note a,
html[data-theme="dark"] .legal-section a {
  color: var(--neutral-100);
}

html[data-theme="dark"] .project-drawer-note,
html[data-theme="dark"] .project-success p,
html[data-theme="dark"] .project-fieldset legend {
  color: rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .project-input {
  color: #000;
  border-color: rgba(0, 0, 0, 0.1);
  background: #fff;
}

html[data-theme="dark"] .project-input:focus {
  background: #fff;
  border-color: var(--brand-primary);
}

html[data-theme="dark"] .project-chip span {
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .project-chip:hover span,
html[data-theme="dark"] .project-chip input:focus-visible + span {
  background: #fff;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

html[data-theme="dark"] .project-chip input:checked + span {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

html[data-theme="dark"] .page-list span {
  color: rgba(245, 247, 251, 0.34);
}

html[data-theme="dark"] .deliver-index {
  color: rgba(245, 247, 251, 0.42);
}

html[data-theme="dark"] .project-drawer-close {
  color: var(--neutral-35);
}

html[data-theme="dark"] .project-drawer-close:hover,
html[data-theme="dark"] .project-drawer-close:focus-visible {
  color: var(--neutral-100);
}

html[data-theme="dark"] .logos-section::before {
  background: linear-gradient(90deg, var(--page-bg) 0%, rgba(11, 13, 18, 0) 100%);
}

html[data-theme="dark"] .logos-section::after {
  background: linear-gradient(270deg, var(--page-bg) 0%, rgba(11, 13, 18, 0) 100%);
}

html[data-theme="dark"] .client-logo img {
  opacity: 0.92;
}

html[data-theme="dark"] .final-cta {
  background: #05070b;
}

html[data-theme="dark"] .dark-icon {
  background: #fff;
}

html[data-theme="dark"] .dark-icon img {
  filter: invert(1);
}

html[data-theme="dark"] .metrics-grid article {
  border-color: rgba(245, 247, 251, 0.12);
}

html[data-theme="dark"] .metrics-grid article::before {
  background: rgba(245, 247, 251, 0.12);
}

html[data-theme="dark"] .faq-list details + details {
  border-top-color: rgba(245, 247, 251, 0.12);
}

html[data-theme="dark"] .faq-list summary::after {
  filter: invert(1);
  opacity: 0.9;
}

html[data-theme="dark"] .faq-list details:hover summary::after,
html[data-theme="dark"] .faq-list summary:focus-visible::after {
  background-color: rgba(245, 247, 251, 0.08);
  opacity: 1;
}

html[data-theme="dark"] .site-footer {
  background: #05070b;
  border-top-color: rgba(245, 247, 251, 0.12);
  color: rgba(245, 247, 251, 0.65);
}

html[data-theme="dark"] .footer-link,
html[data-theme="dark"] .footer-halo {
  color: rgba(245, 247, 251, 0.65);
}

html[data-theme="dark"] .footer-link:hover,
html[data-theme="dark"] .footer-link:focus-visible,
html[data-theme="dark"] .footer-link[aria-current="page"] {
  color: #fff;
}

.page-faq-icon::before,
.page-faq-icon::after {
  grid-area: 1 / 1;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
}

.page-faq-icon::after {
  transform: rotate(90deg);
}

.page-faq details[open] .page-faq-icon::after {
  transform: rotate(0deg);
}

.page-faq-answer {
  height: 0;
  overflow: hidden;
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
  transition: height 0.32s ease;
}

.page-faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 68px 28px 0;
}

.page-final-cta {
  padding: 128px 0;
}

.legal-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 128px 64px;
}

.legal-content {
  max-width: 760px;
}

.legal-header {
  display: grid;
  gap: 28px;
  padding-bottom: 48px;
}

.legal-header h1 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.legal-header p,
.legal-content p,
.legal-content li {
  color: var(--neutral-70);
  font-size: var(--font-body-m);
  line-height: var(--lh-body-m);
}

.legal-intro {
  margin: 0;
}

.legal-summary {
  padding-bottom: 32px;
}

.legal-summary h2,
.legal-section h2 {
  margin: 0;
  color: var(--neutral-100);
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
  font-weight: 500;
  letter-spacing: var(--ls-heading);
}

.legal-summary p,
.legal-section p,
.legal-section ul {
  margin: 16px 0 0;
}

.legal-section {
  padding: 28px 0 32px;
  border-top: 1px solid var(--line-soft);
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--neutral-100);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-section-end {
  padding-bottom: 0;
}

@media (max-width: 1180px) {
  .page-card-grid.three,
  .page-card-grid.four,
  .page-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-grid,
  .page-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .process-method-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .process-method-row > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .page-container,
  .page-hero,
  .page-section,
  .page-final-cta,
  .legal-page {
    width: 100%;
  }

  .page-hero,
  .page-section,
  .page-final-cta,
  .legal-page {
    padding: 72px 20px;
  }

  .page-hero h1,
  .page-section h2,
  .page-final-cta h2,
  .legal-header h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .page-hero p,
  .page-copy {
    font-size: 18px;
  }

  .page-hero-card,
  .page-card,
  .page-quote,
  .page-stat-card,
  .process-method-row {
    padding: 24px;
  }

  .page-card-grid.two,
  .page-card-grid.three,
  .page-card-grid.four,
  .page-stat-grid {
    grid-template-columns: 1fr;
  }

  .page-quote blockquote {
    font-size: 30px;
  }

  .page-list li,
  .process-method-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-method-row > div:last-child {
    grid-column: auto;
  }

  .page-faq summary {
    font-size: 22px;
  }

  .footer-side {
    gap: 14px;
  }

  .project-drawer {
    background: rgba(0, 0, 0, 0.5);
  }

  .project-drawer-panel {
    width: 100%;
  }

  .project-drawer-head {
    padding: 28px 24px 22px;
  }

  .project-drawer-head h2 {
    font-size: 34px;
  }

  .project-drawer-body {
    padding: 24px;
  }

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

  .project-submit {
    width: 100%;
  }

  .site-footer {
    height: auto;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
  }

  .footer-meta,
  .footer-side {
    flex-wrap: wrap;
  }
}
