@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-semibold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --header-height: 72px;
  --scroll-distance: 42.25svh;
  --stage-height: calc(100svh - var(--header-height));
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--grey-body);
  font-family: 'Poppins', sans-serif;
  font-feature-settings: 'ss04' on, 'ss02' on, 'clig' off, 'liga' off;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--grey-title);
  color: var(--background);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--blue-bg1);
  background: color-mix(in srgb, var(--background) 96%, transparent);
  backdrop-filter: blur(12px);
}

.primary-nav {
  display: flex;
  width: min(100% - 48px, 1200px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 146px;
  height: auto;
}

.nav-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links,
.nav-actions,
.assurance-row {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}

.nav-links {
  gap: 28px;
}

.nav-actions {
  gap: 12px;
}

.nav-link,
.language-control,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 0;
  align-items: center;
  color: var(--grey-title);
  font-size: 14px;
  text-decoration: none;
}

.nav-link--expandable::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: '';
  transform: translateY(-2px) rotate(45deg);
}

.language-control {
  min-width: 44px;
  min-height: 44px;
  color: var(--grey-body);
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--blue-main);
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button--small {
  min-height: 40px;
  padding: 6px 14px;
  font-size: 14px;
}

.button--large {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 28px;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.button--secondary {
  background: transparent;
  color: var(--blue-main);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--blue-bg2);
  color: var(--blue-dark);
}

.menu-toggle {
  display: none;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 48px, 1040px);
  margin: 0;
  padding: 96px 0 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translateX(-50%);
  will-change: opacity, transform;
}

.review-badge {
  width: 338px;
  height: 48px;
  object-fit: contain;
}

.hero-copy h1 {
  margin: 28px 0 0;
  color: var(--grey-title);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 64px;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 .hero-title-accent {
  color: var(--blue-main);
}

.hero-subtext {
  width: min(100%, 850px);
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.12px;
}

.hero-cta {
  gap: 8px;
  margin-top: 32px;
}

.hero-cta img {
  width: 24px;
  height: 24px;
}

.assurance-row {
  margin-top: 24px;
  justify-content: center;
  gap: 32px;
}

.assurance-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}

.assurance-row img {
  width: 16px;
  height: 16px;
}

.visual-scroll {
  position: relative;
  z-index: 0;
  height: calc(var(--stage-height) + var(--scroll-distance));
  background: var(--background);
  isolation: isolate;
}

.sticky-stage {
  position: sticky;
  top: var(--header-height);
  width: 100%;
  height: var(--stage-height);
  min-height: 560px;
  overflow: clip;
  /* User-supplied hero gradient, approved 2026-08-24. */
  background-color: var(--background);
  background-image:
    linear-gradient(
      to bottom,
      var(--background) 0%,
      var(--background) 34%,
      color-mix(in srgb, var(--background) 96%, transparent) 48%,
      color-mix(in srgb, var(--background) 72%, transparent) 60%,
      color-mix(in srgb, var(--background) 32%, transparent) 72%,
      transparent 84%
    ),
    radial-gradient(
      47.62% 128.51% at 50% 86.45%,
      #86A0EE 0%,
      #BECDFF 48.15%,
      #FFF 100%
    );
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  isolation: isolate;
}

.sticky-stage::after {
  position: absolute;
  inset: 50% 0 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--blue-main) 16%, transparent) 1px, transparent 1.2px);
  background-position: center;
  background-size: 10px 10px;
  content: '';
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 92%, transparent);
  opacity: 0.9;
  pointer-events: none;
}

