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

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

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

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

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

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fcfcfb;
  --bg-soft: #f6f4f1;
  --panel: #ffffff;
  --text: #171d25;
  --muted: #42474f;
  --line: rgba(23, 29, 37, 0.12);
  --accent: #dd451e;
  --accent-dark: #dd451e;
  --shadow-card: 0 16px 34px rgba(20, 25, 31, 0.08);
  --shadow-button: 0 12px 22px rgba(221, 69, 30, 0.18);
  --radius-card: 18px;
  --container: 1368px;
  --icon-filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(4843%) hue-rotate(22deg) brightness(186%) contrast(77%);
  --diagram-panel-border: 1px solid rgba(23, 29, 37, 0.07);
  --diagram-panel-radius: 22px;
  --diagram-panel-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 250, 0.96));
  --diagram-panel-shadow: 0 12px 24px rgba(23, 29, 37, 0.05);
  --diagram-item-border: 1px solid rgba(23, 29, 37, 0.08);
  --diagram-item-radius: 20px;
  --diagram-item-bg: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  --diagram-item-shadow: 0 10px 20px rgba(23, 29, 37, 0.05);
  --diagram-pill-accent-border: 1px solid rgba(221, 69, 30, 0.12);
  --diagram-pill-accent-bg: rgba(221, 69, 30, 0.05);
  --diagram-pill-neutral-border: 1px solid rgba(23, 29, 37, 0.08);
  --diagram-pill-neutral-bg: rgba(246, 244, 241, 0.95);
  --font-body: "IBM Plex Sans", sans-serif;
  --font-ui: "IBM Plex Mono", monospace;
  --font-brand: "IBM Plex Sans", sans-serif;
  --font-display: "IBM Plex Sans", sans-serif;
  --font-display-weight: 600;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 78% 34%, rgba(255, 251, 244, 0.62), transparent 22%),
    linear-gradient(180deg, #f8f8f7 0%, var(--bg) 22%, var(--bg) 100%);
}

a {
  color: inherit;
}

svg {
  display: block;
}

.page-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: auto auto 240px -10vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 70%);
  pointer-events: none;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 68px);
}

.site-header {
  position: relative;
  z-index: 40;
  padding: 48px 0 30px;
}

.nav-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.mobile-nav-toggle {
  display: none;
  appearance: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  text-decoration: none;
  min-width: max-content;
}

.brand-title {
  font-family: var(--font-brand);
  font-size: clamp(30px, 2vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  color: var(--text);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 1.9vw, 34px);
  min-width: 0;
}

.main-nav a {
  padding: 6px 0;
  color: rgba(23, 29, 37, 0.96);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a.is-active {
  color: var(--accent-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: var(--shadow-button);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: clamp(18px, 2.4vw, 36px) 0 34px;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 12px;
  background:
    radial-gradient(circle at 71% 46%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(252, 252, 251, 0.92) 68%, rgba(252, 252, 251, 1) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  min-height: clamp(390px, 29vw, 470px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: clamp(28px, 2vw, 36px);
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.35vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.046em;
  font-weight: var(--font-display-weight);
  text-wrap: balance;
}

.headline-row {
  display: block;
}

.headline-soft {
  font-weight: 500;
}

.headline-accent {
  color: var(--accent);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 590px;
  font-size: clamp(16px, 1.22vw, 22px);
  line-height: 1.56;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 26px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: var(--shadow-button);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.hero-button span:last-child {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-art {
  position: absolute;
  right: clamp(-96px, -5.4vw, -24px);
  bottom: -124px;
  z-index: 1;
  pointer-events: none;
}

.hero-art-visual {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.hero-art-visual::before {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 52%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  filter: blur(16px);
  transform: translateY(12px);
  opacity: 0.45;
}

.hero-art-visual::after {
  content: "";
  position: absolute;
  inset: -2px -4px -34px -6px;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(252, 252, 251, 0.98) 0%, rgba(252, 252, 251, 0) 12%, rgba(252, 252, 251, 0) 87%, rgba(252, 252, 251, 0.98) 100%),
    linear-gradient(to bottom, rgba(252, 252, 251, 0) 0%, rgba(252, 252, 251, 0) 56%, rgba(252, 252, 251, 0.72) 86%, rgba(252, 252, 251, 0.98) 94%, rgba(252, 252, 251, 1) 100%);
}

.hero-art-picture,
.hero-art img {
  display: block;
}

.hero-art-picture {
  position: relative;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-art img {
  width: clamp(620px, 49vw, 900px);
  max-width: none;
  height: auto;
}

.service-cards {
  position: relative;
  z-index: 3;
  margin-top: -35px;
  padding: 22px 0 18px;
}

.service-cards::before {
  content: none;
}

.service-cards::after {
  content: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 20px);
}

.service-card {
  min-height: 190px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(23, 29, 37, 0.05);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-align: center;
  color: var(--text);
  text-decoration: none;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: var(--icon-filter);
}

.service-card :is(h2, h3) {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 10px auto 0;
  max-width: 210px;
  font-size: 15px;
  line-height: 1.52;
  color: var(--muted);
}

@media (hover: hover) {
  .service-card {
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }

  .service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(27, 30, 35, 0.92);
    background: #1b1e23;
    box-shadow: 0 18px 34px rgba(23, 29, 37, 0.16);
    color: #f4f4f2;
  }

  .service-card:hover :is(h2, h3),
  .service-card:hover p {
    color: #f4f4f2;
  }

  .service-card:hover .service-icon {
    color: #f4f4f2;
  }

  .service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
  }
}

.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-cards,
.detail-section {
  scroll-margin-top: 110px;
}

.detail-section {
  position: relative;
  isolation: isolate;
  padding: 132px 0;
}

.detail-section > .container {
  position: relative;
  z-index: 1;
}

.detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 246, 244, 0.98) 0%, rgba(251, 251, 249, 0.98) 100%);
  pointer-events: none;
  z-index: 0;
}

.detail-section::after {
  content: none;
}

.detail-section-soft {
  background: none;
}

#ai-automation::before {
  background: linear-gradient(180deg, rgba(245, 245, 242, 0.99) 0%, rgba(251, 251, 248, 0.99) 100%);
}

#performance-marketing::before {
  background: linear-gradient(180deg, rgba(243, 241, 238, 0.99) 0%, rgba(250, 248, 245, 0.99) 100%);
}

#measurement::before {
  background: linear-gradient(180deg, rgba(241, 243, 245, 0.99) 0%, rgba(248, 250, 251, 0.99) 100%);
}

#international-rollout::before {
  background: linear-gradient(180deg, rgba(244, 242, 238, 0.99) 0%, rgba(250, 248, 244, 0.99) 100%);
}

#search-seo::before {
  background: linear-gradient(180deg, rgba(242, 244, 242, 0.99) 0%, rgba(248, 250, 248, 0.99) 100%);
}

#contact::before {
  background: linear-gradient(180deg, rgba(244, 242, 240, 0.99) 0%, rgba(250, 248, 246, 0.99) 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}

.detail-grid-reverse .detail-copy {
  order: 2;
}

.detail-grid-reverse .detail-visual-card {
  order: 1;
}

.detail-copy {
  min-width: 0;
}

.detail-heading {
  display: block;
  margin-bottom: 24px;
}

.detail-eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: var(--font-display-weight);
}

.detail-lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 1.24vw, 21px);
  line-height: 1.66;
  color: var(--muted);
}

.detail-block {
  margin-top: 30px;
}

