:root {
  --ink: #070b10;
  --muted: #5f6670;
  --paper: #f5f4f2;
  --soft: #f5f6f7;
  --line: rgba(8,12,18,.1);
  --navy: #07111b;
  --navy2: #0b2a43;
  --blue: #123f61;

  --serif: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  --cormorant: 'Cormorant Garamond',Georgia,serif;
  --sans: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--navy);
  overscroll-behavior: none;
  overflow-x: hidden;
  /* The site is dark. Declaring it lets a dark-themed cross-origin iframe (the
     app.vale.codes booking widget) render TRANSPARENT instead of getting an
     opaque dark canvas: browsers paint an opaque backdrop for an embedded
     iframe whose color-scheme MISMATCHES the embedder. With both on dark, the
     widget's transparent background shows the page gradient straight through. */
  color-scheme: dark;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);

  font-family: var(--sans);
  overscroll-behavior: none;
}

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

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

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(20px,5vw,74px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color .25s ease;
}

.site-nav.nav-dark {
  color: white;
}

.site-nav .nav-links {
  transition: opacity .3s ease, transform .3s ease;
}

.site-nav.nav-links-hidden:not(.menu-open) .nav-links {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand-symbol,
.mini-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  clip-path: polygon(50% 0,100% 100%,68% 100%,50% 58%,32% 100%,0 100%);
  transition: background .25s ease, color .25s ease;
}

.nav-dark .brand-symbol,
.dark-section .brand-symbol,
.dark-section .mini-mark,
.hero .mini-mark,
.compare-card .mini-mark {
  background: var(--paper);
  color: var(--paper);
}

.mini-mark {
  width: 20px;
  height: 20px;
  font-size: 0;
  vertical-align: middle;
  margin-right: 8px;
}

.horse-peek {
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(680px, 58vw, 1150px);
  transform: translate(-46%, -50%);
  opacity: .45;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.horse-peek--right {
  left: auto;
  right: 0;
  transform: translate(46%, -50%) scaleX(-1);
}

.horse-peek--top {
  top: 500px;
  transform: translateX(-46%);
}

.has-horse-peek {
  position: relative;
  overflow: clip;
}

main.has-horse-peek {
  clip-path: inset(84px 0 0 0);
}

.horse-peek--subtle {
  width: clamp(380px, 34vw, 560px);
  opacity: .4;
}

.has-horse-peek > :not(.horse-peek) {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .horse-peek { display: none; }
}

.brand-banner {
  height: 44px;
  width: auto;
  display: block;
}

.brand-banner-white { display: none; }
.nav-dark .brand-banner-white { display: block; }
.nav-dark .brand-banner-blue { display: none; }

.brand-horse {
  height: 40px;
  width: auto;
  display: block;
}

.brand-horse-navy { mix-blend-mode: multiply; }
.brand-horse-white { display: none; }
.footer .brand-horse-white { display: block; }
.footer .brand-horse-navy { display: none; }

.mini-horse {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: -6px;
  margin-right: 6px;
}

.mini-horse-navy { mix-blend-mode: multiply; }

.compare-panel .mini-horse { height: 20px; margin-right: 0; }
.service-included .mini-horse { height: 22px; margin-right: 0; }

@media (max-width: 900px) {
  .brand-banner { height: 36px; }
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 20px;
  font-size: 14px;
  color: inherit;
  opacity: .82;
}

.nav-links a,
.footer nav a,
.mini-footer a:last-child {
  transition: .25s;
}

.nav-links a:hover,
.footer nav a:hover,
.mini-footer a:last-child:hover {
  opacity: .55;
}

.nav-cta {
  margin-left: 16px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-weight: 600;
}

.lang-switch {
  margin-left: auto;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(8,12,18,.16);
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s ease, background .2s ease;
}

.lang-switch:hover {
  opacity: 1;
  background: rgba(8,12,18,.05);
}

.nav-dark .lang-switch {
  border-color: rgba(255,255,255,.3);
}

.nav-dark .lang-switch:hover {
  background: rgba(255,255,255,.08);
}

.nav-cta-floating {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  margin-left: 0;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  border-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity .35s ease, transform .35s ease, max-width .45s cubic-bezier(.2,.8,.2,1), padding .35s ease, margin .35s ease, border-width .35s ease;
}

.nav-cta-floating.nav-cta-shown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  margin-left: 16px;
  max-width: 260px;
  padding-left: 22px;
  padding-right: 22px;
  border-width: 1px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
}

.dark-section {
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.hero-scroll-stage {
  position: relative;
  background: var(--navy);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 24px 96px;
  position: relative;
}

.hero-layer {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 28%, rgba(4,9,14,.16), rgba(4,9,14,.58) 78%),
    linear-gradient(180deg, rgba(4,9,14,.42), rgba(4,9,14,.3) 45%, rgba(4,9,14,.82));
  transform: scale(1.05);
  will-change: transform;
}

.vertical-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 10.5vw 100%;
  mask-image: linear-gradient(to bottom,transparent,black 8%,black 88%,transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
  margin-top: 36px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
}

.eyebrow {
  text-transform: none;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.footer h2,
.page-hero h1,
.contact-copy h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(48px,7vw,104px);
  margin: 22px 0 24px;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: #080c12;
}

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: inherit;
}

.btn-dark {
  background: #07111b;
  color: #fff;
  border-color: #07111b;
}

.btn-dark:hover {
  background: #000;
}

.trust-strip {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 38px;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  opacity: .92;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  align-items: center;
}

.trust-track > * {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 34vw, 178px);
}

@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(120px, 11vw, 154px) clamp(20px,7vw,120px);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 64px;
}

.center {
  text-align: center;
}

.section-heading h2,
.split-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin: 16px 0 0;
}

.section-label {
  margin: 0;
  color: #0a0e14;
}

.section-label.light {
  color: rgba(255,255,255,.8);
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-card {
  background: #f4f5f6;
  padding: 36px;
  min-height: 360px;
}

.feature-card.wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
}

.feature-card h3,
.award-card h3,
.case-card h3 {
  font-size: 28px;
  margin: 24px 0 12px;
  letter-spacing: -.04em;
}

.feature-card p,
.award-card p,
.case-card p,
.service-row p,
.timeline-item p,
.page-hero p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.visual-card {
  height: 260px;
  background: linear-gradient(135deg,#f9fafb,#eef1f4);
  position: relative;
  overflow: hidden;
}

.visual-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 40% 30%,rgba(255,255,255,.9) 0 1px,transparent 2px 20px);
}

.data-panel,
.browser-window,
.floating-preview {
  position: absolute;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(8,12,18,.08);
  box-shadow: 0 24px 70px rgba(9,15,22,.12);
  backdrop-filter: blur(12px);
}

.data-panel {
  left: 15%;
  top: 18%;
  width: 52%;
  padding: 26px;
}

.data-panel span,
.floating-preview span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.data-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
}

.donut {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin-left: auto;
  background: conic-gradient(#07111b 0 62%,#6f93ff 0 75%,#e0e0e0 0);
}

.browser-window {
  inset: 20% 12%;
  padding: 18px;
}

.browser-bar {
  height: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.browser-lines i {
  display: block;
  height: 18px;
  background: #e7e9ec;
  margin: 10px 0;
}

.gradient-preview {
  background: linear-gradient(120deg,#eef2f6,#fff0e4,#d9ecff);
}

.floating-preview {
  right: 8%;
  top: 28%;
  padding: 30px;
  width: min(420px,80%);
}

.floating-preview b {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  margin-top: 12px;
}

.hero-overlap-section {
  position: relative;
  z-index: 6;
  box-shadow: 0 -44px 120px rgba(0, 0, 0, .18);
}

.hero-overlap-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 12, 18, .14), transparent);
  pointer-events: none;
}

.compact-problem {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--paper);
  padding-top: 96px;
  padding-bottom: 72px;
}

.compact-problem-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.compact-problem-copy h2 {
  max-width: 620px;
  margin: 16px 0 20px;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.065em;
}

.compact-problem-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.problem-points {
  margin-top: 38px;
}

.problem-line {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 34px;
}

.problem-line::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8, 12, 18, .18) 14%,
    rgba(8, 12, 18, .18) 86%,
    transparent
  );
}

.problem-line article {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 100px;
  padding: 18px 0 18px 46px;
  background: transparent;
  border: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.problem-line article::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(8, 12, 18, .18);
  transform: translateY(-50%);
}

.problem-line article::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(8, 12, 18, .28);
  box-shadow: 0 0 0 6px rgba(8, 12, 18, .035);
  transform: translateY(-50%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.problem-line article:hover {
  transform: translateX(5px);
}

.problem-line article:hover::after {
  background: #07111b;
  border-color: #07111b;
  box-shadow: 0 0 0 7px rgba(7, 17, 27, .07);
}

.problem-line span {
  color: #717982;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.problem-line strong {
  max-width: 430px;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: -.005em;
}

.compact-problem-visual {
  position: relative;
  min-height: clamp(420px, 58vh, 610px);
  background: transparent;
  border: 0;
  overflow: visible;
}

.mini-template {
  position: absolute;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(8, 12, 18, .1);
  box-shadow: 0 34px 90px rgba(9, 15, 22, .13);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.main-template {
  z-index: 3;
  width: 62%;
  min-height: 330px;
  left: 12%;
  top: 13%;
}

.ghost-template {
  z-index: 1;
  width: 55%;
  min-height: 280px;
  opacity: .54;
}

.ghost-one {
  right: 8%;
  top: 27%;
  transform: scale(.9);
}

.ghost-two {
  left: 26%;
  bottom: 9%;
  transform: scale(.82);
  opacity: .38;
}

.mini-top {
  display: flex;
  gap: 7px;
  padding-bottom: 13px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(8, 12, 18, .08);
}

.mini-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(8, 12, 18, .2);
}

.mini-hero {
  height: 82px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(7, 17, 27, .88), rgba(18, 63, 97, .72)),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,.28), transparent 35%);
}

.mini-lines i {
  display: block;
  height: 10px;
  margin-bottom: 9px;
  background: #e3e6ea;
}

.mini-lines i:nth-child(1) {
  width: 78%;
}

.mini-lines i:nth-child(2) {
  width: 92%;
}

.mini-lines i:nth-child(3) {
  width: 56%;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.mini-cards b {
  height: 48px;
  background: #edf0f3;
  border: 1px solid rgba(8, 12, 18, .04);
}

.multiply-stage {
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.multiply-rings {
  display: none;
}

.multiply-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-content: stretch;
  gap: 0;
  padding: 8%;
  box-sizing: border-box;
  transition: gap .5s cubic-bezier(.4,0,.2,1),
              padding .5s cubic-bezier(.4,0,.2,1),
              grid-template-columns .5s cubic-bezier(.4,0,.2,1);
}

.multiply-window {
  position: relative;
  background: #fff;
  border: 1px solid rgba(8,12,18,.10);
  box-shadow: 0 18px 50px rgba(9,15,22,.10);
  padding: 9px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  transform: scale(.88);
  filter: saturate(1);
  aspect-ratio: 16 / 11;
  width: 100%;
  box-sizing: border-box;
  transition: opacity .35s cubic-bezier(.4,0,.2,1),
              transform .5s cubic-bezier(.4,0,.2,1),
              filter .5s cubic-bezier(.4,0,.2,1),
              padding .5s cubic-bezier(.4,0,.2,1),
              gap .5s cubic-bezier(.4,0,.2,1),
              box-shadow .5s cubic-bezier(.4,0,.2,1);
}

.mw-traffic {
  display: flex;
  gap: 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(8,12,18,.06);
}

.mw-traffic span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(8,12,18,.22);
}