.stage-canvas {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(100%, 1440px);
  aspect-ratio: 1440 / 641;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.visual-group {
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform;
}

.product-layer {
  position: absolute;
  display: block;
  max-width: none;
  border: 0;
  object-fit: contain;
  transform-origin: center;
}

.main-window {
  z-index: 2;
  top: 6.83%;
  left: 17.75%;
  width: 64.7%;
  height: 79.9%;
}

.support-panel {
  z-index: 3;
}

.js .support-panel {
  opacity: 0;
}

.support-panel--upper {
  top: 0.12%;
  left: 7%;
  width: 16%;
  height: 44.1%;
}

.support-panel--right {
  top: 21.67%;
  left: 77%;
  width: 16%;
  height: 55.94%;
}

.support-panel--lower {
  top: 47.95%;
  left: 18px;
  width: 24%;
  height: 35.54%;
}

.trusted-by {
  position: relative;
  z-index: 2;
  padding: 56px 24px;
  background: var(--background);
}

.trusted-by__content {
  display: flex;
  width: min(100%, 1200px);
  margin-inline: auto;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 10px;
}

.trusted-by__statement {
  width: 282px;
  margin: 0;
  flex: 0 0 282px;
  color: var(--grey-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.trusted-by__statement strong {
  font-weight: 600;
}

.trusted-by__marquee {
  width: 894px;
  height: 56px;
  overflow: hidden;
  flex: 1 1 894px;
}

.trusted-by__track {
  display: flex;
  width: max-content;
  animation: trusted-by-marquee 42s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.trusted-by__marquee:hover .trusted-by__track,
.trusted-by__marquee:focus .trusted-by__track {
  animation-play-state: paused;
}

.trusted-by__logo-set {
  display: flex;
  margin: 0;
  padding: 0;
  flex: none;
  list-style: none;
}

.trusted-by__logo {
  display: grid;
  width: 178.8px;
  height: 56px;
  flex: none;
  place-items: center;
}

.trusted-by__logo--renault {
  width: 167.728px;
}

.trusted-by__logo--heineken {
  width: 158.764px;
}

.trusted-by__logo img {
  width: auto;
  height: auto;
  max-width: calc(100% - 24px);
}

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

.role-benefits {
  position: relative;
  z-index: 3;
  overflow: clip;
  padding: 0 24px 89px;
  border-radius: 40px 40px 0 0;
  background-color: var(--background);
  background-image: linear-gradient(
    179.64deg,
    transparent 19.277%,
    color-mix(in srgb, var(--blue-main) 18%, transparent) 38.542%,
    color-mix(in srgb, var(--blue-main) 20%, transparent) 53.998%,
    color-mix(in srgb, var(--blue-main) 36%, transparent) 71.415%,
    transparent 98.746%
  );
}

.role-benefits__intro {
  width: min(100%, 1200px);
  margin-inline: auto;
  text-align: center;
}

.role-benefits__rule {
  width: 100%;
  height: 1px;
  background: var(--grey-line);
  opacity: 0.7;
}

.role-benefits__intro h2 {
  margin: 72px 0 0;
  color: var(--grey-title);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 56px;
}

.role-benefits__intro h2 span {
  color: var(--blue-main);
}

.role-benefits__intro p {
  width: min(100%, 867px);
  margin: 20px auto 0;
  color: var(--grey-body);
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.persona-hub {
  width: min(100%, 1200px);
  margin: 80px auto 0;
  padding: 2px;
  border-radius: 16px;
}

.persona-tabs {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 16px 16px 0 0;
  scrollbar-width: none;
}

.persona-tabs::-webkit-scrollbar {
  display: none;
}

.persona-tab {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  height: 166px;
  padding: 24px 28px;
  align-items: flex-start;
  border: 0;
  border-radius: 16px 16px 0 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 20%;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.persona-tab + .persona-tab::before {
  position: absolute;
  top: 43px;
  left: 0;
  width: 1px;
  height: 80px;
  background: var(--grey-line);
  content: '';
  opacity: 0.72;
}

.persona-tab.is-active {
  background: var(--background);
}

.persona-tab.is-active::before,
.persona-tab.is-active + .persona-tab::before {
  opacity: 0;
}

.persona-tab img {
  width: 28px;
  height: 28px;
  flex: none;
}

.persona-tab__label {
  color: var(--grey-title);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.1px;
  line-height: 30px;
  white-space: nowrap;
}

.persona-tab.is-active .persona-tab__label {
  color: var(--blue-main);
}

.persona-tab__description {
  color: var(--grey-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.persona-panel {
  height: 482px;
  min-height: 482px;
  overflow: hidden;
  padding: 40px 0 0 56px;
  border-radius: 12px 12px 16px 16px;
  background: var(--background);
}

.persona-panel__transition {
  display: grid;
  min-height: 442px;
  grid-template-columns: minmax(0, 499px) minmax(0, 617px);
  justify-content: space-between;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.persona-panel__transition.is-transitioning {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.persona-panel__copy {
  display: flex;
  min-width: 0;
  padding: 0 0 32px;
  flex-direction: column;
}

.persona-panel__main-copy h3 {
  width: min(100%, 447px);
  margin: 0;
  color: var(--grey-title);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 42px;
}

.persona-panel__main-copy p {
  width: min(100%, 447px);
  margin: 16px 0 0;
  color: var(--grey-body);
  font-size: 15px;
  letter-spacing: 0.12px;
  line-height: 24px;
}

.persona-panel__actions {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.persona-cta {
  min-height: 48px;
  padding: 8px 20px;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
}

.persona-cta[hidden],
.persona-cta img[hidden] {
  display: none;
}

.persona-cta img {
  width: 24px;
  height: 24px;
}

.persona-testimonial {
  margin: auto 0 0;
  padding: 0 0 0 14px;
  border-left: 4px solid var(--blue-main);
}

.persona-testimonial > p {
  width: min(100%, 486px);
  margin: 0;
  color: var(--grey-body);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.12px;
  line-height: 22px;
}

.persona-testimonial footer {
  display: flex;
  margin-top: 4px;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 8px;
}

.persona-testimonial cite {
  color: var(--grey-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12px;
  line-height: 22px;
}

.persona-testimonial footer span {
  color: var(--grey-label);
  font-size: 13px;
  line-height: 20px;
}

.persona-panel__media {
  display: flex;
  width: 617px;
  height: 442px;
  margin: 0;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.persona-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.compliance-scan {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 608px;
  align-items: center;
  justify-content: center;
  overflow: clip;
  background: var(--background);
}

.compliance-scan__card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 417px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--promo-banner-bg);
  background-image: url('assets/scan-card-texture.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: inset(0 clamp(24px, 8.35vw, 120px) round 20px);
  transition:
    clip-path 720ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, min-height;
}

.compliance-scan__card:hover,
.compliance-scan__card:focus-within,
.compliance-scan__card.is-in-view {
  clip-path: inset(0 round 0);
}

.compliance-scan__card.is-in-view {
  min-height: 608px;
}

.compliance-scan__content {
  position: relative;
  z-index: 1;
  width: min(100% - 112px, 1088px);
  margin-inline: auto;
  text-align: center;
}

.compliance-scan__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.compliance-scan__header h2 {
  margin: 0;
  color: var(--background);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 54px;
}

.compliance-scan__header p {
  margin: 0;
  color: var(--background);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.scan-form {
  display: flex;
  margin-top: 56px;
  align-items: center;
  flex-direction: column;
  gap: 22px;
}

.scan-form__controls {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
}

.scan-form__controls input {
  width: 465px;
  height: 54px;
  padding: 12px;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  outline: 0;
  background: transparent;
  color: var(--background);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.12px;
  line-height: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.scan-form__controls input::placeholder {
  color: var(--grey-bg);
  opacity: 1;
}

.scan-form__controls input:hover {
  border-color: var(--background);
}

.scan-form__controls input:focus-visible {
  border-color: var(--blue-light);
  outline: 0;
  background: color-mix(in srgb, var(--background) 4%, transparent);
  box-shadow:
    0 0 0 1px var(--blue-light),
    0 0 0 5px color-mix(in srgb, var(--blue-light) 28%, transparent),
    0 0 24px color-mix(in srgb, var(--blue-main) 44%, transparent);
}

.scan-form__button {
  min-height: 54px;
  padding: 12px 24px;
  font-size: 18px;
  letter-spacing: 0.12px;
  line-height: 30px;
  transition: filter 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.scan-form__action {
  position: relative;
  display: flex;
  align-items: stretch;
}

.scan-form__new-tab-note {
  position: absolute;
  top: -42px;
  left: calc(100% + 24px);
  display: flex;
  width: 146px;
  align-items: flex-start;
  color: var(--background);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12px;
  line-height: 24px;
  pointer-events: none;
  text-align: left;
  transform: rotate(7deg);
}

.scan-form__new-tab-copy {
  display: flex;
  flex-direction: column;
}

.scan-form__new-tab-note svg {
  position: absolute;
  top: 38px;
  right: 72px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transform: rotate(-7deg);
}

.scan-form__button:hover,
.scan-form__button:focus-visible {
  border-color: var(--blue-main);
  background: var(--blue-main);
  filter: brightness(1.16);
}

.scan-form__button:active {
  filter: brightness(1.04);
  transform: translateY(1px);
}

.scan-form__assurances {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.scan-form__assurances li {
  display: inline-flex;
  align-items: center;
  color: var(--grey-line);
  font-size: 14px;
  letter-spacing: 0.12px;
  line-height: 22px;
  gap: 8px;
  white-space: nowrap;
}

.scan-form__assurances img {
  width: 16px;
  height: 16px;
  flex: none;
}

.platform-features {
  position: relative;
  z-index: 4;
  padding: 0 0 89px;
  background: var(--background);
}

.platform-features__wrapper {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 42%, var(--background));
}

.platform-features__header {
  display: flex;
  margin-top: 96px;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.platform-features__header h2 {
  margin: 0;
  color: var(--grey-title);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 56px;
}

.platform-features__header h2 span {
  color: var(--blue-main);
}

.platform-features__header p {
  margin: 0;
  color: var(--grey-body);
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.platform-features__layout {
  display: grid;
  margin-top: 56px;
  grid-template-columns: 260px minmax(0, 940px);
}

.features-sidebar {
  position: relative;
  min-width: 0;
}

.features-sidebar__inner {
  position: sticky;
  top: 96px;
  display: flex;
  padding: 56px 24px 40px 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid color-mix(in srgb, var(--grey-line) 25%, var(--background));
}

.features-sidebar__link {
  display: flex;
  width: 100%;
  min-height: 30px;
  padding: 0 0 0 12px;
  align-items: center;
  border-left: 2px solid transparent;
  color: color-mix(in srgb, var(--grey-placeholder) 58%, var(--background));
  font-size: 18px;
  letter-spacing: 0.12px;
  line-height: 30px;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.features-sidebar__link:hover,
.features-sidebar__link:focus-visible,
.features-sidebar__link.is-active {
  border-left-color: var(--blue-main);
  color: var(--grey-body);
}

.features-sidebar__link:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

.feature-cards {
  min-width: 0;
  padding: 56px 0 120px;
}

.feature-card {
  width: min(100%, 780px);
  margin: 0 auto 32px;
  padding-top: 48px;
  overflow: hidden;
  scroll-margin-top: 120px;
  border: 1px solid color-mix(in srgb, var(--grey-line) 42%, var(--background));
  border-radius: 12px;
  background: var(--background);
  box-shadow: var(--shadow1-grey);
}

.feature-card:last-child {
  margin-bottom: 0;
}

.js .feature-card {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 600ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .feature-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature-card__description {
  width: calc(100% - 64px);
  margin: 0 32px;
  color: var(--grey-title);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.25px;
  line-height: 36px;
}

.feature-card__media {
  --feature-parallax-y: 0px;
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  background: var(--blue-bg1);
}

.feature-card--banner .feature-card__media {
  aspect-ratio: 780 / 450;
}

.feature-card--setup .feature-card__media {
  aspect-ratio: 780 / 427;
}

.feature-card--scanning .feature-card__media {
  aspect-ratio: 780 / 434;
}

.feature-card--signals .feature-card__media {
  aspect-ratio: 780 / 380;
}

.feature-card__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate3d(0, var(--feature-parallax-y, 0), 0) scale(1.015);
  transform-origin: center;
  will-change: transform;
}

.integrations {
  position: relative;
  z-index: 4;
  padding: 80px 24px 24px;
  background: var(--background);
}

.integrations__panel {
  width: min(100%, 1200px);
  min-height: 554px;
  margin-inline: auto;
  padding: 80px 0;
  overflow: hidden;
  border: 1px solid var(--blue-bg1);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      transparent 23%,
      color-mix(in srgb, var(--blue-light) 46%, var(--blue-bg1)) 100%
    );
}

.integrations__header {
  display: flex;
  width: min(calc(100% - 48px), 566px);
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.integrations__header h2 {
  margin: 0;
  color: var(--grey-title);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 56px;
}

.integrations__header p {
  margin: 20px 0 0;
  color: var(--grey-title);
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.integrations__link {
  position: relative;
  display: inline-flex;
  min-height: 28px;
  margin-top: 20px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  color: var(--blue-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 28px;
  text-decoration: none;
}

.integrations__link::before {
  position: absolute;
  content: '';
  inset: -8px -4px;
}

.integrations__link:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

.integrations__link-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.integrations__link-icon img {
  display: block;
  width: 16px;
  height: 14px;
}

.integrations__link:hover .integrations__link-icon,
.integrations__link:focus-visible .integrations__link-icon {
  transform: translate3d(6px, 0, 0);
}

.integrations__logo-grid {
  display: grid;
  width: 100%;
  height: 160px;
  margin-top: 80px;
  overflow: hidden;
  gap: 24px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
}

.integrations-marquee {
  width: 100%;
  height: 68px;
  overflow: hidden;
}

.integrations-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.integrations-marquee__set {
  display: flex;
  margin: 0;
  padding: 0 24px 0 0;
  align-items: center;
  flex: none;
  gap: 24px;
  list-style: none;
}

.integrations-marquee__set li,
.integrations-marquee__set img {
  display: block;
  height: 68px;
  flex: none;
}

.integrations-marquee--right .integrations-marquee__track {
  animation: integrations-marquee-right 50s linear infinite;
}

.integrations-marquee--left .integrations-marquee__track {
  animation: integrations-marquee-left 43s linear infinite;
}

.integrations__logo-grid:hover .integrations-marquee__track {
  animation-play-state: paused;
}

@keyframes integrations-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes integrations-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.testimonial {
  position: relative;
  z-index: 4;
  height: 200svh;
  padding: 0 24px;
  background: var(--background);
}

.testimonial__content {
  position: sticky;
  top: var(--header-height);
  display: flex;
  width: min(100%, 1200px);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 80px;
  overflow: hidden;
}

.testimonial__figure {
  display: flex;
  margin: 0;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

.testimonial__quote-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

.testimonial__quote-icon {
  display: block;
  width: 82px;
  height: 57px;
}

.testimonial__quote {
  width: min(100%, 771px);
  margin: 0;
  color: var(--grey-title);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 54px;
  text-align: center;
}

.testimonial__word {
  transition: opacity 160ms linear;
}

.js .testimonial__word {
  display: inline-block;
  color: var(--grey-title);
  opacity: 0.43;
  will-change: opacity;
}

.js .testimonial__word.is-active {
  opacity: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__avatar {
  display: block;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__author-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--foreground);
  letter-spacing: 0.12px;
}

.testimonial__author-copy strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.testimonial__author-copy span {
  font-size: 14px;
  line-height: 22px;
}

.testimonial__badges {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  list-style: none;
}

.testimonial__badges li,
.testimonial__badges img {
  display: block;
  width: 82px;
  height: 95px;
  flex: none;
}

.testimonial__badges li {
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .testimonial__badges li {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.js .testimonial__badges li.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.final-cta {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 474px;
  padding: 120px 24px;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    76.194% 120.873% at 50% -9.148%,
    var(--background) 0%,
    var(--background) 65.766%,
    #c3d0f7 82.883%,
    #86a0ee 100%
  );
}

.final-cta__content {
  display: flex;
  width: min(100%, 1200px);
  align-items: center;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}

.final-cta__header {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.final-cta__header h2 {
  width: min(100%, 991px);
  margin: 0;
  color: var(--grey-title);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 56px;
}

.final-cta__header p {
  width: min(100%, 681px);
  margin: 0;
  color: var(--grey-body);
  font-size: 16px;
  letter-spacing: 0.12px;
  line-height: 28px;
}

.final-cta__action-block {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.final-cta__button {
  height: 52px;
  padding: 0 20px;
  gap: 8px;
}

.final-cta__button img {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta__button:hover img,
.final-cta__button:focus-visible img {
  transform: translate3d(4px, 0, 0);
}

.final-cta__assurances {
  margin: 24px 0 0;
  padding: 0;
  color: var(--grey-body);
  list-style: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
  :root {
    --scroll-distance: 42.25svh;
  }

  .primary-nav {
    width: calc(100% - 48px);
    gap: 20px;
  }

  .platform-features__wrapper {
    width: calc(100% - 112px);
  }

  .platform-features__layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .features-sidebar__inner {
    padding-right: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-actions .language-control {
    display: none;
  }

  .hero-copy h1 {
    font-size: 52px;
    line-height: 58px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .stage-canvas {
    width: calc(100% - 48px);
  }

  .persona-tab {
    min-width: 220px;
  }

  .persona-panel {
    height: auto;
    min-height: 482px;
    padding-right: 32px;
  }

  .persona-panel__transition {
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  }

  .persona-panel__media {
    width: 100%;
  }

  .compliance-scan__content {
    width: calc(100% - 96px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .primary-nav {
    width: calc(100% - 48px);
    justify-content: space-between;
  }

  .brand img {
    width: 124px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 44px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .menu-toggle__label {
    font-size: 13px;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--grey-title);
    content: '';
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle__icon::after {
    position: absolute;
    top: 6px;
  }

  .nav-content {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    align-items: stretch;
    border-bottom: 1px solid var(--blue-bg1);
    background: var(--background);
    box-shadow: var(--shadow1-blue);
    flex-direction: column;
  }

  .nav-content[data-open='true'] {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .language-control {
    display: none;
  }

  .nav-actions .button {
    margin-top: 6px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 48px);
    min-height: auto;
    margin-inline: auto;
    padding: 52px 0 40px;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none;
  }

  .review-badge {
    width: min(100%, 285px);
    height: auto;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: 32px;
    letter-spacing: -0.12px;
    line-height: 44px;
  }

  .hero-subtext {
    margin-top: 18px;
    font-size: 16px;
    line-height: 26px;
  }

  .hero-cta {
    width: 100%;
    margin-top: 26px;
  }

  .assurance-row {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .visual-scroll {
    height: auto;
    padding: 28px 24px 64px;
  }

  .sticky-stage {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .sticky-stage::before,
  .sticky-stage::after {
    position: fixed;
    visibility: hidden;
  }

  .stage-canvas {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    aspect-ratio: auto;
    transform: none;
  }

  .visual-group {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    transform: none !important;
  }

  .product-layer {
    position: relative;
    inset: auto;
    height: auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .main-window {
    order: 0;
    width: 100%;
  }

  .support-panel {
    display: none;
  }

  .trusted-by {
    padding-block: 48px;
  }

  .trusted-by__content {
    row-gap: 24px;
  }

  .trusted-by__statement,
  .trusted-by__marquee {
    width: 100%;
    flex-basis: 100%;
  }

  .role-benefits {
    padding: 0 0 64px;
    border-radius: 24px 24px 0 0;
  }

  .role-benefits__intro {
    width: calc(100% - 48px);
  }

  .role-benefits__intro h2 {
    margin-top: 56px;
    font-size: 28px;
    letter-spacing: -0.12px;
    line-height: 42px;
  }

  .role-benefits__intro p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .persona-hub {
    width: calc(100% - 32px);
    margin-top: 48px;
  }

  .persona-tabs {
    scroll-snap-type: x proximity;
  }

  .persona-tab {
    min-width: 188px;
    height: 144px;
    padding: 20px;
    flex-basis: 188px;
    scroll-snap-align: start;
  }

  .persona-tab + .persona-tab::before {
    top: 32px;
  }

  .persona-tab__label {
    font-size: 18px;
    line-height: 26px;
  }

  .persona-panel {
    height: auto;
    min-height: 0;
    padding: 32px 24px 0;
  }

  .persona-panel__transition {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .persona-panel__copy {
    min-height: 390px;
    padding-bottom: 28px;
  }

  .persona-panel__main-copy h3 {
    font-size: 28px;
    line-height: 38px;
  }

  .persona-panel__actions {
    margin-top: 24px;
  }

  .persona-testimonial {
    margin-top: 40px;
  }

  .persona-cta {
    width: 100%;
  }

  .persona-panel__media {
    width: 100%;
    height: auto;
    aspect-ratio: 617 / 442;
  }

  .compliance-scan {
    min-height: 592px;
  }

  .compliance-scan__card {
    min-height: 496px;
  }

  .compliance-scan__card.is-in-view {
    min-height: 592px;
  }

  .compliance-scan__content {
    width: calc(100% - 96px);
  }

  .compliance-scan__header {
    gap: 16px;
  }

  .compliance-scan__header h2 {
    font-size: 28px;
    letter-spacing: -0.12px;
    line-height: 42px;
  }

  .compliance-scan__header p {
    font-size: 15px;
    line-height: 24px;
  }

  .scan-form {
    margin-top: 40px;
    gap: 24px;
  }

  .scan-form__controls {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .scan-form__controls input,
  .scan-form__action,
  .scan-form__button {
    width: 100%;
  }

  .scan-form__new-tab-note {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 12px auto 0;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 20px;
    transform: none;
  }

  .scan-form__action {
    flex-direction: column;
  }

  .scan-form__new-tab-note svg {
    position: static;
    width: 42px;
    height: 24px;
    transform: rotate(180deg);
  }

  .scan-form__assurances {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .platform-features {
    padding-bottom: 64px;
  }

  .platform-features__wrapper {
    width: calc(100% - 48px);
  }

  .platform-features__header {
    margin-top: 64px;
    gap: 16px;
  }

  .platform-features__header h2 {
    font-size: 28px;
    letter-spacing: -0.12px;
    line-height: 42px;
  }

  .platform-features__header p {
    font-size: 15px;
    line-height: 24px;
  }

  .platform-features__layout {
    display: block;
    margin-top: 40px;
  }

  .features-sidebar {
    position: sticky;
    z-index: 3;
    top: 72px;
    background: color-mix(in srgb, var(--background) 94%, transparent);
    backdrop-filter: blur(12px);
  }

  .features-sidebar__inner {
    position: static;
    padding: 12px 0;
    overflow-x: auto;
    align-items: stretch;
    flex-direction: row;
    gap: 8px;
    border-left: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--grey-line) 42%, var(--background));
    scrollbar-width: none;
  }

  .features-sidebar__inner::-webkit-scrollbar {
    display: none;
  }

  .features-sidebar__link {
    width: auto;
    min-height: 44px;
    padding: 7px 12px;
    flex: none;
    border-left-width: 2px;
    font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
  }

  .feature-cards {
    padding: 40px 0 0;
  }

  .feature-card {
    margin-bottom: 24px;
    padding-top: 32px;
    scroll-margin-top: 144px;
    border-radius: 8px;
  }

  .feature-card__description {
    width: calc(100% - 48px);
    margin-inline: 24px;
    font-size: 20px;
    letter-spacing: -0.1px;
    line-height: 30px;
  }

  .feature-card__media {
    margin-top: 32px;
  }

  .integrations {
    padding: 64px 24px 24px;
  }

  .integrations__panel {
    min-height: 0;
    padding: 64px 0;
    border-radius: 12px;
  }

  .integrations__header {
    width: calc(100% - 48px);
  }

  .integrations__header h2 {
    font-size: 28px;
    letter-spacing: -0.12px;
    line-height: 42px;
  }

  .integrations__header p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .integrations__link {
    margin-top: 16px;
    font-size: 15px;
    line-height: 24px;
  }

  .integrations__logo-grid {
    margin-top: 56px;
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      black 12%,
      black 88%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      black 12%,
      black 88%,
      transparent 100%
    );
  }

  .testimonial {
    height: 200svh;
    padding: 0 24px;
  }

  .testimonial__content {
    gap: 56px;
  }

  .testimonial__quote-block,
  .testimonial__figure {
    gap: 24px;
  }

  .testimonial__quote-icon {
    width: 68px;
    height: auto;
  }

  .testimonial__quote {
    width: min(100%, 620px);
    font-size: 24px;
    letter-spacing: -0.12px;
    line-height: 36px;
  }

  .testimonial__badges {
    width: calc(100vw - 48px);
    padding: 0 4px 8px;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 24px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .testimonial__badges::-webkit-scrollbar {
    display: none;
  }

  .testimonial__badges li {
    scroll-snap-align: center;
  }

  .final-cta {
    height: auto;
    min-height: 474px;
    padding: 80px 24px;
  }

  .final-cta__header h2 {
    font-size: 28px;
    letter-spacing: -0.12px;
    line-height: 42px;
  }

  .final-cta__header p {
    font-size: 15px;
    line-height: 24px;
  }

  .final-cta__buttons {
    width: min(100%, 342px);
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__button {
    width: 100%;
  }

  .final-cta__assurances {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

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

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

  .visual-scroll {
    height: auto;
    padding: 0 0 48px;
  }

  .sticky-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
    padding: 48px 0;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none;
  }

  .stage-canvas {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 1440px);
    margin-inline: auto;
    transform: none;
  }

  .visual-group {
    transform: none !important;
  }

  .product-layer {
    opacity: 1 !important;
    transform: none !important;
  }

  .trusted-by__marquee {
    overflow-x: auto;
  }

  .trusted-by__track {
    animation: none;
    transform: none;
  }

  .trusted-by__logo-set[aria-hidden='true'] {
    display: none;
  }

  .compliance-scan__card {
    clip-path: inset(0 round 0);
  }

  .js .feature-card {
    opacity: 1;
    transform: none;
  }

  .feature-card__media iframe {
    transform: none;
  }

  .integrations__logo-grid {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .integrations-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .integrations-marquee::-webkit-scrollbar {
    display: none;
  }

  .integrations-marquee__track {
    animation: none;
    transform: none;
  }

  .integrations-marquee__set[aria-hidden='true'] {
    display: none;
  }

  .testimonial {
    height: auto;
    padding: 96px 24px;
  }

  .testimonial__content {
    position: static;
    min-height: 0;
  }

  .js .testimonial__word,
  .js .testimonial__badges li {
    color: inherit;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