.detail-block h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: var(--font-display-weight);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.detail-visual-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(23, 29, 37, 0.06);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.diagram-title {
  margin: 0;
  color: #4c5057;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pipeline-context,
.pipeline-feedback,
.acquisition-intro,
.measurement-intro,
.rollout-lane,
.search-architecture-root,
.search-governance-panel,
.acquisition-control-card,
.contact-meta-block {
  border: var(--diagram-panel-border);
  border-radius: var(--diagram-panel-radius);
  background: var(--diagram-panel-bg);
  box-shadow: var(--diagram-panel-shadow);
}

.pipeline-stage,
.acquisition-stage,
.measurement-stage,
.rollout-step,
.search-architecture-node {
  border: var(--diagram-item-border);
  border-radius: var(--diagram-item-radius);
  background: var(--diagram-item-bg);
  box-shadow: var(--diagram-item-shadow);
}

.pipeline-context-label,
.pipeline-feedback-label,
.acquisition-intro-label,
.measurement-intro-label,
.measurement-audit-label,
.rollout-lane-label,
.search-root-label,
.search-governance-label,
.contact-meta-block span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pipeline-stage-no,
.acquisition-stage-no,
.measurement-stage-no,
.rollout-step-no {
  color: var(--accent-dark);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(221, 69, 30, 0.08);
}

.pipeline-stage strong,
.acquisition-stage strong,
.measurement-stage-label,
.rollout-step strong,
.search-architecture-node strong,
.acquisition-control-card strong {
  color: var(--text);
  letter-spacing: -0.03em;
}

.pipeline-stage small,
.acquisition-stage small,
.measurement-stage-copy,
.rollout-step small,
.search-architecture-root small,
.acquisition-control-card small,
.contact-meta-block p,
.pipeline-feedback p {
  color: var(--muted);
  line-height: 1.55;
}

.pipeline-context-row span,
.acquisition-channel-grid span,
.audit-chip,
.rollout-tag-grid span {
  border: var(--diagram-pill-accent-border);
  background: var(--diagram-pill-accent-bg);
  color: var(--accent-dark);
}

.measurement-signal-row span,
.search-chip-row span,
.search-governance-row span,
.rollout-market {
  border: var(--diagram-pill-neutral-border);
  background: var(--diagram-pill-neutral-bg);
}

.pipeline-board {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pipeline-context {
  padding: 18px 20px;
}

.pipeline-context-row,
.audit-row {
  display: grid;
  gap: 10px;
}

.pipeline-context-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pipeline-context-row span,
.audit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pipeline-stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pipeline-stage-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 1px;
  background: rgba(23, 29, 37, 0.14);
}

.pipeline-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 146px;
  padding: 18px 16px 16px;
  text-align: left;
}

.pipeline-stage-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  font-size: 10px;
}

.pipeline-stage strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.pipeline-stage small {
  display: block;
  font-size: 12px;
}

.pipeline-feedback {
  padding: 18px 20px;
}

.pipeline-feedback p {
  margin: 0;
  font-size: 14px;
}

.diagram-acquisition {
  min-height: 430px;
}

.acquisition-frame {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.acquisition-intro {
  padding: 20px 22px;
}

.acquisition-intro-label {
}

.acquisition-intro strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.acquisition-intro small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.acquisition-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.acquisition-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: rgba(23, 29, 37, 0.14);
}

.acquisition-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 16px 12px 14px;
  text-align: center;
}

.acquisition-stage-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 10px;
}

.acquisition-stage strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.acquisition-stage small {
  display: block;
  font-size: 11px;
}

.acquisition-control-grid,
.acquisition-channel-grid {
  display: grid;
  gap: 10px;
}

.acquisition-channel-block {
  display: grid;
  gap: 10px;
}

.acquisition-control-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.acquisition-control-card {
  padding: 16px 18px;
}

.acquisition-control-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.acquisition-control-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.28;
}

.acquisition-control-card small {
  display: block;
  font-size: 14px;
}

.acquisition-channel-label {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.acquisition-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acquisition-channel-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.diagram-stack {
  min-height: 430px;
}

.measurement-frame {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.measurement-intro {
  padding: 20px 22px;
}

.measurement-intro-label,
.measurement-audit-label {
}

.measurement-intro strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.measurement-intro small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.measurement-flow {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 14px;
}

.measurement-flow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(221, 69, 30, 0.22), rgba(23, 29, 37, 0.08));
}

.measurement-stage {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px 18px 18px 22px;
}

.measurement-stage::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(221, 69, 30, 0.08);
}

.measurement-stage-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.measurement-stage-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 11px;
}

.measurement-stage-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
}

.measurement-stage-copy {
  display: block;
  font-size: 14px;
}

.measurement-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.measurement-signal-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #5d646e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.measurement-audit-panel {
  padding-top: 4px;
}

.audit-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.diagram-map {
  min-height: 390px;
}

.rollout-board {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(23, 29, 37, 0.06);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(180deg, rgba(246, 244, 241, 0.7), rgba(255, 255, 255, 0.96));
}

.rollout-lane {
  padding: 14px;
}

.rollout-lane-label {
  margin-bottom: 12px;
}

.rollout-market-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.rollout-market {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 16px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rollout-market.is-primary {
  border-color: rgba(221, 69, 30, 0.18);
  background: rgba(221, 69, 30, 0.05);
  color: var(--accent-dark);
}

.rollout-track {
  display: grid;
  gap: 12px;
}

.rollout-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.rollout-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 11px;
}

.rollout-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.2;
}

.rollout-step small {
  display: block;
  font-size: 13px;
}

.rollout-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rollout-tag-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.diagram-search-architecture {
  min-height: 420px;
}

.search-architecture-root {
  position: relative;
  max-width: 420px;
  margin: 26px auto 0;
  padding: 22px 24px 20px;
  text-align: center;
}

.search-architecture-root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 34px;
  background: rgba(23, 29, 37, 0.14);
  transform: translateX(-50%);
}

.search-root-label {
}

.search-architecture-root strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.search-architecture-root small {
  display: block;
  font-size: 13px;
}

.search-architecture-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.search-architecture-grid::before {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: -18px;
  height: 1px;
  background: rgba(23, 29, 37, 0.14);
}

.search-architecture-node {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px 18px 18px;
}

.search-architecture-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 1px;
  height: 18px;
  background: rgba(23, 29, 37, 0.14);
  transform: translateX(-50%);
}

.search-node-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(221, 69, 30, 0.08);
  color: var(--accent-dark);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-architecture-node strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-chip-row span,
.search-governance-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #5d646e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.search-governance-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
}

.search-governance-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.detail-section-contact {
  padding-bottom: 110px;
}

.contact-long-copy {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.contact-long-copy:last-child {
  margin-bottom: 0;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(23, 29, 37, 0.06);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  box-shadow: var(--shadow-card);
}

.contact-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.contact-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: var(--font-display-weight);
}