.mw-hero {
  background: var(--navy);
  border-radius: 2px;
  flex: 0 0 38%;
}

.mw-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mw-lines i {
  display: block;
  height: 3px;
  background: rgba(8,12,18,.10);
  border-radius: 2px;
}

.mw-lines i:nth-child(2) { width: 70%; }

.mw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: auto;
}

.mw-cards b {
  display: block;
  height: 11px;
  background: rgba(8,12,18,.08);
  border-radius: 2px;
}

[data-multiply][data-phase="1"] .multiply-grid {
  grid-template-columns: 1fr;
  padding: 18% 28%;
  gap: 0;
}
[data-multiply][data-phase="1"] .multiply-window:nth-child(1) {
  opacity: 1;
  transform: scale(1);
}

[data-multiply][data-phase="2"] .multiply-grid {
  grid-template-columns: 1fr 1fr;
  padding: 18% 8%;
  gap: 20px;
}
[data-multiply][data-phase="2"] .multiply-window:nth-child(-n+2) {
  opacity: 1;
  transform: scale(.97);
}

[data-multiply][data-phase="3"] .multiply-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 8%;
  gap: 14px;
}
[data-multiply][data-phase="3"] .multiply-window:nth-child(-n+4) {
  opacity: 1;
  transform: scale(.95);
  filter: saturate(.78);
}

[data-multiply][data-phase="4"] .multiply-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 4%;
  gap: 10px;
}
[data-multiply][data-phase="4"] .multiply-window:nth-child(-n+9) {
  opacity: .96;
  transform: scale(.93);
  filter: saturate(.55);
}

[data-multiply][data-phase="5"] .multiply-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 3%;
  gap: 8px;
}
[data-multiply][data-phase="5"] .multiply-window {
  opacity: .9;
  transform: scale(.92);
  filter: saturate(.32) brightness(.98);
  box-shadow: 0 8px 22px rgba(9,15,22,.07);
}

@media (prefers-reduced-motion: reduce) {
  .multiply-window,
  .multiply-grid {
    transition: none !important;
  }
}

@media (max-width: 767px) {
  [data-multiply] .multiply-grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 6% !important;
    gap: 10px !important;
  }
  [data-multiply] .multiply-window:nth-child(-n+4) {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: none !important;
  }
  [data-multiply] .multiply-window:nth-child(n+5) {
    display: none;
  }
  [data-multiply] .multiply-rings { display: none; }
}

.split-heading {
  max-width: 1000px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 60px;
}

.consequence-section {
  background: var(--navy);
  padding: clamp(120px, 11vw, 154px) 24px;
  overflow: hidden;
  position: relative;
}

.consequence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,9,14,.6), rgba(4,9,14,.8));
}

.consequence-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.consequence-header {
  max-width: 680px;
  margin-bottom: 72px;
}

.consequence-header h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  color: white;
  margin: 12px 0 0;
  letter-spacing: -.05em;
  line-height: .9;
}

.consequence-intro {
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 52ch;
}

.consequence-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  background: transparent;
}

.stat-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
}

.stat-line-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.stat-line-num {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(38px, 3.6vw, 54px);
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
}

.stat-line .stat-claim {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  min-height: 3em;
}

.stat-line .stat-claim strong {
  color: #fff;
  font-weight: 600;
}

.stat-line-chart {
  width: 100%;
  margin-top: auto;
}

.stat-line-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.chart-axis {
  stroke: rgba(255,255,255,.14);
  stroke-width: 1;
}

.chart-mark {
  stroke: rgba(255,255,255,.28);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0;
  transition: opacity .6s ease .7s;
}

.chart-path {
  fill: none;
  stroke: rgba(255,255,255,.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25));
  transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1);
}

.chart-area {
  opacity: 0;
  transition: opacity .9s ease .9s;
}

.chart-dot {
  fill: #fff;
  opacity: 0;
  transition: opacity .35s ease;
}

.chart-lbl {
  fill: rgba(255,255,255,.45);
  font-family: var(--sans);
  font-size: 10px;
  opacity: 0;
  transition: opacity .6s ease .5s;
}

.stat-line.run .chart-path { stroke-dashoffset: 0; }
.stat-line.run .chart-area { opacity: 1; }
.stat-line.run .chart-dot { opacity: 1; }
.stat-line.run .chart-mark { opacity: 1; }
.stat-line.run .chart-lbl { opacity: 1; }

.stat-line-src {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.38);
}

.consequence-note {
  margin: clamp(48px, 5vw, 72px) 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
}

@media (prefers-reduced-motion: reduce) {
  .chart-path,
  .chart-area,
  .chart-dot,
  .chart-mark,
  .chart-lbl {
    transition: none !important;
  }
}

.consequence-stat {
  padding: 52px 40px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 100px);
  font-weight: 600;
  color: white;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.stat-claim {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin: 0 0 14px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.stat-detail {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  margin: 0;
  line-height: 1.65;
  margin-top: auto;
}

.process-preview {
  background: var(--paper);
}

.tabs {
  max-width: 1050px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 54px;
}

.tab-buttons button,
.filters button {
  border: 0;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  color: #5a6068;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-buttons button.active,
.filters .active {
  color: #070b10;
  border-color: #070b10;
}

.tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.step-timeline {
  position: relative;
  min-height: 460px;
  padding: 70px 48px 70px 64px;
  background: transparent;
  border: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}

.step-timeline::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 90px;
  bottom: 90px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8, 12, 18, .20) 12%,
    rgba(8, 12, 18, .20) 88%,
    transparent
  );
}

.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 12px 0 12px 44px;
  background: transparent;
  border: 0;
  transition: transform .28s ease, opacity .28s ease;
  cursor: default;
}

.step-row::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(8, 12, 18, .18);
  transform: translateY(-50%);
  transition: background .28s ease, width .28s ease;
}

.step-row::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(8, 12, 18, .28);
  box-shadow: 0 0 0 6px rgba(8, 12, 18, .035);
  transform: translateY(-50%);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
  z-index: 1;
}

.step-row:hover {
  transform: translateX(6px);
}

.step-row:hover::before {
  background: rgba(8, 12, 18, .42);
}

.step-row:hover::after {
  background: #07111b;
  border-color: #07111b;
  box-shadow: 0 0 0 8px rgba(7, 17, 27, .08);
  transform: translateY(-50%) scale(1.15);
}

.step-timeline:hover .step-row:not(:hover) {
  opacity: .55;
}

.step-num {
  color: #717982;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: color .28s ease;
}

.step-row:hover .step-num {
  color: #07111b;
}

.step-label {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.12;
  letter-spacing: -.04em;
  color: #07111b;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .step-row,
  .step-row::before,
  .step-row::after,
  .step-num {
    transition: none !important;
  }
}

.tab-copy h3 {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -.06em;
}

.dark-card-section {
  padding-top: 130px;
  padding-bottom: 160px;
}

.card-stage {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.card-stage::before,
.card-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  pointer-events: none;
}

.card-stage::before {
  height: calc(100% - 16px);
  bottom: -14px;
  left: 20px;
  right: 20px;
  background: rgba(10, 20, 32, .55);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  z-index: 0;
}

.card-stage::after {
  height: calc(100% - 16px);
  bottom: -28px;
  left: 44px;
  right: 44px;
  background: rgba(8, 16, 26, .35);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  z-index: -1;
}

.compare-card {
  position: relative;
  z-index: 1;
  padding: 0 54px 48px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(22, 75, 117, .55) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(14, 42, 66, .4) 0%, transparent 45%),
    linear-gradient(160deg, rgba(16, 28, 42, .97), rgba(5, 10, 16, .99));
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 48px 130px rgba(0,0,0,.38);
  position: relative;
  overflow: hidden;
}

.compare-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25) 40%, rgba(255,255,255,.25) 60%, transparent);
  pointer-events: none;
}

.compare-card:after {
  content: "";
  position: absolute;
  top: 48px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,161,255,.08), transparent 70%);
  pointer-events: none;
}

.compare-card > * {
  position: relative;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .055);
  margin: 0 -54px 40px;
  padding: 0 22px;
  height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.browser-traffic {
  display: flex;
  gap: 7px;
  align-items: center;
  flex: 0 0 52px;
}

.browser-traffic span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.tl-close { background: #ff5f57; }
.tl-min   { background: #febc2e; }
.tl-max   { background: #28c840; }

.browser-urlbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  padding: 5px 14px;
  max-width: 260px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
  font-family: var(--sans);
  cursor: default;
  user-select: none;
}

.browser-lock {
  color: rgba(255, 255, 255, .5);
  flex-shrink: 0;
}

.browser-spacer {
  flex: 0 0 52px;
}

.compare-card-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.compare-card-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-card h2 {
  font-family: var(--serif);
  font-size: clamp(38px,3.8vw,56px);
  font-weight: 500;
  text-align: left;
  margin: 4px 0 0;
  line-height: .94;
  letter-spacing: -.04em;
}

.compare-intro {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

.h2-flourish {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
  background-image: linear-gradient(transparent 56%, rgba(150,196,255,.55) 56%);
  padding: 0 .06em;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.compare-stage {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1.06fr;
  gap: clamp(12px, 1.8vw, 22px);
  align-items: stretch;
  text-align: left;
}

.compare-panel {
  position: relative;
  border-radius: 24px;
  padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2.4vw, 34px);
}

.compare-panel h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.compare-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-panel li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.45;
}

.li-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.li-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.compare-panel--them {
  background: linear-gradient(180deg, #f0f0ee 0%, #e9eae8 100%);
  border: 1px solid rgba(8,12,18,.07);
  box-shadow: inset 0 1px 2px rgba(8,12,18,.04);
  align-self: center;
}

.compare-panel--them h3 {
  color: #8b929b;
}

.compare-panel--them li {
  color: #646b74;
}

.compare-panel--them li + li {
  border-top: 1px solid rgba(8,12,18,.06);
}

.compare-panel--them .li-icon {
  color: #9aa1a9;
  border: 1px solid rgba(8,12,18,.13);
  background: rgba(8,12,18,.02);
}

.compare-panel--vale {
  isolation: isolate;
  margin: -18px 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(106,166,221,.30) 0%, rgba(106,166,221,0) 55%),
    linear-gradient(160deg, #0e2c47 0%, #081521 62%, var(--navy) 100%);
  border: 1px solid rgba(122,170,220,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 30px 70px rgba(7,17,27,.32),
    0 10px 26px rgba(18,63,97,.22);
  color: rgba(255,255,255,.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compare-panel--vale::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156,196,236,.85), transparent);
}

.compare-panel--vale::after {
  content: "";
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(60% 55% at 50% 48%, rgba(18,63,97,.20), transparent 70%);
  pointer-events: none;
}

.compare-panel--vale h3 {
  color: #9cc4ec;
}

.compare-panel--vale li + li {
  border-top: 1px solid rgba(255,255,255,.08);
}

.compare-panel--vale .li-icon {
  color: var(--navy);
  background: linear-gradient(140deg, #cfe2f6 0%, #8db9e6 100%);
  box-shadow: 0 3px 10px rgba(106,166,221,.35);
}

.compare-pivot {
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f2f3f4 100%);
  border: 1px solid rgba(8,12,18,.1);
  box-shadow: 0 10px 26px rgba(7,17,27,.14);
  color: var(--blue);
}

.compare-pivot svg {
  width: 20px;
  height: 20px;
  display: block;
}

.compare-armed [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.22,.7,.25,1), transform .6s cubic-bezier(.22,.7,.25,1);
}

.compare-armed .compare-panel--vale[data-reveal] {
  transform: translateY(30px) scale(.97);
}

.compare-armed .compare-pivot[data-reveal] {
  transform: scale(.55);
}

.compare-armed [data-reveal].is-on {
  opacity: 1;
  transform: none;
}

.compare-armed li[data-reveal] .li-icon path,
.compare-armed .compare-pivot path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .5s ease .12s;
}

.compare-armed li[data-reveal] .li-icon path + path,
.compare-armed .compare-pivot path + path {
  transition-delay: .28s;
}

.compare-armed li[data-reveal].is-on .li-icon path,
.compare-armed .compare-pivot.is-on path {
  stroke-dashoffset: 0;
}

@media (hover: hover) and (min-width: 901px) {
  .compare-panel--vale,
  .compare-armed .compare-panel--vale[data-reveal] {
    transition: opacity .6s cubic-bezier(.22,.7,.25,1), transform .6s cubic-bezier(.22,.7,.25,1), box-shadow .5s ease, border-color .5s ease;
  }
  .compare-panel--vale:hover {
    border-color: rgba(156,196,236,.45);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      0 38px 86px rgba(7,17,27,.38),
      0 12px 30px rgba(18,63,97,.30);
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-armed [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .compare-armed [data-reveal] .li-icon path,
  .compare-armed .compare-pivot path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }
  .compare-panel--vale {
    transition: none;
  }
}

.partners {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,9,14,.6), rgba(4,9,14,.8));
}

