@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans/IBMPlexSans-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans/IBMPlexSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --carbon-950: #0d0d0d;
  --carbon-900: #1a1a1a;
  --carbon-800: #2a2a2a;
  --carbon-700: #3e3e3e;
  --carbon-600: #525252;
  --carbon-500: #737373;
  --carbon-400: #969696;
  --carbon-300: #c6c6c6;
  --carbon-200: #e0e0e0;
  --carbon-100: #f4f4f4;
  --carbon-50: #fafafa;
  --primary: var(--carbon-900);
  --primary-hover: var(--carbon-800);
  --primary-active: var(--carbon-950);
  --signal: #ff8a3d;
  --signal-hover: #f27522;
  --signal-active: #d95f0e;
  --signal-soft: #fff0e6;
  --signal-text: #b84000;
  --canvas: #ffffff;
  --on-primary: #ffffff;
  --on-signal: var(--carbon-900);
  --surface-1: var(--carbon-50);
  --surface-2: var(--carbon-200);
  --surface-3: var(--carbon-300);
  --ink: var(--carbon-900);
  --ink-muted: var(--carbon-600);
  --ink-subtle: var(--carbon-500);
  --inverse-surface: var(--carbon-800);
  --inverse-muted: var(--carbon-300);
  --error: #da1e28;
  --success: #24a148;
  --focus: var(--signal-active);
  --shell: 1600px;
  --gutter: clamp(24px, 3vw, 48px);
  --section-space: clamp(80px, 8vw, 128px);
  --hairline: 1px solid var(--surface-2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16px;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote,
ul {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

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

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

.hero__copy :focus-visible,
.hero__media :focus-visible,
.facility :focus-visible,
.final-conversion__copy :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--focus);
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--signal);
  color: var(--on-signal);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* With JavaScript enabled, only reveal the shortcut after intentional keyboard
   navigation. This prevents restored browser focus from covering the wordmark. */
.js .skip-link:focus {
  transform: translateY(-160%);
}

.js.is-keyboard-navigation .skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.section-index {
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow--inverse,
.section-index--inverse {
  color: var(--on-primary);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 18px;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  transition: background-color 140ms ease, color 140ms ease;
}

.button--primary {
  background: var(--primary);
  color: var(--canvas);
}

.button--primary:hover {
  background: var(--primary-hover);
}

.button--accent {
  background: var(--canvas);
  color: var(--ink);
}

.button--accent:hover {
  background: var(--carbon-100);
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--primary);
  font-size: 14px;
}

.text-link:hover {
  color: var(--primary-hover);
}

.text-link--inverse {
  color: var(--canvas);
}

/* Navigation */
.hero__mobile-actions .text-link {
  transition: color 160ms ease;
}

.hero__mobile-actions .text-link span {
  transition: transform 160ms ease;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 64px;
  border-bottom: var(--hairline);
  background: rgba(255, 255, 255, 0.96);
  transition: background-color 160ms ease;
}

.site-header.is-scrolled {
  background: var(--canvas);
}

.site-header__inner {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(168px, 1fr) auto minmax(220px, 1fr);
  align-items: stretch;
  height: 100%;
  margin-inline: 0;
  padding-left: 0;
  padding-right: 0;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-left: var(--gutter);
}

.wordmark {
  display: inline-block;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.wordmark--inverse {
  color: var(--canvas);
  font-size: 32px;
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav > a {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding-inline: clamp(10px, 1.1vw, 18px);
  border-left: 1px solid transparent;
  color: var(--ink-muted);
  font-size: 13px;
  white-space: nowrap;
  transition: background-color 120ms ease, color 120ms ease;
}

.site-nav > a:last-child {
  border-right: 1px solid transparent;
}

.site-nav > a:hover,
.site-nav > a[aria-current="true"] {
  border-color: var(--surface-2);
  background: var(--surface-1);
  color: var(--ink);
}

.header-cta {
  position: relative;
  display: flex;
  width: 220px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  overflow: hidden;
  padding-inline: 20px;
  background: var(--primary);
  color: var(--canvas);
  cursor: pointer;
  font-size: 14px;
  isolation: isolate;
  transition: background-color 140ms ease;
}

.header-cta::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.24) 50%, transparent 70%);
  content: "";
  pointer-events: none;
  transform: translateX(-160%);
  animation: header-cta-sheen 6s ease-in-out infinite;
}

.header-cta > span {
  position: relative;
  z-index: 1;
}

.header-cta > span[aria-hidden="true"] {
  animation: header-cta-arrow 2.8s ease-in-out infinite;
}

.header-cta:hover {
  background: var(--primary-hover);
}

@keyframes header-cta-sheen {
  0%,
  64% {
    transform: translateX(-160%);
  }

  84%,
  100% {
    transform: translateX(160%);
  }
}

@keyframes header-cta-arrow {
  0%,
  70%,
  100% {
    transform: translate(0, 0);
  }

  82% {
    transform: translate(3px, -3px);
  }
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--canvas);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

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

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

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  display: flex;
  height: calc(100svh - 64px);
  min-height: 0;
  max-height: 880px;
  flex-direction: column;
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.hero__main {
  display: grid;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: repeat(16, minmax(0, 1fr));
}

.hero__copy {
  display: flex;
  grid-column: 1 / span 6;
  min-height: 0;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  color: var(--canvas);
}

.hero__copy-inner {
  width: 100%;
  padding: clamp(28px, 3.3vw, 56px);
}

.hero .eyebrow {
  margin-bottom: 14px;
  color: var(--inverse-muted);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(44px, 4.25vw, 72px);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -1.6px;
}

.hero h1 span {
  color: var(--on-primary);
}

.hero__intro {
  max-width: 580px;
  margin-bottom: 20px;
  color: var(--inverse-muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
}

.hero__bullets {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.hero__bullet {
  position: relative;
  min-height: 28px;
  padding-left: 22px;
  color: var(--canvas);
  font-size: 14px;
  line-height: 1.4;
}

.hero__bullet::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--on-primary);
  content: "";
}

.hero__bullet::after {
  position: absolute;
  top: 5px;
  left: 4px;
  width: 3px;
  height: 6px;
  border: solid var(--ink);
  border-width: 0 1px 1px 0;
  content: "";
  transform: rotate(45deg);
}

.hero__mobile-actions {
  display: none;
}

.hero__media {
  position: relative;
  grid-column: 7 / span 5;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.15);
  content: "";
  pointer-events: none;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.015);
}

.hero__media-label {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--canvas);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero__media-label strong {
  color: var(--on-primary);
  font-weight: 400;
}

.media-play {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: 176px;
  height: 52px;
  min-height: 52px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  transition: background-color 140ms ease;
}

.media-play:hover {
  background: var(--carbon-100);
}

.media-play span:first-child {
  font-size: 14px;
  text-align: center;
}

.media-play span:last-child {
  border-left: 1px solid rgba(26, 26, 26, 0.18);
  line-height: 52px;
}

.hero__lead {
  display: flex;
  grid-column: 12 / -1;
  min-width: 0;
  min-height: 0;
  align-items: stretch;
  overflow: hidden;
  background: var(--canvas);
}

.lead-panel {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 2.8vw, 48px);
}

.lead-panel .section-index {
  margin-bottom: 16px;
}

.lead-panel h2 {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: clamp(32px, 2.7vw, 46px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.7px;
}

.lead-panel > p:not(.section-index):not(.lead-panel__note) {
  margin-bottom: 20px;
  color: var(--ink-muted);
}

.lead-form {
  display: grid;
  gap: 10px;
}

.field {
  position: relative;
  display: grid;
  gap: 5px;
}

.field label {
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.field input {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: var(--surface-1);
  color: var(--ink);
  font-size: 15px;
}

.field input:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-bottom-color: transparent;
}

.field input[aria-invalid="true"] {
  border-bottom: 2px solid var(--error);
}

.form-error {
  min-height: 16px;
  margin: 0;
  color: var(--error);
  font-size: 11px;
  line-height: 1.3;
}

.lead-form__submit {
  width: 100%;
  margin-top: 2px;
}

.lead-panel__note {
  display: flex;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
}

.hero__lead .lead-panel {
  height: 100%;
  padding: 20px clamp(24px, 2.5vw, 40px);
}

.hero__lead .lead-panel .section-index {
  margin-bottom: 10px;
}

.hero__lead .lead-panel h2 {
  font-size: clamp(30px, 2.5vw, 42px);
}

.hero__lead .lead-panel > p:not(.section-index):not(.lead-panel__note) {
  margin-bottom: 12px;
}

.hero__lead .lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero__lead .field {
  gap: 2px;
}

.hero__lead .field label {
  display: flex;
  min-height: 30px;
  align-items: flex-end;
  font-size: 12px;
}

.hero__lead .field input {
  height: 44px;
  padding-block: 9px;
}

.hero__lead .form-error,
.hero__lead .lead-form__submit {
  grid-column: 1 / -1;
}

.hero__lead .form-error {
  min-height: 12px;
}

.hero__lead .lead-panel__note {
  margin-top: 7px;
}

.hero__proof {
  display: grid;
  flex: 0 0 86px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: var(--hairline);
  background: var(--canvas);
}

.hero__proof > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-inline: var(--gutter);
  border-right: var(--hairline);
}

.hero__proof > div:last-child {
  border-right: 0;
}

.hero__proof strong {
  color: var(--primary);
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 1;
}

.hero__proof span {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.34;
}