.contact-role-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.contact-meta-block span {
  margin-bottom: 8px;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-meta-block {
  padding: 16px 18px;
}

.contact-meta-block a {
  width: fit-content;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.contact-meta-block p {
  margin: 0;
  font-size: 14px;
}

.contact-meta-block a:hover {
  opacity: 0.74;
}

.contact-actions {
  margin-top: 28px;
}

@media (hover: hover) {
  .main-nav a,
  .header-cta,
  .hero-button {
    transition: opacity 160ms ease, transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
  }

  .main-nav a:hover {
    opacity: 0.72;
  }

  .header-cta:hover,
  .hero-button:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(221, 69, 30, 0.2);
  }
}

@media (max-width: 1320px) {
  .container {
    padding: 0 clamp(22px, 3vw, 34px);
  }
}

@media (max-width: 1160px) {
  .nav-row {
    gap: clamp(18px, 2vw, 28px);
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero-grid {
    min-height: 400px;
  }

  .hero-copy {
    max-width: 600px;
  }

  .hero-art {
    right: -58px;
    bottom: -100px;
  }

  .hero-art img {
    width: clamp(560px, 48vw, 760px);
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-grid-reverse .detail-copy,
  .detail-grid-reverse .detail-visual-card {
    order: initial;
  }

  .detail-visual-card {
    min-height: 0;
  }

}

@media (max-width: 860px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .nav-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 18px;
    right: 18px;
    z-index: 50;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 18px;
    border: 1px solid rgba(23, 29, 37, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(18, 24, 30, 0.12);
    backdrop-filter: blur(16px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 11px 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 14px 0 24px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.9), transparent 24%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(252, 252, 251, 0.96) 68%, rgba(252, 252, 251, 1) 100%);
  }

  .hero-grid {
    min-height: 520px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 84%;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-text {
    max-width: 56%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-button {
    gap: 12px;
    padding: 14px 20px;
    font-size: 11px;
  }

  .hero-button span:last-child {
    font-size: 18px;
  }

  .hero-art {
    top: 132px;
    right: -20px;
    bottom: -24px;
    left: 46%;
  }

  .hero-art-visual {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-art-visual::before {
    display: none;
  }

  .hero-art-visual::after {
    inset: -10px -10px -20px -22px;
    background:
      linear-gradient(to right, rgba(252, 252, 251, 1) 0%, rgba(252, 252, 251, 0.94) 8%, rgba(252, 252, 251, 0.54) 18%, rgba(252, 252, 251, 0) 34%, rgba(252, 252, 251, 0) 74%, rgba(252, 252, 251, 0.98) 100%),
      linear-gradient(to bottom, rgba(252, 252, 251, 0) 0%, rgba(252, 252, 251, 0) 58%, rgba(252, 252, 251, 0.76) 86%, rgba(252, 252, 251, 1) 100%);
  }

  .hero-art-picture {
    position: absolute;
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 55% 24%;
    filter: none;
  }

  .service-cards {
    margin-top: -72px;
    padding-top: 12px;
  }

  .service-cards::before {
    content: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card,
  .service-card.service-card-wide {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 6px 16px;
    padding: 20px 18px;
    text-align: left;
  }

  .service-icon,
  .service-card.service-card-wide .service-icon {
    width: 40px;
    height: 40px;
    margin: 2px 0 0;
    grid-row: 1 / span 2;
  }

  .service-card :is(h2, h3),
  .service-card.service-card-wide :is(h2, h3) {
    font-size: 18px;
    text-align: left;
  }

  .service-card p,
  .service-card.service-card-wide p {
    margin: 0;
    max-width: none;
    font-size: 15px;
    text-align: left;
  }

  .detail-section {
    padding: 100px 0;
  }

  .detail-heading {
    margin-bottom: 20px;
  }

  .detail-copy h2 {
    font-size: 34px;
  }

  .detail-lead {
    font-size: 17px;
  }

  .detail-block h3 {
    font-size: 18px;
  }

  .detail-list li {
    font-size: 15px;
  }

  .detail-visual-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .pipeline-context-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline-stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pipeline-stage {
    min-height: 118px;
  }

  .acquisition-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .acquisition-flow::before {
    display: none;
  }

  .acquisition-control-grid,
  .acquisition-channel-grid,
  .audit-row,
  .search-governance-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rollout-market-row,
  .rollout-tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .measurement-intro strong {
    font-size: 19px;
  }

  .measurement-stage {
    padding: 18px 16px 16px 20px;
  }

  .measurement-stage-label {
    font-size: 17px;
  }

  .contact-card {
    padding: 26px 22px;
  }

  .contact-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .brand-title {
    font-size: 22px;
    letter-spacing: 0.2em;
  }

  .main-nav {
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    padding: 14px 16px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    min-height: 500px;
  }

  .hero h1 {
    max-width: 84%;
    font-size: 36px;
  }

  .hero-text {
    max-width: 52%;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-button {
    width: auto;
    min-width: 0;
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero-art {
    top: 164px;
    right: -18px;
    bottom: -28px;
    left: 47%;
  }

  .hero-art img {
    object-position: 54% 22%;
  }

  .service-cards {
    margin-top: -92px;
  }

  .detail-section {
    padding: 90px 0;
  }

  .detail-copy h2 {
    font-size: 30px;
  }

  .detail-lead {
    font-size: 16px;
  }

  .detail-visual-card {
    padding: 22px 18px;
  }

  .pipeline-context-row {
    grid-template-columns: 1fr;
  }

  .pipeline-stage-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-stage-grid::before {
    display: none;
  }

  .acquisition-intro {
    padding: 18px 16px;
  }

  .acquisition-intro strong {
    font-size: 19px;
  }

  .acquisition-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .acquisition-control-grid,
  .acquisition-channel-grid,
  .audit-row,
  .search-architecture-grid,
  .search-governance-row {
    grid-template-columns: 1fr;
  }

  .rollout-market-row,
  .rollout-tag-grid,
  .contact-meta-grid {
    grid-template-columns: 1fr;
  }

  .acquisition-stage {
    min-height: 118px;
    padding: 14px 10px 12px;
  }

  .acquisition-stage strong {
    font-size: 14px;
  }

  .acquisition-stage small {
    font-size: 10px;
  }

  .acquisition-control-card {
    padding: 14px 14px;
  }

  .acquisition-control-card strong {
    font-size: 16px;
  }

  .acquisition-control-card small {
    font-size: 13px;
  }

  .search-architecture-root {
    margin-top: 22px;
    padding: 18px 16px 16px;
  }

  .search-architecture-root strong {
    font-size: 18px;
  }

  .search-architecture-node {
    padding: 18px 16px 16px;
  }

  .search-architecture-node strong {
    font-size: 16px;
  }

  .measurement-intro {
    padding: 18px 16px;
  }

  .measurement-flow {
    padding-left: 10px;
  }

  .measurement-stage {
    padding: 16px 14px 14px 18px;
  }

  .measurement-stage-head {
    gap: 12px;
  }

  .measurement-stage-no {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .measurement-stage-label {
    font-size: 16px;
  }

  .measurement-stage-copy {
    font-size: 13px;
  }

  .pipeline-context,
  .pipeline-feedback {
    padding: 16px 14px;
  }

  .pipeline-stage {
    min-height: 0;
    padding: 14px 10px 12px;
  }

  .pipeline-stage strong {
    font-size: 14px;
  }

  .pipeline-stage small {
    font-size: 10px;
  }

  .contact-card h3 {
    font-size: 26px;
  }

  .contact-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-card,
  .service-card.service-card-wide {
    gap: 6px 14px;
    padding: 18px 16px;
  }

}


.landing-v4 {
  background: #f3f1ed;
  --paired-box-offset: 0px;
  --v4-section-pad: clamp(74px, 6.2vw, 102px);
  --v4-section-overlap: 54px;
  --v4-stage-bleed: clamp(56px, 5vw, 120px);
  --v4-page-bg: #f3f1ed;
  --v4-page-bg-deep: #f3f1ed;
  --v4-ai-surface: #ffffff;
  --v4-performance-surface: #ffffff;
  --v4-measurement-surface: #ffffff;
  --v4-international-surface: #ffffff;
  --v4-search-surface: #ffffff;
  --v4-ai-border: #e7c5c9;
  --v4-performance-border: #d9c15a;
  --v4-measurement-border: #b9d3e2;
  --v4-international-border: #bfd09d;
  --v4-search-border: #cabce1;
}

.landing-v4 .hero::before,
.landing-v4 .hero-art-visual::before,
.landing-v4 .hero-art-visual::after {
  content: none;
  display: none;
  background: none;
}

.landing-v4 .hero-art {
  right: clamp(-44px, -2.6vw, 0px);
  bottom: -84px;
}

.landing-v4 .hero-art img {
  width: clamp(500px, 39vw, 680px);
}

@media (min-width: 1161px) {
  .landing-v4 .hero {
    min-height: calc(100svh - 64px);
    padding-bottom: clamp(24px, 4.2svh, 60px);
  }

  .landing-v4 .hero-grid {
    min-height: calc(100svh - 220px);
  }

  .landing-v4 .hero-art {
    right: clamp(-72px, -3.8vw, -12px);
    bottom: -90px;
  }

  .landing-v4 .hero-art img {
    width: clamp(600px, 47vw, 820px);
  }
}

.landing-v4 .service-cards {
  margin-top: 0;
  margin-bottom: 10px;
}

.v4-chapter-intro {
  position: relative;
}

.v4-chapter-intro h2 {
  margin: 0;
  color: #171d25;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.v4-chapter-intro .v4-kicker {
  margin-bottom: 14px;
}

.v4-chapter-intro > p:not(.v4-kicker) {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(23, 29, 37, 0.66);
  font-size: 18px;
  line-height: 1.6;
}

.v4-chapter-intro--services {
  padding: 58px 0 18px;
}

.v4-chapter-intro--about {
  margin-bottom: 12px;
}

.v4-section {
  position: relative;
  padding: var(--v4-section-pad) 0;
  background: transparent;
}

.v4-section + .v4-section {
  margin-top: calc(var(--v4-section-overlap) * -1);
  padding-top: calc(var(--v4-section-pad) + var(--v4-section-overlap));
}

.v4-section::before {
  display: none;
}

.v4-section--ai {
}

.v4-section--performance {
}

.v4-section--performance::before {
  display: none;
}

.v4-section--measurement {
}

.v4-section--international {
}

.v4-section--search {
  --accent: #8d78b7;
}

.v4-section--contact {
  padding-bottom: 118px;
}

.v4-stage,
.v4-contact-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.v4-stage::before,
.v4-contact-stage::before {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
  z-index: 0;
}

.v4-stage--image-left {
  grid-template-columns: minmax(460px, 1.02fr) minmax(0, 0.98fr);
}

.v4-stage--image-left .v4-media {
  order: 1;
}

.v4-stage--image-left .v4-copy {
  order: 2;
}

.v4-copy {
  position: relative;
  z-index: 1;
}

.v4-section--ai .v4-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  grid-template-columns: minmax(360px, 500px) minmax(0, 820px);
  gap: clamp(18px, 2.4vw, 40px);
  padding:
    0
    max(calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px) - var(--v4-stage-bleed)), 0px)
    28px
    calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px));
  overflow: visible;
  justify-content: space-between;
}

.v4-section--ai .v4-stage::before {
  display: block;
  top: 72px;
  right: max(calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px) - var(--v4-stage-bleed)), 0px);
  bottom: 0;
  left: 0;
  border-radius: 0 34px 34px 0;
  background: var(--v4-ai-surface);
}

.v4-section--ai .v4-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  position: relative;
  z-index: 2;
  margin: 42px 0 0;
  transform: none;
  padding: clamp(34px, 3.2vw, 50px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-section--ai .v4-kicker {
  color: var(--accent);
}

.v4-section--ai .v4-lead,
.v4-section--ai .v4-list li {
  color: rgba(244, 244, 242, 0.82);
}

.v4-section--ai .v4-list li::before {
  background: var(--accent);
}

.v4-section--ai .v4-media {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  max-width: 760px;
  margin-top: 72px;
  padding: 0;
  background: var(--v4-ai-surface);
  border-radius: 0 34px 34px 0;
  overflow: hidden;
  box-shadow: none;
}

.v4-section--performance .v4-stage {
  width: calc(100% + (2 * var(--v4-stage-bleed)));
  max-width: none;
  margin: 0;
  margin-left: calc(var(--v4-stage-bleed) * -1);
  margin-right: calc(var(--v4-stage-bleed) * -1);
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(20px, 2.6vw, 42px);
  padding: 0 var(--v4-stage-bleed) 28px 0;
}

.v4-section--performance .container {
  position: relative;
  z-index: 1;
}

.v4-section--performance .v4-stage::before {
  display: block;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 38px;
  background: var(--v4-performance-surface);
}

.v4-section--performance .v4-copy {
  max-width: 530px;
  align-self: start;
  justify-self: end;
  margin: 42px 0 0;
  padding: clamp(34px, 3vw, 46px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-section--performance .v4-kicker {
  color: #ffd655;
}

.v4-section--performance .v4-lead,
.v4-section--performance .v4-list li {
  color: rgba(244, 244, 242, 0.82);
}

.v4-section--performance .v4-list li::before {
  background: #ffd655;
}

.v4-section--performance .v4-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
}

.v4-section--measurement .v4-stage {
  width: calc(100vw - (max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px)) + var(--v4-stage-bleed));
  margin-left: calc(var(--v4-stage-bleed) * -1);
  margin-right: calc(50% - 50vw);
  grid-template-columns: minmax(360px, 500px) minmax(0, 820px);
  gap: clamp(18px, 2.4vw, 40px);
  padding: 0 clamp(24px, 4vw, 68px) 28px var(--v4-stage-bleed);
  overflow: visible;
}

.v4-section--measurement .v4-stage::before {
  display: block;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 34px 0 0 34px;
  background: var(--v4-measurement-surface);
}

.v4-section--measurement .v4-copy {
  align-self: start;
  max-width: 520px;
  position: relative;
  z-index: 2;
  margin: 42px 0 0;
  padding: clamp(34px, 3.2vw, 50px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-section--measurement .v4-kicker {
  color: #70a6c8;
}

.v4-section--measurement .v4-lead,
.v4-section--measurement .v4-list li {
  color: rgba(244, 244, 242, 0.82);
}

.v4-section--measurement .v4-list li::before {
  background: #70a6c8;
}

.v4-section--measurement .v4-media {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 100%;
  max-width: 760px;
  margin-top: 72px;
  padding: 0;
  background: #efefef;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
}

.v4-section--measurement .v4-media img {
  filter: none;
}

.v4-section--international .v4-stage {
  width: calc(100% + (2 * var(--v4-stage-bleed)));
  max-width: none;
  margin: 0;
  margin-left: calc(var(--v4-stage-bleed) * -1);
  margin-right: calc(var(--v4-stage-bleed) * -1);
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(20px, 2.6vw, 42px);
  padding: 0 var(--v4-stage-bleed) 28px 0;
}

.v4-section--international .v4-stage::before {
  display: block;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 38px;
  background: var(--v4-international-surface);
}

.v4-section--international .v4-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
}

.v4-section--international .v4-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  justify-self: end;
  margin: 42px 0 0;
  padding: clamp(34px, 3vw, 46px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-section--international .v4-kicker {
  color: #788e63;
}

.v4-section--international .v4-lead,
.v4-section--international .v4-list li {
  color: rgba(244, 244, 242, 0.82);
}

.v4-section--international .v4-list li::before {
  background: #788e63;
}

.v4-section--search .v4-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  grid-template-columns: minmax(360px, 500px) minmax(0, 820px);
  gap: clamp(18px, 2.4vw, 40px);
  padding:
    0
    max(calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px) - var(--v4-stage-bleed)), 0px)
    28px
    calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px));
  overflow: visible;
  justify-content: space-between;
}