.partners > * {
  position: relative;
  z-index: 2;
}

.partners .section-label {
  color: rgba(255,255,255,.55);
}

.partners .section-heading h2 {
  color: white;
}

.partners .logo-strip {
  color: rgba(255,255,255,.85);
}

.logo-strip {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 28px 0;
  font-size: 20px;
  font-weight: 800;
}

.logo-strip .logo-img-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-strip .logo-img {
  height: 48px;
  width: auto;
  display: block;

  filter: brightness(0) invert(1);
  opacity: .85;
}

.trust-strip .logo-img-wrap {
  display: inline-flex;
  align-items: center;
}

.trust-strip .logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-strip .logo-img--wide {
  height: 40px;
  opacity: .85;
}

.trust-strip .logo-img--wide {
  height: 30px;
}

.logo-strip .logo-img--tall {
  height: 58px;
  opacity: .85;
}

.trust-strip .logo-img--tall {
  height: 44px;
}

.award-grid,
.case-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.award-card {
  background: #f6f7f8;
  padding: 40px 36px;
  border: 1px solid rgba(8,12,18,.06);
  border-radius: 18px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.award-card:hover {
  box-shadow: 0 20px 60px rgba(8,12,18,.10);
  transform: translateY(-2px);
}

.free-concept {
  text-align: center;
}

.free-concept-inner {
  max-width: 780px;
  margin: 0 auto 46px;
}

.free-concept-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.free-concept-inner h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 12px 0 0;
}

.free-concept-lead {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: #4a525c;
}

.free-concept-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.free-concept-point {
  padding: 12px 16px;
  transition: transform .3s ease;
}

.free-concept-point:hover {
  transform: translateY(-4px);
}

.free-concept-ic {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(18,63,97,.14), rgba(18,63,97,.04));
  border: 1px solid rgba(18,63,97,.1);
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(18,63,97,.1), 0 1px 0 rgba(255,255,255,.7) inset;
  transition: transform .3s ease;
}

.free-concept-ic svg {
  width: 27px;
  height: 27px;
}

.free-concept-point:hover .free-concept-ic {
  transform: scale(1.06) rotate(-3deg);
}

.free-concept-point h3 {
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 22px 0 10px;
}

.free-concept-point p {
  font-size: 15px;
  line-height: 1.5;
  color: #5a626c;
  margin: 0;
}

.free-concept-note {
  max-width: 720px;
  margin: 44px auto 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 900px) {
  .free-concept-grid {
    grid-template-columns: 1fr;
  }
}

.faq-head {
  max-width: 1000px;
  margin: 0 auto 38px;
  text-align: center;
}

.faq-head h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -.03em;
  margin: 12px 0 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-a {
  padding: 0 4px 26px;
  max-width: 700px;
}

.faq-a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.case-card {
  background: #f6f7f8;
  padding: 0;
  border: 1px solid rgba(8,12,18,.06);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .3s ease;
}

.case-card:hover {
  box-shadow: 0 20px 60px rgba(8,12,18,.12);
}

.case-card span,
.case-card h3,
.case-card p,
.case-card b {
  display: block;
  padding: 0 28px;
}

.case-card span { padding-top: 18px; }
.case-card b    { padding-bottom: 20px; }

.award-card span,
.case-card span,
.service-row > span,
.timeline-item span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #68707a;
}

.case-visual {
  height: 200px;
  background-color: #e8ecf0;
  background-image: linear-gradient(135deg,#e8ecf0,#f8f9fa);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .5s ease;
}

.case-card:hover .case-visual {
  transform: scale(1.03);
}

.case-visual.blue,
.case-study-visual.blue {
  background-image: linear-gradient(135deg,#09243a,#185d8a);
}

.case-visual.pale,
.case-study-visual.pale {
  background-image: linear-gradient(135deg,#f1f3f5,#fff2e9,#e0f0ff);
}

.case-card b,
.case-study a,
.service-row a {
  display: inline-block;
  margin-top: 16px;
}

.link-arrow {
  display: inline-block;
  transition: transform .25s ease;
}

a:hover .link-arrow,
a:focus-visible .link-arrow,
.case-card:hover .link-arrow {
  transform: translateX(6px);
}

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

.footer {
  padding: clamp(60px, 7.5vh, 110px) clamp(24px,7vw,120px) clamp(26px, 3.5vh, 44px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.footer:before,
.contact-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,9,14,.62), rgba(4,9,14,.82));
}

.footer > * {
  position: relative;
  z-index: 2;
}

.footer-cta {
  max-width: 620px;
}

.footer-cta .button-row {
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 0;
}

.footer-cta .btn {
  width: auto;
  align-self: flex-start;
  flex: 0 0 auto;
}

.footer h2 {
  font-size: clamp(44px, 5vw, 74px);
  margin: clamp(12px, 1.8vh, 20px) 0;
}

.footer p {
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}

.footer-main {
  position: relative;
  margin-top: clamp(34px, 5.5vh, 90px);
  margin-bottom: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: clamp(26px, 3.8vh, 56px);
}

.footer-brand-horse {
  height: clamp(96px, 13vh, 175px);
  width: auto;
  justify-self: start;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 14px;
}

.footer-col a,
.footer-col .footer-loc {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social {
  display: inline-flex !important;
  align-items: center;
  margin-right: 16px;
  padding: 6px 0;
}

.footer-social svg {
  flex: 0 0 auto;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-social:hover svg {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-col .footer-loc {
  color: rgba(255,255,255,.45);
}

.footer-bottom {
  margin-top: clamp(24px, 3.5vh, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: clamp(18px, 2.5vh, 30px);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    padding-top: 44px;
    gap: 30px;
  }
  .footer-brand-horse {
    grid-column: 1 / -1;
    height: 110px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.footer nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  color: rgba(255,255,255,.72);
}

.footer-bottom .footer-legal {
  justify-content: flex-end;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  margin: 0;
}

.page-hero {
  padding: 170px clamp(22px,7vw,120px) 80px;
  max-width: 1180px;
}

.page-hero h1 {
  font-size: clamp(58px,8vw,108px);
  margin: 18px 0;
}

.page-hero p:not(.section-label) {
  max-width: 720px;
}

.service-list,
.case-study-list,
.timeline,
.about-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1.2fr 1fr 170px;
  gap: 34px;
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.service-row h2,
.case-study h2,
.timeline-item h2,
.editorial-panel h2 {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  margin: 0 0 14px;
  font-weight: 500;
}

.service-row ul {
  margin: 0;
  padding-left: 18px;
  color: #555;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.timeline-item {
  background: #f6f7f8;
  padding: 40px;
  min-height: 280px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
}

.editorial-panel,
.principle-stack article {
  background: #f6f7f8;
  padding: 44px;
}

.editorial-panel p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}

.principle-stack {
  display: grid;
  gap: 14px;
}

.principle-stack h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.filters {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 0;
  display: flex;
  gap: 34px;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.case-study-visual {
  display: block;
  min-height: 430px;
  background-color: #f3f5f7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .5s ease, box-shadow .4s ease;
}

.case-study-visual:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 80px rgba(8,12,18,.14);
}

.mock-browser {
  position: absolute;
  z-index: 2;
  inset: 20%;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
  padding: 24px;
}

.mock-browser div {
  height: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.mock-browser span {
  display: block;
  height: 18px;
  background: #e4e8ec;
  margin: 12px 0;
}

.contact-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: 140px clamp(22px,7vw,120px) 80px;
  position: relative;
  overflow: hidden;
  background: #04090e;
}

.contact-hero > * {
  position: relative;
  z-index: 2;
}

.contact-copy h1 {
  font-size: clamp(42px,4.2vw,64px);
  margin: 16px 0;
  line-height: .92;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 430px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-method:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.contact-method-ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #cfe3f2;
}

.contact-method-ic--wa {
  background: #25d366;
  color: #fff;
}

.contact-method-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.contact-method-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.contact-method-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}

.contact-method-note {
  margin: 4px 2px 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.56);
}

.contact-reassure {
  list-style: none;
  margin: 44px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: 22px;
  max-width: 420px;
}

.contact-reassure li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-reassure-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  position: relative;
  margin-top: 2px;
}

.contact-reassure-ic::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid #cfe3f2;
  border-bottom: 1.5px solid #cfe3f2;
  transform: rotate(-45deg);
}

.contact-reassure strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}

.contact-reassure div span {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}