.hero-animate {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-in 280ms cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.hero-animate:nth-child(2) { animation-delay: 70ms; }
.hero-animate:nth-child(3) { animation-delay: 130ms; }
.hero-animate:nth-child(4) { animation-delay: 190ms; }
.hero-animate:nth-child(5) { animation-delay: 240ms; }

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

/* Inline conversion section for tablet and mobile */
.mobile-lead-section {
  display: none;
  scroll-margin-top: 64px;
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.mobile-lead-section__layout {
  display: grid;
  grid-template-columns: 5fr 11fr;
  gap: clamp(40px, 6vw, 96px);
  padding-block: 88px;
}

.mobile-lead-section__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}

.mobile-lead-section__copy > p:last-child {
  color: var(--ink-muted);
}

.mobile-lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mobile-lead-form .field label {
  font-size: 12px;
}

.mobile-lead-form .field input {
  height: 48px;
  background: var(--canvas);
  font-size: 16px;
}

.mobile-lead-form .form-error,
.mobile-lead-form .lead-form__submit,
.mobile-lead-form .lead-panel__note {
  grid-column: 1 / -1;
}

.mobile-lead-form .lead-panel__note {
  margin: 0;
}

/* Partner rail */
.partner-rail {
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.partner-rail__inner {
  display: grid;
  grid-template-columns: 4fr 12fr;
  align-items: stretch;
  padding-right: 0;
}

.partner-rail h2 {
  display: flex;
  min-height: 136px;
  align-items: center;
  margin: 0;
  padding-right: 32px;
  border-right: var(--hairline);
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.partner-rail__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-rail__logos img {
  width: 100%;
  height: 136px;
  padding: 38px clamp(16px, 2.2vw, 34px);
  border-right: var(--hairline);
  object-fit: contain;
  filter: grayscale(1) contrast(0.82);
  opacity: 0.62;
  transition: filter 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.partner-rail__logos img:hover {
  background: var(--canvas);
  filter: none;
  opacity: 1;
}

/* Shared headings */
.section-heading {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  margin-bottom: clamp(48px, 6vw, 88px);
}

.section-heading > .section-index {
  grid-column: 1 / span 4;
}

.section-heading > div {
  grid-column: 5 / span 10;
}

.section-heading h2,
.testimonial-heading h2,
.faq__intro h2,
.final-conversion h2,
.partnerships__intro h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -1.3px;
}

/* Benefits */
.benefits {
  border-bottom: var(--hairline);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  overflow: hidden;
  background: var(--canvas);
  transition: background-color 180ms ease, color 180ms ease;
}

.benefit-card__number {
  color: var(--ink-subtle);
  font-size: 12px;
  letter-spacing: 1.2px;
}

.benefit-card h3 {
  max-width: 400px;
  margin: auto 0 24px;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.4px;
}

.benefit-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.benefit-card__line {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 6px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.benefit-card:hover .benefit-card__line {
  transform: scaleX(1);
}

.benefit-card--primary {
  background: var(--primary);
  color: var(--canvas);
}

.benefit-card--primary .benefit-card__number,
.benefit-card--primary p {
  color: var(--inverse-muted);
}

/* Location data story */
.location-story {
  display: grid;
  width: min(100%, var(--shell));
  min-height: 640px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--inverse-surface);
  color: var(--canvas);
}

.location-story__copy,
.location-story__data {
  position: relative;
  padding: clamp(48px, 6vw, 96px);
}

.location-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--primary-active);
}

.location-story__copy::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 36%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
}

.location-story__copy h2 {
  position: relative;
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -1px;
}

.location-story__copy > p:last-child {
  position: relative;
  max-width: 520px;
  margin-bottom: 0;
  color: var(--inverse-muted);
  font-size: 18px;
}

.location-story__data {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.data-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--carbon-600);
  color: var(--inverse-muted);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.data-title small {
  color: var(--inverse-muted);
  font-size: 10px;
  text-transform: none;
}

.data-bars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  margin-block: auto;
}

.data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: var(--inverse-muted);
  font-size: 14px;
}

.data-row strong {
  color: var(--on-primary);
  font-size: 18px;
  font-weight: 400;
}

.data-row i {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  background: var(--carbon-700);
}

.data-row i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.2, 0, 0.2, 1);
}

.location-story__data.is-visible .data-row i::after {
  transform: scaleX(1);
}

.location-story__marker {
  position: absolute;
  right: -5%;
  bottom: -10%;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(220px, 29vw, 480px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -28px;
  pointer-events: none;
}

/* Process */
.process {
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.process__layout {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: start;
}

.process__intro {
  position: sticky;
  top: 104px;
  grid-column: 1 / span 7;
  padding-right: clamp(32px, 5vw, 88px);
}

.process__intro h2 {
  margin-bottom: 32px;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -1px;
}

.process__intro p:not(.eyebrow):not(.section-index) {
  max-width: 620px;
  color: var(--ink-muted);
}

.process__intro a,
.operation-strip a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process__steps {
  position: relative;
  grid-column: 9 / -1;
  border-top: 1px solid var(--ink);
}

.process__steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33px;
  width: 1px;
  background: var(--surface-3);
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  min-height: 212px;
  grid-template-columns: 68px 1fr;
  padding: 34px 32px 34px 0;
  border-bottom: 1px solid var(--surface-3);
  background: var(--surface-1);
  transition: background-color 200ms ease, color 200ms ease;
}

.process-step > span {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  margin-left: 17px;
  border: 1px solid var(--surface-3);
  background: var(--surface-1);
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 30px;
  text-align: center;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 300;
}

.process-step p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-muted);
}

.process-step.is-active {
  background: var(--canvas);
}

.process-step.is-active > span {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--on-signal);
}

.operation-strip {
  display: grid;
  margin-top: clamp(72px, 8vw, 120px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--hairline);
  border-left: var(--hairline);
  padding-inline: var(--gutter);
}

.operation-strip article {
  min-height: 260px;
  padding: 32px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.operation-strip article > span {
  color: var(--ink-subtle);
  font-size: 11px;
}

.operation-strip h3 {
  margin: 68px 0 16px;
  font-size: 24px;
  font-weight: 400;
}

.operation-strip p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

/* Facility */
.facility {
  position: relative;
  display: grid;
  width: min(100%, var(--shell));
  min-height: 760px;
  margin-inline: auto;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  overflow: hidden;
  background: var(--ink);
}

.facility__image {
  position: absolute;
  inset: 0;
  background-image: url("../img/clg-centro-logistico-1600.webp");
  background-image: image-set(
    url("../img/clg-centro-logistico-1600.webp") 1x,
    url("../img/clg-centro-logistico-2688.webp") 2x
  );
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.01);
}

.facility__content {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / span 9;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vw, 112px) var(--gutter);
  background: rgba(26, 26, 26, 0.78);
  color: var(--canvas);
}

.facility__content h2 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.facility__content > p:not(.eyebrow):not(.section-index) {
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--inverse-muted);
  font-size: 18px;
}

.facility__actions {
  display: flex;
  align-items: stretch;
}

.facility__actions .button {
  min-width: 220px;
}

.facility__actions > div {
  display: flex;
  min-width: 320px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 0;
}