.v4-section--search .v4-stage::before {
  display: block;
  top: 72px;
  right: max(calc(max((100vw - var(--container)) / 2, 0px) + clamp(24px, 4vw, 68px) - var(--v4-stage-bleed)), 0px);
  bottom: 0;
  left: 0;
  border-radius: 0 34px 34px 0;
  background: var(--v4-search-surface);
}

.v4-section--search .v4-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  position: relative;
  z-index: 2;
  margin: 42px 0 0;
  padding: clamp(34px, 3.2vw, 50px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-section--search .v4-media {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  max-width: 760px;
  margin-top: 72px;
  padding: 0;
  background: #efefef;
  border-radius: 0 34px 34px 0;
  overflow: hidden;
}

.v4-section--search .v4-kicker {
  color: var(--accent);
}

.v4-section--search .v4-lead,
.v4-section--search .v4-list li {
  color: rgba(244, 244, 242, 0.82);
}

.v4-section--search .v4-list li::before {
  background: var(--accent);
}

.v4-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.v4-copy-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.v4-copy-meta .v4-kicker {
  margin: 0;
}

.v4-section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f2;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.v4-copy h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.1vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.v4-lead,
.v4-contact-copy {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.62;
}

.v4-lead {
  margin-top: 20px;
}

.v4-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.v4-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.v4-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.v4-media {
  position: relative;
  z-index: 1;
  min-height: 500px;
  border: 0;
  border-radius: 30px;
  overflow: visible;
  background: #ffffff;
  box-shadow: none;
}

.v4-media img {
  width: min(100%, 660px);
  height: auto;
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(23, 29, 37, 0.06));
}