.poke-card {
  width: 520px;
  aspect-ratio: 63 / 88;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.booking-embed {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  /* No frame: the booking widget is transparent (dark theme) so it should
     melt into the page's gradient as one surface. The old border + drop
     shadow + rounded clip turned it into a floating card that read as a
     separate panel. Background stays transparent so the section gradient
     shows straight through the widget. */
  background: transparent;
}

.free-concept-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 2px;
  max-width: 440px;
  padding: 15px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18,63,97,.5), rgba(11,42,67,.3));
  border: 1px solid rgba(125,180,225,.34);
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: fcbPulse 3.6s ease-in-out infinite;
}
@keyframes fcbPulse {
  0%, 100% { border-color: rgba(125,180,225,.34); box-shadow: 0 14px 36px rgba(0,0,0,.25); }
  50% { border-color: rgba(150,200,240,.7); box-shadow: 0 14px 40px rgba(60,130,200,.4); }
}
.free-concept-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 38%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-18deg);
  animation: fcbShine 5s ease-in-out infinite;
}
@keyframes fcbShine {
  0% { left: -60%; }
  40%, 100% { left: 140%; }
}
.fcb-ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(125,180,225,.16);
  border: 1px solid rgba(125,180,225,.4);
  color: #abd2f2;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.fcb-text { position: relative; z-index: 1; }
.fcb-text strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.fcb-sub {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.62);
  margin-top: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .free-concept-badge,
  .free-concept-badge::before { animation: none; }
}

.booking-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.app-page {
  display: flex;
  flex-direction: column;
}