.facility__actions span {
  color: var(--inverse-muted);
  font-size: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.facility__actions strong {
  font-size: 13px;
  font-weight: 400;
}

.facility__routes {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.facility__routes a {
  color: var(--on-primary);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Partnerships */
.partnerships {
  border-bottom: var(--hairline);
}

.partnerships__layout {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: start;
}

.partnerships__intro {
  grid-column: 1 / span 6;
  padding-right: clamp(32px, 5vw, 80px);
}

.partnerships__intro h2 {
  margin-bottom: 32px;
}

.partnerships__intro > p:not(.section-index) {
  color: var(--ink-muted);
}

.partnerships__intro .text-link {
  margin-top: 20px;
}

.partner-explorer {
  grid-column: 8 / -1;
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.partner-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-tabs button {
  position: relative;
  height: 116px;
  padding: 28px 20px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--surface-1);
  cursor: pointer;
}

.partner-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.partner-tabs button[aria-selected="true"] {
  background: var(--canvas);
}

.partner-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.partner-tabs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
}

.partner-tabs button[aria-selected="true"] img {
  filter: none;
  opacity: 1;
}

.partner-panels {
  min-height: 376px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
}

.partner-panels article {
  min-height: 376px;
  padding: clamp(32px, 4vw, 64px);
  background: var(--canvas);
}

.partner-panels article > span {
  color: var(--ink-subtle);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.partner-panels p {
  max-width: 720px;
  margin: clamp(56px, 7vw, 96px) 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.35;
}

.partner-panels a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Testimonials */
.testimonials {
  overflow: hidden;
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.testimonial-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.testimonial-heading > div:first-child {
  max-width: 960px;
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
}

.carousel-controls button {
  width: 56px;
  height: 56px;
  border: var(--hairline);
  border-right: 0;
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.carousel-controls button:last-child {
  border-right: var(--hairline);
}

.carousel-controls button:hover {
  background: var(--carbon-100);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.metric-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.metric-grid strong {
  color: var(--primary);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
}

.metric-grid span {
  color: var(--ink-muted);
  font-size: 13px;
}

.testimonial-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-width: min(720px, 62vw);
  min-height: 440px;
  flex: 0 0 min(720px, 62vw);
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(36px, 5vw, 72px);
  border: var(--hairline);
  border-right: 0;
  background: var(--canvas);
  scroll-snap-align: start;
}

.testimonial-card:last-child {
  border-right: var(--hairline);
}

.testimonial-card--primary {
  background: var(--primary);
  color: var(--canvas);
}

.quote-mark {
  color: var(--signal);
  font-size: 76px;
  font-weight: 300;
  line-height: 0.6;
}

.testimonial-card p {
  margin-block: auto 36px;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 300;
  line-height: 1.4;
}

.testimonial-card footer {
  color: var(--ink-muted);
  font-size: 13px;
}

.testimonial-card--primary footer {
  color: var(--inverse-muted);
}

/* Blog */
.blog-section {
  border-bottom: var(--hairline);
}

.section-heading--compact > div {
  grid-column-end: span 9;
}

.section-heading--compact h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.blog-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.blog-card:only-child {
  grid-column: 1 / -1;
  display: grid;
  min-height: 360px;
  grid-template-columns: 6fr 10fr;
}

.blog-card:only-child figure {
  height: 100%;
  min-height: 360px;
  border-right: var(--hairline);
  border-bottom: 0;
}

.blog-card:only-child .blog-card__body {
  padding: clamp(32px, 4vw, 64px);
}

.blog-card:only-child h3 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
}

.blog-card figure {
  position: relative;
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 320ms ease, filter 320ms ease;
}

.blog-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card__body span {
  margin-bottom: 40px;
  color: var(--ink-subtle);
  font-size: 11px;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-loading {
  grid-column: 1 / -1;
  min-height: 240px;
  margin: 0;
  padding: 32px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  color: var(--ink-muted);
}

/* FAQ */
.faq {
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.faq__layout {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 104px;
  grid-column: 1 / span 6;
  padding-right: 48px;
}

.faq__intro h2 {
  margin-bottom: 24px;
}

.faq__intro > p:last-child {
  max-width: 460px;
  color: var(--ink-muted);
}

.faq__list {
  grid-column: 8 / -1;
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.faq summary {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

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

.faq summary span {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

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

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 720px;
  margin: -2px 48px 0 0;
  padding-bottom: 28px;
  color: var(--ink-muted);
}

/* Final conversion */
.final-conversion {
  background: var(--primary);
  color: var(--canvas);
}

.final-conversion__layout {
  display: grid;
  min-height: 700px;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: center;
}

.final-conversion__copy {
  grid-column: 1 / span 7;
  padding-right: 56px;
}

.final-conversion h2 {
  margin-bottom: 8px;
  font-size: clamp(56px, 7vw, 108px);
}

.final-conversion__copy > p:not(.section-index) {
  color: var(--inverse-muted);
  font-size: 24px;
}

.final-conversion__copy ul {
  display: grid;
  gap: 8px;
  margin-top: 52px;
  padding: 0;
  color: var(--inverse-muted);
  list-style: none;
}

.final-conversion__copy li {
  position: relative;
  padding-left: 22px;
}

.final-conversion__copy li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--signal);
  content: "";
}

.lead-form--inverse {
  display: grid;
  grid-column: 9 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(32px, 4vw, 64px);
  background: var(--canvas);
}

.lead-form--inverse .form-error,
.lead-form--inverse .lead-form__submit {
  grid-column: 1 / -1;
}

.lead-form--inverse .field input {
  height: 52px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--canvas);
}

.footer-grid {
  display: grid;
  min-height: 300px;
  grid-template-columns: 2fr 1.2fr 1.4fr 64px;
  padding-right: 0;
}

.footer-brand,
.footer-cell {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-right: 1px solid var(--carbon-700);
}

.footer-brand {
  padding-left: 0;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand p,
.footer-cell p,
.footer-cell span {
  margin-bottom: 0;
  color: var(--inverse-muted);
  font-size: 12px;
}

.footer-cell strong {
  font-size: 15px;
  font-weight: 400;
}

.footer-cell a:hover {
  color: var(--on-primary);
}

.footer-top {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: var(--signal);
  color: var(--on-signal);
  font-size: 22px;
}

.footer-top:hover {
  background: var(--signal-hover);
}

.footer-services {
  border-top: 1px solid var(--carbon-700);
  color: var(--canvas);
}

.footer-services summary {
  cursor: pointer;
  list-style: none;
}

.footer-services summary::-webkit-details-marker {
  display: none;
}

.footer-services__summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.footer-services__summary strong {
  font-size: 16px;
  font-weight: 400;
}

.footer-services__summary > span {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--inverse-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-services__summary i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.footer-services__summary i::before,
.footer-services__summary i::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transition: transform 160ms ease;
}

.footer-services__summary i::after {
  transform: rotate(90deg);
}

.footer-services[open] .footer-services__summary i::after {
  transform: rotate(0);
}

.footer-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 48px;
  border-top: 1px solid var(--carbon-700);
  border-left: 1px solid var(--carbon-700);
}

.footer-services__grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 14px;
  border-right: 1px solid var(--carbon-700);
  border-bottom: 1px solid var(--carbon-700);
  color: var(--inverse-muted);
  font-size: 12px;
  transition: background-color 120ms ease, color 120ms ease;
}

.footer-services__grid a:hover {
  background: var(--inverse-surface);
  color: var(--on-primary);
}

/* Dialogs and mobile CTA */
/*
 * TEMPORARIO: gatilhos do video institucional ocultos ate a nova producao.
 * Para reativar o video em todo o site, remova apenas esta regra.
 * O dialogo, os arquivos de video e o JavaScript permanecem preservados.
 */
[data-video-open] {
  display: none !important;
}

.mobile-lead-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  background: var(--signal);
  color: var(--on-signal);
  cursor: pointer;
  transform: translateY(calc(100% + 24px));
  transition: transform 180ms ease;
}

.video-dialog {
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--canvas);
  color: var(--ink);
}

.video-dialog::backdrop {
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(2px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--surface-1);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  font-weight: 300;
}

.dialog-close:hover {
  background: var(--surface-2);
}

.video-dialog {
  width: min(94vw, 1280px);
  background: var(--ink);
}

.video-dialog video {
  width: 100%;
  max-height: 88svh;
  background: var(--ink);
}

.dialog-close--inverse {
  background: var(--canvas);
  color: var(--ink);
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms cubic-bezier(0.2, 0, 0.2, 1) var(--delay, 0ms), transform 280ms cubic-bezier(0.2, 0, 0.2, 1) var(--delay, 0ms);
}

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

/* Wide tablet */
@media (max-width: 1260px) {
  .site-nav > a:nth-child(4),
  .site-nav > a:last-child {
    display: none;
  }

  .hero__copy {
    grid-column: 1 / span 7;
  }

  .hero__media {
    grid-column: 8 / span 4;
  }

  .hero__lead {
    grid-column: 12 / -1;
  }

  .hero__copy-inner,
  .lead-panel {
    padding: 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 4.6vw, 58px);
  }

  .hero__bullets {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero__bullet {
    min-height: 20px;
  }

  .lead-form {
    gap: 7px;
  }

  .field input {
    height: 42px;
  }
}

@media (max-width: 1080px) {
  :root {
    --gutter: 28px;
  }

  .site-header__inner {
    grid-template-columns: 1fr 220px;
  }

  .site-nav {
    position: absolute;
    z-index: 99;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    background: var(--canvas);
    border-bottom: var(--hairline);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a,
  .site-nav > a:nth-child(4),
  .site-nav > a:last-child {
    display: flex;
    min-height: 52px;
    padding-inline: var(--gutter);
    border-top: var(--hairline);
  }

  .site-nav > a:hover {
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .header-cta {
    margin-right: 56px;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    display: flex;
    height: 64px;
  }

  .hero__copy {
    grid-column: 1 / span 8;
  }

  .hero__media {
    display: none;
  }

  .hero__lead {
    grid-column: 9 / -1;
  }

  .hero__copy-inner,
  .lead-panel {
    padding: clamp(32px, 5vw, 56px);
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 66px);
  }

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

  .hero__proof > div {
    padding-inline: 24px;
  }

  .hero__proof span {
    font-size: 11px;
  }

  .benefit-card {
    min-height: 420px;
  }

  .facility__content {
    grid-column-end: span 11;
  }

  .partner-tabs button {
    height: 96px;
    padding: 24px 14px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    height: calc(100svh - 64px);
    min-height: 0;
    max-height: none;
  }

  .hero__main {
    display: block;
  }

  .hero__copy {
    height: 100%;
  }

  .hero__copy-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 48px);
  }

  .hero__lead,
  .hero__media {
    display: none;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(46px, 7vw, 60px);
  }

  .hero__intro {
    margin-bottom: 14px;
  }

  .hero__mobile-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 20px;
  }

  .mobile-lead-section {
    display: block;
  }

  .section-heading > .section-index,
  .section-heading > div {
    grid-column: 1 / -1;
  }

  .section-heading > .section-index {
    margin-bottom: 28px;
  }

  .partner-rail__inner {
    grid-template-columns: 1fr;
    padding-right: var(--gutter);
  }

  .partner-rail h2 {
    min-height: 88px;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .partner-rail__logos img {
    height: 104px;
    padding: 30px 18px;
  }

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

  .benefit-card {
    min-height: 320px;
  }

  .benefit-card h3 {
    margin-top: 88px;
  }

  .location-story {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .location-story__copy,
  .location-story__data {
    min-height: 520px;
  }

  .process__intro,
  .process__steps {
    grid-column: 1 / -1;
  }

  .process__intro {
    position: static;
    margin-bottom: 72px;
    padding-right: 0;
  }

  .operation-strip {
    grid-template-columns: 1fr;
  }

  .operation-strip article {
    min-height: 220px;
  }

  .operation-strip h3 {
    margin-top: 48px;
  }

  .facility {
    min-height: 680px;
  }

  .facility__content {
    grid-column: 1 / span 12;
  }

  .partnerships__intro,
  .partner-explorer {
    grid-column: 1 / -1;
  }

  .partnerships__intro {
    margin-bottom: 72px;
    padding-right: 0;
  }

  .testimonial-card {
    min-width: 78vw;
    flex-basis: 78vw;
  }

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

  .blog-card:last-child {
    grid-column: 1 / -1;
  }

  .faq__intro,
  .faq__list {
    grid-column: 1 / -1;
  }

  .faq__intro {
    position: static;
    margin-bottom: 56px;
    padding-right: 0;
  }

  .final-conversion__copy,
  .lead-form--inverse {
    grid-column: 1 / -1;
  }

  .final-conversion__layout {
    padding-block: 96px;
  }

  .final-conversion__copy {
    margin-bottom: 64px;
    padding-right: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    min-height: 180px;
    padding-left: 0;
  }

  .footer-top {
    grid-column: 3;
    grid-row: 2;
  }

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

/* Keep the full first-screen story usable on short landscape viewports. */
@media (min-width: 901px) and (max-height: 700px) {
  .hero__copy-inner {
    padding: 20px clamp(24px, 3vw, 40px);
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(38px, 3.7vw, 54px);
    line-height: 0.98;
  }

  .hero__intro {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero__bullets {
    gap: 4px 16px;
  }

  .hero__bullet {
    min-height: 18px;
    font-size: 11px;
  }

  .hero__lead .lead-panel {
    padding: 12px clamp(18px, 2vw, 28px);
  }

  .hero__lead .lead-panel .section-index {
    margin-bottom: 6px;
  }

  .hero__lead .lead-panel h2 {
    font-size: 30px;
  }

  .hero__lead .lead-panel > p:not(.section-index):not(.lead-panel__note) {
    margin-bottom: 6px;
  }

  .hero__lead .lead-form {
    gap: 5px;
  }

  .hero__lead .field label {
    min-height: 20px;
    font-size: 11px;
  }

  .hero__lead .lead-panel__note {
    margin-top: 4px;
  }

  .hero__proof {
    flex-basis: 72px;
  }
}

@media (min-width: 761px) and (max-width: 900px) and (max-height: 700px) {
  .hero__copy-inner {
    padding: 20px clamp(28px, 5vw, 48px);
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(44px, 6vw, 54px);
    line-height: 0.98;
  }

  .hero__intro {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  .hero__bullets {
    gap: 4px 16px;
  }

  .hero__bullet {
    min-height: 18px;
    font-size: 11px;
  }

  .hero__mobile-actions {
    margin-top: 12px;
  }

  .hero__mobile-actions .button {
    min-height: 46px;
    padding-block: 10px;
  }

  .hero__proof {
    flex-basis: 72px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --section-space: 76px;
  }

  html {
    scroll-padding-top: 56px;
  }

  .site-header {
    height: 56px;
  }

  .site-header__inner {
    grid-template-columns: 1fr 56px;
    padding-right: 0;
  }

  .brand .wordmark {
    font-size: 20px;
  }

  .site-nav {
    top: 56px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    height: 56px;
  }

  .hero {
    height: calc(100svh - 56px);
    min-height: 0;
    max-height: none;
  }

  .hero__main {
    display: block;
    min-height: 0;
    flex: 1 1 auto;
  }

  .hero__copy {
    height: 100%;
  }

  .hero__copy-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
  }

  .hero__lead,
  .hero__media {
    display: none;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.8px;
  }

  .hero__intro {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero__bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 18px;
  }

  .hero__bullet:nth-child(n + 3) {
    display: none;
  }

  .hero__mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 0;
  }

  .hero__mobile-actions .button {
    width: 100%;
  }

  .hero__mobile-actions .text-link {
    font-size: 12px;
  }

  .hero__proof {
    flex-basis: 112px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__proof > div {
    min-height: 56px;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: var(--hairline);
  }

  .hero__proof > div:nth-child(2) {
    border-right: 0;
  }

  .hero__proof strong {
    font-size: 22px;
  }

  .hero__proof span {
    font-size: 10px;
  }

  .mobile-lead-section {
    scroll-margin-top: 56px;
  }

  .mobile-lead-section__layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 72px;
  }

  .mobile-lead-section__copy h2 {
    font-size: 44px;
  }

  .mobile-lead-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-lead-form .form-error,
  .mobile-lead-form .lead-form__submit,
  .mobile-lead-form .lead-panel__note {
    grid-column: auto;
  }

  .partner-rail__inner {
    padding-right: 0;
  }

  .partner-rail h2 {
    padding-inline: 0 20px;
  }

  .partner-rail__logos {
    grid-template-columns: repeat(5, 132px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .partner-rail__logos img {
    height: 92px;
    scroll-snap-align: start;
  }

  .section-heading h2,
  .testimonial-heading h2,
  .faq__intro h2,
  .partnerships__intro h2 {
    font-size: 39px;
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .benefit-card {
    min-height: 340px;
    padding: 28px;
  }

  .benefit-card h3 {
    margin-top: 80px;
    font-size: 30px;
  }

  .location-story__copy,
  .location-story__data {
    min-height: 520px;
    padding: 44px 24px;
  }

  .location-story__copy h2 {
    font-size: 39px;
  }

  .data-title {
    display: grid;
    gap: 5px;
  }

  .process__intro h2 {
    font-size: 39px;
  }

  .process-step {
    min-height: 188px;
    grid-template-columns: 56px 1fr;
    padding-right: 20px;
  }

  .process__steps::before {
    left: 27px;
  }

  .process-step > span {
    margin-left: 11px;
  }

  .operation-strip {
    padding-inline: 20px;
  }

  .facility {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .facility__image {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url("../img/clg-centro-logistico-960.webp");
    background-image: image-set(
      url("../img/clg-centro-logistico-960.webp") 1x,
      url("../img/clg-centro-logistico-1600.webp") 2x
    );
    background-position: 50% 50%;
    transform: none;
  }

  .facility__content {
    display: block;
    padding: 52px 24px;
    background: var(--ink);
  }

  .facility__content h2 {
    font-size: 40px;
  }

  .facility__actions {
    display: grid;
  }

  .facility__actions .button {
    width: 100%;
  }

  .facility__actions > div {
    min-width: 0;
    min-height: 76px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .partnerships__intro {
    margin-bottom: 56px;
  }

  .partner-tabs {
    grid-template-columns: repeat(5, 112px);
    overflow-x: auto;
  }

  .partner-tabs button {
    height: 88px;
    padding: 24px 14px;
  }

  .partner-panels,
  .partner-panels article {
    min-height: 380px;
  }

  .partner-panels article {
    padding: 28px;
  }

  .partner-panels p {
    margin-top: 64px;
    font-size: 23px;
  }

  .testimonial-heading {
    display: grid;
  }

  .carousel-controls {
    justify-self: end;
  }

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

  .metric-grid > div {
    min-height: 88px;
  }

  .testimonial-card {
    min-width: calc(100vw - 40px);
    min-height: 500px;
    flex-basis: calc(100vw - 40px);
    padding: 32px 28px;
  }

  .testimonial-card p {
    font-size: 20px;
  }

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

  .blog-card:last-child {
    grid-column: auto;
  }

  .blog-card:only-child {
    display: flex;
    min-height: 440px;
  }

  .blog-card:only-child figure {
    height: 230px;
    min-height: 230px;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .blog-card {
    min-height: 440px;
  }

  .faq summary {
    min-height: 72px;
    font-size: 16px;
  }

  .final-conversion__layout {
    padding-block: 76px;
  }

  .final-conversion h2 {
    font-size: 58px;
  }

  .lead-form--inverse {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .lead-form--inverse .form-error,
  .lead-form--inverse .lead-form__submit {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 56px;
    padding-left: 20px;
  }

  .footer-brand,
  .footer-cell {
    grid-column: 1;
    min-height: 148px;
    padding: 28px 20px 28px 0;
  }

  .footer-brand {
    min-height: 180px;
  }

  .footer-top {
    grid-column: 2;
    grid-row: 1;
    width: 56px;
    height: 56px;
  }

  .footer-services__summary {
    padding-right: 20px;
  }

  .footer-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 20px;
    padding-bottom: 28px;
  }

  .mobile-lead-cta {
    display: flex;
  }

  body.show-mobile-cta .mobile-lead-cta {
    transform: translateY(0);
  }

  .video-dialog {
    width: 100vw;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero__copy-inner {
    padding: 16px 24px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1;
  }

  .hero__intro {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.3;
  }

  .hero__bullets {
    gap: 3px;
    margin-bottom: 10px;
  }

  .hero__bullet {
    min-height: 18px;
    font-size: 11px;
  }

  .hero__mobile-actions {
    gap: 6px;
  }

  .hero__mobile-actions .button {
    min-height: 44px;
    padding-block: 10px;
  }

  .hero__mobile-actions .text-link {
    padding-block: 4px;
  }

  .hero__proof {
    flex-basis: 96px;
  }

  .hero__proof > div {
    min-height: 48px;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .hero__copy-inner {
    padding-block: 18px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .hero__intro {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .hero__bullets {
    margin-bottom: 12px;
  }

  .hero__proof {
    flex-basis: 96px;
  }
}

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

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

  .hero-animate,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Brand contrast and editorial composition */
.site-nav > a {
  color: var(--ink);
  font-size: 14px;
}

.header-cta {
  font-weight: 600;
}

.hero .eyebrow,
.hero h1,
.hero h1 span,
.hero__bullet,
.hero__mobile-actions .text-link,
.lead-dialog__header .section-index,
.lead-dialog__header .eyebrow,
.lead-dialog__header h2,
.lead-dialog__header p:last-child,
.location-story__copy .section-index,
.location-story__copy h2,
.location-story__copy > p:last-child,
.section-index--inverse {
  color: var(--on-primary);
}

.hero__copy-inner {
  grid-template-rows: 1fr auto auto 1fr auto;
  align-content: stretch;
}

.hero__heading {
  grid-row: 2;
}

.hero__support {
  display: contents;
}

.hero__bullets {
  grid-row: 3;
  margin-top: 30px;
}

.hero__mobile-actions {
  display: grid;
  width: min(100%, 466px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  grid-row: 5;
  justify-self: end;
}

.hero__mobile-actions > * {
  width: 228px;
  flex: 1 1 0;
}

.hero__mobile-actions .text-link {
  min-height: 46px;
  justify-content: space-between;
}

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

.hero__proof > div {
  gap: 12px;
  padding-inline: clamp(18px, 2.2vw, 36px);
}

.hero__proof strong {
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .hero__mobile-actions .text-link:hover {
    color: var(--on-primary);
  }
}

/* Benefits: one narrative, three distinct visual ideas */
.benefits {
  background: var(--surface-1);
}

.benefits__heading {
  margin-bottom: clamp(56px, 6vw, 80px);
}

.benefits__heading > div {
  grid-column: 5 / span 8;
}

.benefits__heading h2 {
  max-width: 18ch;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.08;
}

.benefit-composition {
  display: grid;
  min-height: 620px;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(290px, 1fr));
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.benefit-story {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
  transition: background-color 200ms ease, color 200ms ease;
}

.benefit-story--focus {
  display: grid;
  grid-column: 1 / span 8;
  grid-row: 1 / span 2;
  grid-template-rows: minmax(280px, 1.08fr) minmax(260px, 0.92fr);
}

.benefit-story--location,
.benefit-story--accuracy {
  display: grid;
  grid-column: 9 / -1;
  grid-template-columns: minmax(190px, 5fr) minmax(0, 7fr);
}

.benefit-story--location {
  grid-row: 1;
}

.benefit-story--accuracy {
  grid-row: 2;
  background: var(--primary);
  color: var(--on-primary);
}

.benefit-story__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 3.2vw, 48px);
}

.benefit-story h3 {
  max-width: 18ch;
  margin: 0 0 20px;
  font-size: clamp(26px, 2.25vw, 34px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.35px;
}

.benefit-story p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

.benefit-story--accuracy h3,
.benefit-story--accuracy p,
.benefit-story--accuracy .benefit-story__stat {
  color: var(--on-primary);
}

.benefit-story__visual--flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.benefit-story__visual--flow span {
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
  transition: background-color 200ms ease;
}

.benefit-story__visual--flow span:nth-child(1),
.benefit-story__visual--flow span:nth-child(6) {
  background: var(--primary);
}

.benefit-story__visual--flow span:nth-child(3),
.benefit-story__visual--flow span:nth-child(8) {
  background: var(--carbon-100);
}

.benefit-story__visual--flow span:nth-child(7) {
  background: var(--signal);
}

.benefit-story__visual--flow i {
  position: absolute;
  z-index: 2;
  right: 12.5%;
  bottom: 25%;
  width: 37.5%;
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform 220ms ease;
}

.benefit-story__visual--flow i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.benefit-story__geo {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border-right: var(--hairline);
  background: var(--carbon-100);
}

.benefit-story__geo span {
  color: var(--primary);
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -4px;
}

.benefit-story__geo i,
.benefit-story__geo i::before,
.benefit-story__geo i::after {
  position: absolute;
  background: var(--primary);
  content: "";
}

.benefit-story__geo i {
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 1px;
}

.benefit-story__geo i::before {
  top: -16px;
  left: 15px;
  width: 1px;
  height: 32px;
}

.benefit-story__geo i::after {
  top: -3px;
  left: 12px;
  width: 7px;
  height: 7px;
  background: var(--signal);
}

.benefit-story__stat {
  display: flex;
  align-items: center;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -3px;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-story--focus:hover {
    background: var(--card-hover);
  }

  .benefit-story--focus:hover .benefit-story__visual--flow i {
    transform: translateX(8px);
  }

  .benefit-story--location:hover {
    background: var(--card-hover);
  }

  .benefit-story--accuracy:hover {
    background: var(--primary-hover);
  }
}

/* Testimonials: tabs and evidence share one explicit grid */
.testimonial-heading {
  grid-column: 1 / span 5;
  grid-row: 1;
  margin: 0;
}

.testimonial-heading h2 {
  max-width: 15ch;
}

.testimonial-tabs {
  grid-column: 1 / span 5;
  grid-row: 2;
  margin-top: 48px;
}

.testimonial-stage {
  grid-column: 7 / -1;
  grid-row: 1 / span 2;
  min-height: 440px;
}

.testimonial-layout .metric-grid {
  grid-column: 1 / -1;
  grid-row: 3;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 56px;
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.testimonial-layout .metric-grid > div {
  min-height: 112px;
  align-items: flex-start;
  padding: 22px 24px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.testimonial-layout .metric-grid strong {
  font-size: clamp(28px, 2.2vw, 38px);
  white-space: nowrap;
}

.testimonial-layout .metric-grid span {
  max-width: 18ch;
  font-size: 12px;
  line-height: 1.4;
}

/* Blog: one lead story and two supporting reads */
.blog-section {
  background: var(--canvas);
}

.blog-section__header {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.blog-section__header > .section-index {
  grid-column: 1 / span 3;
  align-self: start;
}

.blog-section__header > div {
  grid-column: 5 / span 8;
}

.blog-section__header h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.09;
  letter-spacing: -0.8px;
}

.blog-section__all {
  display: inline-flex;
  grid-column: 14 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  justify-self: stretch;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--primary);
  font-size: 14px;
}

.blog-grid {
  display: grid;
  min-height: 570px;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.blog-card,
.blog-card:only-child {
  display: block;
  min-height: 0;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
  transition: background-color 180ms ease;
}

.blog-card--featured {
  grid-column: 1 / span 9;
  grid-row: 1 / span 2;
}

.blog-card:not(.blog-card--featured) {
  grid-column: 10 / -1;
}

.blog-card:not(.blog-card--featured):nth-child(2) {
  grid-row: 1;
}

.blog-card:not(.blog-card--featured):nth-child(3) {
  grid-row: 2;
}

.blog-card__link {
  display: grid;
  width: 100%;
  height: 100%;
  color: var(--ink);
}

.blog-card--featured .blog-card__link {
  grid-template-rows: minmax(320px, 1.2fr) minmax(210px, 0.8fr);
}

.blog-card:not(.blog-card--featured) .blog-card__link {
  grid-template-columns: minmax(180px, 5fr) minmax(0, 7fr);
}

.blog-card figure,
.blog-card:only-child figure {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface-1);
}

.blog-card--featured figure {
  border-right: 0;
  border-bottom: var(--hairline);
}

.blog-card:not(.blog-card--featured) figure {
  border-right: var(--hairline);
  border-bottom: 0;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
  transition: filter 260ms ease, transform 320ms ease;
}

.blog-card__body,
.blog-card:only-child .blog-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
}

.blog-card__meta,
.blog-card__body > .blog-card__meta {
  margin: 0 0 24px;
  color: var(--ink-subtle);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-card h3,
.blog-card:only-child h3 {
  max-width: 22ch;
  margin: 0 0 28px;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.2px;
}

.blog-card--featured h3 {
  max-width: 19ch;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.18;
}

.blog-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: var(--hairline);
  color: var(--primary);
  font-size: 13px;
}

.blog-card__action i {
  font-style: normal;
  transition: transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .blog-section__all:hover {
    color: var(--primary-hover);
  }

  .blog-card:hover {
    background: var(--card-hover);
  }

  .blog-card:hover img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.025);
  }

  .blog-card:hover .blog-card__action i {
    transform: translate(3px, -3px);
  }
}

@media (max-width: 1080px) {
  .benefit-story--focus {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 7fr 9fr;
    grid-template-rows: minmax(320px, auto);
  }

  .benefit-story__visual--flow {
    border-right: var(--hairline);
    border-bottom: 0;
  }

  .benefit-story--location,
  .benefit-story--accuracy {
    grid-row: 2;
  }

  .benefit-story--location {
    grid-column: 1 / span 8;
  }

  .benefit-story--accuracy {
    grid-column: 9 / -1;
  }

  .benefit-composition {
    min-height: 650px;
    grid-template-rows: minmax(320px, auto) minmax(330px, auto);
  }

  .benefit-story--location,
  .benefit-story--accuracy {
    grid-template-columns: 1fr;
  }

  .benefit-story__geo,
  .benefit-story__stat {
    min-height: 140px;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .blog-card--featured {
    grid-column-end: span 8;
  }

  .blog-card:not(.blog-card--featured) {
    grid-column: 9 / -1;
  }
}

@media (max-width: 900px) {
  .testimonial-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial-heading,
  .testimonial-tabs,
  .testimonial-stage,
  .testimonial-layout .metric-grid {
    grid-column: 1;
  }

  .testimonial-heading {
    grid-row: 1;
  }

  .testimonial-tabs {
    grid-row: 2;
    margin-top: 40px;
  }

  .testimonial-stage {
    grid-row: 3;
    margin-top: 24px;
  }

  .testimonial-layout .metric-grid {
    grid-row: 4;
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .hero__copy-inner {
    grid-template-rows: 1fr auto auto 1fr auto;
  }

  .hero__bullets {
    margin-top: 28px;
  }

  .hero__mobile-actions {
    width: 100%;
    justify-self: stretch;
  }

  .hero__proof {
    flex-basis: 168px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__proof > div {
    min-height: 56px;
  }

  .hero__proof > div:first-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .hero__proof > div:nth-child(2),
  .hero__proof > div:nth-child(4) {
    border-right: var(--hairline);
  }

  .hero__proof > div:nth-child(3),
  .hero__proof > div:nth-child(5) {
    border-right: 0;
  }

  .benefits__heading > .section-index,
  .benefits__heading > div {
    grid-column: 1 / -1;
  }

  .benefits__heading > div {
    margin-top: 22px;
  }

  .benefits__heading h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .benefit-composition {
    display: block;
    min-height: 0;
  }

  .benefit-story--focus,
  .benefit-story--location,
  .benefit-story--accuracy {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .benefit-story__visual--flow {
    min-height: 230px;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .benefit-story__geo,
  .benefit-story__stat {
    min-height: 170px;
  }

  .benefit-story__copy {
    padding: 28px 24px 34px;
  }

  .benefit-story h3 {
    font-size: 27px;
  }

  .benefit-story__stat {
    font-size: 64px;
  }

  .testimonial-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
  }

  .testimonial-stage {
    margin-top: 20px;
  }

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

  .testimonial-layout .metric-grid > div:first-child {
    min-height: 104px;
    grid-column: 1 / -1;
  }

  .testimonial-layout .metric-grid > div:not(:first-child) {
    min-height: 92px;
  }

  .blog-section__header {
    display: block;
    margin-bottom: 36px;
  }

  .blog-section__header h2 {
    margin-top: 20px;
    font-size: clamp(32px, 8.8vw, 38px);
  }

  .blog-section__all {
    margin-top: 24px;
  }

  .blog-grid {
    display: block;
    min-height: 0;
  }

  .blog-card--featured,
  .blog-card:not(.blog-card--featured) {
    display: block;
  }

  .blog-card--featured .blog-card__link,
  .blog-card:not(.blog-card--featured) .blog-card__link {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .blog-card figure,
  .blog-card:only-child figure,
  .blog-card:not(.blog-card--featured) figure {
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .blog-card--featured figure {
    aspect-ratio: 16 / 10;
  }

  .blog-card__body,
  .blog-card:only-child .blog-card__body {
    min-height: 180px;
    padding: 28px 24px;
  }

  .blog-card h3,
  .blog-card:only-child h3 {
    font-size: 22px;
  }

  .blog-card--featured h3 {
    font-size: 27px;
  }
}

/* Consentimento e privacidade */
.consent-banner {
  position: fixed;
  z-index: 1000;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 40px);
  display: grid;
  width: min(720px, calc(100vw - 32px));
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--carbon-700);
  background: var(--carbon-900);
  box-shadow: 0 24px 70px rgba(13, 13, 13, 0.28);
  color: var(--on-primary);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__copy {
  min-width: 0;
}

.consent-banner__eyebrow {
  margin: 0 0 14px;
  color: var(--on-primary);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.consent-banner h2 {
  max-width: 22ch;
  margin: 0;
  color: var(--on-primary);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.consent-banner__copy > p:not(.consent-banner__eyebrow) {
  max-width: 54ch;
  margin: 18px 0 16px;
  color: var(--inverse-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-banner__copy a {
  display: inline-block;
  border-bottom: 1px solid var(--carbon-500);
  color: var(--on-primary);
  font-size: 12px;
  text-underline-offset: 4px;
}

.consent-banner__copy a:hover {
  border-color: var(--signal);
}

.consent-banner__actions {
  display: flex;
  align-self: end;
  flex-direction: column;
  gap: 10px;
}

.consent-banner__actions button {
  min-height: 48px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  transition: background-color 140ms ease, color 140ms ease;
}

.consent-banner__accept {
  background: var(--signal);
  color: var(--on-signal);
  font-weight: 600;
}

.consent-banner__accept:hover {
  background: var(--signal-hover);
}

.consent-banner__reject {
  border: 1px solid var(--carbon-600);
  background: transparent;
  color: var(--on-primary);
}

.consent-banner__reject:hover {
  background: var(--carbon-800);
}

.footer-privacy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal .footer-privacy a {
  margin: 0;
}

.footer-privacy button {
  padding: 0;
  background: transparent;
  color: var(--canvas);
  cursor: pointer;
  font-size: inherit;
}

.footer-privacy a:hover,
.footer-privacy button:hover {
  color: var(--on-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-page {
  background: var(--canvas);
}

.privacy-hero {
  padding-block: clamp(88px, 10vw, 144px);
  background: var(--carbon-900);
  color: var(--on-primary);
}

.privacy-hero__inner {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
}

.privacy-hero__heading {
  grid-column: 1 / span 10;
}

.privacy-hero .section-index {
  color: var(--on-primary);
}

.privacy-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--on-primary);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.privacy-hero__summary {
  grid-column: 12 / -1;
  padding: 28px 0 4px 28px;
  border-left: 1px solid var(--carbon-600);
}

.privacy-hero__summary p {
  margin: 0 0 28px;
  color: var(--inverse-muted);
  font-size: 16px;
  line-height: 1.55;
}

.privacy-hero__summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 0;
  font-size: 12px;
}

.privacy-hero__summary dt {
  color: var(--inverse-muted);
  text-transform: uppercase;
}

.privacy-hero__summary dd {
  margin: 0;
  color: var(--on-primary);
}

.privacy-document {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 24px;
  padding-block: clamp(72px, 9vw, 128px);
}

.privacy-document__nav {
  position: sticky;
  top: 104px;
  display: flex;
  grid-column: 1 / span 4;
  align-self: start;
  flex-direction: column;
  border-top: 1px solid var(--surface-2);
}

.privacy-document__nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--surface-2);
  color: var(--ink-muted);
  font-size: 12px;
}

.privacy-document__nav a:hover {
  color: var(--ink);
}

.privacy-document__content {
  grid-column: 6 / span 9;
}

.privacy-document__intro {
  margin-bottom: clamp(56px, 7vw, 92px);
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.35;
}

.privacy-section {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--surface-2);
  scroll-margin-top: 88px;
}

.privacy-section__number {
  color: var(--ink-subtle);
  font-size: 12px;
  letter-spacing: 1px;
}

.privacy-section h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.privacy-section h3 {
  margin: 28px 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.privacy-section p,
.privacy-section li {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-section p {
  margin-bottom: 18px;
}

.privacy-section ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.privacy-section a {
  border-bottom: 1px solid var(--surface-3);
  color: var(--ink);
}

.privacy-contact {
  margin-top: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface-1);
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .privacy-hero__heading {
    grid-column: 1 / span 10;
  }

  .privacy-hero__summary {
    grid-column: 11 / -1;
  }

  .privacy-document__nav {
    display: none;
  }

  .privacy-document__content {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-y: auto;
    padding: 24px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-privacy {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .footer-legal .footer-privacy a {
    width: auto;
    margin: 0;
  }

  .privacy-hero {
    padding-block: 72px;
  }

  .privacy-hero__inner {
    grid-template-columns: 1fr;
  }

  .privacy-hero__heading,
  .privacy-hero__summary {
    grid-column: 1;
  }

  .privacy-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .privacy-hero__summary {
    margin-top: 30px;
    padding: 26px 0 0;
    border-top: 1px solid var(--carbon-600);
    border-left: 0;
  }

  .privacy-document {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner__actions button {
    transition: none;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .hero__proof {
    flex-basis: 144px;
  }

  .hero__proof > div {
    min-height: 48px;
    padding-block: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-story,
  .benefit-story__visual--flow span,
  .benefit-story__visual--flow i,
  .blog-card,
  .blog-card img,
  .blog-card__action i {
    transition: none !important;
  }
}

/* Premium refinement pass */
:root {
  --card-hover: var(--carbon-100);
  --type-display: clamp(42px, 3.8vw, 62px);
  --type-section: clamp(34px, 3.1vw, 50px);
  --type-section-compact: clamp(32px, 2.7vw, 44px);
  --type-card-title: clamp(24px, 1.8vw, 30px);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.button--signal,
.hero__mobile-actions .button,
.final-conversion__action .button,
.lead-dialog__form .lead-form__submit {
  background: var(--signal);
  color: var(--on-signal);
}

.button--signal:hover,
.hero__mobile-actions .button:hover,
.final-conversion__action .button:hover,
.lead-dialog__form .lead-form__submit:hover {
  background: var(--signal-hover);
}

.button--signal:active,
.hero__mobile-actions .button:active,
.final-conversion__action .button:active,
.lead-dialog__form .lead-form__submit:active {
  background: var(--signal-active);
  color: var(--on-signal);
}

.header-cta {
  background: var(--signal);
  color: var(--on-signal);
}

.header-cta:hover {
  background: var(--signal-hover);
}

.header-cta:active {
  background: var(--signal-active);
  color: var(--on-signal);
}

.mobile-lead-cta {
  background: var(--signal);
  color: var(--on-signal);
  transition: background-color 140ms ease, color 140ms ease, transform 180ms ease;
}

.mobile-lead-cta:hover {
  background: var(--signal-hover);
}

.mobile-lead-cta:active {
  background: var(--signal-active);
  color: var(--on-signal);
}

/* Restrained type scale */
.hero h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.9px;
}

.section-heading h2,
.testimonial-heading h2,
.faq__intro h2,
.partnerships__intro h2,
.location-story__copy h2,
.process__intro h2,
.facility__content h2,
.final-conversion h2 {
  max-width: 20ch;
  font-size: var(--type-section);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.65px;
}

.lead-panel h2,
.lead-dialog__header h2 {
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.45px;
}

.benefit-card h3,
.process-step h3 {
  font-size: var(--type-card-title);
  line-height: 1.2;
  letter-spacing: -0.25px;
}

.operation-strip h3,
.blog-card h3,
.blog-card:only-child h3 {
  font-size: clamp(21px, 1.5vw, 25px);
  line-height: 1.3;
}

.partner-panels p {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
}

/* Two-panel hero: the full section, including proof, remains in the first fold. */
.hero {
  height: calc(100svh - 64px);
  min-height: 0;
  max-height: 880px;
}

.hero__main {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(16, minmax(0, 1fr));
}

.hero__main > * {
  min-width: 0;
}

.hero__copy {
  display: flex;
  grid-column: 1 / span 7;
  min-height: 0;
  align-items: center;
}

.hero__copy-inner {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 0;
  padding: clamp(36px, 3vw, 48px) clamp(32px, 3vw, 48px);
}

.hero .eyebrow,
.hero__bullets,
.hero__mobile-actions {
  margin: 0;
}

.hero__heading {
  display: grid;
  gap: 14px;
}

.hero__support {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.hero__bullets {
  max-width: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__bullet {
  display: flex;
  min-height: 0;
  align-items: flex-start;
  padding-left: 28px;
  font-size: clamp(16px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.4;
}

.hero__bullet::before {
  top: 0.35em;
  width: 14px;
  height: 14px;
}

.hero__bullet::after {
  top: 0.52em;
  left: 5px;
  width: 3px;
  height: 7px;
}

.hero__media {
  display: block;
  grid-column: 8 / -1;
  min-width: 0;
  min-height: 0;
}

.hero__lead,
.mobile-lead-section {
  display: none !important;
}

.hero__mobile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 0;
}

.hero__mobile-actions .button {
  min-width: min(100%, 228px);
}

/* Integration ecosystem */
.integration-rail {
  overflow: hidden;
  border-bottom: var(--hairline);
  background: var(--surface-1);
}

.integration-rail__inner {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  padding-right: 0;
}

.integration-rail__intro {
  display: flex;
  min-height: 128px;
  grid-column: 1 / span 4;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(24px, 3vw, 48px);
  border-right: var(--hairline);
}

.integration-rail__intro .eyebrow {
  margin-bottom: 10px;
}

.integration-rail__intro h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.25px;
}

.integration-rail__logos {
  display: grid;
  grid-column: 5 / -1;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.integration-logo {
  display: grid;
  min-width: 0;
  min-height: 128px;
  place-items: center;
  padding: 26px clamp(12px, 1.35vw, 24px);
  border-right: var(--hairline);
  background: var(--canvas);
  transition: background-color 180ms ease, color 180ms ease;
}

.integration-logo:last-child {
  border-right: 0;
}

.integration-logo img {
  width: 100%;
  max-width: 112px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.integration-logo:last-child img {
  max-width: 132px;
  max-height: 58px;
  transform: scale(1.28);
}

.integration-logo:focus-visible {
  position: relative;
  z-index: 2;
  outline-offset: -3px;
}

/* Responsive surfaces */
.hero__proof > div,
.benefit-card,
.operation-strip article,
.process-step,
.partner-tabs button,
.partner-panels article,
.metric-grid > div,
.testimonial-stage,
.testimonial-tabs button,
.blog-card,
.faq details {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.process-step.is-active {
  background: var(--surface-1);
  color: var(--ink);
}

.process-step.is-active > span {
  border-color: var(--surface-3);
  background: var(--surface-1);
  color: var(--ink-muted);
}

.process-step > span {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.process-step:focus-visible {
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  .hero__mobile-actions .text-link:hover {
    color: var(--on-primary);
  }

  .hero__mobile-actions .text-link:hover span {
    transform: translateY(3px);
  }

  .hero__proof > div:hover,
  .benefit-card:not(.benefit-card--primary):hover,
  .operation-strip article:hover,
  .partner-tabs button:hover,
  .partner-panels article:hover,
  .metric-grid > div:hover,
  .blog-card:hover,
  .testimonial-tabs button:hover,
  .testimonial-stage:hover,
  .integration-logo:hover {
    background: var(--card-hover);
  }

  .benefit-card--primary:hover {
    background: var(--primary-hover);
  }

  .partner-tabs button:hover img,
  .integration-logo:hover img {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
  }

  .integration-logo:last-child:hover img {
    transform: translateY(-2px) scale(1.28);
  }

  .process-step:hover {
    background: var(--primary);
    color: var(--canvas);
  }

  .process-step:hover p {
    color: var(--inverse-muted);
  }

  .process-step:hover > span {
    border-color: var(--signal);
    background: var(--signal);
    color: var(--ink);
    transform: scale(1.08);
  }
}

.process-step:focus-visible {
  background: var(--primary);
  color: var(--canvas);
}

.process-step:focus-visible p {
  color: var(--inverse-muted);
}

.process-step:focus-visible > span {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
  transform: scale(1.08);
}

.faq details[open] {
  background: var(--canvas);
}

/* Editorial testimonial stage */
.testimonials {
  background: var(--surface-1);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: start;
}

.testimonial-heading {
  display: block;
  grid-column: 1 / span 5;
  margin: 0 0 44px;
}

.testimonial-heading > div:first-child {
  max-width: none;
}

.testimonial-heading h2 {
  max-width: 16ch;
}

.testimonial-tabs {
  display: grid;
  grid-column: 1 / span 5;
  border-top: 1px solid var(--ink);
}

.testimonial-tabs button {
  display: grid;
  min-height: 58px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 0;
  border-bottom: var(--hairline);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.testimonial-tabs button::before {
  color: var(--ink-subtle);
  content: attr(data-index);
  font-size: 10px;
  letter-spacing: 0.7px;
}

.testimonial-tabs button[aria-selected="true"] {
  padding-left: 14px;
  background: var(--card-hover);
  color: var(--ink);
}

.testimonial-stage {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-column: 7 / -1;
  grid-row: 1 / span 3;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  border-left: var(--hairline);
  background: var(--canvas);
}

.testimonial-card {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 430px;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 88px clamp(32px, 4vw, 56px) 48px;
  border: 0;
  background: transparent;
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: none;
}

.testimonial-card.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  animation: testimonial-card-in 180ms ease-out both;
}

@keyframes testimonial-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testimonial-card--primary,
.testimonial-card--primary footer {
  background: transparent;
  color: inherit;
}

.testimonial-card .quote-mark {
  width: 40px;
  height: 3px;
  background: var(--signal);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.testimonial-card p {
  max-width: 44ch;
  margin: 50px 0 44px;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.15px;
}

.testimonial-card footer,
.testimonial-card__author {
  display: grid;
  gap: 2px;
  color: var(--ink-muted);
  font-size: 13px;
}

.testimonial-card__author strong {
  color: var(--ink);
  font-weight: 400;
}

.testimonial-counter {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: clamp(32px, 4vw, 56px);
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.9px;
}

.testimonial-stage__footer {
  display: contents;
}

.testimonial-stage .carousel-controls {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
}

.testimonial-stage .carousel-controls button,
.carousel-controls button {
  width: 44px;
  height: 44px;
  font-size: 17px;
}

.testimonial-layout .metric-grid {
  grid-column: 1 / span 5;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 40px 0 0;
  border: 0;
  border-top: var(--hairline);
}

.testimonial-layout .metric-grid > div {
  min-height: 82px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 14px 10px 14px 0;
  border-right: 0;
  background: transparent;
}

.testimonial-layout .metric-grid strong {
  font-size: clamp(24px, 2vw, 34px);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-layout .metric-grid > div:hover {
    background: var(--card-hover);
  }
}

/* Compact final invitation */
.final-conversion__layout {
  min-height: 460px;
  padding-block: clamp(72px, 7vw, 112px);
}

.final-conversion__copy {
  grid-column: 1 / span 9;
  padding-right: clamp(32px, 5vw, 80px);
}

.final-conversion h2 {
  margin-bottom: 18px;
}

.final-conversion__copy > p:not(.section-index) {
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}

.final-conversion__copy ul {
  margin-top: 36px;
}

.final-conversion__action {
  display: grid;
  grid-column: 11 / -1;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.final-conversion__action .button {
  width: 100%;
}

.final-conversion__action > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.final-conversion__action > div span {
  color: var(--inverse-muted);
  font-size: 11px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.final-conversion__action > div strong {
  color: var(--canvas);
  font-size: 16px;
  font-weight: 400;
}

.final-conversion__action p {
  margin: 0;
  color: var(--inverse-muted);
  font-size: 12px;
}

.final-conversion .lead-form--inverse {
  display: none;
}

/* Lead dialog */
.lead-dialog {
  --lead-dialog-enter-transform: translateY(14px) scale(0.985);
  width: min(94vw, 960px);
  max-width: none;
  max-height: min(90svh, 820px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: var(--canvas);
  color: var(--ink);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transform-origin: center;
}

.lead-dialog[open] {
  animation: lead-dialog-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lead-dialog::backdrop {
  background: rgba(5, 5, 5, 0.76);
  -webkit-backdrop-filter: blur(6px) saturate(0.75);
  backdrop-filter: blur(6px) saturate(0.75);
}

.lead-dialog[open]::backdrop {
  animation: lead-dialog-backdrop-enter 240ms ease-out both;
}

.lead-dialog__panel {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
}

.lead-dialog__panel::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--signal);
  content: "";
  pointer-events: none;
}

.lead-dialog__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4vw, 56px);
  background: var(--carbon-800);
  color: var(--canvas);
}

.lead-dialog__header .section-index,
.lead-dialog__header .eyebrow {
  color: var(--on-primary);
}

.lead-dialog__header h2 {
  margin-bottom: 20px;
  color: var(--canvas);
}

.lead-dialog__header p:last-child {
  margin-bottom: 0;
  color: var(--inverse-muted);
}

.lead-dialog__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 18px;
  padding: clamp(44px, 5vw, 68px);
  background: var(--canvas);
}

.lead-dialog__form .form-error,
.lead-dialog__form .lead-form__submit,
.lead-dialog__form .lead-panel__note {
  grid-column: 1 / -1;
}

.lead-dialog__form .field input {
  height: 50px;
}

.lead-dialog .dialog-close {
  background: var(--carbon-100);
}

.lead-dialog .dialog-close:hover {
  background: var(--surface-2);
}

@keyframes lead-dialog-enter {
  from {
    opacity: 0;
    transform: var(--lead-dialog-enter-transform);
  }

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

@keyframes lead-dialog-backdrop-enter {
  from {
    background: rgba(5, 5, 5, 0);
    -webkit-backdrop-filter: blur(0) saturate(1);
    backdrop-filter: blur(0) saturate(1);
  }

  to {
    background: rgba(5, 5, 5, 0.76);
    -webkit-backdrop-filter: blur(6px) saturate(0.75);
    backdrop-filter: blur(6px) saturate(0.75);
  }
}

@media (min-width: 901px) and (max-height: 740px) {
  .hero__proof {
    flex-basis: 72px;
  }

  .media-play {
    height: 46px;
    min-height: 46px;
  }

  .media-play span:last-child {
    line-height: 46px;
  }

  .hero__copy-inner {
    gap: 0;
    padding-block: 36px;
  }

  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(38px, 3.5vw, 50px);
  }

  .hero__intro {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .hero__bullets {
    gap: 8px;
  }

  .hero__bullet {
    min-height: 0;
  }

  .hero__mobile-actions {
    margin-top: 0;
  }

  .hero__mobile-actions .button {
    min-height: 46px;
    padding-block: 11px;
  }
}

@media (max-width: 1080px) {
  .integration-rail__intro {
    grid-column-end: span 5;
  }

  .integration-rail__logos {
    grid-column: 6 / -1;
  }

  .integration-logo {
    min-height: 112px;
    padding-inline: 10px;
  }

  .testimonial-heading,
  .testimonial-tabs,
  .testimonial-layout .metric-grid {
    grid-column-end: span 6;
  }

  .testimonial-stage {
    grid-column: 8 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --type-display: clamp(38px, 6vw, 48px);
    --type-section: clamp(32px, 5vw, 44px);
    --type-section-compact: clamp(30px, 4.6vw, 40px);
  }

  .hero {
    height: calc(100svh - 64px);
    max-height: none;
  }

  .hero__main {
    display: block;
  }

  .hero__copy {
    height: 100%;
  }

  .hero__copy-inner {
    align-content: center;
  }

  .hero__media {
    display: none;
  }

  .hero__mobile-actions {
    display: flex;
  }

  .integration-rail__inner {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .integration-rail__intro,
  .integration-rail__logos {
    grid-column: 1;
  }

  .integration-rail__intro {
    min-height: 104px;
    padding: 24px var(--gutter);
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .integration-rail__logos {
    grid-template-columns: repeat(7, 136px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .integration-rail__logos::-webkit-scrollbar {
    display: none;
  }

  .integration-logo {
    min-height: 100px;
    scroll-snap-align: start;
  }

  .testimonial-layout {
    display: block;
  }

  .testimonial-heading {
    margin-bottom: 40px;
  }

  .testimonial-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
    border-left: var(--hairline);
  }

  .testimonial-tabs button {
    min-height: 64px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 12px;
    border-right: var(--hairline);
    text-align: center;
  }

  .testimonial-tabs button[aria-selected="true"] {
    padding-left: 12px;
  }

  .testimonial-stage {
    min-height: 0;
  }

  .testimonial-card {
    min-height: 420px;
  }

  .testimonial-layout .metric-grid {
    margin-top: 28px;
  }

  .final-conversion__layout {
    display: grid;
    min-height: 0;
    padding-block: 84px;
  }

  .final-conversion__copy,
  .final-conversion__action {
    grid-column: 1 / -1;
  }

  .final-conversion__copy {
    margin-bottom: 44px;
    padding-right: 0;
  }

  .final-conversion__action {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --type-display: clamp(34px, 8.8vw, 40px);
    --type-section: clamp(30px, 7.4vw, 35px);
    --type-section-compact: clamp(28px, 6.8vw, 33px);
    --type-card-title: 26px;
  }

  .hero {
    height: calc(100svh - 56px);
  }

  .hero h1 {
    font-size: var(--type-display);
    line-height: 1.04;
    letter-spacing: -0.65px;
  }

  .hero__copy-inner {
    gap: 0;
    padding: 28px 24px;
  }

  .hero__heading {
    gap: 10px;
  }

  .hero__support {
    gap: 22px;
    margin-top: 28px;
  }

  .hero__mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 0;
  }

  .hero__bullets {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 16px;
  }

  .hero__bullet {
    font-size: 15px;
    line-height: 1.36;
  }

  .hero__bullet:nth-child(n + 3) {
    display: flex;
  }

  .hero__mobile-actions .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading h2,
  .testimonial-heading h2,
  .faq__intro h2,
  .partnerships__intro h2,
  .location-story__copy h2,
  .process__intro h2,
  .facility__content h2,
  .final-conversion h2 {
    font-size: var(--type-section);
    line-height: 1.11;
    letter-spacing: -0.45px;
  }

  .benefit-card h3,
  .process-step h3 {
    font-size: var(--type-card-title);
  }

  .testimonial-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .testimonial-stage {
    border-left: var(--hairline);
  }

  .testimonial-card {
    min-height: 0;
    padding: 78px 24px 34px;
  }

  .testimonial-card p {
    margin: 42px 0 36px;
    font-size: 18px;
    line-height: 1.55;
  }

  .testimonial-counter {
    top: 26px;
    left: 24px;
  }

  .testimonial-stage .carousel-controls {
    top: 14px;
    right: 14px;
  }

  .testimonial-layout .metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-layout .metric-grid > div {
    min-height: 76px;
    padding: 12px 8px 12px 0;
  }

  .testimonial-layout .metric-grid strong {
    font-size: 24px;
  }

  .testimonial-layout .metric-grid span {
    font-size: 11px;
  }

  .lead-dialog {
    --lead-dialog-enter-transform: translateY(18px);
    width: 100vw;
    max-height: 100svh;
  }

  .lead-dialog__panel {
    min-height: 100svh;
    grid-template-columns: 1fr;
  }

  .lead-dialog__header {
    min-height: 250px;
    padding: 56px 28px 32px;
  }

  .lead-dialog__form {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 14px;
    padding: 32px 28px 44px;
  }

  .lead-dialog__form .form-error,
  .lead-dialog__form .lead-form__submit,
  .lead-dialog__form .lead-panel__note {
    grid-column: auto;
  }

  .final-conversion__layout {
    padding-block: 72px;
  }
}

@media (max-width: 420px) and (max-height: 700px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero__copy-inner {
    gap: 0;
    padding: 16px 24px;
  }

  .hero__heading {
    gap: 8px;
  }

  .hero__support {
    gap: 18px;
    margin-top: 22px;
  }

  .hero__mobile-actions {
    gap: 8px;
    margin-top: 0;
  }

  .hero__bullets {
    gap: 6px;
    padding-top: 12px;
  }

  .hero__bullet {
    font-size: 15px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-dialog[open],
  .lead-dialog[open]::backdrop {
    animation: none !important;
  }

  .integration-logo img,
  .process-step,
  .process-step > span,
  .testimonial-card,
  .testimonial-stage,
  .testimonial-tabs button {
    transition: none !important;
  }

  .testimonial-card {
    animation: none !important;
  }
}

/* Hierarchy, process, conversion and footer refinement */
.section-index {
  color: var(--primary);
  font-weight: 600;
}

.section-index--inverse {
  color: var(--on-primary);
}

.integration-rail__intro h2 {
  max-width: 18ch;
}

/* Remove decorative labels inside content cards */
.partner-panels article {
  display: flex;
  align-items: center;
}

.partner-panels p {
  margin: 0;
}

.testimonial-tabs button {
  grid-template-columns: 1fr;
  padding: 14px 16px;
}

.testimonial-tabs button::before {
  display: none;
}

.testimonial-tabs button[aria-selected="true"] {
  padding-left: 16px;
}

.blog-card__body > h3:first-child {
  margin-top: 0;
}

/* Eight-step fulfillment timeline */
.process__intro {
  grid-column: 1 / span 6;
  padding-right: clamp(32px, 5vw, 80px);
}

.process__intro h2 {
  max-width: 16ch;
  margin-bottom: 28px;
}

.process__intro p:not(.eyebrow):not(.section-index) {
  max-width: 50ch;
}

.process__timeline {
  position: relative;
  grid-column: 8 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process__timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  width: 1px;
  background: var(--surface-3);
  content: "";
}

.process-step {
  min-height: 148px;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 28px 32px 28px 0;
}

.process-step > .process-step__marker {
  width: 32px;
  height: 32px;
  margin-left: 15px;
  border: 1px solid var(--surface-3);
  background: var(--surface-1);
  color: var(--ink-muted);
  line-height: 30px;
}

.process-step__body {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(24px, 3vw, 52px);
}

.process-step h3 {
  margin: 0;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.2;
}

.process-step p {
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.55;
}

.operation-strip {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover > .process-step__marker {
    border-color: var(--signal);
    background: var(--signal);
    color: var(--on-signal);
  }
}

.process-step:focus-visible > .process-step__marker {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--on-signal);
}

/* Editorial conversion invitation */
.final-conversion.conversion-invite {
  min-height: 0;
  border-top: 4px solid var(--signal);
  background: var(--canvas);
  color: var(--ink);
}

.conversion-invite__inner {
  padding-block: clamp(88px, 8vw, 128px);
}

.conversion-invite__content {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  padding-block: clamp(48px, 5.5vw, 80px);
  border-top: var(--hairline);
}

.conversion-invite h2 {
  grid-column: 1 / span 9;
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--type-section);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.65px;
}

.conversion-invite__action {
  grid-column: 11 / -1;
  align-self: end;
}

.conversion-invite__action p {
  max-width: 46ch;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.55;
}

.conversion-invite__button {
  width: min(100%, 420px);
  min-height: 60px;
}

.conversion-invite__action small {
  display: block;
  margin-top: 12px;
  color: var(--ink-subtle);
  font-size: 12px;
}

.conversion-invite__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: var(--hairline);
  border-left: var(--hairline);
  list-style: none;
}

.conversion-invite__steps li {
  display: grid;
  min-height: 128px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 6px 12px;
  padding: 24px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--surface-1);
  transition: background-color 180ms ease;
}

.conversion-invite__steps span {
  grid-row: 1 / span 2;
  color: var(--ink-subtle);
  font-size: 11px;
}

.conversion-invite__steps strong {
  font-size: 17px;
  font-weight: 400;
}

.conversion-invite__steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
}

@media (hover: hover) and (pointer: fine) {
  .conversion-invite__steps li:hover {
    background: var(--signal-soft);
  }
}

/* New institutional footer */
.footer-main {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 0;
  padding-block: clamp(64px, 7vw, 104px);
  border-bottom: 1px solid var(--carbon-700);
}

.footer-identity {
  grid-column: 1 / span 7;
}

.footer-identity p {
  max-width: 24ch;
  margin: 40px 0 0;
  color: var(--inverse-muted);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.25;
}

.footer-navigation {
  grid-column: 8 / span 2;
}

.footer-contact {
  grid-column: 10 / span 3;
}

.footer-office {
  grid-column: 13 / -1;
  font-style: normal;
}

.footer-group {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-navigation,
.footer-contact,
.footer-office {
  padding-left: 24px;
  border-left: 1px solid var(--carbon-700);
}

.footer-group__label {
  margin-bottom: 12px;
  color: var(--inverse-muted);
  font-size: 11px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.footer-group a {
  color: var(--canvas);
  font-size: 14px;
  text-underline-offset: 4px;
}

.footer-group a:hover {
  color: var(--on-primary);
  text-decoration: underline;
}

.footer-office p,
.footer-office > span:not(.footer-group__label) {
  margin: 0;
  color: var(--inverse-muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer-services {
  border-top: 0;
  border-bottom: 1px solid var(--carbon-700);
}

.footer-services summary {
  transition: background-color 140ms ease;
}

.footer-services summary:hover {
  background: var(--inverse-surface);
}

.footer-legal {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 32px;
  color: var(--inverse-muted);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  margin-left: auto;
  color: var(--canvas);
}

.footer-legal a:hover {
  color: var(--on-primary);
}

@media (max-width: 1080px) {
  .footer-main {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .footer-identity {
    grid-column: 1 / span 6;
  }

  .footer-navigation {
    grid-column: 7 / span 2;
  }

  .footer-contact {
    grid-column: 9 / -1;
  }

  .footer-office {
    grid-column: 7 / -1;
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .process__intro,
  .process__timeline {
    grid-column: 1 / -1;
  }

  .process__intro {
    position: static;
    margin-bottom: 56px;
    padding-right: 0;
  }

  .conversion-invite__content {
    gap: 40px;
  }

  .conversion-invite h2 {
    grid-column: 1 / span 9;
  }

  .conversion-invite__action {
    grid-column: 10 / -1;
  }
}

@media (max-width: 760px) {
  .process-step {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 24px 16px 24px 0;
  }

  .process__timeline::before {
    left: 25px;
  }

  .process-step > .process-step__marker {
    margin-left: 9px;
  }

  .process-step__body {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .conversion-invite__inner {
    padding-block: 72px;
  }

  .conversion-invite__content {
    display: block;
    padding-block: 44px 52px;
  }

  .conversion-invite h2 {
    max-width: 16ch;
  }

  .conversion-invite__action {
    margin-top: 34px;
  }

  .conversion-invite__button {
    width: 100%;
  }

  .conversion-invite__steps {
    grid-template-columns: 1fr;
  }

  .conversion-invite__steps li {
    min-height: 96px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 64px;
  }

  .footer-identity,
  .footer-navigation,
  .footer-contact,
  .footer-office {
    grid-column: 1;
  }

  .footer-navigation,
  .footer-contact,
  .footer-office {
    padding-left: 0;
    border-left: 0;
  }

  .footer-identity {
    padding-bottom: 56px;
  }

  .footer-group {
    padding-block: 28px;
    border-top: 1px solid var(--carbon-700);
  }

  .footer-services__summary {
    min-height: 76px;
  }

  .footer-legal {
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-block: 28px 96px;
  }

  .footer-legal a {
    width: 100%;
    margin: 12px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta::after,
  .header-cta > span[aria-hidden="true"] {
    animation: none !important;
  }

  .process-step__marker,
  .conversion-invite__steps li {
    transition: none !important;
  }
}

/* Final component contracts */
.header-cta__label-short {
  display: none;
}

.site-nav > a {
  color: var(--ink);
  font-size: 14px;
}

.header-cta {
  font-weight: 600;
}

.hero .eyebrow,
.hero h1,
.hero h1 span,
.hero__bullet,
.hero__mobile-actions .text-link,
.lead-dialog__header .section-index,
.lead-dialog__header .eyebrow,
.lead-dialog__header h2,
.lead-dialog__header p:last-child,
.location-story__copy .section-index,
.location-story__copy h2,
.location-story__copy > p:last-child,
.section-index--inverse {
  color: var(--on-primary);
}

.hero h1 > span {
  font-size: min(40px, 1em);
}

.process-step:focus-visible p {
  color: var(--on-primary);
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover p {
    color: var(--on-primary);
  }
}

.hero__copy-inner {
  grid-template-rows: 1fr auto auto 1fr auto;
  align-content: stretch;
}

.hero__heading {
  grid-row: 2;
}

.hero__support {
  display: contents;
}

.hero__bullets {
  grid-row: 3;
  margin-top: 30px;
}

.hero__mobile-actions {
  display: grid;
  width: min(100%, 466px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  grid-row: 5;
  justify-self: end;
}

.hero__mobile-actions .button,
.hero__mobile-actions .text-link {
  width: 100%;
  min-width: 0;
  flex: none;
}

.hero__mobile-actions .text-link {
  min-height: 46px;
  justify-content: space-between;
}

.hero__mobile-actions--single {
  width: min(100%, 228px);
  grid-template-columns: minmax(0, 1fr);
}

.benefits__heading > div {
  grid-column: 5 / span 8;
}

.benefits__heading h2 {
  max-width: 18ch;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.08;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: start;
}

.testimonial-heading {
  grid-column: 1 / span 5;
  grid-row: 1;
  margin: 0;
}

.testimonial-heading h2 {
  max-width: 15ch;
}

.testimonial-tabs {
  grid-column: 1 / span 5;
  grid-row: 2;
  margin: 48px 0 0;
}

.testimonial-stage {
  grid-column: 7 / -1;
  grid-row: 1 / span 2;
  min-height: 440px;
}

.testimonial-layout .metric-grid {
  grid-column: 1 / -1;
  grid-row: 3;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 56px 0 0;
  border-top: var(--hairline);
  border-left: var(--hairline);
}

.testimonial-layout .metric-grid > div {
  min-height: 112px;
  align-items: flex-start;
  padding: 22px 24px;
  border-right: var(--hairline);
  border-bottom: var(--hairline);
  background: var(--canvas);
}

.testimonial-layout .metric-grid strong {
  font-size: clamp(28px, 2.2vw, 38px);
  white-space: nowrap;
}

.testimonial-layout .metric-grid span {
  max-width: 18ch;
  font-size: 12px;
  line-height: 1.4;
}

.blog-card h3,
.blog-card:only-child h3 {
  max-width: 22ch;
  margin: 0 0 28px;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.2px;
}

.blog-card--featured h3 {
  max-width: 19ch;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.18;
}

@media (max-width: 1080px) {
  .testimonial-heading,
  .testimonial-tabs {
    grid-column-end: span 6;
  }

  .testimonial-stage {
    grid-column: 8 / -1;
  }
}

@media (max-width: 900px) {
  .testimonial-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial-heading,
  .testimonial-tabs,
  .testimonial-stage,
  .testimonial-layout .metric-grid {
    grid-column: 1;
  }

  .testimonial-heading {
    grid-row: 1;
    margin: 0;
  }

  .testimonial-tabs {
    grid-row: 2;
    margin: 40px 0 0;
  }

  .testimonial-stage {
    grid-row: 3;
    margin-top: 24px;
  }

  .testimonial-layout .metric-grid {
    grid-row: 4;
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 140px 56px;
  }

  .header-cta {
    display: flex;
    width: 140px;
    min-height: 56px;
    grid-column: 2;
    margin-right: 0;
    padding-inline: 14px;
    font-size: 12px;
  }

  .header-cta__label-full {
    display: none;
  }

  .header-cta__label-short {
    display: inline;
  }

  .mobile-lead-cta {
    display: none !important;
  }

  .hero__copy-inner {
    grid-template-rows: 1fr auto auto 1fr auto;
    align-content: stretch;
  }

  .hero__support {
    display: contents;
  }

  .hero__bullets {
    margin-top: 28px;
  }

  .hero__mobile-actions {
    width: 100%;
    justify-self: stretch;
  }

  .hero__mobile-actions--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits__heading > .section-index,
  .benefits__heading > div {
    grid-column: 1 / -1;
  }

  .benefits__heading > div {
    margin-top: 22px;
  }

  .benefits__heading h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .testimonial-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
  }

  .testimonial-stage {
    margin-top: 20px;
  }

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

  .testimonial-layout .metric-grid > div:first-child {
    min-height: 104px;
    grid-column: 1 / -1;
  }

  .testimonial-layout .metric-grid > div:not(:first-child) {
    min-height: 92px;
  }

  .blog-card h3,
  .blog-card:only-child h3 {
    font-size: 22px;
  }

  .blog-card--featured h3 {
    font-size: 27px;
  }
}