.v4-media--ai img,
.v4-media--measurement img,
.v4-media--international img,
.v4-media--search img,
.v4-media--performance img,
.v4-contact-media img {
  background: transparent;
}

.v4-section--ai .v4-media {
  background: var(--v4-ai-surface);
}

.v4-section--ai .v4-media img {
  width: min(88%, 700px);
  max-width: none;
  max-height: none;
  margin-left: auto;
  margin-right: 0;
  filter: none;
}

.v4-section--performance .v4-media {
  background: #ffffff;
}

.v4-section--performance .v4-media img {
  filter: none;
}

.v4-section--measurement .v4-media {
  background: #ffffff;
}

.v4-section--international .v4-media {
  background: #ffffff;
}

.v4-section--international .v4-media img {
  filter: none;
}

.v4-section--search .v4-media {
  background: #ffffff;
}

.v4-section--search .v4-media img {
  filter: none;
}

.v4-float-card,
.v4-side-note,
.v4-grid-note,
.v4-inline-tags span {
  border: 1px solid rgba(23, 29, 37, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(23, 29, 37, 0.08);
}

.v4-float-card,
.v4-side-note,
.v4-grid-note,
.v4-inline-tags {
  display: none;
}

.v4-float-card {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 200px;
  padding: 14px 16px;
  border-radius: 18px;
}

.v4-float-card--top {
  top: 24px;
  right: 24px;
}

.v4-float-card--bottom {
  bottom: 24px;
  left: 24px;
}

.v4-float-card span,
.v4-side-note span,
.v4-grid-note article span {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v4-float-card strong,
.v4-side-note strong,
.v4-grid-note article strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.v4-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.v4-inline-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.v4-side-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 20px;
}

.v4-section--measurement .v4-side-note {
  right: auto;
  left: -22px;
  bottom: 26px;
  max-width: 260px;
  border-radius: 22px 22px 22px 10px;
}

.v4-side-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.v4-grid-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
}

.v4-grid-note article {
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%);
}

.v4-contact-stage {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 3.6vw, 54px);
  align-items: center;
  padding: 0 var(--paired-box-offset) 36px clamp(28px, 3vw, 44px);
}

.v4-contact-stage::before {
  display: block;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 38px;
  background: #efefef;
}

.v4-contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.v4-contact-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #efefef;
}

.v4-contact-media img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.v4-contact-meta {
  display: grid;
  align-content: center;
  gap: 14px;
  align-self: start;
  justify-self: end;
  margin: 42px 0 0;
  padding: clamp(34px, 3vw, 46px);
  border-radius: 28px;
  background: #1b1e23;
  color: #f4f4f2;
  box-shadow: 0 30px 56px rgba(23, 29, 37, 0.16);
}

.v4-contact-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #f4f4f2;
  font-weight: var(--font-display-weight);
}

.v4-contact-meta a:not(.hero-button) {
  width: fit-content;
  color: rgba(244, 244, 242, 0.92);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.v4-contact-meta a:not(.hero-button):hover {
  opacity: 0.74;
}

.v4-contact-meta .hero-button {
  width: fit-content;
  margin-top: 8px;
}

.v4-section--contact {
  margin-top: clamp(92px, 8vw, 144px);
  padding: 0;
}

.v4-about-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 122px) 0 clamp(34px, 4vw, 48px);
  background: #f3f1ed;
  color: #171d25;
}

.v4-about-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(23, 29, 37, 0.08);
}

.v4-about-shell::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -14vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.v4-about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

.v4-about-copy {
  max-width: 660px;
}

.v4-about-lead {
  margin: 20px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
  letter-spacing: 0;
}

.v4-about-body {
  display: grid;
  gap: 18px;
  max-width: 640px;
  margin-top: 20px;
}

.v4-about-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.v4-about-visual {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v4-about-visual img {
  width: min(100%, 560px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.v4-about-visual--mobile {
  display: none;
}

.v4-contact-form-shell {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 4vw, 56px);
}

.v4-contact-form-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(23, 29, 37, 0.06);
}

.v4-contact-form-intro h3 {
  margin: 12px 0 0;
  color: #171d25;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.v4-contact-form-intro p:last-child {
  margin: 18px 0 0;
  max-width: 32rem;
  color: rgba(23, 29, 37, 0.68);
  font-size: 16px;
  line-height: 1.66;
}

.v4-contact-form {
  display: grid;
  gap: 22px;
}

.v4-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v4-contact-field {
  display: grid;
  gap: 10px;
}

.v4-contact-field--full {
  grid-column: 1 / -1;
}

.v4-contact-field span {
  color: #171d25;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v4-contact-field span em {
  color: rgba(23, 29, 37, 0.52);
  font-style: normal;
}

.v4-contact-field input,
.v4-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 29, 37, 0.12);
  border-radius: 16px;
  background: #fcfbf8;
  color: #171d25;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  padding: 15px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.v4-contact-field textarea {
  min-height: 184px;
  resize: vertical;
}

.v4-contact-field input:focus,
.v4-contact-field textarea:focus {
  outline: none;
  border-color: rgba(221, 69, 30, 0.5);
  box-shadow: 0 0 0 4px rgba(221, 69, 30, 0.08);
  background: #ffffff;
}