.app-hero {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 140px clamp(22px,7vw,120px) 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.app-hero .section-label {
  color: var(--blue);
}

.app-hero h1 {
  font-size: clamp(40px,5.2vw,68px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 4px 0 0;
  max-width: 16ch;
}

.app-hero-sub {
  font-size: clamp(17px,1.6vw,21px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
  letter-spacing: -.01em;
}

.app-cta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.app-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(18,63,97,.28);
}

.app-showcase {
  padding: 24px clamp(22px,7vw,120px) 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.app-window {
  width: 100%;
  max-width: 920px;
  perspective: 1700px;
}

.app-window-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 50px 110px rgba(7,17,27,.26),
    0 0 0 1px rgba(8,12,18,.06);

  transform-origin: center 75%;
  transform: rotateX(58deg);
  backface-visibility: hidden;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .app-window-frame { transform: none; }
}

.app-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  background: linear-gradient(#f7f7f8, #ececee);
  border-bottom: 1px solid rgba(8,12,18,.08);
}

.app-window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.app-window-bar span:nth-child(1) { background: #ff5f57; }
.app-window-bar span:nth-child(2) { background: #febc2e; }
.app-window-bar span:nth-child(3) { background: #28c840; }

.app-window-frame img {
  display: block;
  width: 100%;
}

.app-showcase-caption {
  font-family: var(--serif);
  font-size: clamp(22px,2.4vw,30px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: center;
  max-width: 24ch;
  margin: 6px 0 0;
}

.app-points {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px clamp(22px,7vw,120px);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}

.app-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.app-point h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

.app-point p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 30ch;
}

.app-statement {
  padding: 70px clamp(22px,7vw,120px) 90px;
  text-align: center;
}

.app-statement h2 {
  font-family: var(--serif);
  font-size: clamp(34px,4vw,56px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--ink);
}

@media (max-width: 760px) {
  .app-points { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; padding-bottom: 40px; }
  .app-hero { padding-top: 110px; }
}

.award-card,
.case-card { border-radius: 22px; }

.award-card { padding: 42px 38px; }

.award-grid,
.case-grid { gap: 22px; }

.case-visual { height: 220px; }

.award-card:hover,
.case-card:hover {
  box-shadow: 0 26px 70px rgba(18,63,97,.12);
  transform: translateY(-3px);
}

.eyebrow,
.tab-buttons button,
.filters button { letter-spacing: -.01em; }

.device-stage {
  --frame: 1;
  position: relative;
  height: 240vh;
  background: #04070b;
}

.device-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #04070b;
}

.device-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: var(--frame);
  pointer-events: none;
  overflow: hidden;

  will-change: opacity;
  transform: translateZ(0);
  contain: paint;
}

.device-wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2.2vw, 44px);

  transform: translateY(-28%);
}

.device-wordmark-img {
  display: block;
  width: 100%;
  height: auto;
}

.device-rig {
  position: relative;
  z-index: 1;
  transform: scale(var(--s, .54));
  transform-origin: center center;
  will-change: transform;
}

.device-lid {
  position: relative;
  background: linear-gradient(#2a2a2e, #161618 60%, #08080a);
  padding: calc(13px * var(--frame));
  border-radius: calc(20px * var(--frame));
  box-shadow:
    0 calc(50px * var(--frame)) calc(100px * var(--frame)) rgba(0,0,0,.55),
    inset 0 0 0 calc(1px * var(--frame)) rgba(255,255,255,.07);
}

.device-lid::before {
  content: "";
  position: absolute;
  top: calc(13px * var(--frame));
  left: 50%;
  transform: translateX(-50%);
  width: calc(116px * var(--frame));
  height: calc(20px * var(--frame));
  background: #0a0a0c;
  border-radius: 0 0 calc(11px * var(--frame)) calc(11px * var(--frame));
  z-index: 2;
  opacity: var(--frame);
}

.device-screen {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border-radius: calc(16px * var(--frame));
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.device-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92%;
  background: linear-gradient(168deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 64%);
  clip-path: polygon(36% 0, 78% 0, 100% 100%, 0 100%);
  opacity: .5;
  pointer-events: none;
}

.device-screen-inner {
  position: relative;
  z-index: 1;
}

.device-screen-inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 clamp(22px,7vw,90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.device-screen-inner h2 {
  font-family: var(--serif);
  font-size: clamp(34px,4vw,60px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 6px 0 0;
}

.device-screen-inner .compare-intro {
  text-align: center;
  max-width: 52ch;
}

.device-base {
  position: relative;
  height: calc(16px * var(--frame));
  opacity: var(--frame);
  margin: 0 -7%;
  background: linear-gradient(#e4e8ee 0%, #c3c9d2 35%, #99a0ac 100%);
  border-radius: 0 0 calc(13px * var(--frame)) calc(13px * var(--frame));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.device-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: calc(9px * var(--frame));
  background: linear-gradient(#8b929e, #aab0bb);
  border-radius: 0 0 10px 10px;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .device-stage { height: auto; background: #04070b; --frame: 0; }
  .device-sticky { position: static; height: auto; overflow: visible; padding: 70px 0; background: #04070b; }
  .device-rig { transform: none; }
  .device-lid { padding: 12px; border-radius: 16px; background: #1c1c1e; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
  .device-screen { width: auto; height: auto; border-radius: 8px; }
  .device-screen-inner { padding: 28px clamp(20px,6vw,40px); }
  .device-base { display: block; }
  .device-backdrop { display: none; }
}

.device-screen-inner .section-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18,63,97,.16);
  background: rgba(18,63,97,.05);
  color: var(--blue);
  font-size: 11.5px;
  letter-spacing: .16em;
}
.device-screen-inner h2 { color: var(--ink); }

@media (min-width: 901px) and (max-height: 800px) {
  .device-screen-inner { gap: 16px; }
  .device-screen-inner h2 { font-size: clamp(30px, 3.4vw, 46px); }
  .device-screen-inner .compare-intro { font-size: 14px; line-height: 1.55; }
  .compare-stage { margin-top: 16px; }
  .compare-panel { padding: 18px 26px; }
  .compare-panel li { padding: 9px 0; font-size: 14px; }
  .compare-panel h3 { margin-bottom: 8px; }
  .compare-panel--vale { margin: -12px 0; }
}

@media (max-width: 900px) {
  .compare-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }
  .compare-panel {
    padding: 22px 22px;
    border-radius: 18px;
  }
  .compare-panel--them { align-self: auto; }
  .compare-panel--vale { margin: 0; }
  .compare-pivot {
    justify-self: center;
    width: 40px;
    height: 40px;
    margin: -6px 0;
    transform: rotate(90deg);
    z-index: 1;
  }
  .compare-armed .compare-pivot[data-reveal] { transform: rotate(90deg) scale(.55); }
  .compare-armed .compare-pivot[data-reveal].is-on { transform: rotate(90deg); }
  .compare-panel li { font-size: 14px; padding: 10px 0; }
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  color: white;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  overflow: hidden;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: rgba(255, 255, 255, .55);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-bottom-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  color: white;
  padding: 15px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s, background .2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.contact-form select option {
  background: #0d1a27;
  color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .11);
}

.full {
  grid-column: 1/-1;
}

.mini-footer {
  padding: 30px clamp(20px,7vw,120px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-hero {
  padding: 140px clamp(22px,7vw,120px) 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.case-hero h1 {
  font-size: clamp(44px,5.4vw,84px);
  line-height: .96;
  letter-spacing: -.05em;
  margin: 18px 0 26px;
  max-width: 14ch;
}

.case-hero .case-intro {
  max-width: 60ch;
  font-size: clamp(17px,1.3vw,21px);
  line-height: 1.55;
  color: #3a414b;
}

.case-feature {
  padding: 10px clamp(22px,7vw,120px) 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.case-feature-image {
  width: 100%;
  height: clamp(360px,62vh,640px);
  background-color: #e8ecf0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  border: 1px solid rgba(8,12,18,.06);
}

.case-meta {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px clamp(22px,7vw,120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-meta > div {
  display: grid;
  gap: 8px;
}

.case-meta span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
}

.case-meta strong {
  font-size: 16px;
  font-weight: 600;
  color: #07111b;
  letter-spacing: -.01em;
}

.case-section {
  padding: 90px clamp(22px,7vw,120px);
  max-width: 1160px;
  margin: 0 auto;
}

.case-section + .case-section {
  padding-top: 0;
}

.case-section h2 {
  font-size: clamp(32px,3.4vw,48px);
  line-height: 1.04;
  letter-spacing: -.04em;
  max-width: 22ch;
  margin-bottom: 24px;
}

.case-prose {
  max-width: 68ch;
  display: grid;
  gap: 20px;
  font-size: clamp(16px,1.15vw,18px);
  line-height: 1.65;
  color: #3a414b;
}

.case-prose strong {
  color: #07111b;
  font-weight: 600;
}

.case-callouts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 12px;
}

.case-callout {
  padding: 30px 28px;
  background: #f6f7f8;
  border: 1px solid rgba(8,12,18,.06);
  border-radius: 18px;
}

.case-callout strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: #07111b;
  line-height: 1;
  margin-bottom: 14px;
}

.case-callout p {
  font-size: 14px;
  color: #555a64;
  line-height: 1.55;
  margin-bottom: 10px;
}

.case-callout cite {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a909a;
  font-style: normal;
}

.case-pull {
  border-left: 2px solid #07111b;
  padding: 10px 0 10px 24px;
  margin: 32px 0;
  font-size: clamp(22px,2.2vw,30px);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: #07111b;
  max-width: 30ch;
}

.case-pull cite {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
  font-style: normal;
  font-weight: 700;
}

.app-icon-stage {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 50% 0%, #f4f7fa, #eceff3);
  border: 1px solid rgba(8,12,18,.06);
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.app-icon-stage--lg {
  min-height: clamp(360px, 50vh, 520px);
}

.case-study a.app-icon-stage {
  display: grid;
  margin-top: 0;
}

.app-icon {
  width: clamp(118px, 16vw, 188px);
  height: auto;
  border-radius: 22.3%;
  box-shadow: 0 26px 60px rgba(7,17,27,.24), 0 0 0 1px rgba(8,12,18,.05);
  transition: transform .4s ease;
}

.app-icon-stage--lg .app-icon {
  width: clamp(160px, 22vw, 240px);
}

a.app-icon-stage:hover .app-icon {
  transform: translateY(-6px) scale(1.02);
}

.coming-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

.site-frame {
  display: block;
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8,12,18,.08);
  box-shadow: 0 30px 70px rgba(7,17,27,.18), 0 0 0 1px rgba(8,12,18,.04);
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease, box-shadow .35s ease;
}

a.site-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(7,17,27,.24), 0 0 0 1px rgba(8,12,18,.05);
}

.site-frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  background: linear-gradient(#f7f7f8, #ececee);
  border-bottom: 1px solid rgba(8,12,18,.08);
}

.site-frame-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.site-frame-bar span:nth-child(1) { background: #ff5f57; }
.site-frame-bar span:nth-child(2) { background: #febc2e; }
.site-frame-bar span:nth-child(3) { background: #28c840; }

.site-frame-screen {
  display: block;
  width: 100%;
  height: auto;
  background: #f3f5f7;
}

.powered-badge {
  --pulse: rgba(255,255,255,.55);
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 9px;
  background: rgba(7,17,27,.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(7,17,27,.28);
}

.powered-badge--octavo {
  --pulse: rgba(232,62,57,.9);
  background: rgba(20,8,9,.86);
  box-shadow: 0 8px 24px rgba(18,2,2,.34), 0 0 0 1px rgba(232,62,57,.3) inset;
}

.powered-badge--vdv {
  --pulse: rgba(255,141,38,.9);
  background: rgba(22,14,6,.86);
  box-shadow: 0 8px 24px rgba(18,9,0,.34), 0 0 0 1px rgba(255,141,38,.32) inset;
}

.powered-badge--vamos {
  --pulse: rgba(72,198,222,.9);
  background: rgba(6,18,22,.86);
  box-shadow: 0 8px 24px rgba(0,12,16,.34), 0 0 0 1px rgba(72,198,222,.32) inset;
}

.powered-badge--pace {
  --pulse: rgba(255,255,255,.7);
  background: rgba(9,9,9,.88);
  box-shadow: 0 8px 24px rgba(0,0,0,.36), 0 0 0 1px rgba(255,255,255,.18) inset;
}

.powered-badge img {
  width: 18px;
  height: 18px;
  display: block;
  animation: poweredPulse 2.4s ease-in-out infinite;
}

@keyframes poweredPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); opacity: .92; }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 6px var(--pulse)); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .powered-badge img { animation: none; }
}

.case-study h2 {
  font-weight: 800;
  letter-spacing: -.025em;
}

.case-sketch {
  max-width: 580px;
  margin: 24px 0;
}

.case-sketch img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(8,12,18,.08);
}

.case-sketch figcaption {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: #9099a2;
  text-align: left;
}

.case-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 14px;
  max-width: 68ch;
}

.case-bullets li {
  padding-left: 22px;
  position: relative;
  font-size: clamp(16px,1.15vw,18px);
  line-height: 1.55;
  color: #3a414b;
}

.case-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: #07111b;
}

.case-cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 96px clamp(22px,7vw,120px);
  text-align: center;
}

.case-cta h2 {
  font-size: clamp(34px,3.4vw,48px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.case-cta p {
  max-width: 50ch;
  margin: 0 auto 28px;
  color: #3a414b;
  font-size: 17px;
  line-height: 1.55;
}

.case-cta .button-row {
  justify-content: center;
}

.case-cta .btn-ghost {
  border-color: rgba(8,12,18,.18);
  background: transparent;
  color: #07111b;
}

.case-cta .btn-ghost:hover {
  background: rgba(8,12,18,.05);
}

.case-next {
  border-top: 1px solid var(--line);
  padding: 70px clamp(22px,7vw,120px) 90px;
  max-width: 1320px;
  margin: 0 auto;
}

.case-next .section-label {
  margin-bottom: 18px;
}

.case-next a {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  transition: padding .3s ease;
}

.case-next a:hover {
  padding-left: 12px;
}

.case-next .next-thumb {
  width: 200px;
  height: 130px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  border: 1px solid rgba(8,12,18,.06);
}

.case-next h3 {
  font-size: clamp(20px,1.8vw,26px);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.case-next span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
}

.case-next .next-arrow {
  font-size: 22px;
  color: #07111b;
}

@media (max-width: 960px) {
  .case-meta { grid-template-columns: repeat(2,1fr); }
  .case-callouts { grid-template-columns: 1fr; }
  .case-next a { grid-template-columns: 120px 1fr auto; }
  .case-next .next-thumb { width: 120px; height: 80px; }
}

.process-page {
  display: flex;
  flex-direction: column;
}

.process-hero {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 110px clamp(22px,7vw,120px) 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}

.process-hero-copy h1 {
  font-size: clamp(34px,3.6vw,52px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 14px 0 0;
  max-width: 18ch;
}

.process-hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.process-hero-side p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #3a414b;
  margin: 0;
  max-width: 42ch;
}

.process-scroll-hint {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #717982;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.process-scroll-hint::after {
  content: "→";
  font-size: 16px;
  display: inline-block;
  animation: process-scroll-nudge 2.2s ease-in-out infinite;
}

@keyframes process-scroll-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

.process-track-wrap {
  padding: 150px 0 160px;
}

.process-track {
  display: flex;
  gap: 60px;
  padding: 10px clamp(22px,7vw,120px) 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: clamp(22px,7vw,120px);
  align-items: stretch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.process-step {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  height: 440px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: -60px;
  top: 50%;
  height: 1px;
  background: rgba(8,12,18,.18);
  z-index: 0;
}

.process-step:last-child::before {
  right: 0;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(8,12,18,.28);
  box-shadow: 0 0 0 6px rgba(8,12,18,.035);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.process-step:hover::after {
  background: #07111b;
  border-color: #07111b;
  box-shadow: 0 0 0 8px rgba(7,17,27,.08);
  transform: translate(-50%, -50%) scale(1.18);
}

.process-track:hover .process-step:not(:hover) {
  opacity: .55;
  transition: opacity .3s ease;
}

.process-step-card {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step:nth-child(odd) .process-step-card {
  top: calc(50% + 40px);
}

.process-step:nth-child(even) .process-step-card {
  bottom: calc(50% + 40px);
}

.process-step-card::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 1px;
  height: 32px;
  background: rgba(8,12,18,.18);
  transform: translateX(-50%);
}

.process-step:nth-child(odd) .process-step-card::before {
  top: -32px;
}

.process-step:nth-child(even) .process-step-card::before {
  bottom: -32px;
}

.process-step-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
  transition: color .3s ease;
}

.process-step:hover .process-step-num { color: #07111b; }

.process-step h2 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  letter-spacing: -.02em;
}

.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #3a414b;
  margin: 0;
}

@media (max-width: 1100px) {
  .process-hero { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

@media (max-width: 720px) {
  .process-step { flex: 0 0 260px; gap: 12px; }
  .process-step h2 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-scroll-hint::after { animation: none; }
  .process-step::after { transition: none; }
}

.services-page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-hero {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 140px clamp(22px,7vw,120px) 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.services-hero .section-label {
  color: var(--blue);
}

.services-hero h1 {
  font-size: clamp(40px,5.4vw,72px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 4px 0 0;
}

.services-hero-sub {
  font-size: clamp(17px,1.6vw,21px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 30ch;
  letter-spacing: -.01em;
}

.services-cta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  background: var(--navy);
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.services-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(18,63,97,.28);
}

.service-grid {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 16px clamp(22px,7vw,120px) 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(8,12,18,.05);
  border-radius: 24px;
  padding: 38px 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(7,17,27,.04), 0 12px 30px rgba(7,17,27,.03);
  transition: box-shadow .35s ease, transform .35s ease;
}

.service-card:hover {
  box-shadow: 0 10px 24px rgba(18,63,97,.10), 0 30px 70px rgba(18,63,97,.12);
  transform: translateY(-3px);
}

.service-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-card h2 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.02em;
  color: var(--ink);
}

.service-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.service-card ul {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.service-card li {
  font-size: 13px;
  line-height: 1.4;
  color: #3a414b;
  position: relative;
  padding-left: 16px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 1px;
  background: var(--blue);
}

.service-included {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.service-perk {
  margin: auto 0 0;
  padding: 12px 15px;
  border-radius: 12px;
  background: #eaf2fb;
  border: 1px solid rgba(18,63,97,.18);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--blue);
}

.service-feature {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(22px,7vw,120px) 56px;
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(32px,3.8vw,56px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px,4vw,64px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(18,63,97,.85) 0%, rgba(11,42,67,0) 55%),
    var(--navy);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(7,17,27,.35);
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.service-feature-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfe3f2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
}

.service-feature-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px,3.2vw,42px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.025em;
  margin: 0;
  color: #fff;
}

.service-feature-copy p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 46ch;
}

.service-feature-cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #07111b;
  background: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-feature-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.service-feature-list {
  list-style: none;
  margin: 0;
  padding: clamp(20px,2.4vw,28px) 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.service-feature-list li {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.82);
  position: relative;
  padding-left: 24px;
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
}

.service-feature-list li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: .62em;
  width: 5px;
  height: 2.5px;
  border-left: 1.5px solid #cfe3f2;
  border-bottom: 1.5px solid #cfe3f2;
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .services-hero { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

@media (max-width: 860px) {
  .service-feature-card { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .service-feature-list { border-top: 1px solid rgba(255,255,255,.14); }
}

.legal-hero {
  padding: 150px clamp(22px,7vw,120px) 30px;
  max-width: 880px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(40px,4.8vw,68px);
  line-height: .96;
  letter-spacing: -.04em;
  margin: 14px 0 0;
}

.legal-lang-toggle {
  display: inline-flex;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: #f6f7f8;
}

.legal-lang-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  padding: 7px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
  transition: background .2s ease, color .2s ease;
}

.legal-lang-toggle button.active {
  background: #07111b;
  color: #fff;
}

body[data-lang="nl"] [data-lang-block="en"] { display: none; }
body[data-lang="en"] [data-lang-block="nl"] { display: none; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px clamp(22px,7vw,120px) 80px;
}

.legal-content section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-of-type {
  border-top: 0;
  padding-top: 16px;
}

.legal-content h2 {
  font-size: clamp(20px,2vw,26px);
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.legal-content h3 {
  font-size: 15px;
  margin: 18px 0 6px;
  font-weight: 700;
  color: #07111b;
  letter-spacing: -.01em;
}

.legal-content p,
.legal-content li {
  font-size: 15.5px;
  line-height: 1.65;
  color: #3a414b;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 8px 0 14px;
  padding-left: 20px;
}

.legal-content li { margin-bottom: 6px; }

.legal-content strong {
  color: #07111b;
  font-weight: 600;
}

.legal-content address {
  font-style: normal;
  margin: 6px 0 14px;
  color: #3a414b;
  font-size: 15.5px;
  line-height: 1.65;
}

.legal-content a {
  color: #07111b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: #000; }

.legal-meta {
  display: block;
  font-size: 13px;
  color: #717982;
  letter-spacing: .04em;
  margin-top: 40px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 14px;
  font-size: 14.5px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: #3a414b;
}

.legal-table th {
  font-weight: 700;
  color: #07111b;
  background: #f6f7f8;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease,transform .8s ease;
}

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

@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-10px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav.menu-open .nav-links,
  .site-nav.menu-open .nav-links a {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media(max-width:900px) {
  .consequence-stats {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 520px;
  }

  .stat-line .stat-claim {
    min-height: 0;
  }

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

  .menu-toggle {
    display: block;
    margin-left: 14px;
  }

  .site-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    padding: 12px;
    background: #fff;
    color: #080c12;
    opacity: 1;
    border: 1px solid rgba(8,12,18,.08);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0,0,0,.24);
    transform-origin: top center;
    animation: navMenuIn .34s cubic-bezier(.22,1,.36,1) both;
  }

  .site-nav.menu-open .nav-links a {
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 16px;
    opacity: 0;
    animation: navItemIn .42s cubic-bezier(.22,1,.36,1) forwards;
    transition: background .2s ease;
  }
  .site-nav.menu-open .nav-links a:hover {
    opacity: 1;
    background: rgba(8,12,18,.05);
  }
  .site-nav.menu-open .nav-links a:nth-child(1) { animation-delay: .05s; }
  .site-nav.menu-open .nav-links a:nth-child(2) { animation-delay: .10s; }
  .site-nav.menu-open .nav-links a:nth-child(3) { animation-delay: .15s; }
  .site-nav.menu-open .nav-links a:nth-child(4) { animation-delay: .20s; }
  .site-nav.menu-open .nav-links a:nth-child(5) { animation-delay: .25s; }

  .hero h1 {
    font-size: 58px;
  }

  .trust-strip {
    overflow: hidden;
    justify-content: flex-start;
    bottom: 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .trust-track {
    animation: trustScroll 22s linear infinite;
    will-change: transform;
  }

  .feature-grid,
  .tab-layout,
  .split-heading,
  .award-grid,
  .case-grid,
  .footer-bottom,
  .service-row,
  .timeline,
  .about-grid,
  .case-study,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    display: block;
  }

  .section {
    padding: 96px 24px;
  }

  .compare-card {
    padding: 0 24px 44px;
  }

  .compare-card:before {
    display: none;
  }

  .compare-card-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .browser-chrome {
    margin: 0 -24px 40px;
  }

  .consequence-section {
    padding: 96px 24px;
  }

  .consequence-header {
    margin-bottom: 56px;
  }

  .logo-strip {
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: flex-start;
  }

  .footer {
    padding: 80px 24px 40px;
  }

  .footer h2 {
    font-size: 42px;
  }

  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-row {
    gap: 14px;
  }

  .case-study {
    gap: 28px;
  }

  .case-study-visual {
    min-height: 300px;
  }

  .compact-problem {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .compact-problem-inner {
    grid-template-columns: 1fr;
  }

  .compact-problem-visual {
    min-height: 480px;
  }

  .main-template {
    width: 70%;
    left: 8%;
    top: 10%;
  }

  .ghost-one {
    right: 4%;
    top: 26%;
  }

  .ghost-two {
    left: 14%;
    bottom: 10%;
  }
}

@media(max-width:560px) {
  .consequence-stats {
    grid-template-columns: 1fr;
  }

  .consequence-stat {
    padding: 40px 28px;
  }

  .hero {
    padding: 112px 18px 110px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    font-size: 15px;
    bottom: 22px;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading h2,
  .split-heading h2 {
    font-size: 36px;
  }

  .footer h2 {
    font-size: 36px;
    margin: 16px 0;
  }

  .compare-card h2 {
    font-size: 36px;
  }

  .consequence-section {
    padding: 80px 20px;
  }

  .consequence-header h2 {
    font-size: 38px;
  }

  .feature-card,
  .award-card,
  .timeline-item,
  .editorial-panel,
  .principle-stack article {
    padding: 26px;
  }

  .case-card span,
  .case-card h3,
  .case-card p,
  .case-card b {
    padding-left: 20px;
    padding-right: 20px;
  }

  .case-visual {
    height: 210px;
  }

  .visual-card {
    height: 220px;
  }

  .tab-buttons {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .compare-card h2 {
    font-size: 44px;
  }

  .footer-bottom,
  .mini-footer {
    display: block;
  }

  .footer-bottom > *,
  .mini-footer > * {
    margin-top: 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .compact-problem {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .compact-problem-copy h2 {
    font-size: 48px;
  }

  .compact-problem-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .problem-points {
    margin-top: 26px;
  }

  .problem-line {
    padding-left: 26px;
  }

  .problem-line article {
    grid-template-columns: 38px 1fr;
    min-height: 68px;
    padding: 8px 0 8px 34px;
  }

  .problem-line article::before {
    left: -20px;
    width: 34px;
  }

  .problem-line article::after {
    left: 12px;
    width: 10px;
    height: 10px;
  }

  .problem-line strong {
    font-size: 17px;
  }

  .compact-problem-visual {
    min-height: 390px;
  }

  .main-template {
    width: 80%;
    min-height: 255px;
    left: 6%;
    top: 8%;
  }

  .ghost-template {
    width: 70%;
    min-height: 230px;
  }

  .ghost-one {
    right: 2%;
    top: 27%;
  }

  .ghost-two {
    left: 10%;
    bottom: 9%;
  }

  .mini-hero {
    height: 62px;
  }

  .mini-cards b {
    height: 34px;
  }

}

@media (max-width: 900px) {

  .section {
    padding: 48px 20px;
  }

  .site-nav {
    height: 60px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-symbol {
    width: 22px;
    height: 22px;
  }

  .hero h1                         { font-size: 38px;     line-height: 1; letter-spacing: -.045em; }
  .compact-problem-copy h2          { font-size: 36px;     line-height: .98; letter-spacing: -.045em; margin: 10px 0 14px; }
  .consequence-header h2            { font-size: 32px;     line-height: 1; }
  .section-heading h2,
  .split-heading h2,
  .free-concept-inner h2,
  .faq-head h2                      { font-size: 32px;     line-height: 1; letter-spacing: -.035em; margin: 10px 0 0; }
  .compare-card-copy h2             { font-size: 30px;     line-height: 1.02; }
  .footer h2                        { font-size: 32px;     line-height: 1; }
  .page-hero h1                     { font-size: 38px;     line-height: 1; margin: 12px 0; }
  .case-hero h1                     { font-size: 36px;     line-height: 1; margin: 12px 0 14px; max-width: none; }
  .case-section h2                  { font-size: 24px;     line-height: 1.05; max-width: none; }
  .services-hero h1                 { font-size: 40px;     line-height: 1.04; max-width: none; }
  .process-hero-copy h1             { font-size: 30px;     line-height: 1; max-width: none; }
  .contact-hero h1                  { font-size: 32px;     line-height: 1.02; letter-spacing: -.04em; }
  .legal-hero h1                    { font-size: 34px;     line-height: 1; }
  .case-study h2                    { font-size: 26px;     line-height: 1.02; }
  .service-row h2                   { font-size: 28px;     line-height: 1; }
  .timeline-item h2                 { font-size: 26px;     line-height: 1; }
  .editorial-panel h2               { font-size: 26px;     line-height: 1.05; }
  .tab-copy h3                      { font-size: 22px;     line-height: 1.1; }
  .case-card h3                     { font-size: 19px;     line-height: 1.1; }
  .award-card h3                    { font-size: 19px;     line-height: 1.1; }
  .service-card h2                  { font-size: 20px; }

  .hero-copy,
  .compact-problem-copy > p:not(.section-label),
  .case-hero .case-intro,
  .page-hero p:not(.section-label),
  .case-prose p,
  .case-prose,
  .footer p,
  .compare-intro,
  .stat-detail,
  .case-card p,
  .award-card p,
  .case-study p,
  .service-card > p,
  .services-hero-sub,
  .process-hero-side p,
  .case-cta p,
  .case-callout p,
  .legal-content p,
  .legal-content li,
  .contact-copy p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero {
    padding: 96px 20px 72px;
    min-height: auto;
  }

  .hero-layer {
    height: auto;
    min-height: auto;
  }

  .trust-strip {
    font-size: 13px;
    bottom: 22px;
  }

  .compact-problem {
    min-height: auto;
    padding: 56px 0;
  }

  .compact-problem-inner {
    padding: 0 20px;
    gap: 24px;
  }

  .problem-points { margin-top: 22px; }

  .problem-line article {
    min-height: 76px;
    padding: 14px 0 14px 38px;
  }

  .problem-line strong {
    font-size: 14.5px;
    line-height: 1.45;
  }

  .problem-line article::after { width: 9px; height: 9px; }

  .compact-problem-visual {
    min-height: 220px;
    margin-top: 4px;
  }

  .consequence-section { padding: 56px 20px; }
  .consequence-header { margin-bottom: 28px; max-width: 100%; }
  .consequence-stat { padding: 28px 22px; }
  .stat-number { font-size: 44px; }
  .stat-claim  { font-size: 14px; }

  .dark-card-section { padding: 48px 20px; }
  .compare-card { padding: 0 20px 32px; }
  .compare-card-copy { padding: 32px 0 24px; }
  .compare-panel { padding: 18px 18px; }
  .compare-panel li { font-size: 13.5px; gap: 11px; }
  .li-icon { width: 22px; height: 22px; }
  .li-icon svg { width: 13px; height: 13px; }

  .process-preview { padding: 56px 20px; }
  .tab-buttons { gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
  .tab-buttons button { font-size: 13px; padding: 8px 0; }
  .step-timeline { min-height: 260px; padding: 16px 14px 16px 24px; }
  .step-timeline::before { left: 40px; top: 28px; bottom: 28px; }
  .step-row { min-height: 54px; padding: 6px 0 6px 28px; grid-template-columns: 38px 1fr; gap: 14px; }
  .step-row::after { width: 9px; height: 9px; left: 28px; }
  .step-row::before { left: -2px; width: 32px; }
  .step-label { font-size: 17px; }
  .step-num   { font-size: 11px; }

  .cases { padding: 56px 20px; }
  .case-grid { gap: 14px; }
  .case-visual { height: 150px; }
  .case-card span { padding: 14px 18px 0; font-size: 12px; }
  .case-card h3,
  .case-card p,
  .case-card b { padding-left: 18px; padding-right: 18px; }
  .case-card b { padding-bottom: 16px; font-size: 13px; }

  .partners { padding: 56px 20px; }
  .logo-strip { font-size: 14px; padding: 18px 0; gap: 14px 24px; }

  .recognition { padding: 56px 20px; }
  .award-grid { gap: 14px; }
  .award-card { padding: 24px 20px; }

  .footer {
    padding: 56px 20px 28px;
    min-height: auto;
  }
  .footer-cta { max-width: 100%; }
  .footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  .footer-bottom .footer-legal { justify-content: flex-start; gap: 18px; }
  .footer-copy { text-align: left; order: 3; }

  .page-hero {
    padding: 100px 20px 28px;
    max-width: none;
  }

  .case-hero { padding: 100px 20px 20px; max-width: none; }
  .case-feature { padding: 4px 20px 24px; max-width: none; }
  .case-feature-image { height: 200px; border-radius: 14px; }
  .case-meta {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 22px 20px;
    max-width: none;
  }
  .case-meta strong { font-size: 14px; }
  .case-section {
    padding: 40px 20px;
    max-width: none;
  }
  .case-section + .case-section { padding-top: 0; }
  .case-pull { font-size: 18px; margin: 20px 0; padding: 6px 0 6px 16px; max-width: none; }
  .case-callouts { gap: 12px; grid-template-columns: 1fr; margin-top: 10px; }
  .case-callout { padding: 20px 18px; }
  .case-callout strong { font-size: 28px; margin-bottom: 8px; }
  .case-callout p { font-size: 13.5px; }
  .case-bullets { gap: 10px; }
  .case-cta { padding: 56px 20px; }
  .case-cta h2 { font-size: 26px; line-height: 1.05; }
  .case-next { padding: 32px 20px 56px; max-width: none; }
  .case-next a { grid-template-columns: 80px 1fr auto; gap: 18px; padding: 16px 0; }
  .case-next .next-thumb { width: 80px; height: 56px; border-radius: 10px; }
  .case-next h3 { font-size: 17px; }

  .services-hero {
    padding: 100px 20px 14px;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
  }
  .service-grid {
    padding: 8px 20px 36px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
  .service-card { padding: 30px 28px 24px; gap: 12px; }
  .service-card li { font-size: 12.5px; }

  .process-hero {
    padding: 100px 20px 12px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    max-width: none;
  }
  .process-track-wrap { padding: 36px 0 48px; }
  .process-track { padding: 8px 20px 14px; gap: 36px; }
  .process-step { flex: 0 0 230px; height: 360px; }
  .process-step:nth-child(odd)  .process-step-card { top: calc(50% + 28px); }
  .process-step:nth-child(even) .process-step-card { bottom: calc(50% + 28px); }
  .process-step-card::before { height: 24px; }
  .process-step:nth-child(odd)  .process-step-card::before { top: -24px; }
  .process-step:nth-child(even) .process-step-card::before { bottom: -24px; }
  .process-step h2 { font-size: 24px; }

  .contact-hero {
    padding: 100px 20px 56px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .poke-card { width: 100%; aspect-ratio: auto; }
  .contact-form {
    padding: 22px 20px;
    gap: 14px;
    border-radius: 16px;
  }
  .contact-form label { font-size: 10.5px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px;
    font-size: 14.5px;
  }

  .case-study {
    padding: 28px 0;
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .case-study-list { padding: 20px 20px 40px; }
  .case-study-visual {
    min-height: 200px;
    border-radius: 14px;
  }

  .legal-hero { padding: 100px 20px 16px; }
  .legal-content { padding: 16px 20px 56px; }
  .legal-content section { padding: 22px 0; }
  .legal-content h2 { font-size: 19px; }
  .legal-content h3 { font-size: 14px; }
  .legal-table { font-size: 12.5px; }
  .legal-table th,
  .legal-table td { padding: 8px 10px; }

  .about-grid { gap: 28px; padding-top: 0; padding-bottom: 0; }
  .editorial-panel { padding: 0; }
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 26px 24px 22px; }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1,
  .case-hero h1                    { font-size: 32px; }
  .compact-problem-copy h2          { font-size: 30px; }
  .consequence-header h2,
  .section-heading h2,
  .split-heading h2,
  .free-concept-inner h2,
  .faq-head h2,
  .problem-pin-inner h2,
  .compare-card-copy h2,
  .footer h2                        { font-size: 26px; }
  .contact-hero h1                  { font-size: 28px; }
  .services-hero-copy h1,
  .process-hero-copy h1             { font-size: 26px; }
  .case-study h2                    { font-size: 22px; }
  .case-section h2                  { font-size: 21px; }

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

  .hero          { padding: 88px 18px 64px; }
  .section,
  .consequence-section,
  .cases,
  .partners,
  .recognition,
  .process-preview,
  .dark-card-section,
  .footer,
  .case-cta      { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 900px) {

  .hero { padding: 100px 20px 84px; }
  .compact-problem { padding: 80px 0; }
  .consequence-section,
  .dark-card-section,
  .process-preview,
  .cases,
  .partners,
  .recognition { padding-top: 80px; padding-bottom: 80px; }
  .footer { padding: 88px 20px 32px; }

  .hero .button-row,
  .footer .button-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero .button-row .btn,
  .footer .button-row .btn {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }
  .hero .button-row .btn-ghost,
  .footer .button-row .btn-ghost {
    display: none;
  }

  [data-multiply] .multiply-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    padding: 0 8% !important;
    gap: 14px !important;
  }
  [data-multiply] .multiply-window:nth-child(-n+2) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  [data-multiply] .multiply-window:nth-child(n+3) {
    display: none !important;
  }
  [data-multiply] .multiply-rings { display: none; }
  .compact-problem-visual { min-height: 200px; }

  .consequence-stats { gap: 44px; }
  .stat-claim { font-size: 14px; }

  .compare-card {
    max-width: 340px;
    margin: 24px auto 0;
    padding: 38px 16px 22px;
    border-radius: 42px;
  }
  .compare-card .browser-chrome { display: none; }

  .compare-card:before {
    top: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 96px;
    height: 22px;
    background: rgba(0,0,0,.72);
    border-radius: 14px;
  }
  .compare-card:after { display: none; }
  .compare-card-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .compare-card-copy { padding: 20px 6px 0; }

  .case-grid {
    display: block;
    grid-template-columns: none;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0;
    width: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .case-grid-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 0 20px;
    animation: case-marquee 38s linear infinite;
  }
  .case-grid-track:hover {
    animation-play-state: paused;
  }
  .case-grid-track .case-card {
    flex: 0 0 270px;
    width: 270px;
  }
  @keyframes case-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .partners .logo-strip {
    border: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    margin: 0 -20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .partners-track {
    display: flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
    width: max-content;
    padding: 20px 28px;
    animation: partners-marquee 32s linear infinite;
  }
  .partners-track > span {
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: rgba(255,255,255,.88);
  }
  .partners-track .logo-img {
    height: 34px;
  }
  @keyframes partners-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-grid-track,
  .partners-track {
    animation: none !important;
  }
}

.work-view-toggle {
  display: inline-flex;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: #f6f7f8;
}

.work-view-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #717982;
  transition: background .2s ease, color .2s ease;
}

.work-view-toggle button.active {
  background: #07111b;
  color: #fff;
}

body[data-view="cases"]    [data-view-block="articles"] { display: none; }
body[data-view="articles"] [data-view-block="cases"]    { display: none; }

.article-list {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-row {
  display: flex;
}

.article-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 30px 28px 24px;
  background: #f6f7f8;
  border: 1px solid rgba(8,12,18,.06);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.article-link:hover {
  box-shadow: 0 20px 50px rgba(8,12,18,.10);
  transform: translateY(-3px);
  border-color: rgba(8,12,18,.12);
}

.article-link .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #8b929b;
}

.article-link h2 {
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 2px 0;
}

.article-link > p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .02em;
}

.article-when {
  color: #8b929b;
  font-weight: 600;
}

.article-go {
  color: #717982;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease;
}

.article-link:hover .article-go {
  color: #07111b;
}

@media (max-width: 900px) {
  .article-list {
    padding: 24px 20px 60px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-link {
    padding: 26px 22px 20px;
  }

  .article-link h2 {
    font-size: 19px;
    line-height: 1.22;
  }

  .article-link > p {
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    margin-bottom: 10px;
  }

  .article-meta {
    padding-top: 14px;
  }

  .work-view-toggle {
    margin-top: 22px;
  }

  .work-view-toggle button {
    padding: 7px 16px;
  }
}

.problem-pin-section {
  position: relative;
  background: var(--paper);
}

.problem-pin-sticky {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 12vh, 140px) clamp(22px, 7vw, 120px);
}

.problem-pin-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-pin-inner .section-label {
  margin: 0 0 18px;
}

.problem-pin-inner h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 20px;
  font-weight: 600;
}

.problem-pin-intro {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 52px;
  font-weight: 400;
}

.problem-pin-points {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-pin-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pin-visual {
  display: block;
  color: rgba(7,17,27,.5);
}

.pin-visual svg {
  display: block;
  height: clamp(40px, 4vw, 50px);
  width: auto;
}

.problem-pin-point strong {
  display: block;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}

@media (max-width: 900px) {
  .problem-pin-sticky { min-height: auto; display: block; padding: 72px 20px; }
  .problem-pin-inner h2 { font-size: 32px; line-height: 1.04; }
  .problem-pin-intro { font-size: 15px; margin-bottom: 36px; }
  .problem-pin-points { grid-template-columns: 1fr; gap: 30px; margin-top: 34px; max-width: 420px; }
  .problem-pin-point strong { font-size: 17px; line-height: 1.45; }
}

@media (max-width: 420px) {
  .problem-pin-inner h2 { font-size: 26px; }
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 200;
  width: min(380px, calc(100vw - 32px));
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(7,17,27,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
  color: #fff;
  transform: translateY(150%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.85,.25,1), opacity .4s ease;
}
.cookie-banner.cookie-show { transform: translateY(0); opacity: 1; }
.cookie-banner.cookie-hide { transform: translateY(150%); opacity: 0; }

.cookie-horse {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 1px;
  animation: cookieHorse 4.5s ease-in-out infinite;
}
@keyframes cookieHorse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-3deg); }
}

.cookie-body { flex: 1; min-width: 0; }
.cookie-text {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
  letter-spacing: -.01em;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cookie-btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -.01em;
  padding: 9px 16px;
  transition: .2s;
}
.cookie-accept { background: #fff; color: var(--navy); }
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.cookie-decline:hover { background: rgba(255,255,255,.15); }
.cookie-link {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 2px;
}
.cookie-link:hover { color: rgba(255,255,255,.82); }

@media (max-width: 520px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .3s ease; transform: none; }
  .cookie-banner.cookie-hide { transform: none; }
  .cookie-horse { animation: none; }
}

.service-feature-card.bg-glow {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 22;
  --color-sensitivity: calc(var(--edge-sensitivity) + 18);
  --glow-padding: 52px;
  --cone-spread: 25;
  --fill-opacity: 0.85;
  --card-bg: var(--navy);
  --glow-color: hsl(202deg 100% 66% / 100%);
  --glow-color-60: hsl(202deg 100% 66% / 85%);
  --glow-color-50: hsl(202deg 100% 66% / 72%);
  --glow-color-40: hsl(202deg 100% 66% / 60%);
  --glow-color-30: hsl(202deg 100% 66% / 46%);
  --glow-color-20: hsl(202deg 100% 66% / 34%);
  --glow-color-10: hsl(202deg 100% 66% / 22%);
  --gradient-one: radial-gradient(at 80% 55%, #7cc4ff 0px, transparent 50%);
  --gradient-two: radial-gradient(at 69% 34%, #3a7fb5 0px, transparent 50%);
  --gradient-three: radial-gradient(at 8% 6%, #bcdcff 0px, transparent 50%);
  --gradient-four: radial-gradient(at 41% 38%, #7cc4ff 0px, transparent 50%);
  --gradient-five: radial-gradient(at 86% 85%, #3a7fb5 0px, transparent 50%);
  --gradient-six: radial-gradient(at 82% 18%, #bcdcff 0px, transparent 50%);
  --gradient-seven: radial-gradient(at 51% 4%, #3a7fb5 0px, transparent 50%);
  --gradient-base: linear-gradient(#7cc4ff 0 100%);
  overflow: visible;
  isolation: isolate;
}

.service-feature-card.bg-glow::before,
.service-feature-card.bg-glow::after,
.service-feature-card.bg-glow > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity .25s ease-out;
  z-index: -1;
  pointer-events: none;
}

.service-feature-card.bg-glow:not(:hover):not(.sweep-active)::before,
.service-feature-card.bg-glow:not(:hover):not(.sweep-active)::after,
.service-feature-card.bg-glow:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

.service-feature-card.bg-glow::before {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg) 0 100%) padding-box,
    linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
    var(--gradient-one) border-box,
    var(--gradient-two) border-box,
    var(--gradient-three) border-box,
    var(--gradient-four) border-box,
    var(--gradient-five) border-box,
    var(--gradient-six) border-box,
    var(--gradient-seven) border-box,
    var(--gradient-base) border-box;
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread) + 15) * 1%), transparent calc((100 - var(--cone-spread) - 15) * 1%), black calc((100 - var(--cone-spread)) * 1%));
  mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread) + 15) * 1%), transparent calc((100 - var(--cone-spread) - 15) * 1%), black calc((100 - var(--cone-spread)) * 1%));
}

.service-feature-card.bg-glow::after {
  border: 1px solid transparent;
  background:
    var(--gradient-one) padding-box,
    var(--gradient-two) padding-box,
    var(--gradient-three) padding-box,
    var(--gradient-four) padding-box,
    var(--gradient-five) padding-box,
    var(--gradient-six) padding-box,
    var(--gradient-seven) padding-box,
    var(--gradient-base) padding-box;
  -webkit-mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  -webkit-mask-composite: source-out, source-over, source-over, source-over, source-over, source-over;
  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  mask-composite: subtract, add, add, add, add, add;
  opacity: calc(var(--fill-opacity) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mix-blend-mode: soft-light;
}

.service-feature-card.bg-glow > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  z-index: 1;
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mix-blend-mode: plus-lighter;
}

.service-feature-card.bg-glow > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1.5px var(--glow-color),
    inset 0 0 2px 0 var(--glow-color-60),
    inset 0 0 5px 0 var(--glow-color-50),
    inset 0 0 10px 0 var(--glow-color-40),
    inset 0 0 22px 0 var(--glow-color-30),
    inset 0 0 38px 3px var(--glow-color-20),
    inset 0 0 70px 4px var(--glow-color-10),
    0 0 2px 0 var(--glow-color-60),
    0 0 5px 0 var(--glow-color-50),
    0 0 12px 0 var(--glow-color-40),
    0 0 24px 0 var(--glow-color-30),
    0 0 44px 4px var(--glow-color-20),
    0 0 80px 6px var(--glow-color-10);
}

@media (prefers-reduced-motion: reduce) {
  .service-feature-card.bg-glow::before,
  .service-feature-card.bg-glow::after,
  .service-feature-card.bg-glow > .edge-light { transition: none; }
}

.case-grid[data-magic-cards] { position: relative; }

.case-grid[data-magic-cards] .case-card {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 260px;
  --cases-glow: 106, 166, 221;
}

.case-grid[data-magic-cards] .case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--cases-glow), calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(var(--cases-glow), calc(var(--glow-intensity) * 0.4)) 35%,
    transparent 65%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  transition: opacity .3s ease;
}

.case-grid[data-magic-cards] .case-card:hover {
  box-shadow: 0 22px 60px rgba(8,12,18,.14), 0 0 32px rgba(var(--cases-glow), .28);
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .case-grid[data-magic-cards] .case-card::after { display: none; }
}

.lang-switch--menu { display: none; }

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

@media (max-width: 900px) {
  .site-nav > .lang-switch { display: none; }
  .site-nav.menu-open .nav-links .lang-switch--menu {
    display: inline-flex;
    align-self: flex-start;
    margin: 10px 8px 4px;
    border-color: rgba(8,12,18,.16);
    color: #080c12;
    opacity: 1;
  }
}

.darkveil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  z-index: 0;
  pointer-events: none;
}
.hero > .darkveil,
.footer > .darkveil,
.contact-hero > .darkveil,
.partners > .darkveil { z-index: 0; }

.staggered-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  display: none;
}
.staggered-menu.is-open { pointer-events: auto; }

.sm-prelayers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.sm-prelayer {
  position: absolute;
  inset: 0;
  transform: translateX(101%);
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.staggered-menu.is-open .sm-prelayer { transform: translateX(0); }
.staggered-menu.is-open .sm-prelayer:nth-child(1) { transition-delay: 0s; }
.staggered-menu.is-open .sm-prelayer:nth-child(2) { transition-delay: .07s; }

.staggered-menu-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 100px 26px 34px;
  overflow-y: auto;
  z-index: 2;
  pointer-events: auto;
  transform: translateX(101%);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.staggered-menu.is-open .staggered-menu-panel {
  transform: translateX(0);
  transition-delay: .14s;
}

.sm-panel-inner { flex: 1; display: flex; flex-direction: column; gap: 1.1rem; }

.sm-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  counter-reset: smItem;
}
.sm-panel-itemWrap { position: relative; overflow: hidden; line-height: 1; }
.sm-panel-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(2.1rem, 11vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  padding-right: 1.5em;
}
.sm-panel-item:hover, .sm-panel-item:focus-visible { color: var(--blue); }
.sm-panel-itemLabel {
  display: inline-block;
  transform: translateY(140%) rotate(8deg);
  transition: transform .85s cubic-bezier(.16,1,.3,1);
}
.staggered-menu.is-open .sm-panel-itemLabel { transform: translateY(0) rotate(0); }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(1) .sm-panel-itemLabel { transition-delay: .26s; }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(2) .sm-panel-itemLabel { transition-delay: .33s; }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(3) .sm-panel-itemLabel { transition-delay: .40s; }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(4) .sm-panel-itemLabel { transition-delay: .47s; }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(5) .sm-panel-itemLabel { transition-delay: .54s; }
.staggered-menu.is-open .sm-panel-itemWrap:nth-child(6) .sm-panel-itemLabel { transition-delay: .61s; }

.sm-panel-list[data-numbering] .sm-panel-item::after {
  counter-increment: smItem;
  content: counter(smItem, decimal-leading-zero);
  position: absolute;
  top: .35em;
  right: .15em;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  opacity: 0;
  transition: opacity .5s ease;
}
.staggered-menu.is-open .sm-panel-item::after { opacity: 1; transition-delay: .6s; }

.sm-socials { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: .7rem; }
.sm-socials-title { margin: 0; font-size: .95rem; font-weight: 600; letter-spacing: .02em; color: var(--blue); }
.sm-socials-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.1rem; flex-wrap: wrap; }
.sm-socials-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(18px);
  transition: color .2s ease;
}
.staggered-menu.is-open .sm-socials-link {
  opacity: 1;
  transform: translateY(0);
  transition: color .2s ease, opacity .5s ease .55s, transform .5s cubic-bezier(.16,1,.3,1) .55s;
}
.sm-socials-link:hover { color: var(--blue); }

.staggered-menu-panel .lang-switch--menu {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.3rem;
  border-color: rgba(8,12,18,.18);
  color: var(--ink);
  opacity: 1;
}

.sm-toggle-textWrap { position: relative; display: inline-block; height: 1em; overflow: hidden; }
.sm-toggle-textInner { display: flex; flex-direction: column; line-height: 1; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.sm-toggle-line { display: block; height: 1em; line-height: 1; }
.menu-toggle.sm-toggle.is-open .sm-toggle-textInner { transform: translateY(-50%); }
.sm-icon { position: relative; width: 15px; height: 15px; display: inline-block; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.sm-icon-line { position: absolute; left: 50%; top: 50%; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transform: translate(-50%,-50%); }
.sm-icon-line-v { transform: translate(-50%,-50%) rotate(90deg); }
.menu-toggle.sm-toggle.is-open .sm-icon { transform: rotate(225deg); }

@media (max-width: 900px) {
  .site-nav { padding: 0 18px; }
  .staggered-menu { display: block; }
  .menu-toggle.sm-toggle {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-left: auto;
    font-weight: 600;
  }
  body.sm-open .menu-toggle.sm-toggle { color: #07111b; }
  body.sm-open .brand-banner-white { display: none !important; }
  body.sm-open .brand-banner-blue { display: block !important; }
}

@media (prefers-reduced-motion: reduce) {
  .sm-prelayer, .staggered-menu-panel, .sm-panel-itemLabel, .sm-socials-link, .sm-toggle-textInner, .sm-icon { transition-duration: .01ms; }
}

@media (max-width: 900px) {
  body.sm-open { overflow: hidden; }
}

.process-flow {
  list-style: none;
  margin: clamp(40px, 5vw, 72px) auto 0;
  padding: 0;
  max-width: 900px;
  counter-reset: flow;
}

.flow-step {
  display: grid;
  grid-template-columns: clamp(66px, 11vw, 128px) 1fr;
  gap: clamp(20px, 4.5vw, 56px);
  align-items: start;
  padding: clamp(34px, 4.6vw, 54px) 0;
  border-top: 1px solid var(--line);
}
.flow-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.flow-marker { position: relative; }
.flow-num {
  display: block;
  font-family: var(--sans);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -.05em;
  color: rgba(7,17,27,.13);
  transition: color .45s ease;
}
.flow-step:hover .flow-num { color: var(--blue); }

.flow-body { padding-top: clamp(2px, 0.6vw, 8px); }

.flow-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.flow-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 24ch;
}
.flow-text {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.62;
  color: var(--muted);
  max-width: 56ch;
}
.flow-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flow-tags li {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #41505f;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8,12,18,.015);
}

@media (max-width: 600px) {
  .flow-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }
  .flow-num { font-size: 40px; line-height: 1; }
  .flow-title { font-size: 21px; }
}

@media (min-width: 901px) and (max-height: 860px) {
  .hero { padding-top: 100px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(38px, 5.4vw, 78px); margin: 14px 0 16px; }
  .hero-copy { font-size: 16px; }
  .trust-strip { bottom: 22px; font-size: 15px; }
}
@media (min-width: 901px) and (max-height: 700px) {
  .hero { padding-top: 86px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(34px, 4.4vw, 60px); margin: 10px 0 14px; }
  .trust-strip { display: none; }
}

@media (max-height: 560px) {
  .trust-strip { display: none; }
}