.v4-contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.v4-contact-form-controls {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.v4-contact-turnstile {
  min-height: 66px;
}

.v4-contact-form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(23, 29, 37, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.v4-contact-disclaimer {
  margin: 16px 0 0;
  max-width: 66ch;
  color: rgba(23, 29, 37, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.v4-contact-form-status.is-error {
  color: #b03a23;
}

.v4-contact-form-status.is-success {
  color: #3f6541;
}

.v4-contact-submit[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.v4-about-signoff {
  position: relative;
  z-index: 1;
  margin-top: clamp(34px, 3.2vw, 48px);
  display: flex;
  justify-content: flex-start;
}

.v4-about-signoff-card {
  width: min(100%, 560px);
  padding: 22px 24px 24px;
  background: #171d25;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(23, 29, 37, 0.16);
}

.v4-about-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.v4-about-card-brand {
  color: rgba(243, 241, 237, 0.66);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.v4-about-card-accent {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(221, 69, 30, 0.92), rgba(221, 69, 30, 0.08));
}

.v4-about-card-body {
  display: grid;
  gap: 18px;
}

.v4-about-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(42px, 4vw, 58px);
  padding-top: 30px;
  border-top: 1px solid rgba(23, 29, 37, 0.12);
}

.v4-about-label {
  margin: 0 0 8px;
  color: rgba(243, 241, 237, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v4-about-person h3 {
  margin: 0;
  color: #f3f1ed;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.1vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.v4-about-note {
  margin: 0;
  max-width: 44ch;
  color: rgba(243, 241, 237, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.v4-about-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(23, 29, 37, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.v4-about-legal a {
  color: #171d25;
  text-decoration: none;
}

.v4-about-legal a:hover {
  opacity: 0.74;
}

.legal-page,
.legal-main {
  background: #f3f1ed;
}

.legal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.legal-nav a {
  padding: 6px 0;
  color: rgba(23, 29, 37, 0.86);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-nav a.is-active {
  color: var(--accent-dark);
}

.legal-main {
  padding: 10px 0 92px;
}

.legal-hero-card,
.legal-card {
  border: 1px solid rgba(23, 29, 37, 0.06);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(23, 29, 37, 0.06);
}

.legal-hero-card {
  padding: clamp(28px, 4vw, 42px);
}

.legal-hero-card h1 {
  margin: 12px 0 0;
  color: #171d25;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.legal-lead {
  margin: 20px 0 0;
  max-width: 52rem;
  color: rgba(23, 29, 37, 0.72);
  font-size: 18px;
  line-height: 1.66;
}

.legal-updated {
  margin: 20px 0 0;
  color: rgba(23, 29, 37, 0.56);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.legal-card {
  padding: clamp(26px, 3vw, 38px);
}

.legal-card h2 {
  margin: 0 0 18px;
  color: #171d25;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: var(--font-display-weight);
}

.legal-card h3 {
  margin: 28px 0 12px;
  color: #171d25;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card h3:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li,
.legal-card address {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-card p + p,
.legal-card p + address,
.legal-card address + p {
  margin-top: 14px;
}

.legal-card address {
  font-style: normal;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-card a,
.legal-footer a {
  color: #171d25;
  text-decoration: none;
}

.legal-card a:hover,
.legal-footer a:hover,
.legal-nav a:hover {
  opacity: 0.74;
}

.legal-email {
  color: #171d25;
  font-family: var(--font-ui);
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.legal-note {
  margin-top: 18px;
  color: rgba(23, 29, 37, 0.64);
  font-size: 14px;
  line-height: 1.65;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 29, 37, 0.12);
  color: rgba(23, 29, 37, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.legal-footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1160px) {
  .landing-v4 .hero-art {
    right: -18px;
    bottom: -72px;
  }

  .landing-v4 .hero-art img {
    width: clamp(460px, 42vw, 600px);
  }

  .v4-section--ai .v4-stage,
  .v4-section--performance .v4-stage,
  .v4-section--measurement .v4-stage,
  .v4-section--international .v4-stage,
  .v4-section--search .v4-stage,
  .v4-contact-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v4-stage--image-left .v4-copy,
  .v4-stage--image-left .v4-media {
    order: initial;
  }

  .v4-section--ai .v4-stage::before,
  .v4-section--performance .v4-stage::before,
  .v4-section--measurement .v4-stage::before,
  .v4-section--international .v4-stage::before,
  .v4-section--search .v4-stage::before,
  .v4-contact-stage::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 34px;
  }

  .v4-copy h2 {
    max-width: none;
  }

  .v4-section--ai .v4-copy,
  .v4-section--performance .v4-copy,
  .v4-section--measurement .v4-copy,
  .v4-section--international .v4-copy,
  .v4-section--search .v4-copy {
    max-width: none;
    margin: 0;
    transform: none;
    justify-self: stretch;
  }

  .v4-contact-meta {
    margin: 0;
    justify-self: stretch;
  }

  .v4-section--ai {
    padding-bottom: 78px;
  }

  .v4-section--performance {
    margin-top: 0;
    padding-top: 96px;
  }

  .v4-section--performance::before {
    display: none;
  }

  .v4-section--ai .v4-stage {
    width: auto;
    min-height: 0;
    margin-left: 0;
    padding: 88px 24px 28px;
    gap: 26px;
  }

  .v4-section--ai .v4-stage::before {
    border-radius: 34px;
  }

  .v4-section--ai .v4-copy {
    margin-top: -36px;
    padding: 30px 26px;
  }

  .v4-section--ai .v4-media {
    min-height: 360px;
    justify-content: center;
    padding: 8px 0 0;
  }

  .v4-section--ai .v4-media img {
    width: min(100%, 620px);
    max-height: 420px;
  }

  .v4-section--measurement .v4-stage {
    width: auto;
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 88px 24px 28px;
    gap: 26px;
  }

  .v4-section--performance .v4-stage,
  .v4-section--international .v4-stage {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 88px 24px 28px;
  }

  .v4-section--measurement .v4-copy {
    margin-top: -36px;
    padding: 30px 26px;
  }

  .v4-section--measurement .v4-media {
    min-height: 360px;
    justify-content: center;
    padding: 8px 0 0;
  }

  .v4-section--measurement .v4-media img {
    width: min(100%, 620px);
    max-height: 420px;
  }

  .v4-section--search .v4-stage {
    width: auto;
    min-height: 0;
    margin-left: 0;
    padding: 88px 24px 28px;
    gap: 26px;
  }

  .v4-section--search .v4-copy {
    margin-top: -36px;
    padding: 30px 26px;
  }

  .v4-section--search .v4-media {
    min-height: 360px;
    justify-content: center;
    padding: 8px 0 0;
  }

  .v4-section--search .v4-media img {
    width: min(100%, 620px);
    max-height: 420px;
  }

  .v4-section--measurement .v4-side-note {
    left: 18px;
    bottom: 18px;
  }

  .v4-contact-card {
    grid-template-columns: 1fr;
  }

  .v4-contact-stage {
    padding: 88px 24px 28px;
  }

  .v4-contact-media {
    min-height: 360px;
    margin-top: 0;
    padding: 8px 0 0;
  }

  .v4-about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .v4-about-copy,
  .v4-about-body,
  .v4-about-lead {
    max-width: none;
  }

  .v4-contact-form-panel {
    grid-template-columns: 1fr;
  }

  .v4-about-visual--mobile {
    display: flex;
    margin: 0 0 24px;
  }

  .v4-about-grid > .v4-about-visual:not(.v4-about-visual--mobile) {
    display: none;
  }

  .v4-copy-meta {
    gap: 10px;
    margin-bottom: 14px;
  }

  .v4-section-index {
    min-width: 34px;
    height: 26px;
    padding: 0 9px;
  }

  .v4-about-footer {
    justify-content: flex-start;
  }

  .v4-about-signoff-card {
    width: 100%;
    padding: 20px 20px 22px;
  }

  .v4-about-card-head {
    margin-bottom: 22px;
  }

  .v4-about-legal {
    justify-content: flex-start;
  }

  .v4-about-shell {
    padding-top: 72px;
  }

  .v4-about-visual {
    min-height: 340px;
    border-radius: 30px;
  }

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

  .v4-media {
    min-height: 420px;
    padding: 24px 22px !important;
  }
}

@media (max-width: 860px) {
  .landing-v4 .hero-art {
    top: 142px;
    right: -10px;
    bottom: -12px;
    left: 52%;
  }

  .landing-v4 .hero-art img {
    object-position: 56% 24%;
  }

  .v4-section {
    padding: 78px 0;
  }

  .v4-copy h2 {
    font-size: 38px;
  }

  .v4-lead,
  .v4-contact-copy {
    font-size: 17px;
  }

  .v4-list li {
    font-size: 15px;
  }

  .v4-media {
    min-height: 340px;
  }

  .v4-stage::before,
  .v4-contact-stage::before {
    border-radius: 30px;
  }

  .v4-grid-note {
    grid-template-columns: 1fr;
  }

  .v4-inline-tags {
    margin-top: 20px;
  }

  .v4-section--ai {
    padding-top: 110px;
  }

  .v4-contact-meta {
    padding: 30px 26px;
    border-radius: 24px;
  }

  .v4-section--ai .v4-stage {
    padding: 78px 18px 20px;
    gap: 22px;
  }

  .v4-section--ai .v4-copy {
    margin-top: -28px;
    border-radius: 24px;
  }

  .v4-about-copy h2 {
    font-size: clamp(38px, 9vw, 50px);
  }

  .v4-chapter-intro--services {
    padding-top: 72px;
  }

  .v4-about-lead {
    font-size: clamp(18px, 1.2vw, 23px);
  }

  .v4-about-body p {
    font-size: 16px;
    line-height: 1.66;
  }

  .v4-about-visual {
    min-height: auto;
    padding: 0;
  }

  .v4-about-note {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .landing-v4 .hero-art {
    top: 146px;
    right: -6px;
    bottom: -8px;
    left: 54%;
  }

  .landing-v4 .hero-art img {
    object-position: 58% 25%;
  }

  .v4-section {
    padding: 70px 0;
  }

  .v4-section + .v4-section {
    margin-top: -18px;
    padding-top: calc(70px + 18px);
  }

  .v4-stage,
  .v4-contact-stage {
    gap: 22px;
  }

  .v4-stage::before,
  .v4-contact-stage::before {
    border-radius: 28px;
  }

  .v4-copy h2 {
    font-size: 32px;
  }

  .v4-lead,
  .v4-contact-copy {
    font-size: 16px;
    line-height: 1.58;
  }

  .v4-list {
    gap: 12px;
    margin-top: 24px;
  }

  .v4-list li {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .v4-media {
    min-height: 280px;
    padding: 18px 14px !important;
  }

  .v4-float-card--top {
    top: 16px;
    right: 16px;
  }

  .v4-float-card--bottom {
    bottom: 16px;
    left: 16px;
  }

  .v4-float-card,
  .v4-side-note {
    min-width: 0;
    max-width: calc(100% - 32px);
    padding: 12px 14px;
  }

  .v4-section--measurement .v4-copy {
    margin-top: -46px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .v4-section--measurement .v4-media {
    min-height: 250px;
  }

  .v4-section--measurement .v4-media img {
    width: 100%;
    max-height: 280px;
  }

  .v4-section--search .v4-copy {
    margin-top: -46px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .v4-contact-stage {
    padding: 78px 18px 20px;
  }

  .v4-contact-meta {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .v4-contact-media {
    min-height: 250px;
  }

  .v4-contact-media img {
    width: 100%;
    max-height: 280px;
  }

  .v4-section--search .v4-media {
    min-height: 250px;
  }

  .v4-section--search .v4-media img {
    width: 100%;
    max-height: 280px;
  }

  .v4-section--measurement .v4-side-note {
    left: 14px;
    bottom: 14px;
  }

  .v4-grid-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .v4-section--ai {
    padding-top: 96px;
  }

  .v4-section--ai .v4-stage {
    padding: 62px 14px 14px;
  }

  .v4-section--ai .v4-copy {
    margin-top: -46px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .v4-section--ai .v4-media {
    min-height: 250px;
  }

  .v4-section--ai .v4-media img {
    width: 100%;
    max-height: 280px;
  }

  .v4-float-card strong,
  .v4-side-note strong,
  .v4-grid-note article strong {
    font-size: 16px;
  }

  .v4-side-note p {
    font-size: 13px;
  }

  .v4-contact-meta {
    padding: 24px 22px;
  }

  .v4-contact-meta h3 {
    font-size: 30px;
  }

  .v4-contact-meta .hero-button {
    width: auto;
    justify-content: center;
  }

  .v4-section--contact {
    margin-top: 76px;
  }

  .v4-chapter-intro--services {
    padding: 96px 0 12px;
  }

  .v4-about-shell {
    padding-top: 62px;
    padding-bottom: 30px;
  }

  .v4-about-copy h2 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .v4-about-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .v4-about-body {
    margin-top: 24px;
    gap: 16px;
  }

  .v4-about-visual {
    min-height: auto;
    border-radius: 0;
  }

  .v4-contact-form-shell {
    margin-top: 34px;
  }

  .v4-contact-form-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .v4-contact-form-intro h3 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .v4-contact-field input,
  .v4-contact-field textarea {
    border-radius: 14px;
    padding: 14px 15px;
  }

  .v4-about-legal {
    font-size: 14px;
  }

  .v4-copy-meta {
    gap: 8px;
  }

  .v4-section-index {
    min-width: 32px;
    height: 24px;
    font-size: 10px;
  }
}


.mobile-variant {
  --mobile-stage-shadow: 0 22px 38px rgba(23, 29, 37, 0.15);
}

@media (max-width: 860px) {
  .mobile-variant .hero {
    padding: 10px 0 24px;
  }

  .mobile-variant .hero-grid {
    min-height: 720px;
  }

  .mobile-variant .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .mobile-variant .hero h1 {
    max-width: none;
    font-size: clamp(42px, 11.2vw, 54px);
    line-height: 1.03;
  }

  .mobile-variant .hero-text {
    max-width: min(59%, 246px);
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .mobile-variant .hero-actions {
    margin-top: 20px;
  }

  .mobile-variant .hero-button {
    padding: 13px 18px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .mobile-variant .hero-art {
    top: 244px;
    right: 2px;
    left: auto;
    bottom: auto;
    width: min(50vw, 228px);
  }

  .mobile-variant .hero-art-visual,
  .mobile-variant .hero-art-picture {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .mobile-variant .hero-art img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center top;
    display: block;
  }

  .mobile-variant .service-cards {
    margin-top: -28px;
    padding-top: 18px;
  }

  .mobile-variant .service-card {
    transition:
      background 160ms ease,
      color 160ms ease,
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-variant .service-card:active,
  .mobile-variant .service-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(27, 30, 35, 0.92);
    background: #1b1e23;
    box-shadow: 0 18px 34px rgba(23, 29, 37, 0.16);
    color: #f4f4f2;
    outline: none;
  }

  .mobile-variant .service-card:active h2,
  .mobile-variant .service-card:active p,
  .mobile-variant .service-card:focus-visible h2,
  .mobile-variant .service-card:focus-visible p {
    color: #f4f4f2;
  }

  .mobile-variant .service-card:active .service-icon img,
  .mobile-variant .service-card:focus-visible .service-icon img {
    filter: brightness(0) invert(1);
  }

  .mobile-variant .v4-section {
    padding: 58px 0;
  }

  .mobile-variant .v4-section + .v4-section {
    margin-top: 0;
    padding-top: 58px;
  }

  .mobile-variant .v4-section > .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .mobile-variant .v4-stage {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    overflow: visible !important;
    background: #ffffff;
  }

  .mobile-variant .v4-stage::before {
    display: none !important;
  }

  .mobile-variant .v4-copy {
    max-width: none !important;
    justify-self: stretch !important;
    align-self: start !important;
    padding: 24px 18px !important;
    border-radius: 22px;
    box-shadow: var(--mobile-stage-shadow);
  }

  .mobile-variant .v4-copy h2 {
    font-size: 32px;
  }

  .mobile-variant .v4-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.58;
  }

  .mobile-variant .v4-list {
    margin-top: 18px;
    gap: 10px;
  }

  .mobile-variant .v4-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  .mobile-variant .v4-media {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 0;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .mobile-variant .v4-media img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
    filter: none !important;
  }

  .mobile-variant .v4-copy-meta {
    margin-bottom: 10px;
    gap: 8px;
  }

  .mobile-variant .v4-section-index {
    min-width: 32px;
    height: 24px;
    font-size: 10px;
  }

  .mobile-v1 .v4-stage {
    border-radius: 0;
    padding-top: 0 !important;
  }

  .mobile-v1 .v4-copy {
    order: 1;
    position: relative;
    z-index: 2;
    margin: -86px 18px 0 !important;
  }

  .mobile-v1 .v4-media {
    order: 2;
  }

  .mobile-v2 .v4-stage {
    width: calc(100% - 32px) !important;
    margin: 0 16px !important;
    padding: 14px 14px 16px !important;
    border-radius: 24px;
    overflow: visible !important;
  }

  .mobile-v2 .v4-media {
    order: 1;
    border-radius: 18px;
  }

  .mobile-v2 .v4-copy {
    order: 2;
    margin: -10px 0 0 !important;
  }

  .mobile-v3 .v4-section {
    padding: 54px 0 94px;
  }

  .mobile-v3 .v4-section + .v4-section {
    padding-top: 54px;
  }

  .mobile-v3 .v4-stage {
    border-radius: 0;
  }

  .mobile-v3 .v4-media {
    order: 1;
  }

  .mobile-v3 .v4-copy {
    order: 2;
    margin: 0 18px -40px !important;
  }

  .mobile-v4 {
    background: #ffffff;
  }

  .mobile-v4 .site-header {
    background: #f3f1ed;
  }

  .mobile-v4 .hero {
    margin-bottom: -1px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .mobile-v4 .hero-grid {
    min-height: calc(100svh - 92px);
  }

  .mobile-v4 .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 12px;
  }

  .mobile-v4 .hero h1 {
    max-width: 100%;
    text-wrap: wrap;
  }

  .mobile-v4 .hero-text {
    max-width: none;
  }

  .mobile-v4 .hero-art {
    top: auto;
    left: 50%;
    right: auto;
    bottom: -6px;
    width: clamp(384px, 118vw, 512px);
    transform: translateX(-50%);
    z-index: 1;
  }

  .mobile-v4 .hero-art img {
    object-position: center bottom;
  }

  .mobile-v4 .page-shell {
    background: #ffffff;
  }

  .mobile-v4 .page-shell::before {
    content: none;
  }

  .mobile-v4 .hero,
  .mobile-v4 .v4-section--contact,
  .mobile-v4 .v4-about-shell {
    background: #f3f1ed;
  }

  .mobile-v4 .v4-chapter-intro--services,
  .mobile-v4 .service-cards,
  .mobile-v4 .v4-section:not(.v4-section--contact) {
    background: #ffffff;
  }

  .mobile-v4 .v4-chapter-intro--services {
    padding-top: 36px;
  }

  .mobile-v4 .v4-section {
    padding: 0;
  }

  .mobile-v4 .v4-stage {
    background: var(--mobile-v4-fade-end, #f3f1ed);
    padding: 0 !important;
  }

  .mobile-v4 .v4-section--ai {
    --mobile-v4-fade-mid: rgba(221, 69, 30, 0.08);
    --mobile-v4-fade-end: #f8eeeb;
  }

  .mobile-v4 .v4-section--performance {
    --mobile-v4-fade-mid: rgba(255, 214, 85, 0.12);
    --mobile-v4-fade-end: #faf6e6;
  }

  .mobile-v4 .v4-section--measurement {
    --mobile-v4-fade-mid: rgba(112, 166, 200, 0.11);
    --mobile-v4-fade-end: #edf4f8;
  }

  .mobile-v4 .v4-section--international {
    --mobile-v4-fade-mid: rgba(120, 142, 99, 0.1);
    --mobile-v4-fade-end: #eef1ea;
  }

  .mobile-v4 .v4-section--search {
    --mobile-v4-fade-mid: rgba(141, 120, 183, 0.11);
    --mobile-v4-fade-end: #f2eef7;
  }

  .mobile-v4 .v4-media {
    order: 1;
    position: relative;
    z-index: 1;
    border-radius: 0;
    background: #ffffff !important;
  }

  .mobile-v4 .v4-media::after {
    content: "";
    position: absolute;
    inset: 66% 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--mobile-v4-fade-mid, rgba(243, 241, 237, 0.72)) 58%, var(--mobile-v4-fade-end, #f3f1ed) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .mobile-v4 .v4-media img {
    position: relative;
    z-index: 0;
  }

  .mobile-v4 .v4-copy {
    order: 2;
    position: relative;
    z-index: 2;
    margin: -45px 16px 100px !important;
    border-radius: 22px;
  }

  .mobile-v4 .v4-section + .v4-section {
    padding-top: 0;
  }

  .mobile-v4 .v4-about-shell {
    padding-top: 72px;
  }

  .mobile-v5 {
    background: #ffffff;
  }

  .mobile-v5 .page-shell {
    background: #ffffff;
  }

  .mobile-v5 .page-shell::before {
    content: none;
  }

  .mobile-v5 .hero,
  .mobile-v5 .v4-section--contact,
  .mobile-v5 .v4-about-shell {
    background: #f3f1ed;
  }

  .mobile-v5 .v4-chapter-intro--services,
  .mobile-v5 .service-cards,
  .mobile-v5 .v4-section:not(.v4-section--contact) {
    background: #ffffff;
  }

  .mobile-v5 .v4-stage {
    background: #ffffff;
    padding-bottom: 34px !important;
  }

  .mobile-v5 .v4-copy {
    order: 1;
    position: relative;
    z-index: 2;
    margin: 0 16px -30px !important;
    border-radius: 22px;
  }

  .mobile-v5 .v4-media {
    order: 2;
    border-radius: 0;
    background: #ffffff !important;
  }

  .mobile-v5 .v4-section + .v4-section {
    padding-top: 50px;
  }

  .mobile-v5 .v4-about-shell {
    padding-top: 72px;
  }
}

@media (max-width: 560px) {
  .mobile-variant .hero-grid {
    min-height: 680px;
  }

  .mobile-variant .hero h1 {
    font-size: clamp(36px, 10.2vw, 40px);
  }

  .mobile-variant .hero-text {
    max-width: 57%;
    font-size: 16px;
  }

  .mobile-variant .hero-art {
    top: 254px;
    right: 0;
    width: min(52vw, 214px);
  }

  .mobile-variant .v4-copy h2 {
    font-size: 30px;
  }

  .mobile-v1 .v4-stage {
    padding-top: 0 !important;
  }

  .mobile-v1 .v4-copy {
    margin: -78px 16px 0 !important;
  }

  .mobile-v2 .v4-stage {
    width: calc(100% - 24px) !important;
    margin: 0 12px !important;
    padding: 12px 12px 14px !important;
    border-radius: 22px;
  }

  .mobile-v3 .v4-copy {
    margin: 0 16px -34px !important;
  }

  .mobile-v4 .v4-stage {
    padding: 0 !important;
  }

  .mobile-v4 .v4-copy {
    margin: -40px 14px 100px !important;
  }

  .mobile-v4 .hero-grid {
    min-height: calc(100svh - 84px);
  }

  .mobile-v4 .hero-copy {
    padding-top: 14px;
  }

  .mobile-v4 .hero-text {
    max-width: none;
  }

  .mobile-v4 .hero-art {
    top: auto;
    left: 50%;
    right: auto;
    bottom: -4px;
    width: min(118vw, 58svh, 456px);
    transform: translateX(-50%);
  }

  .mobile-v4 .v4-chapter-intro--services {
    padding-top: 26px;
  }

  .mobile-v5 .v4-stage {
    padding-bottom: 30px !important;
  }

  .mobile-v5 .v4-copy {
    margin: 0 14px -26px !important;
  }
}

@media (max-width: 560px) and (max-height: 740px) {
  .mobile-v4 .hero-grid {
    min-height: calc(100svh - 72px);
  }

  .mobile-v4 .hero-art {
    width: min(110vw, 54svh, 400px);
    bottom: -2px;
  }

  .mobile-v4 .hero-text {
    font-size: 15px;
    line-height: 1.52;
  }

  .mobile-v4 .hero-actions {
    margin-top: 18px;
  }
}

@media (max-width: 1160px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .legal-header-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .legal-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
  }

  .legal-main {
    padding-bottom: 72px;
  }

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

@media (max-width: 560px) {
  .legal-hero-card,
  .legal-card {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .legal-lead {
    font-size: 16px;
  }
}
