/* DISTINCT Home — design tokens from Figma variables */


:root {
  --color-blue: #020dfd;
  --color-blue-light: #4d55fd;
  --color-blue-darkest: #00034b;
  --color-white: #ffffff;
  --color-scooter: #31c4ce;
  --color-neutral-darkest: #020a0a;
  --color-neutral-lighter: #d9dada;
  --color-neutral-light: #b3b5b5;
  --color-neutral-lightest: #f2f2f2;
  --color-madison-darker: #06122b;
  --color-madison-dark: #0c2457;
  --color-blue-darker: #000565;
  --color-california: #ff9800;
  --opacity-white-05: rgba(255, 255, 255, 0.05);
  --opacity-white-10: rgba(255, 255, 255, 0.1);
  --opacity-neutral-15: rgba(2, 10, 10, 0.15);
  --font-heading: "Rethink Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-step: "Plus Jakarta Sans", system-ui, sans-serif;
  --shell-max: 82.5rem;
  --pad-inline: 0.75rem;
  --pad-resources-inline: 0.9375rem;
  --radius-btn: 0.5rem;
  --radius-card: 1rem;
  --radius-cta-inner: 2rem;
}

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

::selection {
  background-color: var(--color-blue);
  color: var(--color-neutral-lightest);
}

html {
  scroll-behavior: auto !important;
}

@media (min-width:1600px) {
  html {
    font-size: 1vw;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-neutral-lighter);
  background: var(--color-neutral-darkest);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.skip-link {
  margin: 0;
}

.skip-link a {
  position: absolute;
  left: -9999px;
  z-index: 99999;
  padding: 0.75rem 1rem;
  background: var(--color-blue);
  color: var(--color-white);
}

.skip-link a:focus {
  left: 1rem;
  top: 1rem;
}

.text-white {
  color: var(--color-white);
}

.text-scooter {
  color: var(--color-scooter);
}

.fw-semibold {
  font-weight: 600;
}

.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 3vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.016em;
  color: var(--color-white);
  margin: 0 0 1.5rem;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.heading-feature {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0 0 0.5rem;
}

.heading-compliance {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--color-white);
}

.subline-compliance {
  text-align: center;
  max-width: 70%;
  margin: 0 auto 3rem;
}

.body-lg {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  margin: 0 0 1rem;
}

p,
.body-md {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--color-neutral-lighter);
}

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.shell--nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0;
  min-height: 5.5rem;
  padding-inline: calc(var(--pad-inline) + 0.125rem);
  max-width: calc(var(--shell-max) + 1.5rem);
  max-width: var(--shell-max);
}

.shell--resources {
  padding-inline: var(--pad-resources-inline);
  max-width: calc(var(--shell-max) + (var(--pad-inline) - var(--pad-resources-inline)) * 2);
}

.shell--narrow-top .heading-compliance {
  margin-top: 0;
}

.section {
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-scooter);
  color: var(--color-neutral-darkest);
}

.btn__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.btn--inline {
  align-self: flex-start;
}

.btn--narrow {
  width: fit-content;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: .0625rem solid transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(2, 13, 253, 0.3);
  border: .0625rem solid var(--color-blue);
}

.badge--tight {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-neutral-darkest);
  border-bottom: .0625rem solid var(--color-blue-darkest);
  transition: border-color 0.25s ease;
  overflow-x: clip;
}

.site-header--stuck {
  border-bottom-color: #01045a;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-white);
  grid-column: 1;
  grid-row: 1;
}

.brand__logo {
  display: block;
  width: 8.1875rem;
  height: auto;
}

.nav-toggle {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.375rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.625rem;
  background: transparent;
  border: .0625rem solid var(--opacity-white-10);
  border-radius: var(--radius-btn);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: .125rem;
  width: 100%;
  background: var(--color-white);
  border-radius: .0625rem;
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
  .site-header--nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header--nav-open .nav-toggle__bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header__menu {
    --site-header-menu-bleed: calc(var(--pad-inline) + 12px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 var(--site-header-menu-bleed);
    width: calc(100% + 2 * var(--site-header-menu-bleed));
    max-width: none;
    margin-left: calc(-1 * var(--site-header-menu-bleed));
    box-sizing: border-box;
    background: var(--color-neutral-darkest);
    border-top: 0 solid transparent;
    box-shadow: none;
    z-index: 101;
    pointer-events: none;
    transition: max-height 0.38s ease, opacity 0.28s ease, padding-block 0.38s ease, border-top-width 0.25s ease, border-top-color 0.25s ease, box-shadow 0.38s ease;
  }

  .site-header--nav-open .site-header__menu {
    max-height: min(80vh, 640px);
    max-height: min(80dvh, 640px);
    opacity: 1;
    padding-top: 16px;
    padding-bottom: 24px;
    border-top-width: 1px;
    border-top-color: var(--opacity-white-10);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

.site-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: none;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  width: 100%;
}

.btn--header-cta {
  flex-shrink: 0;
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.site-nav__link {
  display: flex;
  align-items: center;
  padding: 0.875rem 0;
  min-height: 2.75rem;
  box-sizing: border-box;
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-white);
  border-bottom: 0.125rem solid transparent;
  border-left: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link--active {
  font-weight: 600;
  border-bottom-color: var(--color-blue);
}

@media (max-width: 991px) {
  .site-nav__link {
    border-bottom: none;
  }

  .site-nav__link:hover {
    color: var(--color-scooter);
  }

  .site-nav__link--active {
    color: var(--color-scooter);
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .shell--nav {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .site-header__menu {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-left: 0;
    max-width: none;
    padding: 0;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
  }

  .site-nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: auto;
  }

  .site-nav__link {
    padding: 1rem 1.5rem;
    min-height: 0;
  }

  .site-nav__link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-blue);
  }

  .btn--header-cta {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    margin-top: 0;
    position: relative;
    inset: 0;
    transform: none;
  }
}

/* Hero */
.section--hero {
  padding: 5rem 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 39.75rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-right: 1.5rem;
}

.hero__strong,
.body-lg strong.heading-feature {
  font-weight: 700;
  color: var(--color-neutral-lighter);
}

.hero__cta {
  padding-top: 0.5rem;
}

.hero__visual {
  position: relative;
  min-height: 41.1875rem;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.415625rem);
  opacity: 0.71;
  pointer-events: none;
}

.hero__glow--a {
  width: 22.125rem;
  height: 51.3125rem;
  right: -3.75rem;
  top: -5rem;
  background: linear-gradient(161deg, rgb(2, 13, 253) 22%, rgb(0, 5, 101) 23%, rgb(2, 10, 10) 52%);
}

.hero__glow--b {
  width: 19.0625rem;
  height: 48.5rem;
  right: 11.25rem;
  top: -1.25rem;
  background: linear-gradient(180deg, rgb(2, 10, 10) 21%, rgb(0, 5, 101) 52%, rgb(2, 13, 253) 78%, rgb(2, 10, 10) 100%);
}

.hero__collage {
  position: absolute;
  inset: 0;
  max-width: 39.3125rem;
  margin-left: auto;
}

.hero__img {
  object-fit: cover;
  border-radius: var(--radius-btn);
}

.hero__img--bottom {
  position: absolute;
  left: 0;
  bottom: 0.6875rem;
  width: 20.5625rem;
  height: 18.25rem;
}

.hero__img--top {
  position: absolute;
  left: 0;
  bottom: 20.3125rem;
  width: 20.5625rem;
  height: 11.5625rem;
}

.hero__img--tall-wrap {
  position: absolute;
  left: 21.8125rem;
  top: 0;
  width: 17.5rem;
  height: 35.9375rem;
}

.hero__img--tall {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay--phone {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-btn);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.pulse-wrap {
  position: absolute;
  left: 58%;
  top: 64%;
  transform: translate(-50%, -50%);
}

#who-panel-1 .pulse-wrap {
  left: 67%;
  top: 55%;
}

#who-panel-2 .pulse-wrap {
  left: 42%;
  top: 59%;
}

.pulse {
  width: 6rem;
  height: 6rem;
  z-index: 4;
  pointer-events: none;
  animation: pulseIn .6s .2s ease both;
}

.pulse span {
  position: absolute;
  border-radius: 50%;
  border: 0.125rem solid rgba(49, 196, 206, .55);
  animation: ringOut 2.6s ease-out infinite;
}

.pulse span:nth-child(1) {
  inset: 0.5rem;
  animation-delay: 0s;
}

.pulse span:nth-child(2) {
  inset: 1.5rem;
  animation-delay: .65s;
}

.pulse span:nth-child(3) {
  position: absolute;
  inset: 2.375rem;
  background: var(--color-scooter);
  border-radius: 50%;
  animation: ringOut 2.6s ease-out infinite;
  animation-delay: 1.3s;
}

.pulse span:nth-child(1),
.pulse span:nth-child(2) {
  border: 0.125rem solid rgba(49, 196, 206, 1);
}

.pulse--small span:nth-child(3) {
  inset: 1.875rem;
}

.pulse--small span:nth-child(2) {
  inset: 1.5rem;
}

.pulse--small span:nth-child(1) {
  inset: 0.8rem;
}

.pulse--a {
  right: 12%;
  bottom: 18%;
}

.pulse--b {
  right: 42%;
  bottom: 35%;
}

.pulse--small {
  width: 4.5rem;
  height: 4.5rem;
  right: 8%;
  bottom: 18%;
}

@keyframes pulseIn {
  from {
    opacity: 0;
    transform: scale(.7);
  }

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

@keyframes ringOut {
  0% {
    opacity: .9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.hero-card {
  position: absolute;
  top: 10.5625rem;
  right: 6.625rem;
  width: 17.4375rem;
  padding: 1.0625rem 1.5625rem;
  border-radius: var(--radius-btn);
  border: .0625rem solid var(--opacity-white-10);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-card__title {
  font-size: 0.75875rem;
  font-weight: 700;
  color: var(--color-white);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* .live-badge__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #dc2626;
  } */

.live-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ff3b3b;
  animation: blink 1.2s ease infinite;
  margin-top: -0.0625rem;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.live-badge__text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ef4444;
  line-height: 1.13;
}

.hero-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.hero-card__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-scooter);
  line-height: 1.4;
}

.hero-card__bell {
  margin-top: 0.5rem;
  color: var(--color-white);
  opacity: 0.9;
}

/* DISTINCT Value */
.section--value {
  padding: 5rem 0 7.5rem;
}

.value-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.value-header__copy {
  flex: 1;
  max-width: 41.25rem;
  padding-top: 0;
}

.compare {
  flex-shrink: 0;
  width: min(34.375rem, 100%);
  display: flex;
  align-items: stretch;
  gap: 0;
  font-size: 0.75rem;
}

.compare.custom-graphic {
  width: 100%;
  max-width: 39.6875rem;
}

.compare :is(figure, figure img) {
  width: 100%;
  border-radius: 1rem;
}

.compare__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compare__tracks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 12.5rem;
}

.compare__track {
  position: relative;
  padding-top: 3rem;
  border-top: 1px dashed #475569;
}

.compare__dot {
  position: absolute;
  left: 50%;
  top: -3px;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--color-blue-light);
}

.compare__lbl {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -0.75rem;
  font-weight: 700;
  color: var(--color-neutral-light);
  white-space: nowrap;
}

.compare__footer {
  border-top: .0625rem solid rgba(255, 255, 255, 0.05);
  padding-top: 1.0625rem;
  margin-top: auto;
  text-align: center;
}

.compare__foot-title {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-neutral-lighter);
}

.compare__foot-sub {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-neutral-lighter);
}

.compare__footer--distinct .compare__foot-sub {
  color: var(--color-scooter);
}

.compare__connector {
  width: 1px;
  align-self: stretch;
  min-height: 15rem;
  background: linear-gradient(180deg, transparent, rgba(2, 13, 253, 0.4), transparent);
  flex-shrink: 0;
}

.compare__hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12.5rem;
}

.compare__rings {
  position: relative;
  width: 10rem;
  height: 10rem;
}

.compare__rings span:nth-child(1) {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: .0625rem solid rgba(49, 196, 206, 0.35);
}

.compare__rings span:nth-child(2) {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: .0625rem solid rgba(2, 13, 253, 0.45);
}

.compare__rings span:nth-child(3) {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px dashed rgba(77, 85, 253, 0.4);
}

.compare__hub-core {
  position: absolute;
  inset: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(30, 64, 175, 0.8);
  background: rgba(30, 64, 175, 0.12);
  backdrop-filter: blur(2px);
}

.compare__lbl--tl {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.compare__lbl--bl {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
}

.compare__lbl--br {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.feature-cell {
  display: flex;
  gap: 2rem;
  width: 50%;
  padding: 2rem;
  border: 0 solid transparent;
}

.feature-cell p {
  margin-bottom: 0;
}

.feature-cell__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-btn);
}

/* Who Uses */
.section--who {
  padding: 7.5rem 0 5rem;
}

.who-header {
  max-width: 54.875rem;
  margin-bottom: 3rem;
}

.who-header__title {
  margin-bottom: 0;
}

.who-shell {
  background: var(--color-neutral-darkest);
  border-radius: var(--radius-btn);
}

.who-tabs-wrap {
  padding: 0 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.who-tabs {
  display: flex;
  gap: 1.5rem;
  min-width: min-content;
}

.who-tab {
  flex: 0 0 calc(33.33% - 1rem);
  max-width: calc(100vw - 3rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--opacity-white-05);
  color: inherit;
  font: inherit;
}

.who-tab img {
  width: 100%;
  height: 7.9375rem;
  object-fit: cover;
  border-radius: var(--radius-btn);
}

.who-tab__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.0125em;
  color: var(--color-white);
  padding-top: 1.25rem;
}

.who-tab__desc {
  font-size: 0.875rem;
  color: var(--color-neutral-lighter);
  margin: 0;
}

.who-tab--active {
  background: var(--color-madison-dark);
}

.who-tab:focus-visible {
  outline: 2px solid var(--color-scooter);
  outline-offset: .125rem
}

.who-panel-wrap {
  position: relative;
  background: var(--color-madison-dark);
  border-radius: var(--radius-btn);
  margin: 0;
  padding: 3rem 2rem;
  overflow: hidden;
}

.who-panel {
  position: relative;
  z-index: 1;
}

.who-panel[hidden] {
  display: none !important;
}

.who-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 30.125rem) minmax(0, 39.375rem);
  gap: 7.5rem;
  align-items: center;
}

.who-panel__text {
  padding-top: 1.4375rem;
  padding-left: 0.75rem;
}

.who-panel-wrap .who-panel::after {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: .3s ease all;
  background-repeat: no-repeat;
  width: 57.3125rem;
  height: 31.34375rem;
  background-size: contain;
  /* filter: blur(5rem); */
  position: absolute;
  bottom: -9.5rem;
  right: -9.3125rem;
  bottom: -3.5rem;
  right: -3.3125rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="929" height="518" viewBox="0 0 929 518" fill="none"><g filter="url(%23filter0_f_11801_899)"><path d="M1060.9 429.4L923.4 143.4L757.4 340.9L415.9 429.4L143.4 531.4L460.4 586.4C657.233 568.567 1015 644.9 1025.4 644.9C1035.8 644.9 1053.07 560.4 1060.9 429.4Z" fill="%234D55FD"/></g><defs><filter id="filter0_f_11801_899" x="3.05176e-05" y="-9.15527e-05" width="1204.3" height="788.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_11801_899"/></filter></defs></svg>');
}

.who-panel-wrap .who-panel--active::after {
  opacity: 1;
  visibility: visible;
}

.who-panel-wrap #who-panel-0::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="929" height="518" viewBox="0 0 929 518" fill="none"><g filter="url(%23filter0_f_10320_2048)"><path d="M1060.9 429.4L923.4 143.4L757.4 340.9L415.9 429.4L143.4 531.4L460.4 586.4C657.233 568.567 1015 644.9 1025.4 644.9C1035.8 644.9 1053.07 560.4 1060.9 429.4Z" fill="%234D55FD"/></g><defs><filter id="filter0_f_10320_2048" x="0" y="-9.15527e-05" width="1204.3" height="788.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_10320_2048"/></filter></defs></svg>');
}

.who-panel-wrap #who-panel-1::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="929" height="519" viewBox="0 0 929 519" fill="none"><g filter="url(%23filter0_f_10320_2052)"><path d="M1060.9 429.4L923.4 143.4L757.4 340.9L415.9 429.4L143.4 531.4L460.4 586.4C657.233 568.567 1015 644.9 1025.4 644.9C1035.8 644.9 1053.07 560.4 1060.9 429.4Z" fill="%2331C4CE"/></g><defs><filter id="filter0_f_10320_2052" x="3.05176e-05" y="-9.15527e-05" width="1204.3" height="788.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_10320_2052"/></filter></defs></svg>');
}

.who-panel-wrap #who-panel-2::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="929" height="519" viewBox="0 0 929 519" fill="none"><g filter="url(%23filter0_f_10320_2054)"><path d="M1060.9 429.4L923.4 143.4L757.4 340.9L415.9 429.4L143.4 531.4L460.4 586.4C657.233 568.567 1015 644.9 1025.4 644.9C1035.8 644.9 1053.07 560.4 1060.9 429.4Z" fill="%234D55FD"/></g><defs><filter id="filter0_f_10320_2054" x="-9.15527e-05" y="-9.15527e-05" width="1204.3" height="788.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_10320_2054"/></filter></defs></svg>');
}

.who-panel__list {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  color: var(--color-neutral-lighter);
}

.who-panel__list li {
  margin-bottom: 0.75rem;
}

.who-panel__visual {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.who-panel__visual img {
  width: 100%;
  max-width: 39.375rem;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
}

.who-floating-card {
  position: absolute;
  left: -1.5rem;
  top: 38%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8125rem;
  border-radius: 0.375rem;
  border: .0625rem solid var(--opacity-white-10);
  background: var(--opacity-neutral-15);
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(0.375rem);
}

.who-floating-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.875rem;
  background: var(--color-scooter);
  border: .0625rem solid var(--opacity-white-10);
  color: var(--color-neutral-darkest);
}

.who-floating-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.who-floating-card__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
}

.who-floating-card__sub {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--color-neutral-lighter);
}

/* Sports & Entertainment */
.who-panel__properties {
  position: absolute;
  left: -4.875rem;
  top: 1.0625rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  max-width: min(12.5rem, calc(100% - 1rem));
  pointer-events: none;
}

.who-panel__properties-heading {
  margin: 0;
  padding-right: .125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral-lighter);
}

.who-se-stat {
  pointer-events: auto;
  width: 100%;
  padding: 0.8125rem;
  border-radius: 0.375rem;
  border: .0625rem solid var(--opacity-white-10);
  background: rgba(2, 10, 10, 0.2);
  backdrop-filter: blur(0.4125rem);
  -webkit-backdrop-filter: blur(0.4125rem);
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  box-sizing: border-box;
}

.who-se-stat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}

.who-se-stat__bell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.92;
}

.who-se-stat__bell svg {
  width: 1rem;
  height: 1.25rem;
}

.who-se-stat__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: flex-start;
}

.who-se-stat__value {
  margin: 0;
  font-family: "Space Grotesk", var(--font-heading), sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.who-se-stat__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--color-scooter);
  line-height: 1.15;
}

/* Experiential Agencies */
.who-panel__profile {
  position: absolute;
  top: 0.625rem;
  left: -2.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  max-width: min(14.625rem, calc(100% - 1rem));
  pointer-events: none;
}

.who-panel__profile-heading {
  margin: 0;
  padding-right: .125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral-lighter);
}

.who-hvp-card {
  pointer-events: auto;
  width: 100%;
  padding: 1.0625rem;
  border-radius: 0.5rem;
  border: .0625rem solid var(--opacity-white-10);
  background: rgba(2, 10, 10, 0.15);
  backdrop-filter: blur(0.51875rem);
  -webkit-backdrop-filter: blur(0.51875rem);
  box-sizing: border-box;
}

.who-hvp-card__header {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}

.who-hvp-card__avatar-ring {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.25rem;
  border-radius: 0.5rem;
  border: 0.09375rem solid rgba(59, 130, 246, 0.5);
  box-sizing: border-box;
}

.who-hvp-card__avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  object-fit: cover;
}

.who-hvp-card__identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  min-width: 0;
}

.who-hvp-card__name {
  margin: 0;
  font-family: "Space Grotesk", var(--font-heading), sans-serif;
  font-size: 1.0325rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--color-white);
}

.who-hvp-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

.who-hvp-badge {
  display: inline-block;
  padding: 2px 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.4318rem;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.who-hvp-badge--recognized {
  color: #93c5fd;
  background: rgba(30, 58, 138, 0.5);
  border: .0625rem solid rgba(59, 130, 246, 0.3);
}

.who-hvp-badge--optin {
  color: #6ee7b7;
  background: rgba(6, 78, 59, 0.5);
  border: .0625rem solid rgba(16, 185, 129, 0.3);
}

.who-hvp-card__insights {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: .0625rem solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

.who-hvp-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.6875rem;
}

.who-hvp-card__bar {
  flex-shrink: 0;
  width: 3px;
  height: 1.375rem;
  border-radius: 1px;
  margin-top: .125rem
}

.who-hvp-card__bar--bright {
  background: #3b82f6;
}

.who-hvp-card__bar--deep {
  background: #004c8b;
}

.who-hvp-card__copy {
  min-width: 0;
}

.who-hvp-card__k {
  margin: 0 0 0.25rem;
  font-size: 0.4318rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-neutral-light);
  line-height: 1.2;
}

.who-hvp-card__v {
  margin: 0;
  font-size: 0.60437rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-white);
}

/* Card B: POS Interaction (bottom-center) */
.card-pos {
  position: absolute;
  left: 22.0625rem;
  top: 19.375rem;
  background: rgba(2, 10, 10, .25);
  backdrop-filter: blur(0.525rem);
  border: 0.04375rem solid rgba(255, 255, 255, .1);
  border-radius: 0.5rem;
  padding: 0.8375rem;
  z-index: 3;
  white-space: nowrap;
  animation: slideIn .5s .15s cubic-bezier(.22, 1, .36, 1) both;
  transform: translate(-50%, -50%);
}

.pos-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.pos-icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: #ff9800;
  border: 0.05rem solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pos-icon img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.pos-title {
  font-size: 0.6125rem;
  font-weight: 600;
  color: white;
  line-height: 1.5;
}

.pos-sub {
  font-size: 0.5625rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Wave / bar backgrounds */
.wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .125rem;
  opacity: 0.26;
  overflow: hidden;
}

.wave-bg--who {
  align-items: center;
  opacity: 0.18;
}

.wave-bg--who::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 60%;
  left: -10%;
  bottom: -10%;
  background: radial-gradient(ellipse at center, rgba(2, 13, 253, 0.15), transparent 70%);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: .125rem;
  height: 8.75rem;
  padding: 0 0.75rem;
}

.wave-bg .bar {
  width: 2.375rem;
  flex-shrink: 0;
  background: var(--color-madison-dark);
  border-radius: 2px 2px 0 0;
}

.wave-bg--works-bottom {
  align-items: flex-end;
  opacity: 1;
  padding-bottom: 0;
}

.wave-bg--works-bottom .bar-chart {
  height: 11.25rem;
  width: 100%;
  justify-content: center;
  gap: 3px;
  padding: 0 1.5rem;
}

.wave-bg--works-bottom .bar {
  width: calc((100% - 36 * 3px) / 37);
  max-width: 0.75rem;
  min-width: 0.375rem;
  background: var(--color-madison-dark);
  opacity: 0.45;
}

.wave-bg--cta .bar {
  background: var(--color-blue-light);
  opacity: 0.35;
}

.wave-bg--cta {
  opacity: 1;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.wave-bg--contact-hero .bar {
  background: var(--color-blue);
  opacity: 0.45;
}

.wave-bg--contact-hero {
  opacity: 1;
  align-items: flex-end;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Bridge: animated data wave */
.section--data-wave {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg,
      var(--color-neutral-darkest) 0%,
      #030814 45%,
      var(--color-neutral-darkest) 100%);
}

.section--data-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% 50%, rgba(2, 13, 253, 0.14), transparent 72%);
}

.data-wave__wrap {
  position: relative;
  z-index: 1;
}

.data-wave-host {
  display: flex;
  justify-content: center;
}

.data-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3px;
  width: 100%;
  max-width: min(1100px, 100%);
  height: 9.25rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.data-wave__bar {
  flex: 1 1 0;
  min-width: 0.25rem;
  max-width: 0.75rem;
  transform-origin: bottom center;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, rgba(77, 85, 253, 0.95), var(--color-madison-dark));
  opacity: 0.55;
  box-shadow: 0 0 1.125rem rgba(2, 13, 253, 0.12);
  animation: data-wave-pulse 1.15s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.045s);
  animation-play-state: paused;
  will-change: transform, opacity;
}

.section--data-wave.active .data-wave__bar {
  animation-play-state: running;
}

@keyframes data-wave-pulse {

  0%,
  100% {
    transform: scaleY(0.2);
    opacity: 0.35;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-wave__bar {
    animation: none;
    transform: none;
    opacity: 0.7;
  }

  .section--data-wave.active .data-wave__bar {
    animation: none;
  }
}

@media (max-width: 767px) {
  .section--data-wave {
    padding: 28px 0 32px
  }

  .data-wave {
    height: 112px;
    gap: 2px;
    padding: 0 4px;
    overflow: hidden;
  }
}

/* Compliance */
.section--compliance {
  padding: 3.75rem 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.badge-row img {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
}

/* How it works */
.section--works {
  padding: 3.75rem 0;
  background: #020a0a;
}

.works-card {
  position: relative;
  background: var(--color-madison-darker);
  border-radius: var(--radius-card);
  padding: 5rem 3rem;
  overflow: hidden;
}

.works-card__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 53.375rem;
  margin: 0 auto 3rem;
  padding: 0 0.75rem;
}

.works-card__title {
  margin-bottom: 1rem;
}

.works-card__sub {
  margin: 0 auto;
  color: var(--color-neutral-lighter);
}

.works-card__body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.works-steps {
  flex: 1 1 420px;
  max-width: 43.75rem;
}

.works-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.works-step {
  width: 50%;
  padding: 1.5rem 0.75rem;
  min-height: 13.125rem;
}

.works-step__num {
  font-family: var(--font-step);
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--color-neutral-light);
  display: block;
  margin-bottom: 1rem;
}

.works-step__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-neutral-lightest);
}

.works-visual {
  position: relative;
  flex: 0 0 29.25rem;
  max-width: 100%;
  height: 31rem;
}

.works-visual__img {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22.75rem;
  height: 30.3125rem;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  position: relative;
  inset: 0;
  transform: none;
  width: 100%;
}

.glass-card {
  position: absolute;
  left: 1.1875rem;
  bottom: 3rem;
  width: min(320px, 85%);
  padding: 1.1875rem;
  border-radius: 0 0.5625rem 0.5625rem 0.5625rem;
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(0, 3, 75, 0), rgba(0, 3, 75, 0.85));
  backdrop-filter: blur(0.6875rem);
  -webkit-backdrop-filter: blur(0.6875rem);
  box-shadow: 0 1.75rem 3.5625rem rgba(0, 0, 0, 0.25);
}

.glass-card__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.glass-card__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--color-scooter);
  color: var(--color-neutral-darkest);
}

.glass-card__chip-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.glass-card__pulse {
  height: 4.375rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  border: 2px solid rgba(49, 196, 206, 0.35);
  background: radial-gradient(circle at center, rgba(49, 196, 206, 0.35), transparent 65%);
}

.glass-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 5px 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  border-radius: 999px;
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* About */
.section--about {
  padding: 3.75rem 0 5rem;
  background: var(--color-madison-darker);
}

.section--about a.btn {
  margin-top: 1rem;
}

.about__grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.about__visual {
  position: relative;
  flex: 0 0 34.375rem;
  max-width: 100%;
}

.about__visual>img {
  width: 34.375rem;
  max-width: 100%;
  border-radius: var(--radius-card);
}

.about__orb {
  position: absolute;
  border-radius: 50%;
  border: .0625rem solid rgba(49, 196, 206, 0.35);
  pointer-events: none;
}

.about__orb--pin {
  width: 26.25rem;
  height: 26.25rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.about__chip {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1.0625rem;
  border-radius: 999px;
  border: .0625rem solid rgba(2, 13, 253, 0.3);
  background: rgba(2, 13, 253, 0.1);
  font-size: 0.665625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about__chip svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.about__copy {
  flex: 1;
  min-width: 17.5rem;
  padding-left: 2rem;
}

.about__copy div {
  margin-bottom: 1rem;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  width: calc(50% - 0.5rem);
  min-width: 12.5rem;
  padding-left: 1.5rem;
  border-left: .0625rem solid var(--color-blue);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-item__val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.stat-item__hash {
  font-weight: 400;
}

.stat-item__lbl {
  font-size: 1rem;
  color: var(--color-neutral-lighter);
}

/* Resources */
.section--resources {
  padding: 3.75rem 0 5rem;
  background: var(--color-neutral-darkest);
}

.resources__title {
  text-align: center;
  margin-bottom: 3rem;
}

.resources__grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.resource-feature {
  flex: 0 1 40.5625rem;
  max-width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-feature__img {
  width: 100%;
  min-height: 26.25rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.resource-meta__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
}

.resource-meta__author img {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}

.resource-meta__date {
  font-size: 0.875rem;
  color: var(--color-neutral-light);
}

.resource-list {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-width: 17.5rem;
}

.resource-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.resource-row img {
  flex-shrink: 0;
  width: 12.5rem;
  height: 12.5rem;
  object-fit: cover;
  border-radius: var(--radius-btn);
}

.resource-row__meta {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--color-neutral-light);
}

.resource-row__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.0125em;
  color: var(--color-white);
  margin: 0 0 0.5rem;
}

.resource-row__excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-neutral-lighter);
}

/* CTA */
.section--cta {
  padding: 3.75rem 0;
  background: var(--color-neutral-darkest);
}

.cta-card {
  position: relative;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: 7.5rem 7rem;
  border-radius: var(--radius-cta-inner);
  border: .0625rem solid var(--opacity-white-05);
  text-align: center;
  overflow: hidden;
}

.cta-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.cta-card__sub {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  color: var(--color-neutral-lighter);
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  padding: 4rem var(--pad-inline);
  background: var(--color-madison-darker);
}

.footer__grid {
  display: flex;
  gap: 7.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 68.5rem;
  width: 100%;
}

.footer__brand {
  flex: 1 1 13.75rem;
  max-width: 17.5rem;
}

.footer__blurb,
.footer__copy {
  font-size: 0.875rem;
  color: var(--color-neutral-lighter);
  margin: 1.25rem 0 0.5rem;
}

.footer__blurb {
  margin: 1.25rem 0 1.25rem;
}

.footer__copy {
  margin-top: 0;
}

.footer__social {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--color-white);
  opacity: 0.9;
}

.footer__social:hover {
  opacity: 1;
}

.footer__social :is(svg, img) {
  width: 2rem;
  height: 2rem;
}

.footer__links {
  display: flex;
  gap: 7.5rem;
  flex: 1 1 auto;
}

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

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-neutral-lighter);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__cta {
  flex: 0 1 18.125rem;
}

.footer__cta-text {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--color-white);
}

.brand--footer .brand__logo {
  width: 8.1875rem;

}

/* Fill bar charts via JS — fallback heights in CSS */
.wave-bg--who .bar-chart {
  height: 12.5rem;
}

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

.about-hero {
  position: relative;
  padding: 6.875rem 0 5rem;
  overflow: hidden;
}

.about-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.415625rem);
  opacity: 0.35;
  pointer-events: none;
}

.about-hero__glow--a {
  width: 22.125rem;
  height: 39.1875rem;
  right: -2.5rem;
  top: -3.75rem;
  background: linear-gradient(165deg, rgb(2, 13, 253) 22%, rgb(0, 5, 101) 23%, rgb(2, 10, 10) 52%);
}

.about-hero__glow--b {
  width: 19.0625rem;
  height: 34.375rem;
  left: 5%;
  top: 2.5rem;
  opacity: 0.25;
  background: linear-gradient(180deg, rgb(2, 10, 10) 21%, rgb(0, 5, 101) 52%, rgb(2, 13, 253) 78%);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 38.625rem);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero__visual img {
  width: 100%;
}

.about-hero__copy .body-lg:last-of-type {
  margin-bottom: 0;
}

.about-hero__visual {
  position: relative;
  min-height: 26.25rem;
}

.about-hero__orbit {
  position: relative;
  width: 100%;
  max-width: 35rem;
  aspect-ratio: 1;
  margin-inline: auto;
}

.about-hero__rings {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: .0625rem solid rgba(49, 196, 206, 0.35);
  box-shadow: 0 0 0 1px rgba(49, 196, 206, 0.15), inset 0 0 0 3.5rem transparent, inset 0 0 0 3.5625rem rgba(49, 196, 206, 0.12), inset 0 0 0 7rem transparent, inset 0 0 0 7.0625rem rgba(49, 196, 206, 0.1), inset 0 0 0 10.5rem transparent, inset 0 0 0 10.5625rem rgba(49, 196, 206, 0.08);
}

.about-hero__acts {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(210px, 90%);
  padding: 1rem;
  background: var(--color-blue);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--color-white);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.35);
}

.about-hero__acts-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-hero__acts-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.35;
  opacity: 0.95;
}

.about-hero__chip {
  position: absolute;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8125rem;
  max-width: 21.25rem;
  background: rgba(2, 10, 10, 0.55);
  backdrop-filter: blur(0.375rem);
  border: .0625rem solid rgba(49, 196, 206, 0.28);
  border-radius: var(--radius-btn);
}

.about-hero__chip-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.about-hero__chip-desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero__chip-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-scooter);
}

.about-hero__chip--a {
  left: 0;
  top: 8%;
}

.about-hero__chip--b {
  right: 0;
  top: 38%;
}

.about-hero__chip--c {
  left: 5%;
  bottom: 6%;
}

.about-story {
  padding: 5rem 0 7.5rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 39.5rem);
  gap: 2rem;
  align-items: center;
}


.about-story__title {
  margin-bottom: 1rem;
}

.about-story__img {
  width: 100%;
  border-radius: var(--radius-card);
  display: block;
}

.about-vmv {
  padding: 0 0 7.5rem;
}

.about-vmv .shell {
  z-index: 9;
}

.about-vmv .wave-pattern-divider {
  z-index: 1;
  --wave-position-y: 70%;
}

.about-vmv__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.about-vmv__bars {
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
  height: 2.625rem;
  margin-bottom: 0.75rem;
}

.about-vmv__bars span {
  width: 0.25rem;
  border-radius: 2px;
  background: var(--color-madison-dark);
}

.about-vmv__bars span:nth-child(1) {
  height: 40%;
}

.about-vmv__bars span:nth-child(2) {
  height: 72%;
}

.about-vmv__bars span:nth-child(3) {
  height: 30%;
}

.about-vmv__bars span:nth-child(4) {
  height: 55%;
}

.about-vmv__col .about-vmv__icon {
  width: 1.75rem;
  height: 2rem;
  object-fit: contain;
}

.about-vmv__col:nth-child(2) .about-vmv__bars span:nth-child(1) {
  height: 22%;
}

.about-vmv__col:nth-child(2) .about-vmv__bars span:nth-child(2) {
  height: 62%;
}

.about-vmv__col:nth-child(2) .about-vmv__bars span:nth-child(3) {
  height: 82%;
}

.about-vmv__col:nth-child(2) .about-vmv__bars span:nth-child(4) {
  height: 44%;
}

.about-vmv__col:nth-child(3) .about-vmv__bars span:nth-child(1) {
  height: 58%;
}

.about-vmv__col:nth-child(3) .about-vmv__bars span:nth-child(2) {
  height: 32%;
}

.about-vmv__col:nth-child(3) .about-vmv__bars span:nth-child(3) {
  height: 48%;
}

.about-vmv__col:nth-child(3) .about-vmv__bars span:nth-child(4) {
  height: 76%;
}

.about-vmv__icon {
  color: var(--color-scooter);
  margin-bottom: 0.75rem;
}

.about-vmv__heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--color-white);
}

.about-vmv__text {
  margin: 0;
}

.about-vmv__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-vmv__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-neutral-lighter);
}

.about-vmv__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.25rem;
  height: 0.25rem;
  background: var(--color-scooter);
}

.about-quote {
  padding: 7.5rem 0 5rem;
  background: var(--color-madison-dark);
}

.about-quote__shell {
  max-width: 67.25rem;
}

.about-quote__heading {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 54rem;
}

.about-quote__heading-br {
  display: none;
}

.about-quote__card {
  position: relative;
  padding: 4rem 4.5rem;
  background: var(--color-madison-dark);
  border: .0625rem solid var(--opacity-white-05);
  border-radius: var(--radius-card);
  text-align: center;
}

.about-quote__avatar-wrap {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1.5rem;
  position: relative;
}

.about-quote__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}

.about-quote__avatar.about-quote__avatar-panel {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}

/* `[hidden]` alone loses to `.about-quote__avatar { display: block }` — force inactive avatars off. */
.about-quote__avatar.about-quote__avatar-panel[hidden] {
  display: none !important;
}

.about-quote__blockquote {
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.about-quote__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.about-quote__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.about-quote__tab {
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-neutral-lighter);
  background: rgba(2, 10, 10, 0.4);
  border: .0625rem solid var(--color-neutral-light);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.about-quote__tab:hover {
  color: var(--color-white);
}

.about-quote__tab--active {
  font-weight: 600;
  color: var(--color-white);
  background: rgba(2, 13, 253, 0.3);
  border-color: var(--color-scooter);
}

.about-team {
  padding: 5rem 0;
  background: var(--color-madison-darker);
}

.about-team__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.about-team__intro .badge {
  margin-bottom: 0.5rem;
}

.about-team__title {
  margin: 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: minmax(13.25rem, 1fr) repeat(3, minmax(0, 1fr));
  gap: 4rem 1.5rem;
  align-items: end;
}

.about-team__feature {
  position: relative;
  border-radius: var(--radius-btn);
  overflow: visible;
}

.about-team__photo-wrap {
  border-radius: var(--radius-btn);
  overflow: hidden;
  aspect-ratio: 1;
  max-height: 22.5rem;
  width: 100%;
}

.about-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team__card--ceo {
  margin-top: -3.5rem;
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: var(--color-madison-dark);
  border-radius: var(--radius-btn);
  box-shadow: 0 0.625rem 0.9375rem rgba(0, 0, 0, 0.1), 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
}

.about-team__card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-team__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.about-team__role {
  margin: .125rem 0 0;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--color-neutral-lighter);
}

.about-team__linkedin {
  flex-shrink: 0;
  color: var(--color-white);
  opacity: 0.9;
}

.about-team__linkedin:hover {
  opacity: 1;
}

.about-team__bio {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-neutral-lighter);
}

.about-team__member {
  border-radius: var(--radius-btn);
  overflow: hidden;
  background: var(--color-neutral-darkest);
}

.about-team__member-img {
  width: 100%;
  aspect-ratio: 274 / 306;
  object-fit: cover;
  display: block;
}

.about-team__member-bar {
  padding: 1rem 1.5rem;
  background: var(--color-madison-dark);
}

.about-faq {
  padding: 10rem 0 5rem;
}

.about-faq__grid {
  display: grid;
  grid-template-columns: minmax(16.25rem, 26rem) minmax(0, 39.6875rem);
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

/* Figma node 10390:949 — FAQ intro pill + H2 scale */

/* .about-faq__intro .heading-lg {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
   */
.about-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Collapsed row — frosted card */
.about-faq__item {
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Open: split question card + answer card (Figma) */
.about-faq__item.is-open {
  border: none;
  background: transparent;
  overflow: visible;
}

.about-faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.about-faq__item.is-open .about-faq__trigger {
  padding: 1.5rem;
  border-radius: var(--radius-btn);
  background: var(--color-blue-darker);
  border: .0625rem solid var(--color-blue);
  box-sizing: border-box;
}

.about-faq__chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.about-faq__chevron::before,
.about-faq__chevron::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: .0625rem;
}

.about-faq__chevron::before {
  width: 0.875rem;
  height: .125rem;
  left: 0.1875rem;
  top: 0.5625rem;
}

.about-faq__chevron::after {
  width: .125rem;
  height: 0.875rem;
  left: 0.5625rem;
  top: 0.1875rem;
  transition: opacity 0.2s, transform 0.2s;
}

.about-faq__item.is-open .about-faq__chevron::after {
  opacity: 0;
}

.about-faq__panel {
  padding: 0 1.5rem 1.25rem;
  border-top: .0625rem solid rgba(255, 255, 255, 0.08);
}

.about-faq__item.is-open .about-faq__panel {
  display: block;
  margin-top: .5rem;
  padding: 1rem 1.5rem;
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
}

.about-faq__panel p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.about-faq__panel p a {
  color: #4D55FD
}

.about-faq__panel p a:hover {
  color: var(--color-scooter);
}

.about-faq__item:not(.is-open) .about-faq__panel {
  display: none;
}

.about-touch .about-touch__card {
  position: relative;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: 7.5rem 7rem;
  border-radius: var(--radius-cta-inner);
  border: .0625rem solid var(--opacity-white-05);
  text-align: center;
  overflow: hidden;
  border-color: transparent;
}

.about-touch__title {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.about-touch__sub {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  color: var(--color-neutral-lighter);
}

.about-touch__card .btn {
  position: relative;
  z-index: 1;
}

.about-touch__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.35;
  pointer-events: none;
}

.about-touch__glow--a {
  width: 25rem;
  height: 25rem;
  left: -5rem;
  bottom: -7.5rem;
  background: var(--color-scooter);
}

.about-touch__glow--b {
  width: 22.5rem;
  height: 22.5rem;
  right: -3.75rem;
  top: -5rem;
  background: var(--color-blue);
}

.about-touch__wave {
  opacity: 0.35;
}

@media (max-width: 991px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    min-height: 380px;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-vmv__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-quote__heading-br {
    display: inline;
  }

  .about-quote__card {
    padding: 48px 24px;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-team__feature {
    max-width: 400px;
    margin-inline: auto;
  }

  .about-faq__grid {
    grid-template-columns: 1fr;
  }

  .about-faq__grid {
    gap: 20px;
  }

  .about-faq__item.is-open .about-faq__trigger,
  .about-faq__trigger {
    padding: 1.2rem 1rem 1rem;
  }

  .about-faq__item.is-open .about-faq__panel {
    padding: 1rem;
  }

}

@media (max-width: 767px) {
  .about-hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .about-hero__chip {
    display: none;
  }

  .about-quote__tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .about-touch .about-touch__card {
    padding: 64px 24px;
  }
}

/* Product page */
.text-center {
  text-align: center;
}

.product-hero {
  position: relative;
  padding: 10rem 0 2.5rem;
  overflow: hidden;
}

.product-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.415625rem);
  opacity: 0.3;
  pointer-events: none;
}

.product-hero__glow--a {
  width: 21.25rem;
  height: 37.5rem;
  right: 0;
  top: -6.25rem;
  background: linear-gradient(165deg, rgb(2, 13, 253) 22%, rgb(0, 5, 101) 40%, rgb(2, 10, 10) 70%);
}

.product-hero__glow--b {
  width: 18.75rem;
  height: 31.25rem;
  left: 5%;
  top: 1.25rem;
  opacity: 0.22;
  background: linear-gradient(180deg, rgb(2, 10, 10) 30%, rgb(2, 13, 253) 70%);
}

.product-hero__intro {
  position: relative;
  z-index: 1;
  max-width: 56.25rem;
  margin-inline: auto;
}

.product-hero__title {
  margin: 0 0 1.5rem;
}

.product-hero__sub {
  margin: 0 0 1.5rem;
}

.product-hero__cta {
  display: flex;
  justify-content: center;
}

.product-hero__visual-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.product-hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
}

.product-overview {
  padding: 5rem 0 7.5rem;
}

.product-overview__top {
  display: grid;
  grid-template-columns: minmax(0, 40.375rem) minmax(17.5rem, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.product-overview__headline {
  margin: 1rem 0;
}

.product-overview__media {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.product-overview__img {
  width: 100%;
  height: auto;
  display: block;
}

.product-overview__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.product-pillar__icon {
  color: var(--color-scooter);
  margin-bottom: 0.75rem;
}

.product-pillar__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--color-white);
}

.product-pillar__text {
  margin: 0;
}

.product-capabilities {
  padding: 5rem 0;
}

.product-capabilities__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.product-capabilities__intro .badge {
  margin-bottom: 0.75rem;
}

.product-capabilities__intro .heading-lg {
  margin: 0;
}

.product-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-cap-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-btn);
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  background: var(--opacity-white-05);
}

.product-cap-card__icon {
  color: var(--color-scooter);
  margin-bottom: 1.25rem;
}

.product-cap-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.product-cap-card .body-md {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.product-capabilities__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.product-integrations {
  padding: 5rem 0;
}

.product-integrations.home-logo-scroll {
  padding: 2.5rem 0 3.5rem;
}

.product-integrations__intro {
  margin-bottom: 2.5rem;
}

.product-integrations__intro .badge {
  display: table;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.product-integrations__sub {
  max-width: 52rem;
  margin-inline: auto;
}

.product-logos__viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.product-logos__track {
  display: flex;
  width: max-content;
  animation: product-logos-marquee 45s linear infinite;
}

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

  100% {
    transform: translateX(-50%);
  }
}

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

.product-logos__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 1rem 1.5rem;
  list-style: none;
}

.product-logos__list img {
  display: block;
  height: 3rem;
  width: auto;
  max-width: 11.25rem;
  object-fit: contain;
  opacity: 0.92;
}

.product-privacy {
  padding: 0;
}

.product-privacy__inner {
  border-radius: 1rem;
  padding: 3.75rem 0;
  background: var(--color-madison-darker);
}

.product-privacy .product-privacy__inner h2 {
  font-size: 2rem;
  line-height: 140%;
}

.product-privacy__sub {
  margin: 1rem auto 3rem;
  max-width: 52rem;
}

.product-privacy__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.product-privacy__badges img {
  border-radius: var(--radius-btn);
  width: 6.25rem;
}

.product-faq {
  padding: 5rem 0;
}

.product-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 416px) minmax(0, 635px);
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

.product-faq__intro .badge {
  margin-bottom: 1rem;
}

.product-faq__intro .heading-lg {
  margin-bottom: 1rem;
}

.product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.product-faq__item {
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.product-faq__item.is-open {
  border-color: var(--color-blue);
  background: rgba(0, 5, 101, 0.35);
}

.product-faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.product-faq__chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.product-faq__chevron::before,
.product-faq__chevron::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 1px;
}

.product-faq__chevron::before {
  width: 0.875rem;
  height: 2px;
  left: 3px;
  top: 9px;
}

.product-faq__chevron::after {
  width: 2px;
  height: 0.875rem;
  left: 9px;
  top: 3px;
  transition: opacity 0.2s;
}

.product-faq__item.is-open .product-faq__chevron::after {
  opacity: 0;
}

.product-faq__panel {
  padding: 0 1.5rem 1.25rem;
  border-top: .0625rem solid rgba(255, 255, 255, 0.08);
}

.product-faq__panel p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.product-faq__item:not(.is-open) .product-faq__panel {
  display: none;
}

.product-faq__item.is-open .product-faq__panel {
  display: block;
}

.product-cta .product-cta__card {
  position: relative;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding: 7.5rem 7rem;
  border-radius: var(--radius-cta-inner);
  border: .0625rem solid var(--opacity-white-05);
  text-align: center;
  overflow: hidden;
}

.product-cta__title {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.product-cta__sub {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
  color: var(--color-neutral-lighter);
}

.product-cta__card .btn {
  position: relative;
  z-index: 1;
}

.product-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.35;
  pointer-events: none;
}

.product-cta__glow--a {
  width: 25rem;
  height: 25rem;
  left: -5rem;
  bottom: -7.5rem;
  background: var(--color-scooter);
}

.product-cta__glow--b {
  width: 22.5rem;
  height: 22.5rem;
  right: -3.75rem;
  top: -5rem;
  background: var(--color-blue);
}

.product-cta__wave {
  opacity: 0.35;
}

.product-logos__viewport {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.product-logos__viewport::before,
.product-logos__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 8%, 5rem);
  z-index: 1;
  pointer-events: none;
}

.product-logos__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--color-neutral-darkest), transparent);
}

.product-logos__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--color-neutral-darkest), transparent);
}

.product-logos__track {
  display: flex;
  width: max-content;
  animation: product-logos-marquee 45s linear infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

@keyframes product-logos-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

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

.product-logos__list {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 1rem 1.5rem;
  list-style: none;
}

.product-logos__list>li {
  flex-shrink: 0;
}

.product-logos__list img {
  display: block;
  height: 3.9375rem;
  width: auto;
  max-width: 11.25rem;
  object-fit: contain;
  opacity: 0.92;
}

@media (max-width: 991px) {
  .product-overview__top {
    grid-template-columns: 1fr;
  }

  .product-overview__pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .product-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-hero {
    padding-top: 80px;
  }

  .product-cta .product-cta__card {
    padding: 64px 24px;
  }
}

/* Solutions page */
.solutions-teams {
  padding: 5rem 0;
  background: var(--color-madison-darker);
}

.solutions-teams__intro {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.solutions-teams__intro .badge {
  margin-bottom: 0.75rem;
}

.solutions-teams__title {
  margin: 1rem 0;
}

.solutions-teams__lede {
  margin: 0;
  max-width: 48rem;
}

.solutions-teams__split {
  margin-bottom: 3rem;
}

.solutions-teams__mock {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: .0625rem solid var(--opacity-white-05);
}

.solutions-teams__mock-img {
  width: 100%;
  height: auto;
  display: block;
}

.solutions-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.section--alt-bg {
  background: var(--color-madison-darker);
}

.solutions-split {
  padding: 5rem 0;
}

.solutions-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.solutions-split__copy .heading-lg {
  margin-bottom: 1.5rem;
}

.solutions-split__list {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
}

.solutions-split__list li {
  margin-bottom: 0.75rem;
}

.solutions-split__list li:last-child {
  margin-bottom: 0;
}

.solutions-split__story {
  margin: 0 0 1.5rem;
}

.solutions-split__media {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.solutions-split__media img {
  width: 100%;
  height: 25rem;
  display: block;
  object-fit: cover;
  line-height: 0;
}

.solutions-trust {
  padding: 4.5rem 0 5rem;
  background: var(--color-madison-darker);
}

.solutions-trust__title {
  margin: 0 auto 1rem;
  max-width: 56rem;
}

.solutions-trust__sub {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  color: var(--color-neutral-lighter);
}

@media (max-width: 991px) {
  .solutions-role-grid {
    grid-template-columns: 1fr;
  }

  .solutions-split__grid {
    grid-template-columns: 1fr;
  }

  .solutions-split--reverse .solutions-split__media {
    order: -1;
  }
}

/* Contact page */
.contact-hero {
  position: relative;
  padding: 4.5rem 0 7.5rem;
  /* overflow: hidden; */
}

.contact-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2.415625rem);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.contact-hero__glow--a {
  width: 21.25rem;
  height: 31.25rem;
  right: -2.5rem;
  top: -5rem;
  background: linear-gradient(165deg, rgb(2, 13, 253) 22%, rgb(0, 5, 101) 40%, rgb(2, 10, 10) 70%);
  opacity: 0;
}

.contact-hero__glow--b {
  width: 17.5rem;
  height: 26.25rem;
  left: 8%;
  top: 2.5rem;
  opacity: 0;
  background: linear-gradient(180deg, rgb(2, 10, 10) 30%, rgb(2, 13, 253) 70%);
}

.contact-hero__wave-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1578px, 140%);
  height: 24.4375rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.contact-hero__shell {
  position: relative;
  z-index: 1;
  max-width: 56.25rem;
}

.contact-hero__title {
  margin: 0 0 1.5rem;
}

.contact-hero__sub {
  margin: 0;
  max-width: 36rem;
  color: var(--color-neutral-lighter);
}

.contact-hero.text-center .contact-hero__sub {
  margin: 0 auto;
}

#contactus-form-top {
  scroll-margin-top: 100px;
  /* ≈ height of .site-header */
}

.contact-form-section {
  padding: 5rem 0;
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: minmax(16.875rem, 34.375rem) minmax(20rem, 39.75rem);
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-booking .shell {
  padding: 0;
}

.contact-form-section__intro {
  padding-top: 1.4375rem;
}

.contact-form-section__title {
  margin: 0 0 1rem;
  line-height: 1.15;
}

.contact-form-section__lede {
  margin: 0 0 1rem;
}

.contact-form-section__rule {
  height: 1px;
  width: 100%;
  margin: 2rem 0 1rem 0;
  background: rgba(217, 218, 218, 0.25);
  display: none;
}

.contact-form-section__sales {
  padding-top: 0.9375rem;
}

.contact-form-section__sales-label {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-form-section__phone {
  margin: 0;
}

.contact-form-section__phone a {
  color: var(--color-neutral-lighter);
  text-decoration: none;
}

.contact-form-section__phone a:hover {
  color: var(--color-scooter);
}

.contact-form-card {
  padding: 2rem;
  border-radius: var(--radius-card);
  border: .0625rem solid var(--opacity-white-05);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form-card .btn {
  width: fit-content;
}

.contact-form-card__intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--color-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
.hbspt-form .hs-form-field{
  margin-bottom: 1.5rem;
}

.contact-field__label, .hbspt-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.5625rem;
  display: inline-block;
}

.contact-field__input, .hbspt-form :is(input[type="text"], input[type="email"], input[type="tel"]),.hbspt-form textarea{
  width: 100%;
  min-height: 3rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: .0625rem solid var(--color-madison-dark);
  border-radius: 0.25rem;
  box-sizing: border-box;
}

.contact-field__input::placeholder, 
.hbspt-form :is(input[type="text"], input[type="email"], input[type="tel"], textarea)::placeholder {
  color: rgba(97, 106, 114, 0.55);
}

.contact-field__input--textarea, .hbspt-form textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
  vertical-align: middle;
}

.contact-field__input:focus,.hbspt-form :is(input[type="text"], input[type="email"], input[type="tel"],textarea):focus {
  outline: none;
  border-color: var(--color-scooter);
  box-shadow: 0 0 0 0.0625rem var(--color-scooter);
}
.hbspt-form label.hs-error-msg, .hs_error_rollup label{
  font-size: 0.875rem;
  font-weight: 500;
  color: #EF4444;
  margin-bottom: 0;
  display: inline-block;
}
.hs-error-msgs {
  margin: 0.5rem 0;
  padding: 0;
  list-style: none;
}
.hs_error_rollup .hs-error-msgs{
  margin: 0 0 1.5rem;
}
.hbspt-form .hs_submit input[type="submit"], .hbspt-form .hs-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  background: var(--color-blue);
  color: var(--color-white);
}
.hbspt-form .hs_submit input[type="submit"]:hover, .hbspt-form .hs-submit input[type="submit"]:hover{
  background: var(--color-scooter);
  color: var(--color-neutral-darkest);
}
.hbspt-form .submitted-message {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
}
.contact-booking {
  padding: 5rem 0;
}
.contact-booking__header {
  max-width: 53.5rem;
  margin: 0 auto 3rem;
}
.contact-booking__title {
  margin: 0 0 1rem;
}

.contact-booking__sub {
  margin: 0;
  color: var(--color-neutral-lighter);
}

.contact-booking__list {
  border-top: .0625rem solid var(--color-madison-dark);
  border-top: 0;
}

.contact-booking__row {
  display: grid;
  grid-template-columns: minmax(11.25rem, 24rem) minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2rem;
  border-bottom: .0625rem solid var(--color-madison-dark);
}

.contact-booking__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.contact-booking__role {
  margin: 0;
  font-size: 1.125rem;
}

.contact-booking__for {
  margin: 0;
  color: var(--color-white);
}

.contact-booking__for strong {
  font-weight: 700;
}

.contact-booking__btn {
  flex-shrink: 0;
}

.contact-booking__btn:hover {
  background: var(--color-scooter);
  color: var(--color-neutral-darkest);
}

.contact-map {
  padding: 3.188rem 0 3rem;
}

.contact-map__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-map__top {
  max-width: 40.5rem;
  padding-right: 2rem;
}

.contact-map__copy {
  flex: 1 1 20rem;
}

.contact-map__title {
  margin: 0 0 1rem;
}

.contact-map__sub {
  margin: 0;
  color: var(--color-neutral-lighter);
}

.contact-map__cta {
  flex-shrink: 0;
  margin-top: 2rem;
}

.contact-map__visual {
  max-width: 40.5rem;
  padding: 3.375rem 0.75rem;
}

.contact-map__img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 17.5rem;
  object-fit: cover;
}

@media (max-width: 991px) {
  .contact-form-section__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-booking .shell {
    padding-inline: var(--pad-inline);
  }

  .contact-booking__row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 32px 0;
  }

  .contact-booking__btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map__container {
    flex-direction: column;
  }

  .contact-map {
    padding: 2rem 0;
  }

  .contact-map__top,
  .contact-map__visual {
    width: 100%;
    max-width: 100%;
  }

  .contact-map__visual {
    padding: 3rem 0 2rem;
  }

  .contact-map__cta {
    justify-content: center;
  }

  .contact-map__img {
    min-height: unset;
  }

  .contact-booking__header {
    margin: 0 0 3rem 0;
  }

  .contact-booking__header h2,
  .contact-booking__header p {
    text-align: left
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 100px 0 72px;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  :is(h1, h2, h3, h4, h5, h6) br {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 30.75rem) minmax(0, 1fr);
  }

  .hero__visual {
    min-height: 520px;
    max-width: 629px;
    margin-inline: auto;
  }

  .hero-card {
    right: 8%;
    top: 120px;
  }

  .value-header {
    flex-direction: column;
    align-items: stretch;
  }

  .who-panel__grid {
    grid-template-columns: 1fr;
  }

  .who-floating-card {
    left: 2.5rem;
    top: 2.5rem;
    z-index: 1;
  }

  .who-panel__properties {
    left: 2.5rem;
    top: 2.5rem;
    align-items: stretch;
    align-self: stretch;
    max-width: none;
  }

  .who-panel__properties-heading {
    padding-right: 0;
  }

  .who-panel__profile {
    position: relative;
    right: auto;
    top: auto;
    align-items: stretch;
    align-self: stretch;
    max-width: none;
    margin-top: 16px;
    display: none;
  }

  .card-pos {
    transform: none;
    left: 2.5rem;
    top: 2.5rem;
  }

  .who-panel__profile-heading {
    padding-right: 0;
  }

  .footer__grid {
    gap: 48px;
  }

  .footer__links {
    justify-content: space-around;
    gap: unset;
  }

  .pulse-wrap {
    left: 58%;
    top: 64%;
  }

  #who-panel-1 .pulse-wrap {
    left: 67%;
    top: 57%;
  }

  #who-panel-2 .pulse-wrap {
    left: 42%;
    top: 60%;
  }
}

@media (max-width: 767px) {
  :root {
    --pad-inline: 20px;
    --pad-resources-inline: 20px;
  }

  .shell--nav {
    padding-inline: var(--pad-inline);
  }

  .section--hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__copy {
    padding-right: 0;
  }

  .hero__collage {
    position: relative;
    height: auto;
    min-height: 400px;
    margin-left: 0;
    max-width: 100%;
  }

  .hero__img--bottom,
  .hero__img--top,
  .hero__img--tall-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .hero__img--tall-wrap {
    height: 320px;
  }

  .pulse--a,
  .pulse--b {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 16px;
  }

  .feature-cell {
    width: 100%;
  }

  .who-tab {
    flex: 0 0 280px;
  }

  .cta-card {
    padding: 64px 24px;
  }

  .works-step {
    width: 100%;
    min-height: 0;
  }

  .works-visual {
    height: auto;
    min-height: 360px;
  }

  .works-visual__img {
    position: relative;
    transform: none;
    width: 100%;
    height: auto;
    max-height: 400px;
  }

  .glass-card {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: -80px;
    margin-inline: 16px;
  }

  .about__copy {
    padding-left: 0;
  }

  .resource-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .resource-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .who-floating-card,
  .card-pos {
    left: 1.5rem;
    top: 0.5rem;
  }

  .who-panel__properties {
    transform: scale(0.6);
    left: 0;
    top: 0;
  }

  #who-panel-2 .pulse-wrap {
    left: 43%;
    top: 57%;
  }
}

/* New Styling */
figure {
  margin: 0;
}

.section.section--hero {
  position: relative;
  z-index: 3;
}


.site-header {
  background-color: transparent;
  transition: .3s ease all;
}

section.hero.section.section--hero {
  overflow: unset;
  transition: .3s ease all;
}

.site-header.sticky {
  background: var(--color-neutral-darkest);
}

.site-header.sticky+main#main .hero.section.section--hero {
  overflow: hidden;
}

.resource-feature .heading-feature {
  margin-bottom: 1rem;
}

.resource-feature p.body-md,
.resource-row p.resource-row__excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shell::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15rem;
  height: calc(100% + 15.25rem);
  width: 0.0625rem;
  background: var(--color-blue-darkest);
}

.shell {
  position: relative;
}

.shell::after {
  content: "";
  position: absolute;
  right: 0;
  top: -15rem;
  height: calc(100% + 15.25rem);
  width: 0.0625rem;
  background: var(--color-blue-darkest);
}

:is(.section--resources, .how-it-works, .cta) .shell {
  padding: 0;
}

.no-lines .shell::after,
.no-lines .shell::before,
footer .shell::before,
footer .shell::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.site-header .shell::before,
.site-header .shell::after {
  height: 100%;
  top: 0;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24.125rem;
  background-repeat: repeat-x;
  background-image: url('data:image/svg+xml,<svg width="1296" height="436" viewBox="0 0 1296 436" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1555_8390)"><mask id="mask0_1555_8390" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="-41" y="16" width="1535" height="533"><rect x="-41" y="16.0952" width="1535" height="532" fill="url(%23paint0_linear_1555_8390)"/></mask><g mask="url(%23mask0_1555_8390)"><g opacity="0.26"><rect x="-14.8643" y="118.851" width="38.5128" height="192.489" fill="%234D55FD"/><rect x="26.1357" y="150.934" width="38.5128" height="128.322" fill="%234D55FD"/><rect x="67.1357" y="86.7676" width="38.5128" height="256.655" fill="%234D55FD"/><rect x="108.136" y="33.2954" width="38.5128" height="363.6" fill="%234D55FD"/><rect x="149.136" y="129.54" width="38.5128" height="171.111" fill="%234D55FD"/><rect x="190.136" y="161.623" width="38.5128" height="106.944" fill="%234D55FD"/><rect x="231.136" y="97.4619" width="38.5128" height="235.266" fill="%234D55FD"/><rect x="272.136" y="22.5952" width="38.5128" height="385" fill="%234D55FD"/><rect x="313.136" y="65.3787" width="38.5128" height="299.433" fill="%234D55FD"/><rect x="354.136" y="140.24" width="38.5128" height="149.711" fill="%234D55FD"/><rect x="395.136" y="108.151" width="38.5128" height="213.889" fill="%234D55FD"/><rect x="436.136" y="43.9897" width="38.5128" height="342.211" fill="%234D55FD"/><rect x="477.136" y="172.323" width="38.5128" height="85.5443" fill="%234D55FD"/><rect x="518.136" y="118.851" width="38.5128" height="192.489" fill="%234D55FD"/><rect x="559.136" y="150.934" width="38.5128" height="128.322" fill="%234D55FD"/><rect x="600.136" y="86.7676" width="38.5128" height="256.655" fill="%234D55FD"/><rect x="641.136" y="172.323" width="38.5128" height="85.5443" fill="%234D55FD"/><rect x="682.136" y="33.2954" width="38.5128" height="363.6" fill="%234D55FD"/><rect x="723.136" y="118.851" width="38.5128" height="192.489" fill="%234D55FD"/><rect x="764.136" y="129.54" width="38.5128" height="171.111" fill="%234D55FD"/><rect x="805.136" y="150.934" width="38.5128" height="128.322" fill="%234D55FD"/><rect x="846.136" y="161.623" width="38.5128" height="106.944" fill="%234D55FD"/><rect x="887.136" y="86.7676" width="38.5128" height="256.655" fill="%234D55FD"/><rect x="928.136" y="97.4619" width="38.5128" height="235.266" fill="%234D55FD"/><rect x="969.136" y="33.2954" width="38.5128" height="363.6" fill="%234D55FD"/><rect x="1010.14" y="22.5952" width="38.5128" height="385" fill="%234D55FD"/><rect x="1051.14" y="129.54" width="38.5128" height="171.111" fill="%234D55FD"/><rect x="1092.14" y="65.3787" width="38.5128" height="299.433" fill="%234D55FD"/><rect x="1133.14" y="161.623" width="38.5128" height="106.944" fill="%234D55FD"/><rect x="1174.14" y="140.24" width="38.5128" height="149.711" fill="%234D55FD"/><rect x="1215.14" y="97.4619" width="38.5128" height="235.266" fill="%234D55FD"/><rect x="1256.14" y="108.151" width="38.5128" height="213.889" fill="%234D55FD"/></g></g></g><defs><linearGradient id="paint0_linear_1555_8390" x1="1494" y1="282.095" x2="-41" y2="282.095" gradientUnits="userSpaceOnUse"><stop stop-color="%23D9D9D9"/><stop offset="0.330122" stop-color="%23D9D9D9" stop-opacity="0"/><stop offset="0.754357" stop-color="%23D9D9D9" stop-opacity="0"/><stop offset="1" stop-color="%23D9D9D9"/></linearGradient><clipPath id="clip0_1555_8390"><rect width="1296" height="436" rx="32" fill="white"/></clipPath></defs></svg>');
  background-position: center;
  background-size: cover;
}

.cta-card::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background: #010a0a;
  z-index: 1;
  top: 0;
  transition: 1s linear;
  transition-delay: .5s;
}

.cta.active .cta-card::before {
  right: -100%;
}

.about-quote__card::before,
.bar-animate .shell>div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24.125rem;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg width="1296" height="366" viewBox="0 0 1296 366" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.26"><rect x="-21.1455" y="192.511" width="45.6147" height="192.489" fill="%230C2457"/><rect x="26.7083" y="256.678" width="45.6147" height="128.322" fill="%230C2457"/><rect x="74.5627" y="128.345" width="45.6147" height="256.655" fill="%230C2457"/><rect x="122.417" y="21.4004" width="45.6147" height="363.6" fill="%230C2457"/><rect x="170.272" y="213.889" width="45.6147" height="171.111" fill="%230C2457"/><rect x="218.126" y="278.055" width="45.6147" height="106.944" fill="%230C2457"/><rect x="265.98" y="149.733" width="45.6147" height="235.266" fill="%230C2457"/><rect x="313.835" width="45.6147" height="385" fill="%230C2457"/><rect x="361.689" y="85.5669" width="45.6147" height="299.433" fill="%230C2457"/><rect x="409.543" y="235.289" width="45.6147" height="149.711" fill="%230C2457"/><rect x="457.397" y="171.111" width="45.6147" height="213.889" fill="%230C2457"/><rect x="505.252" y="42.7888" width="45.6147" height="342.211" fill="%230C2457"/><rect x="553.106" y="299.456" width="45.6147" height="85.5443" fill="%230C2457"/><rect x="600.961" y="192.511" width="45.6147" height="192.489" fill="%230C2457"/><rect x="648.815" y="256.678" width="45.6147" height="128.322" fill="%230C2457"/><rect x="696.67" y="128.345" width="45.6147" height="256.655" fill="%230C2457"/><rect x="744.524" y="21.4004" width="45.6147" height="363.6" fill="%230C2457"/><rect x="792.378" y="213.889" width="45.6147" height="171.111" fill="%230C2457"/><rect x="840.232" y="278.055" width="45.6147" height="106.944" fill="%230C2457"/><rect x="888.087" y="149.733" width="45.6147" height="235.266" fill="%230C2457"/><rect x="935.941" width="45.6147" height="385" fill="%230C2457"/><rect x="983.796" y="85.5669" width="45.6147" height="299.433" fill="%230C2457"/><rect x="1031.65" y="235.289" width="45.6147" height="149.711" fill="%230C2457"/><rect x="1079.5" y="171.111" width="45.6147" height="213.889" fill="%230C2457"/><rect x="1127.36" y="42.7888" width="45.6147" height="342.211" fill="%230C2457"/><rect x="1175.21" y="299.456" width="45.6147" height="85.5443" fill="%230C2457"/><rect x="1223.07" y="192.511" width="45.6147" height="192.489" fill="%230C2457"/><rect x="1270.92" y="256.678" width="45.6147" height="128.322" fill="%230C2457"/></g></svg>');
  background-position: bottom center;
  background-size: 100%;
}

.about-quote__card::after,
.bar-animate .shell>div::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background: #06122b;
  z-index: 0;
  top: 0;
  transition: 1s linear;
  transition-delay: .5s;
}

.about-quote.active .about-quote__card::after,
.bar-animate.active .shell>div::after {
  right: -100%;
}

.about-hero {
  overflow: unset;
  padding: 6.875rem 0 7.875rem;
  ;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: -5.5rem;
  left: 0;
  background-image: url('data:image/svg+xml,<svg width="1440" height="862" viewBox="0 0 1440 862" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_11916_2031)"><g opacity="0.3" filter="url(%23filter0_f_11916_2031)"><rect x="990" y="-74" width="354" height="627" fill="url(%23paint0_linear_11916_2031)"/></g><g opacity="0.2" filter="url(%23filter1_f_11916_2031)"><rect x="97" y="-59" width="354" height="758" fill="url(%23paint1_linear_11916_2031)"/></g><g opacity="0.4" filter="url(%23filter2_f_11916_2031)"><rect x="544" y="119" width="354" height="978" fill="url(%23paint2_linear_11916_2031)"/></g></g><defs><filter id="filter0_f_11916_2031" x="912.7" y="-151.3" width="508.6" height="781.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="38.65" result="effect1_foregroundBlur_11916_2031"/></filter><filter id="filter1_f_11916_2031" x="19.7" y="-136.3" width="508.6" height="912.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="38.65" result="effect1_foregroundBlur_11916_2031"/></filter><filter id="filter2_f_11916_2031" x="466.7" y="41.7" width="508.6" height="1132.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="38.65" result="effect1_foregroundBlur_11916_2031"/></filter><linearGradient id="paint0_linear_11916_2031" x1="1192.5" y1="-284.302" x2="1326.03" y2="213.075" gradientUnits="userSpaceOnUse"><stop stop-color="%23020DFD"/><stop offset="0.607586" stop-color="%23000565"/><stop offset="1" stop-color="%23020A0A"/></linearGradient><linearGradient id="paint1_linear_11916_2031" x1="246.5" y1="-59" x2="246.5" y2="652.5" gradientUnits="userSpaceOnUse"><stop stop-color="%23020A0A"/><stop offset="0.399759" stop-color="%23020DFD"/><stop offset="0.756919" stop-color="%23000565"/><stop offset="1" stop-color="%23020A0A"/></linearGradient><linearGradient id="paint2_linear_11916_2031" x1="721" y1="329.5" x2="721" y2="875.5" gradientUnits="userSpaceOnUse"><stop stop-color="%23020A0A"/><stop offset="0.409366" stop-color="%23000565"/><stop offset="0.693367" stop-color="%23020DFD"/><stop offset="1" stop-color="%23020A0A"/></linearGradient><clipPath id="clip0_11916_2031"><rect width="1440" height="862" fill="white"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: center;
}

.about-hero .shell {
  position: relative;
  z-index: 4;
}

.site-header.sticky+main#main .about-hero {
  overflow: hidden;
}

.about-story {
  padding: 1.75rem 0 3rem;
}

:is(h1, h2, h3, h4, h5, h6) :is(span, strong) {
  color: var(--color-scooter);
}

.about-quote__card {
  max-width: 67.25rem;
  margin: 0 auto;
  border-radius: 0;
  border: 0;
  padding: 4rem 6.8125rem;
}

.about-quote__text {
  font-family: 'Rethink Sans', sans-serif;
  min-height: 6.5625rem;
}

.about-quote {
  background-color: var(--color-neutral-darkest);
}

.about-quote .about-quote__card::after {
  background: #0c2457;
}

.about-quote .about-quote__card {
  overflow: hidden;
}

.about-quote__card::before {
  background-image: url('data:image/svg+xml,<svg width="1076" height="265" viewBox="0 0 1076 265" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.2"><rect y="206.119" width="34.2415" height="58.8812" fill="%2300034B"/><rect x="35.9229" y="132.508" width="34.2415" height="132.492" fill="%2300034B"/><rect x="71.8452" y="176.674" width="34.2415" height="88.3256" fill="%2300034B"/><rect x="107.768" y="88.3413" width="34.2415" height="176.659" fill="%2300034B"/><rect x="143.69" y="14.73" width="34.2415" height="250.27" fill="%2300034B"/><rect x="179.613" y="147.222" width="34.2415" height="117.778" fill="%2300034B"/><rect x="215.536" y="191.389" width="34.2415" height="73.6111" fill="%2300034B"/><rect x="251.459" y="103.063" width="34.2415" height="161.937" fill="%2300034B"/><rect x="287.382" width="34.2415" height="265" fill="%2300034B"/><rect x="323.305" y="58.8967" width="34.2415" height="206.103" fill="%2300034B"/><rect x="359.227" y="161.952" width="34.2415" height="103.048" fill="%2300034B"/><rect x="395.149" y="117.778" width="34.2415" height="147.222" fill="%2300034B"/><rect x="431.072" y="29.4521" width="34.2415" height="235.548" fill="%2300034B"/><rect x="466.995" y="206.119" width="34.2415" height="58.8812" fill="%2300034B"/><rect x="502.917" y="132.508" width="34.2415" height="132.492" fill="%2300034B"/><rect x="538.841" y="176.674" width="34.2415" height="88.3256" fill="%2300034B"/><rect x="574.764" y="88.3411" width="34.2415" height="176.659" fill="%2300034B"/><rect x="610.686" y="14.73" width="34.2415" height="250.27" fill="%2300034B"/><rect x="646.608" y="147.222" width="34.2415" height="117.778" fill="%2300034B"/><rect x="682.531" y="191.389" width="34.2415" height="73.6111" fill="%2300034B"/><rect x="718.454" y="103.063" width="34.2415" height="161.937" fill="%2300034B"/><rect x="754.377" width="34.2415" height="265" fill="%2300034B"/><rect x="790.299" y="58.8967" width="34.2415" height="206.103" fill="%2300034B"/><rect x="826.222" y="161.952" width="34.2415" height="103.048" fill="%2300034B"/><rect x="862.145" y="117.778" width="34.2415" height="147.222" fill="%2300034B"/><rect x="898.067" y="29.4521" width="34.2415" height="235.548" fill="%2300034B"/><rect x="933.99" y="206.119" width="34.2415" height="58.8812" fill="%2300034B"/><rect x="969.913" y="132.508" width="34.2415" height="132.492" fill="%2300034B"/><rect x="1005.84" y="176.674" width="34.2415" height="88.3256" fill="%2300034B"/><rect x="1041.76" y="88.3413" width="34.2415" height="176.659" fill="%2300034B"/></g></svg>');
}

.about-quote .about-quote__card>* {
  position: relative;
  z-index: 2;
}

.about-team__photo-wrap {
  max-height: unset;
  height: 19.125rem;
}

.about-team__member-img {
  aspect-ratio: unset;
}

.about-team__card {
  border-radius: .5rem;
  background: var(--Color-Madison, #0F2D6D);
  box-shadow: 0 .625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.10), 0 .25rem .375rem -.25rem rgba(0, 0, 0, 0.10);
  max-width: calc(100% - 1.625rem);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  position: absolute;
  height: 5.125rem;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -2.25rem;
  transition: height .6s ease, max-width .6s ease;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 0fr;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.about-team__card .about-team__card-head {
  margin: 0;
}

.about-team__card .about-team__bio-body {
  min-height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  transition-delay: .3s;
  display: none;
}

.about-team__card .about-team__bio {
  margin: 0;
}

.about-team__card .about-team__linkedin {
  opacity: 0;
  visibility: hidden;
  position: relative;
  inset: 0;
  transition: .3s ease all;
  width: 1.5rem;
  height: 1.5rem;
}

.about-team__card .about-team__linkedin img {
  width: 100%;
  height: 100%;
}

.about-team {
  padding: 5rem 0 7.125rem;
}

article.about-team__feature:hover .about-team__card,
article.about-team__feature.is-expanded .about-team__card {
  max-width: 100%;
  height: calc(100% + 2.4rem);
  max-height: calc(100% + 2.4rem);
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr);
}

article.about-team__feature:hover .about-team__card .about-team__linkedin,
article.about-team__feature.is-expanded .about-team__card .about-team__linkedin {
  opacity: 1;
  visibility: visible;
  position: relative;
}

article.about-team__feature:hover .about-team__card .about-team__bio-body,
article.about-team__feature.is-expanded .about-team__card .about-team__bio-body {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  min-height: 0;
  overscroll-behavior: contain;
  touch-action: pan-y;
  position: relative;
}

.about-team__bio-scroll {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-team__bio-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.about-team__scrollbar {
  display: none;
  flex: 0 0 5px;
  width: 10px;
  align-self: stretch;
  background: rgb(255 255 255 / 10%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

article.about-team__feature:hover .about-team__card .about-team__bio-body.is-scrollable .about-team__scrollbar,
article.about-team__feature.is-expanded .about-team__card .about-team__bio-body.is-scrollable .about-team__scrollbar {
  display: block;
}

.about-team__scrollbar-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 1.75rem;
  background: var(--color-scooter);
  border-radius: 10px;
  transition: background .2s ease;
  cursor: pointer;
}

.about-team__scrollbar:hover .about-team__scrollbar-thumb,
.about-team__scrollbar-thumb:hover {
  opacity: .7;
}

.about-team__card {
  padding-bottom: 1.3rem;
}

.section--cta .shell {
  padding: 0;
  overflow: hidden;
  border-radius: 2rem;
}

.about-touch__card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="916" height="400" viewBox="0 0 916 400" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_f_10367_712)"><path d="M-139 143.4H0.5L232 300.9L535 355.9L772.5 422.9L501 589.9C304.167 572.067 -92.1 536.4 -102.5 536.4C-112.9 536.4 -131.167 274.4 -139 143.4Z" fill="%2331C4CE"/></g><defs><filter id="filter0_f_10367_712" x="-282.4" y="-9.15527e-05" width="1198.3" height="733.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_10367_712"/></filter></defs></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  width: 56.96875rem;
  height: 27.90625rem;
}

.about-touch__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="869" height="436" viewBox="0 0 869 436" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_f_10367_713)"><path d="M1060.9 357.595L923.4 71.5952L757.4 269.095L415.9 357.595L143.4 459.595L460.4 514.595C657.233 496.762 1015 573.095 1025.4 573.095C1035.8 573.095 1053.07 488.595 1060.9 357.595Z" fill="%234D55FD"/></g><defs><filter id="filter0_f_10367_713" x="-9.15527e-05" y="-71.8048" width="1204.3" height="788.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="71.7" result="effect1_foregroundBlur_10367_713"/></filter></defs></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  width: 57.34375rem;
  height: 31.34375rem;
}

.about-touch .shell::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100%;
  height: 18.5rem;
  background-repeat: no-repeat;
  background: url('data:image/svg+xml,<svg width="1296" height="284" viewBox="0 0 1296 284" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1580_7511)"><mask id="mask0_1580_7511" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="-46" y="6" width="1549" height="533"><rect x="-46" y="6.09521" width="1549" height="532" fill="url(%23paint0_linear_1580_7511)"/></mask><g mask="url(%23mask0_1580_7511)"><g opacity="0.26"><rect x="-20" y="108.851" width="38.5128" height="192.489" fill="%2331C4CE"/><rect x="21" y="140.934" width="38.5128" height="128.322" fill="%2331C4CE"/><rect x="62" y="76.7676" width="38.5128" height="256.655" fill="%2331C4CE"/><rect x="103" y="23.2954" width="38.5128" height="363.6" fill="%2331C4CE"/><rect x="144" y="119.54" width="38.5128" height="171.111" fill="%2331C4CE"/><rect x="185" y="151.623" width="38.5128" height="106.944" fill="%2331C4CE"/><rect x="226" y="87.4619" width="38.5128" height="235.266" fill="%2331C4CE"/><rect x="267" y="12.5952" width="38.5128" height="385" fill="%2331C4CE"/><rect x="308" y="55.3787" width="38.5128" height="299.433" fill="%2331C4CE"/><rect x="349" y="130.24" width="38.5128" height="149.711" fill="%2331C4CE"/><rect x="390" y="98.1509" width="38.5128" height="213.889" fill="%2331C4CE"/><rect x="431" y="33.9897" width="38.5128" height="342.211" fill="%2331C4CE"/><rect x="472" y="162.323" width="38.5128" height="85.5443" fill="%2331C4CE"/><rect x="513" y="108.851" width="38.5128" height="192.489" fill="%2331C4CE"/><rect x="554" y="140.934" width="38.5128" height="128.322" fill="%2331C4CE"/><rect x="595" y="76.7676" width="38.5128" height="256.655" fill="%2331C4CE"/><rect x="636" y="162.323" width="38.5128" height="85.5443" fill="%2331C4CE"/><rect x="677" y="23.2954" width="38.5128" height="363.6" fill="%2331C4CE"/><rect x="718" y="108.851" width="38.5128" height="192.489" fill="%2331C4CE"/><rect x="759" y="119.54" width="38.5128" height="171.111" fill="%2331C4CE"/><rect x="800" y="140.934" width="38.5128" height="128.322" fill="%2331C4CE"/><rect x="841" y="151.623" width="38.5128" height="106.944" fill="%2331C4CE"/><rect x="882" y="76.7676" width="38.5128" height="256.655" fill="%2331C4CE"/><rect x="923" y="87.4619" width="38.5128" height="235.266" fill="%2331C4CE"/><rect x="964" y="23.2954" width="38.5128" height="363.6" fill="%2331C4CE"/><rect x="1005" y="12.5952" width="38.5128" height="385" fill="%2331C4CE"/><rect x="1046" y="119.54" width="38.5128" height="171.111" fill="%2331C4CE"/><rect x="1087" y="55.3787" width="38.5128" height="299.433" fill="%2331C4CE"/><rect x="1128" y="151.623" width="38.5128" height="106.944" fill="%2331C4CE"/><rect x="1169" y="130.24" width="38.5128" height="149.711" fill="%2331C4CE"/><rect x="1210" y="87.4619" width="38.5128" height="235.266" fill="%2331C4CE"/><rect x="1251" y="98.1509" width="38.5128" height="213.889" fill="%2331C4CE"/><rect x="1292" y="12.5952" width="38.5128" height="385" fill="%2331C4CE"/></g></g></g><defs><linearGradient id="paint0_linear_1580_7511" x1="1503" y1="272.095" x2="-46" y2="272.095" gradientUnits="userSpaceOnUse"><stop stop-color="%23D9D9D9"/><stop offset="0.330122" stop-color="%23D9D9D9" stop-opacity="0"/><stop offset="0.754357" stop-color="%23D9D9D9" stop-opacity="0"/><stop offset="1" stop-color="%23D9D9D9"/></linearGradient><clipPath id="clip0_1580_7511"><rect width="1296" height="284" fill="white"/></clipPath></defs></svg>');
  background-position: bottom;
  background-size: cover;
}

.about-touch .shell::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 100%;
  background: #010a0a;
  z-index: 1;
  transition: 1s linear;
  transition-delay: .5s;
}

.about-touch .shell::after {
  right: -100%;
}

.about-team__card {
  height: 6.125rem;
}

.about-team__card .about-team__card-head>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== ACT BOX ===== */
.act-box {
  width: 38.625rem;
  height: 30.5rem;
  background: #020a0a;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.act-box .act-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 29.8125rem;
  background: #00034b;
  border-top: 1px solid #020dfd;
  border-bottom: 1px solid #020dfd;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1rem;
  text-align: center;
  z-index: 4;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025rem;
}

.act-box .act-header .title {
  font-size: 1.5rem;
  line-height: 1.4375rem;
}

.act-box .act-header .subtitle {
  font-size: 1rem;
  line-height: 1.4375rem;
}

.act-box .act-border-container {
  position: absolute;
  top: 16.2%;
  left: 4.375rem;
  width: 29.875rem;
  bottom: 0;
  border-left: 1px solid #020dfd;
  border-right: 1px solid #020dfd;
  border-bottom: 0px solid #020dfd;
  z-index: 1;
}

.act-box .act-center-line {
  position: absolute;
  top: 4.0625rem;
  left: 49.5%;
  width: 0.125rem;
  height: 25.5625rem;
  background: linear-gradient(to bottom, #020dfd, rgba(2, 13, 253, 0.3));
  z-index: 2;
  transform: rotate(0.55deg);
}

.act-box .act-scroll-area {
  position: absolute;
  top: 4.6875rem;
  left: 8.9375rem;
  width: 21.125rem;
  height: 25.625rem;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

/* Fade overlays */
.act-box .fade-top-inner {
  position: absolute;
  top: 16.6%;
  left: 4.375rem;
  width: 29.875rem;
  height: 5rem;
  background: linear-gradient(to bottom, #020a0a, transparent);
  z-index: 5;
  pointer-events: none;
}

.act-box .fade-bottom {
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 7.5625rem;
  background: linear-gradient(to top, #020a0a 5%, transparent);
  z-index: 5;
  pointer-events: none;
}

.act-box .scroll-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6.25rem;
  background: linear-gradient(to bottom, #020a0a, transparent);
  z-index: 3;
  pointer-events: none;
}

.act-box .scroll-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7.5rem;
  background: linear-gradient(to top, #020a0a, transparent);
  z-index: 3;
  pointer-events: none;
}

.act-box .scroll-track {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-top: 1.25rem;
  will-change: transform;
}

/* ===== ACT CARD ===== */
.act-box .act-card {
  backdrop-filter: blur(0.4125rem);
  -webkit-backdrop-filter: blur(0.4125rem);
  background: rgba(2, 10, 10, 0.15);
  border: 1px solid rgba(49, 196, 206, 0.2);
  border-radius: 0.5rem;
  padding: 0.8125rem;
  width: 100%;
  flex-shrink: 0;
}

.act-box .act-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.act-box .act-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #31c4ce;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.act-box .act-icon img {
  width: 100%;
  height: 100%;
  max-width: 1.125rem;
  max-height: 1.25rem;
  object-fit: contain;
}

.act-box .act-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
}

.act-box .act-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.act-box .act-card-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

.act-box .fade-top-inner {
  width: calc(29.875rem - .3rem);
  left: 4.5rem;
  opacity: 0;
}

/* .act-box .act-border-container { top: 19.4%; }  */
.act-box .act-header .subtitle {
  font-family: 'Space Grotesk', sans-serif;
}

/* ─── GRAPHIC STAGE ─────────────────────────────────────────────── */
.graphic-stage {
  position: relative;
  z-index: 1;
  width: min(67.5rem, 100%);
  height: 30rem;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(0 0.25rem 0.125rem rgba(0, 0, 0, 0.25));
}

/* ── GRID LINES ───────────────────────────────────────────────── */
.graphic-stage .grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.graphic-stage .grid-lines-h,
.grid-lines-v {
  position: absolute;
  inset: 0;
  display: flex;
}

.graphic-stage .grid-lines-h {
  flex-direction: row;
  gap: 4rem;
  padding: 0.5rem;
  align-items: stretch;
  opacity: 0.82;
}

.graphic-stage .grid-lines-v {
  flex-direction: column;
  gap: 4rem;
  padding: 0.5rem;
  align-items: stretch;
  opacity: 0.82;
  top: 0;
}

.graphic-stage .grid-line {
  background: #1b2222;
  flex-shrink: 0;
}

.graphic-stage .grid-lines-h .grid-line {
  width: 1px;
  flex: none;
}

.graphic-stage .grid-lines-v .grid-line {
  height: 1px;
  flex: none;
}

/* ── ACCENT SQUARES ───────────────────────────────────────────── */
.graphic-stage .accent-sq {
  position: absolute;
  width: 4rem;
  height: 4rem;
  pointer-events: none;
  z-index: 0;
}

.graphic-stage .accent-sq--dark {
  background: #00034b;
}

.graphic-stage .accent-sq--light {
  background: rgba(255, 255, 255, 0.05);
}

/* ─── CARDS ─────────────────────────────────────────────────────── */
.graphic-stage .card {
  position: absolute;
  background: rgba(2, 10, 10, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 3.125rem 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 2;
}

/* ── Card:Capture Hub ── */
.graphic-stage .card--capture {
  width: 20rem;
  height: 12.8125rem;
  left: 2.25rem;
  top: 1.8125rem;
}

.graphic-stage .card--capture .card-header {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 16.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.graphic-stage .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.graphic-stage .card-header svg {
  width: 1rem;
  height: 1rem;
}

.graphic-stage .card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.graphic-stage .badge-live {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.20);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  color: #ef4444;
  animation: live-glow 2s ease-in-out infinite;
}

.graphic-stage .badge-live-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes live-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  50% {
    box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0);
  }
}

.graphic-stage .card--capture .card-stat {
  position: absolute;
  left: 1.5rem;
  top: 4.0625rem;
  width: 16.875rem;
}

.graphic-stage .stat-number {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: -0.05625rem;
  color: #ffffff;
}

.graphic-stage .stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1rem;
  margin-top: 0.25rem;
}

.graphic-stage .card--capture .card-icons {
  position: absolute;
  left: 1.5rem;
  top: 9.0625rem;
  width: 16.875rem;
  display: flex;
  gap: 0.5rem;
}

.graphic-stage .icon-btn {
  flex: 1;
  height: 2.125rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-stage .icon-btn img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

/* ── Card:Data Normalizer ── */
.graphic-stage .card--normalizer {
  width: 18.75rem;
  left: 30.625rem;
  top: 1.4375rem;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.graphic-stage .card-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.graphic-stage .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: #31c4ce;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bgBlink 1.8s ease-in-out infinite;
}

.graphic-stage .icon-box img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.graphic-stage .card-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
}

.graphic-stage .progress-box {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  padding: 1.0625rem;
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.graphic-stage .progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.graphic-stage .progress-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
}

.graphic-stage .progress-val {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #00d492;
}

.graphic-stage .progress-track {
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.graphic-stage .progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #020dfd 0%, #00d492 100%);
  width: 0%;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Card:Unified Profile ── */
.graphic-stage .card--profile {
  width: 20rem;
  left: 18.375rem;
  top: 15.3125rem;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.graphic-stage .profile-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.graphic-stage .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #31c4ce;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.46875rem rgba(139, 92, 246, 0.30);
}

.graphic-stage .avatar :is(img, svg) {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.graphic-stage .profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.graphic-stage .badge-row {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.375rem;
  justify-content: flex-start;
}

.graphic-stage .tag {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.graphic-stage .tag--purple {
  background: rgba(173, 70, 255, 0.20);
  border: 1px solid rgba(173, 70, 255, 0.30);
  color: #e9d4ff;
}

.graphic-stage .tag--blue {
  background: rgba(43, 127, 255, 0.20);
  border: 1px solid rgba(43, 127, 255, 0.30);
  color: #bedbff;
}

.graphic-stage .ltv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.25rem;
}

.graphic-stage .ltv-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
}

.graphic-stage .ltv-value {
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #00d492;
}

/* ── Card:ROI Segmentation ── */
.graphic-stage .card--roi {
  width: 21.25rem;
  left: 43.125rem;
  top: 13.5625rem;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.graphic-stage .roi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.graphic-stage .roi-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(2, 13, 253, 0.10);
  border: 1px solid rgba(2, 13, 253, 0.20);
  box-shadow: 0 0 0.625rem 0 #020dfd;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blinkGlow 2s ease-in-out infinite;
}

.graphic-stage .roi-icon-btn :is(img, svg) {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.graphic-stage .chart-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  padding-bottom: 0;
  height: 6rem;
}

.graphic-stage .bar-wrap {
  flex: 1;
  height: 5.6875rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.graphic-stage .bar-fill {
  background: linear-gradient(0deg, #020dfd 0%, #51a2ff 100%);
  opacity: 0.60;
  width: 100%;
  height: 0%;
  transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ─── CARD ANIMATION STATES ────────────────────────────────────── */
.graphic-stage .card--capture {
  opacity: 0;
  transform: translateY(1.25rem);
}

.graphic-stage .card--normalizer {
  opacity: 0;
  transform: translateY(1.25rem);
}

.graphic-stage .card--normalizer .progress-box {
  opacity: 0;
}

.graphic-stage .card--profile {
  opacity: 0;
  transform: translateY(1.25rem);
}

.graphic-stage .card--profile .profile-inner {
  opacity: 0;
}

.graphic-stage .card--profile .ltv-row {
  opacity: 0;
}

.graphic-stage .card--roi {
  opacity: 0;
  transform: translateY(1.25rem);
}

.graphic-stage .card--roi .chart-area {
  opacity: 0;
}

.graphic-stage .card--capture.animate-in {
  animation: card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.graphic-stage .card--normalizer.animate-in {
  animation: card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.graphic-stage .card--profile.animate-in {
  animation: card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.graphic-stage .card--roi.animate-in {
  animation: card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.card--normalizer.details-in .progress-box {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.card--profile.details-in .profile-inner {
  animation: fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.card--profile.details-in .ltv-row {
  animation: fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.card--roi.details-in .chart-area {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(0.625rem);
  }

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

@keyframes blinkGlow {

  0%,
  100% {
    box-shadow: 0 0 0.4rem 0 rgba(2, 13, 253, 0.35);
  }

  50% {
    box-shadow: 0 0 0.625rem 0 #020dfd, 0 0 1.25rem 0 rgba(2, 13, 253, 0.9);
  }
}

@keyframes bgBlink {

  0%,
  100% {
    background-color: #31c4ce;
  }

  50% {
    background-color: #31C4CE96;
  }
}

/* Product Page */
.product-hero {
  padding: 4.5rem 0rem;
  overflow: unset;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -5.625rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="1440" height="998" viewBox="0 0 1440 998" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1597_8272)"><g opacity="0.71" filter="url(%23filter0_f_1597_8272)"><rect x="990" y="-184" width="354" height="1364" fill="url(%23paint0_linear_1597_8272)"/></g><g opacity="0.5" filter="url(%23filter1_f_1597_8272)"><rect x="97" y="-30" width="354" height="758" fill="url(%23paint1_linear_1597_8272)"/></g></g><defs><filter id="filter0_f_1597_8272" x="912.7" y="-261.3" width="508.6" height="1518.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="38.65" result="effect1_foregroundBlur_1597_8272"/></filter><filter id="filter1_f_1597_8272" x="19.7" y="-107.3" width="508.6" height="912.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="38.65" result="effect1_foregroundBlur_1597_8272"/></filter><linearGradient id="paint0_linear_1597_8272" x1="1192.5" y1="-641.5" x2="1697.67" y2="223.467" gradientUnits="userSpaceOnUse"><stop stop-color="%23020DFD"/><stop offset="0.607586" stop-color="%23000565"/><stop offset="1" stop-color="%23020A0A"/></linearGradient><linearGradient id="paint1_linear_1597_8272" x1="299.5" y1="-284.241" x2="488.782" y2="298.96" gradientUnits="userSpaceOnUse"><stop stop-color="%23020DFD"/><stop offset="0.607586" stop-color="%23000565"/><stop offset="1" stop-color="%23020A0A"/></linearGradient><clipPath id="clip0_1597_8272"><rect width="1440" height="998" fill="white"/></clipPath></defs></svg>');
  background-size: 100%;
  background-repeat: no-repeat;
}

.product-cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 3, 75, 0.00) 0%, #00034B 100%), rgba(255, 255, 255, 0.05);
  z-index: -1;
  transition: .3s ease all;
  transform: translateY(100%);
}

.product-cap-card {
  position: relative;
  overflow: hidden;
}

.product-cap-card:hover::before {
  opacity: 1;
  transform: translateY(0%);
}

.product-cap-card__icon img {
  filter: invert(38%) sepia(70%) saturate(310%) hue-rotate(182deg) brightness(92%) contrast(83%);
  opacity: .6;
  transition-delay: .3s;
  transition: .3s ease all;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.product-cap-card:hover .product-cap-card__icon img {
  filter: none;
  opacity: 1;
}

.product-pillar__icon img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

/* ===== HERO LAYOUT WRAPPER ===== */
.hero-layout {
  width: 36.5625rem;
  height: 41.1875rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* ===== 2-COLUMN GRID ===== */
.hero-layout .slider-grid {
  position: absolute;
  top: -3.3125rem;
  left: 0.19%;
  right: 0.48%;
  display: flex;
  gap: 1.5rem;
  height: calc(100% + 3.3125rem);
}

.hero-layout .slider-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.hero-layout .slider-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  will-change: transform;
}

.hero-layout .slider-track img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
}

/* Left column:taller images alternate with wider aspect */
.hero-layout .slider-col--left .slider-track img:nth-child(6n+1) {
  aspect-ratio: 329 / 292;
}

.hero-layout .slider-col--left .slider-track img:nth-child(6n+2) {
  aspect-ratio: 519 / 292;
}

.hero-layout .slider-col--left .slider-track img:nth-child(6n+3) {
  aspect-ratio: 329 / 292;
}

.hero-layout .slider-col--left .slider-track img:nth-child(6n+4) {
  aspect-ratio: 329 / 292;
}

.hero-layout .slider-col--left .slider-track img:nth-child(6n+5) {
  aspect-ratio: 519 / 292;
}

.hero-layout .slider-col--left .slider-track img:nth-child(6n+6) {
  aspect-ratio: 329 / 292;
}

/* Right column:wider images alternate with taller aspect */
.hero-layout .slider-col--right .slider-track img:nth-child(6n+1) {
  aspect-ratio: 519 / 292;
}

.hero-layout .slider-col--right .slider-track img:nth-child(6n+2) {
  aspect-ratio: 329 / 292;
}

.hero-layout .slider-col--right .slider-track img:nth-child(6n+3) {
  aspect-ratio: 519 / 292;
}

.hero-layout .slider-col--right .slider-track img:nth-child(6n+4) {
  aspect-ratio: 519 / 292;
}

.hero-layout .slider-col--right .slider-track img:nth-child(6n+5) {
  aspect-ratio: 329 / 292;
}

.hero-layout .slider-col--right .slider-track img:nth-child(6n+6) {
  aspect-ratio: 519 / 292;
}

/* ===== GRADIENT FADE OVERLAY ===== */
.hero-layout .fade-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}

.hero-layout .fade-overlay--top {
  top: 0;
  height: 40.3125rem;
  background: linear-gradient(180deg, #020a0a 0%, rgba(2, 10, 10, 0) 50%, #020a0a 100%);
}

/* ===== REVENUE COUNTER TOOLTIP ===== */
#solution-hero .revenue-tooltip {
  position: absolute;
  left: 0;
  bottom: 2.25rem;
  z-index: 5;
  background: linear-gradient(180deg, rgba(0, 3, 75, 0.3) 0%, #00034b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5625rem 2.5625rem 1.5625rem 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: tooltip-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes tooltip-enter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

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

.hero-layout .revenue-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 0.75rem;
  letter-spacing: 0.047rem;
  text-transform: uppercase;
  color: #31c4ce;
}

.hero-layout .revenue-value-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hero-layout .revenue-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.2765rem;
  color: #ffffff;
  white-space: nowrap;
}

.hero-layout .revenue-trend {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.hero-layout .revenue-trend svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

.hero-layout .revenue-percent {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 0.71rem;
  letter-spacing: 0.0475rem;
  text-transform: uppercase;
  color: #22c55e;
  white-space: nowrap;
}

#solution-hero .revenue-tooltip {
  position: absolute;
  left: -8.0625rem;
  bottom: 4.25rem;
  min-width: 13.8125rem;
}

.hero-layout {
  overflow: unset;
}

.hero-layout .fade-overlay--top {
  height: calc(100% + 3.6rem);
  top: -3.5rem;
}

.barAnimation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shell .barAnimation::after,
.contact-hero .barAnimation::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg width='1597' height='396' viewBox='0 0 1597 396' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M366.513 395.21H328V10.21H366.513V395.21ZM1104.51 395.21H1066V10.21H1104.51V395.21ZM1391.51 395.21H1353V10.21H1391.51V395.21ZM202.513 384.511H164V20.9111H202.513V384.511ZM776.513 384.511H738V20.9111H776.513V384.511ZM1063.51 384.511H1025V20.9111H1063.51V384.511ZM530.513 373.815H492V31.6055H530.513V373.815ZM1432.51 373.815H1394V31.6055H1432.51V373.815ZM407.513 352.428H369V52.9941H407.513V352.428ZM1186.51 352.428H1148V52.9941H1186.51V352.428ZM161.512 331.038H122.999V74.3828H161.512V331.038ZM694.513 331.038H656V74.3828H694.513V331.038ZM981.513 331.038H943V74.3828H981.513V331.038ZM1596.51 331.038H1558V74.3828H1596.51V331.038ZM325.513 320.344H287V85.0771H325.513V320.344ZM1022.51 320.344H984V85.0771H1022.51V320.344ZM1309.51 320.344H1271V85.0771H1309.51V320.344ZM489.513 309.655H451V95.7666H489.513V309.655ZM1350.51 309.655H1312V95.7666H1350.51V309.655ZM79.5117 298.955H40.999V106.467H79.5117V298.955ZM612.513 298.955H574V106.467H612.513V298.955ZM817.513 298.955H779V106.467H817.513V298.955ZM1514.51 298.955H1476V106.467H1514.51V298.955ZM243.513 288.266H205V117.155H243.513V288.266ZM858.513 288.266H820V117.155H858.513V288.266ZM1145.51 288.266H1107V117.155H1145.51V288.266ZM448.513 277.566H410V127.855H448.513V277.566ZM1268.51 277.566H1230V127.855H1268.51V277.566ZM120.513 266.871H82V138.55H120.513V266.871ZM653.513 266.871H615V138.55H653.513V266.871ZM899.513 266.871H861V138.55H899.513V266.871ZM1555.51 266.871H1517V138.55H1555.51V266.871ZM284.513 256.183H246V149.238H284.513V256.183ZM940.513 256.183H902V149.238H940.513V256.183ZM1227.51 256.183H1189V149.238H1227.51V256.183ZM38.5127 245.482H0V159.938H38.5127V245.482ZM571.513 245.482H533V159.938H571.513V245.482ZM735.513 245.482H697V159.938H735.513V245.482ZM1473.51 245.482H1435V159.938H1473.51V245.482Z' fill='url(%23paint0_linear_11798_2709)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_11798_2709' x1='0' y1='202.71' x2='1596.51' y2='202.71' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23020DFD'/%3E%3Cstop offset='0.5' stop-color='%23020DFD' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23020DFD'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  height: 24rem;
  transform: translateY(-50%);
  top: calc(50% - 3rem);
  opacity: .22;
}

.shell .barAnimation::before,
.contact-hero .barAnimation::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 24rem;
  background: #010a0a;
  z-index: 1;
  top: 0;
  transition: 1s linear;
  transition-delay: .5s;
  transform: translateY(-50%);
  top: calc(50% - 3rem);
}

.contact-hero .barAnimation::after,
.contact-hero .barAnimation::before {
  top: calc(50% + 2rem);
}

.section.active .shell .barAnimation::before,
.contact-hero.active .barAnimation::before {
  right: -100%;
}

section.section.section--hero.solution-hero-section {
  overflow: hidden;
}

/* Home Hero Section and graphic */
.hero.hero--home {
  position: relative;
  width: 100%;
  min-height: unset;
  padding-block: clamp(2rem, 5vw, 4rem);
}

/* Background blurs */
.hero--home .hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--home .hero__bg-blur {
  position: absolute;
  filter: blur(2.4rem);
  opacity: 0.45;
}

.hero--home .hero__bg-blur--1 {
  width: 22.125rem;
  height: 51.3rem;
  right: 0;
  top: -6.5rem;
  background: linear-gradient(171.38deg, #020DFD -21.6%, #000565 23.27%, #020A0A 52.25%);
}

.hero--home .hero__bg-blur--2 {
  width: 19rem;
  height: 48.5rem;
  right: 20rem;
  top: -4.7rem;
  background: linear-gradient(180deg, #020a0a 21%, #000565 52%, #020dfd 78.4%, #020a0a 100%);
}

/* Hero layout */
.hero--home .hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

@media (min-width: 1040px) {
  .hero--home .hero__bg-blur {
    opacity: 0.71;
  }

  .hero--home .hero__bg-blur--2 {
    opacity: 0.6;
  }

  .hero--home .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

/* Left column */
.hero--home .hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero--home .hero__inner {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1040px) {
  .hero--home .hero__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 32rem;
  }
}

@media (min-width: 1200px) {
  .hero--home .hero__content {
    flex: 0 0 31.375rem;
  }

  .hero--home .hero__inner {
    padding-inline: 4.5rem;
  }
}

.hero--home .hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.hero--home .hero__title-accent {
  color: var(--color-scooter);
}

.hero--home .hero__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.85rem + 0.3vw, 1.125rem);
  line-height: 1.55;
  color: var(--color-neutral-lighter);
}

.hero--home .hero__description strong {
  font-weight: 700;
  color: var(--color-neutral-lighter);
}

.hero--home .hero__actions {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

/* ==========================================================================
   6. Hero Graphic (Right column)
   ----------------------------------------------------------------------------
   Critical responsive technique: every child uses `em` units so the entire
   scene scales proportionally with the graphic's font-size. We tune the
   graphic's font-size per layout mode so cards always fit, never overlap.

   Design baseline: graphic = 744px wide → font-size = 16px (1rem).
   ========================================================================== */
.hero--home .hero__graphic {
  position: relative;
  width: 100%;
  max-width: 46.5rem;
  aspect-ratio: 744 / 659;
  margin: 0 auto;
  flex-shrink: 0;
  /* Mobile/tablet stacked layout: graphic now fills more of the viewport. font-size scaled up so cards grow proportionally with the wider graphic. */
  font-size: clamp(0.5rem, 1.8vw + 0.05rem, 0.95rem);
}

/* Side-by-side layout (≥65rem / 1040px): graphic shares row with content.
   Graphic width grows with viewport; we pin font-size so cards scale with it. */
@media (min-width: 1040px) {
  .hero--home .hero__graphic {
    flex: 1 1 10%;
    margin: 0;
    font-size: clamp(0.65rem, 1.4vw - 0.25rem, 1rem);
  }
}

/* Pin to design size at full desktop */
@media (min-width: 1440px) {
  .hero--home .hero__graphic {
    flex: 0 0 46.5rem;
    font-size: 1rem;
  }
}

/* ----- Rotating circle ----- */
.hero--home .graphic__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 77.88%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.hero--home .graphic__circle-svg {
  width: 100%;
  height: 100%;
}

.hero--home .graphic__arc {
  transform-origin: 50% 50%;
  animation: rotateArc 10s linear infinite;
}

@keyframes rotateArc {
  from {
    transform: rotate(190deg);
  }

  to {
    transform: rotate(-170deg);
  }
}

/* ----- Photos ----- */
.hero--home .graphic__photos {
  position: absolute;
  inset: 0;
}

.hero--home .graphic__photo {
  position: absolute;
  border-radius: 0.4205rem;
  overflow: hidden;
}

.hero--home .graphic__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--home .graphic__photo--top-left {
  top: 20.64%;
  left: 14.52%;
  width: 37.18%;
  height: 23.61%;
}

.hero--home .graphic__photo--bottom-left {
  bottom: 15.02%;
  left: 14.52%;
  width: 37.19%;
  height: 37.27%;
}

.hero--home .graphic__photo--right {
  top: 21.55%;
  left: 53.96%;
  width: 31.56%;
  height: 54.11%;
}

.hero--home .graphic__photo-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
}

/* ----- Pulse indicators ----- */
.hero--home .graphic__pulse {
  position: absolute;
  width: 12.9%;
  aspect-ratio: 1;
  display: block;
}

.hero--home .graphic__pulse--1 {
  left: 54.11%;
  top: 36.7%;
}

.hero--home .graphic__pulse--2 {
  left: 25.3%;
  top: 27%;
}

.hero--home .graphic__pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.0625rem solid rgba(49, 196, 206, 0.3);
  display: block;
}

.hero--home .graphic__pulse-ring--outer {
  inset: 0;
  animation: pulseRing1 2.5s ease-out infinite;
}

.hero--home .graphic__pulse-ring--mid {
  inset: 16.67%;
  animation: pulseRing1 2.5s ease-out infinite 0.4s;
}

.hero--home .graphic__pulse-ring--inner {
  inset: 37.5%;
  background-color: rgba(49, 196, 206, 0.6);
  border-color: var(--color-scooter);
  animation: pulseRing1 2.5s ease-out infinite 0.8s;
}

@keyframes pulseRing1 {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   7. Cards (positioned over graphic)
   All sizing in `em` — scales with .hero__graphic font-size
   ========================================================================== */
.hero--home .card {
  position: absolute;
  border-radius: 0.5em;
  backdrop-filter: blur(0.75em);
  -webkit-backdrop-filter: blur(0.75em);
  z-index: 5;
}

/* ---------- ACT Capture (top-left) ---------- */
.hero--home .card--act {
  top: 13.75%;
  left: 9.2%;
  padding: 0.6833em;
  background: var(--opacity-neutral-15);
  border: 0.0526em solid rgba(49, 196, 206, 0.2);
  border-radius: 0.3363em;
  display: flex;
  flex-direction: column;
  gap: 0.6971em;
  backdrop-filter: blur(0.3485em);
}

.hero--home .card__chip {
  display: flex;
  align-items: center;
  gap: 0.631em;
}

.hero--home .card__chip-icon {
  width: 1.8923em;
  height: 1.8923em;
  border-radius: 50%;
  background-color: var(--color-scooter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding-top: 0.1em;
}

.hero--home .card__chip-icon svg {
  width: 0.875em;
  height: 0.875em;
}

.hero--home .card__chip-label {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.75em;
  line-height: 1.4;
  color: var(--color-white);
  white-space: nowrap;
}

.hero--home .card__act-data {
  display: flex;
  flex-direction: column;
  gap: 0.2103em;
}

.hero--home .card__act-row {
  display: flex;
  align-items: center;
  gap: 0.4205em;
  font-size: 0.6308em;
  white-space: nowrap;
}

.hero--home .card__act-key {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.7;
}

.hero--home .card__act-value {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: #e2e8f0;
  line-height: 1.33;
  margin-left: 0;
}

.hero--home .card--act .card__act-data {
  opacity: 0;
  transform: translateY(0.375em);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.hero--home .card--act.is-triggered .card__act-data {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Bar Chart (bottom-left) ---------- */
.hero--home .card--chart {
  bottom: 10.17%;
  left: 10.62%;
  width: 13.5em;
  padding: 0.8858em;
  background: rgba(2, 10, 10, 0.4);
  border: 0.0365em solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5843em;
  backdrop-filter: blur(0.2921em);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5906em;
}

.hero--home .card__chart-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0;
}

.hero--home .card__bars {
  display: flex;
  gap: 0.4429em;
  height: 6.7912em;
  align-items: flex-end;
}

.hero--home .card__bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3691em;
  height: 100%;
  justify-content: flex-end;
  min-width: 0;
}

.hero--home .card__bar {
  width: 100%;
  border-radius: 0.2214em;
  height: 0.375em;
  display: block;
  transition: height 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--home .card__bar--gold {
  background: linear-gradient(to bottom, #ffb64c, rgba(255, 182, 76, 0));
}

.hero--home .card__bar--teal {
  background: linear-gradient(to bottom, var(--color-scooter), rgba(49, 196, 206, 0));
}

.hero--home .card__bar-label {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.5625em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  min-height: 1.2088em;
}

/* ---------- Notification (bottom-right) ---------- */
.hero--home .card--notification {
  bottom: 6.53%;
  right: 6.85%;
  width: 15.625em;
  padding: 0.6912em 0.9013em;
  background: linear-gradient(to bottom, rgba(0, 3, 75, 0), #00034b);
  border: 0.0603em solid rgba(255, 255, 255, 0.15);
  border-radius: 0.4819em;
  backdrop-filter: blur(0.6024em);
  box-shadow: 0 1.5058em 3.0115em rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.6024em;
}

.hero--home .card__notif-header {
  display: flex;
  align-items: center;
  gap: 0.4819em;
  padding-right: 1.64em;
}

.hero--home .card__notif-avatar {
  width: 1.6821em;
  height: 1.6821em;
  border-radius: 0.7228em;
  background-color: var(--color-scooter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero--home .card__notif-avatar svg {
  width: 0.875em;
  height: 0.875em;
}

.hero--home .card__notif-name {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: -0.021em;
}

.hero--home .card__notif-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.625em;
  line-height: 1.4;
  color: #e2e8f0;
  margin-bottom: 0;
}

.hero--home .card__notif-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  border-top: 0.0603em solid rgba(255, 255, 255, 0.1);
  padding-top: 0.7831em;
}

.hero--home .card__notif-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.3614em;
}

.hero--home .card__notif-timer svg {
  width: 0.625em;
  height: 0.75em;
  flex-shrink: 0;
}

.hero--home .card__notif-countdown {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.625em;
  line-height: 1.45;
  color: var(--color-california);
  text-transform: uppercase;
  letter-spacing: 0.0301em;
  white-space: nowrap;
}

.hero--home .card__notif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.241em 0.7228em;
  background-color: var(--color-blue);
  border-radius: 0.1205em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.625em;
  line-height: 1.45;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.hero--home .card__notif-btn:hover {
  box-shadow: 0 0 0.75em rgba(2, 13, 253, 0.5);
}

.hero--home .card--notification .card__notif-text,
.hero--home .card--notification .card__notif-footer {
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--home .card--notification .card__notif-footer {
  transition-delay: 0.15s;
}

.hero--home .card--notification.is-triggered .card__notif-text,
.hero--home .card--notification.is-triggered .card__notif-footer {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Counter (top-right) ---------- */
.hero--home .card--counter {
  top: 3.95%;
  right: 6.32%;
  width: 17.4375em;
  padding: 1.0625em;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625em solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5em;
  backdrop-filter: blur(0.75em);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.hero--home .card__counter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}

.hero--home .card__counter-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.77;
  color: var(--color-white);
  white-space: nowrap;
}

.hero--home .card__live {
  display: inline-flex;
  align-items: center;
  gap: 0.3795em;
}

.hero--home .card__live-dot {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #dc2626;
  display: block;
}

.hero--home .card__live-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.625em;
  line-height: 1.14;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.0949em;
}

.hero--home .card--counter.is-triggered .card__live-dot {
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0.5em 0.1875em rgba(220, 38, 38, 0.3);
  }
}

.hero--home .card__counter-body {
  display: flex;
  flex-direction: column;
  gap: 0.1897em;
}

.hero--home .card__counter-number {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.52;
  color: var(--color-white);
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--home .card__counter-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.625em;
  line-height: 1.4;
  color: var(--color-scooter);
}

.hero--home .card__counter-icon {
  width: 1em;
  height: 1.3125em;
  display: block;
}

.hero--home .card__counter-icon svg {
  width: 100%;
  height: 100%;
}

/* Homepage How it works services */
.how-it-works .services {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ── Card ─────────────────────────────────────────────── */
.how-it-works .card {
  position: relative;
  background: var(--color-madison-darker);
  border-radius: 1rem;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 81rem;
  overflow: hidden;
}

.how-it-works .card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, transparent 0rem, transparent 2.125rem, rgba(12, 36, 87, 0.28) 2.125rem, rgba(12, 36, 87, 0.28) 3rem);
}

/* ── Header ───────────────────────────────────────────── */
.how-it-works .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 53.375rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.how-it-works .headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}

.how-it-works .headline em {
  font-style: normal;
  color: var(--color-scooter);
}

.how-it-works .subline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-neutral-lighter);
  text-align: center;
  line-height: 1.5;
}

/* ── Content row ──────────────────────────────────────── */
.how-it-works .content-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Steps ────────────────────────────────────────────── */
.how-it-works .steps-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 43.75rem;
  flex-shrink: 0;
}

.how-it-works .steps-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.how-it-works .step {
  width: 50%;
  padding: 1.5rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.how-it-works .btn {
  align-self: flex-start;
}

.how-it-works .step:hover {
  opacity: 0.82;
}

.how-it-works .step-num {
  font-family: var(--font-step);
  font-size: 0.875rem;
  color: var(--color-neutral-light);
  line-height: 1.5rem;
  transition: color 0.3s;
  margin: 0;
}

.how-it-works .step-progress {
  height: 0.125rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.125rem;
  overflow: hidden;
}

.how-it-works .step-progress-fill {
  height: 100%;
  background: var(--color-scooter);
  width: 0%;
}

.how-it-works .step.active .step-progress-fill {
  animation: fillBar 4000ms linear forwards;
}

@keyframes fillBar {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}

.how-it-works .step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0.015rem;
  transition: color 0.3s;
  margin: 0;
}

.how-it-works .step.active .step-title {
  color: var(--color-scooter);
}

.how-it-works .step.active .step-num {
  color: var(--color-scooter);
}

.how-it-works .step-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-neutral-lightest);
  line-height: 1.5;
}

/* ── Visual panel ─────────────────────────────────────── */
.how-it-works .visual {
  width: 29.25rem;
  height: 31rem;
  flex-shrink: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

/* ── Slides ───────────────────────────────────────────── */
.how-it-works .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}

.how-it-works .slide p {
  margin: 0;
}

.how-it-works .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.how-it-works .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* gradient vignette */
.how-it-works .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(2, 10, 10, 0.05) 40%, rgba(2, 10, 10, 0.6) 100%);
  pointer-events: none;
}

/* ── Glass card base ──────────────────────────────────── */
.how-it-works .overlay-card {
  position: absolute;
  z-index: 10;
  backdrop-filter: blur(0.71875rem);
  -webkit-backdrop-filter: blur(0.71875rem);
  background: linear-gradient(180deg, rgba(0, 3, 75, 0) 0%, #00034b 100%);
  border: 0.071625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.573rem;
  box-shadow: 0 1.7875rem 3.58125rem rgba(0, 0, 0, 0.28);
  padding: 1.1875rem;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

/* float keyframes */
@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.625rem);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.5625rem);
  }
}

@keyframes upDownScale {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.625rem);
  }
}

@media (max-width: 767px) {
  @keyframes upDownScale {

    0%,
    100% {
      transform: translateY(0) scale(0.6);
    }

    50% {
      transform: translateY(-0.625rem) scale(0.6);
    }
  }
}

/* .how-it-works .float-a { animation: floatA 4s   ease-in-out infinite; }
.how-it-works .float-b { animation: floatB 5s   ease-in-out infinite 0.8s; }
.how-it-works .float-c { animation: floatA 4.5s ease-in-out infinite 1.4s; }
.how-it-works .float-d { animation: floatB 3.8s ease-in-out infinite 0.3s; } */
.how-it-works .overlay-card {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.how-it-works .slide.active .overlay-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* shared atoms */
.how-it-works .icon-circle {
  border-radius: 50%;
  background: var(--color-scooter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
}

.how-it-works .icon-circle :is(img, svg) {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.how-it-works .row-line {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.how-it-works .chip-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-white);
  line-height: 1.25rem;
  white-space: nowrap;
}

.how-it-works .badges {
  display: flex;
  gap: 0.4375rem;
  flex-wrap: wrap;
}

.how-it-works .chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  height: 1.5625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0 0.625rem;
}

.how-it-works .chip :is(img, svg) {
  width: 0.6875rem;
  height: 0.6875rem;
}

.how-it-works .chip span {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ── Slide 0: ACT Captured ────────────────────────────── */
.how-it-works .card-captured {
  left: 1.1875rem;
  bottom: 2.25rem;
  width: 19.375rem;
}

.how-it-works .pulse-area {
  position: relative;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works .pulse-ring1 {
  position: absolute;
  width: 4.25rem;
  height: 4.25rem;
  border: 2px solid var(--color-scooter);
  border-radius: 50%;
  opacity: 0.26;
  animation: pulseRing 2.2s ease-out infinite;
}

.how-it-works .pulse-ring2 {
  position: absolute;
  width: 2.125rem;
  height: 2.125rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  opacity: 0.8;
}

.how-it-works .pulse-center {
  position: relative;
  z-index: 1;
  width: 2.875rem;
  height: 2.875rem;
  background: var(--color-scooter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.625rem rgba(49, 196, 206, 0.65);
}

.how-it-works .pulse-center :is(img, svg) {
  width: 1.375rem;
  height: 1.375rem;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.88);
    opacity: 0.26;
  }

  50% {
    transform: scale(1.14);
    opacity: 0.07;
  }

  100% {
    transform: scale(0.88);
    opacity: 0.26;
  }
}

/* ── Slide 1: Syncing to CRM ──────────────────────────── */
.how-it-works .card-deliver {
  left: 1.1875rem;
  bottom: 2.25rem;
  width: 19.375rem;
}

.how-it-works .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  height: 0.5rem;
  overflow: hidden;
}

.how-it-works .progress-bar-fill {
  height: 100%;
  background: var(--color-scooter);
  box-shadow: 0 0 0.625rem var(--color-scooter);
  border-radius: 999px;
  width: 60%;
  animation: progressPulse 2.4s ease-in-out infinite;
}

@keyframes progressPulse {

  0%,
  100% {
    width: 60%;
  }

  60% {
    width: 83%;
  }
}

.how-it-works .routing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-it-works .routing-left {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}

.how-it-works .routing-left svg {
  width: 0.875rem;
  height: 0.875rem;
}

.how-it-works .routing-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1rem;
}

.how-it-works .routing-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff9800;
  line-height: 1rem;
}

.how-it-works .dot-track {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 0.25rem;
}

.how-it-works .moving-dot {
  position: absolute;
  top: -0.1875rem;
  width: 0.375rem;
  height: 0.375rem;
  background: #ff9800;
  border-radius: 50%;
  box-shadow: 0 0 0.4375rem var(--color-blue);
  animation: dotMove 1.8s linear infinite;
}

.how-it-works .moving-dot:nth-child(2) {
  animation-delay: 0.9s;
}

@keyframes dotMove {
  0% {
    left: 0%;
    opacity: 0;
  }

  8% {
    opacity: 0.9;
  }

  92% {
    opacity: 0.9;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ── Slide 2: Welcome back / Engage ───────────────────── */
.how-it-works .card-engage {
  left: 0.9375rem;
  bottom: 2.25rem;
  width: 20.625rem;
  border-radius: 0.5625rem;
}

.how-it-works .engage-top {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}

.how-it-works .engage-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-scooter);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works .engage-icon :is(img, svg) {
  width: 1.125rem;
  height: 1.125rem;
}

.how-it-works .engage-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-white);
  letter-spacing: -0.025rem;
  white-space: nowrap;
}

.how-it-works .engage-sub {
  font-size: 0.75rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 0;
}

.how-it-works .engage-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-it-works .expires-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.how-it-works .expires-icon {
  width: 0.6875rem;
  height: 0.8125rem;
}

.how-it-works .expires-text {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ff9800;
  text-transform: uppercase;
  letter-spacing: 0.034375rem;
}

.how-it-works .claim-btn {
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03125rem;
  padding: 0.3125rem 0.8125rem;
  border-radius: 0.1875rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.how-it-works .claim-btn:hover {
  opacity: 0.82;
}

/* ── Slide 3: Profile Enriched / Analyze ──────────────── */
.how-it-works .card-analyze {
  left: 1.1875rem;
  bottom: 1.75rem;
  top: auto;
  width: 19.375rem;
}

.how-it-works .enrich-header {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.how-it-works .enrich-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.how-it-works .enrich-green-dot {
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  width: 0.6875rem;
  height: 0.6875rem;
  background: #00c950;
  border: 2px solid #020a0a;
  border-radius: 50%;
}

.how-it-works .enrich-txt {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  justify-content: center;
}

.how-it-works .enrich-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-white);
}

.how-it-works .enrich-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.68);
}

.how-it-works .progress-rows {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.how-it-works .prow-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3125rem;
}

.how-it-works .prow-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  height: 0.375rem;
  overflow: hidden;
}

.how-it-works .prow-fill {
  height: 100%;
  background: var(--color-scooter);
  border-radius: 999px;
  width: 0;
  transition: width 1.3s cubic-bezier(.4, 0, .2, 1);
}

.how-it-works .slide.active .prow-fill {
  width: var(--w);
}

/* mobile */
.how-it-works .mobile-visual .slide .prow-fill {
  width: 0;
}

.how-it-works .mobile-visual.active .slide.active .prow-fill {
  width: var(--w);
}

.how-it-works .tags-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.625rem;
  display: flex;
  gap: 0.375rem;
}

.how-it-works .tag {
  font-size: 0.625rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.125rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.how-it-works .tag.hi {
  background: rgba(49, 196, 206, 0.2);
  color: var(--color-white);
}

/* ── Slide dots ───────────────────────────────────────── */
.how-it-works .dots {
  position: absolute;
  bottom: 0.875rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  gap: 0.375rem;
}

.how-it-works .dot-nav {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.how-it-works .dot-nav.active {
  background: var(--color-scooter);
  transform: scale(1.45);
}

/* small fix */
.hero--home .hero__title {
  margin: 0;
}

.btn__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hero--home .hero__description {
  margin-bottom: 0;
}

.who-header__title span {
  display: block;
}

.who-floating-card p:empty {
  display: none;
}

.who-floating-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pulse span {
  border: 0.125rem solid rgba(49, 196, 206, .75);
}

.pulse span:nth-child(2) {
  border: 0.125rem solid rgba(49, 196, 206, .9);
}

/* Legal Page */
.legal-content {
  padding: 2rem 0;
}

.legal-content .shell::before,
.legal-content .shell::after,
.contact-map .shell::before,
.contact-map .shell::after {
  top: -12rem;
}

.legal-content a:hover {
  color: var(--color-scooter);
}

/* blue wave pattern */
.wave-pattern-divider {
  --wave-height: 28rem;
  --wave-position-y: 100%;
  --wave-reveal-speed: 2.2s;
  position: absolute;
  left: 0;
  top: var(--wave-position-y);
  transform: translateY(-50%);
  width: 100%;
  height: var(--wave-height);
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}

/* STATIC SVG */
.wave-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* MASK EFFECT */
.wave-pattern svg {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 1) 100%);
}

/*  THE FIGMA REVEAL*/
.wave-pattern-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2, 10, 10, 1) 0%, rgba(2, 10, 10, 1) 82%, rgba(2, 10, 10, 0.92) 90%, rgba(2, 10, 10, 0.5) 96%, rgba(2, 10, 10, 0) 100%);
  ;
  z-index: 2;
  transition: transform 2.2s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: transform;
}

/* ACTIVE */
.wave-pattern-divider.is-visible::before {
  transform: translateX(100%);
}

.hero__graphic,
.who-panel__visual,
.who-panel-wrap .who-panel::after,
.how-it-works .slide,
.how-it-works .overlay-card,
.how-it-works .dots {
  pointer-events: none;
  user-select: none;
}

.product-privacy .product-privacy__inner h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.4;
}

.pt-0 {
  padding-top: 0;
}

/* Distinct graphic */
.distinct-graphic {
  position: relative;
  width: 100%;
  max-width: 39.6875rem;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}

.distinct-graphic__container {
  width: 100%;
  aspect-ratio: 635 / 313;
  background: #040d20;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.distinct-graphic__container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 253, 0) 54.47%, rgba(2, 13, 253, 0.4) 137.86%);
  z-index: 1;
  pointer-events: none;
}

/* ── Browser Mockup ── */
.distinct-graphic__browser {
  position: absolute;
  top: 1.6875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22.375rem;
  background: #0b0f14;
  border: 0.052rem solid #1f2937;
  border-radius: 0.828rem;
  overflow: hidden;
  box-shadow: 0 0.93rem 2.07rem -0.62rem rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.distinct-graphic__titlebar {
  background: #0f172a;
  border-bottom: 0.052rem solid #1f2937;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.8125rem;
}

.distinct-graphic__dots {
  display: flex;
  gap: 0.3125rem;
}

.distinct-graphic__dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

.distinct-graphic__dots span:nth-child(1) {
  background: #ef4444;
}

.distinct-graphic__dots span:nth-child(2) {
  background: #eab308;
}

.distinct-graphic__dots span:nth-child(3) {
  background: #22c55e;
}

.distinct-graphic__browser-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  text-align: center;
}

.distinct-graphic__browser-spacer {
  width: 2.5rem;
}

.distinct-graphic__browser-content {
  padding: 1.875rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #0b0f14;
  min-height: 16.25rem;
}

/* ── Profile Header ── */
.distinct-graphic__profile-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.875rem;
  border-bottom: 0.06rem solid rgba(255, 255, 255, 0.1);
}

.distinct-graphic__profile-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #020dfd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.6rem 0.9rem rgba(0, 0, 0, 0.1), 0 0.24rem 0.36rem rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.distinct-graphic__profile-avatar svg {
  width: 1.1875rem;
  height: 1.1875rem;
}

.distinct-graphic__profile-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.38;
  color: #ffffff;
}

.distinct-graphic__profile-sub {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.29;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Blurred Pills ── */
.distinct-graphic__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  filter: blur(0.1875rem);
}

.distinct-graphic__pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.39rem 0.71rem;
  background: rgba(255, 255, 255, 0.05);
  border: 0.078rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.9375rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.distinct-graphic__pill svg {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
}

/* ── Profile Enrichment Card ── */
.distinct-graphic__card {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  width: 27.625rem;
  background: #020a0a;
  border: 0.072rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.575rem;
  padding: 1.125rem;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  box-shadow: 0 1.25rem 2.79rem -0.84rem rgba(0, 0, 0, 0.4);
  z-index: 2;
  overflow: hidden;
}

.distinct-graphic__card-avatar {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.7rem 1.045rem rgba(0, 0, 0, 0.1), 0 0.28rem 0.42rem rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.distinct-graphic__card-avatar img,
.distinct-graphic__card-avatar svg {
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
  border-radius: 0;
}

.distinct-graphic__card-progress {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

.distinct-graphic__progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.125rem;
  white-space: nowrap;
}

.distinct-graphic__progress-label {
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.044rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.035rem;
}

.distinct-graphic__progress-value {
  font-weight: 800;
  font-size: 0.8375rem;
  line-height: 1.1125rem;
  color: #31c4ce;
}

.distinct-graphic__progress-track {
  width: 100%;
  height: 0.43rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.07rem solid rgba(255, 255, 255, 0.2);
  border-radius: 62.125rem;
  overflow: hidden;
}

.distinct-graphic__progress-fill {
  height: 100%;
  width: 0%;
  background: #31c4ce;
  border-radius: 62.125rem;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.distinct-graphic__progress-fill.animate {
  width: 100%;
}

/* solution page revenue counter card */
.solutions-split__media.anime-chart {
  position: relative;
}

.revenue-counter {
  backdrop-filter: blur(0.75rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  animation: upDownScale 4s ease-in-out infinite;
}

.revenue-counter .revenue-counter-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5625rem 2.5625rem 1.5625rem 1.5625rem;
  position: relative;
  border-radius: inherit;
}

.revenue-counter .border-overlay {
  position: absolute;
  inset: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.revenue-counter .label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 0.7115rem;
  letter-spacing: 0.04743rem;
  text-transform: uppercase;
  color: #b3b5b5;
}

.revenue-counter .container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.revenue-counter .revenue-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.2765rem;
  color: white;
  white-space: nowrap;
}

.revenue-counter .revenue-trend {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.revenue-counter .trending-icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

.revenue-counter .percentage {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 0.7115rem;
  letter-spacing: 0.04743rem;
  text-transform: uppercase;
  color: #ff9800;
  white-space: nowrap;
}

.error-banner {
  padding: 2rem 0;
}

.error-banner .shell::before,
.error-banner .shell::after {
  top: -13.2rem;
}

.error-code {
  color: var(--color-white);
}

.error-code .highlight {
  color: var(--color-scooter);
}

article.about-team__feature:hover .about-team__card .about-team__card-head>div,
article.about-team__feature.is-expanded .about-team__card .about-team__card-head>div {
  transform: translateY(0rem);
}

@media (min-width: 1366px) {
  .hero--home .hero__graphic {
    flex: 0 0 42.75rem;
  }

  .hero--home .hero__content {
    flex: 0 0 39rem;
    max-width: 39rem;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1920px) {
  .heading-feature {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero__info figure img {
    border-radius: 0;
    transform: scale(1.355) translate(-2.5rem, -1.875rem);
    z-index: 2;
    position: relative;
    width: 100%;
  }

  .hero--home .hero__inner {
    padding: 0;
  }

  .who-panel__text h3 {
    font-size: 2.5rem;
  }

  .cta-card__title {
    font-size: 4rem;
  }

  .product-cap-card__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  header #site-header-menu {
    position: absolute;
    top: 88px;
    left: 30px;
    min-height: calc(100vh - 88px);
    min-height: auto;
    width: 100%;
    min-width: calc(100% + 50px);
    left: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  #main {
    margin-top: 88px;
  }

  .btn--header-cta {
    max-width: 12.5rem;
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .about-team__photo-wrap {
    height: 17.125rem;
  }

  .about-team__card {
    height: 6.25rem;
  }
}

@media (max-width: 1199px) {
  .hero__copy {
    padding: 0;
  }

  section.hero.section.section--hero {
    padding-top: 0;
    margin-top: -5rem;
    padding-bottom: 30px;
  }

  .section--value,
  .section--who,
  .section--compliance,
  .section--works,
  .section--about,
  .section--resources {
    padding: 40px 0;
  }

  .value-header__copy {
    max-width: 100%;
  }

  .value-header {
    align-items: center;
  }

  .who-panel__visual {
    order: 0;
    width: 100%;
  }

  .who-panel__visual img {
    max-width: 100%;
  }

  .who-panel__text {
    order: 1;
  }

  .who-panel__grid {
    gap: 10px;
  }

  .badge-row img {
    width: 8.25rem;
    height: 8.25rem;
  }

  .heading-compliance {
    font-size: 32px;
  }

  .subline-compliance {
    max-width: 100%;
  }

  .works-card {
    padding: 3rem;
  }

  .works-steps {
    flex: 1 1 100%;
    order: 2;
  }

  .about__visual {
    flex: 1 1 100%;
    text-align: center;
  }

  .about__grid {
    justify-content: center;
  }

  .section--about {
    padding-bottom: 50px;
  }

  .resource-list,
  .resource-feature {
    flex: 1 1 100%;
  }

  .about-team__grid {
    grid-template-columns: minmax(13.25rem, 1fr) repeat(3, minmax(0, 1fr));
    ;
  }

  article.about-team__feature:hover .about-team__card {
    overflow: auto;
  }

  .about-team__photo-wrap {
    width: 100%;
    height: auto;
  }

  .shell.about-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 50%);
  }

  .about-hero {
    padding: 6.875rem 0 2.5rem;
  }

  .about-story__grid {
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 50%);
  }

  .about-vmv {
    padding-bottom: 2.5rem;
  }

  .about-quote {
    padding-top: 2.5rem;
  }

  .about-team {
    padding: 4rem 0 7rem;
  }

  .about-faq {
    padding: 6rem 0 4rem;
  }

  .section--cta {
    padding: 0 .75rem 4rem;
  }

  .about-touch__card::before {
    width: 35.96875rem;
    height: 16.90625rem;
  }

  .about-touch__card::after {
    width: 45.34375rem;
    height: 26.34375rem;
  }

  .about-touch .about-touch__card {
    padding: 5rem;
  }

  .about-touch .shell::before {
    height: 15rem;
  }

  /* ACT Box */
  .act-box {
    width: 100%;
    height: 26.25rem;
    max-width: 38.625rem;
    align-self: center;
  }

  .act-box .act-header {
    width: min(29.8125rem, 85%);
  }

  .act-box .act-border-container {
    left: 50%;
    transform: translate(-50%, 16px);
    width: min(29.875rem, 85%);
  }

  .act-box .act-center-line {
    left: 50%;
  }

  .act-box .act-scroll-area {
    left: 50%;
    transform: translateX(-50%);
    width: min(21.125rem, 65%);
    bottom: 0.125rem;
  }

  .act-box .fade-top-inner {
    left: 50%;
    transform: translateX(-50%);
    width: min(29.875rem, 86%);
  }

  /* Product Page */
  .graphic-stage {
    height: 26.25rem;
  }

  .graphic-stage .card--capture {
    left: 1.25rem;
    top: 1.25rem;
  }

  .graphic-stage .card--normalizer {
    left: 24.375rem;
    top: 1rem;
  }

  .graphic-stage .card--profile {
    left: 13.125rem;
    top: 13.125rem;
  }

  .graphic-stage .card--roi {
    left: 35rem;
    top: 11.5625rem;
    width: 18.75rem;
  }

  .product-hero {
    padding-bottom: 2rem;
  }

  .product-overview {
    padding: 2rem 0 4rem;
  }

  .product-overview__top {
    grid-template-columns: minmax(0, 50%) minmax(17.5rem, 1fr);
  }

  .product-capabilities {
    padding: 4rem 0 2rem;
  }

  .product-integrations {
    padding: 3rem 0;
  }
  .product-integrations.home-logo-scroll{padding: 2.5rem 0;}

  .act-box .act-header {
    transform: translate(-50%, 6px);
    position: relative;
    z-index: 6;
  }

  .act-box .act-scroll-area {
    height: unset;
  }

  /* .act-box .act-border-container{width:29.01rem;top:24%;} */
  .act-box .fade-top-inner {
    width: 80%;
  }

  .hero-layout {
    width: 100%;
    max-width: 36.5625rem;
    height: 35rem;
  }

  .hero-layout .slider-grid {
    position: relative;
    top: 0;
    height: 100%;
  }

  .hero__visual {
    height: 50rem;
  }

  .hero-layout {
    height: 50rem;
  }

  section.section.section--hero.solution-hero-section {
    margin-top: 0;
    padding: 1.875rem 0 4rem;
  }

  .how-it-works .content-row {
    flex-direction: column-reverse;
    align-items: center;
  }

  .solutions-split__media img {
    object-fit: contain;
  }

  #contact-us-hero-banner_block_896eb89c8d2bb4202945cb568fd1af3d {
    overflow: hidden;
  }

  .about-team__name {
    font-size: 1rem;
  }

  article.about-team__feature:hover .about-team__card .about-team__card-head>div,
  article.about-team__feature.is-expanded .about-team__card .about-team__card-head>div {
    transform: translateY(.1rem);
  }
}

@media screen and (min-width:992px) and (max-width: 1024px) {
  /* .act-box .act-border-container{width:24.8rem;} */
}

@media (max-width: 1100px) {
  .how-it-works .card {
    padding: 3.75rem 1.5rem;
  }

  .how-it-works .content-row {
    flex-direction: column-reverse;
    align-items: center;
  }

  .how-it-works .steps-col {
    width: 100%;
  }

  .how-it-works .visual {
    width: 100%;
    max-width: 30rem;
    height: 27.5rem;
  }
}

@media (max-width: 991px) {
  header #site-header-menu {
    top: 0;
  }

  .site-header.site-header--nav-open {
    background: #010a0a;
  }

  .cta-card {
    padding: 5rem;
  }

  .cta-card::after {
    background-size: 100%;
    background-position: center 90px;
    background-repeat: no-repeat;
  }

  .footer__grid {
    gap: 12px;
  }

  .footer__cta {
    flex: unset;
    width: 50%;
    margin-top: 30px;
  }

  .footer__links {
    gap: 23px;
    flex: unset;
    width: 50%;
  }

  .badge-row {
    gap: 1rem;
  }

  .footer__brand {
    flex: 1 1 27%;
    max-width: 23.5rem;
  }

  span.who-tab__title {
    line-height: 1.25;
    margin-bottom: .25rem;
  }

  .about-hero {
    padding: 1.875rem 0;
  }

  .about-vmv__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .about-quote__heading {
    margin-bottom: 2rem;
  }

  .about-quote__text {
    min-height: unset;
  }

  .about-quote {
    padding: 0rem 0 3rem;
  }

  .about-team {
    padding: 2.26rem 0 5rem;
  }

  .about-team__grid {
    grid-template-columns: minmax(13.25rem, 1fr) repeat(2, minmax(0, 1fr));
    gap: 5rem 2rem;
  }

  .about-faq {
    padding: 3rem 0;
  }

  .about-touch__card::after {
    width: 31.34375rem;
    height: 16.34375rem;
  }

  .about-touch__card::before {
    width: 27.34375rem;
    height: 13.34375rem;
  }

  .about-touch .shell::before {
    height: 12rem;
  }

  /* Graphics */
  .graphic-stage {
    width: 100%;
    height: auto;
    min-height: 37.5rem;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .graphic-stage .card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 25rem;
    margin: 0 auto;
  }

  .graphic-stage .grid-lines {
    display: none;
  }

  .graphic-stage .accent-sq {
    display: none;
  }

  .graphic-stage .card {
    width: 48% !important;
  }

  .graphic-stage {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    min-height: unset;
    transform: scale(0.9);
    overflow: hidden;
  }

  .graphic-stage .grid-lines {
    display: block;
  }

  .graphic-stage .accent-sq {
    display: block;
  }

  .act-box .act-header .subtitle {
    font-size: 14px;
  }

  /* .act-box .act-border-container{width:calc(100% - 56px);} */
  .product-privacy__badges img {
    width: 7rem;
    padding-top: 0.1rem;
  }

  .act-box .act-card-title {
    white-space: pre-line;
  }

  #solution-hero .revenue-tooltip {
    left: -6rem;
  }

  .solutions-split {
    padding: 2rem 0;
  }

  .solutions-split .shell {
    gap: 2rem;
  }

  .solutions-split .shell .solutions-split__copy {
    order: 2;
  }

  section.section.section--hero.solution-hero-section {
    margin-top: 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 20.75rem) minmax(0, 1fr);
  }

  .about-team__card {
    padding: 1rem;
  }

  .who-panel[hidden] {
    display: block !important;
  }

  .who-panel-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0;
    background-color: transparent;
  }

  .who-panel-wrap .who-panel::after {
    display: none;
  }

  .who-panel::before {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: -1.25rem;
    right: 0;
    width: calc(100% + 3.5rem);
    height: .0625rem;
    background: rgb(255 255 255 / 10%);
  }

  .who-se-stat__body p:empty {
    display: none;
  }

  .who-se-stat__head p {
    margin-bottom: 0;
  }

  .who-tabs {
    display: none;
  }

  .who-tabs-wrap {
    margin: 0;
  }

  .who-panel__visual {
    width: 100%;
  }

  .who-panel__visual img {
    max-width: 100%;
  }

  body.nav-open {
    position: relative;
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(2 10 10 / 51%);
    z-index: 99;
    display: block;
  }

  header #site-header-menu {
    position: fixed;
    top: 80px;
    padding-left: 50px;
  }

  .badge-row img {
    width: 7rem;
    height: 7rem;
  }
}

@media screen and (min-width:768px) and (max-width:1024px) {
  .hero--home .hero__bg-blur--2 {
    width: 10rem;
    height: 13rem;
    bottom: 0rem;
    top: auto;
    right: 0;
    left: -29rem;
    margin: 0 auto;
  }

  .hero--home .hero__bg-blur--1 {
    width: 10rem;
    height: 13rem;
    top: auto;
    bottom: 27rem;
    right: -29rem;
    left: 0;
    margin: 0 auto;
  }

  .about__visual {
    max-width: 70%;
  }

  .contact-booking__row {
    grid-template-columns: minmax(11.25rem, 18rem) minmax(0, 1fr) auto;
  }
}

@media screen and (min-width:768px) and (max-width:991px) {
  .how-it-works .content-row {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width:768px) and (max-width: 800px) {
  #solution-hero .revenue-tooltip {
    left: -4rem;
  }

  /* .act-box .act-border-container{ width: calc(100% - 3.2rem); } */
}

@media (max-width: 767px) {
  .section--hero {
    padding: 40px 0 60px;
  }

  .shell--nav {
    min-height: 70px;
  }

  header #site-header-menu {
    top: 70px;
  }

  #main {
    margin-top: 70px;
  }

  body section {
    overflow-x: hidden;
  }

  .section--value,
  .section--data-wave,
  .section--who,
  .section--compliance,
  .section--works,
  .section--resources {
    padding: 30px 0;
  }

  .value-header__copy {
    padding: 0;
  }

  .value-header {
    gap: 0;
    margin-bottom: 1.25rem;
  }

  .feature-grid {
    gap: 25px;
  }

  .feature-cell {
    padding: 0;
  }

  .feature-cell .body-md {
    margin-bottom: 0;
  }

  .who-header {
    margin-bottom: 20px;
  }

  .who-tab__title {
    line-height: 1.2;
    padding-top: 5px;
    font-size: 16px;
  }

  .who-tab {
    padding: 10px;
  }

  .who-header {
    padding: 0;
  }

  .who-tabs-wrap {
    padding: 0;
    margin-bottom: 20px;
  }

  .who-tab__desc {
    font-size: 12px;
  }

  .who-panel-wrap {
    margin: 0;
    padding: 0;
  }

  .who-panel__text {
    padding: 0;
    order: 2;
  }

  .who-panel__grid {
    gap: 30px;
  }

  .badge-row {
    gap: 20px;
  }

  .shell--narrow-top .heading-compliance {
    margin-bottom: 1.25rem;
  }

  .works-card {
    padding: 40px 10px;
  }

  .works-step {
    padding-top: 0;
  }

  .works-grid {
    margin-bottom: 0;
  }

  .works-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
  }

  .works-visual {
    flex: 1 1 100%;
    width: 100%;
    order: 0;
    min-height: unset;
  }

  .works-visual img {
    max-height: unset;
    order: 0;
    max-width: 100%;
  }

  .section--about {
    padding-bottom: 40px;
  }

  .resource-row {
    padding: 0;
  }

  .resources__title {
    margin-bottom: 18px;
  }

  .section--cta {
    padding: 30px 0 40px;
  }

  .site-footer {
    padding: 30px 20px;
  }

  .cta-card {
    padding: 40px 0;
  }

  .footer__grid {
    padding: 0;
  }

  .shell::before,
  .shell::after {
    display: none;
  }

  .wave-pattern-divider {
    display: none;
  }

  section.hero.section.section--hero {
    margin-top: -2rem;
  }

  section.section.section--hero.solution-hero-section {
    margin-top: 0;
    padding: 1.875rem 0;
  }

  .hero-layout .fade-overlay--top {
    top: -2.5rem
  }

  .heading-xl {
    margin-bottom: 8px;
  }

  header #site-header-menu {
    top: 0;
    width: calc(100% + 50px);
    left: 0;
  }

  .who-tabs-wrap::-webkit-scrollbar {
    display: none;
  }

  .who-tabs-wrap {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .resource-feature__img {
    height: 188px;
    min-height: unset;
  }

  .resource-list {
    padding: 0 15px;
  }

  .resource-list img {
    height: 188px;
    object-fit: cover;
  }

  .footer__brand,
  .footer__cta {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer__cta {
    margin-top: 0;
  }

  .footer__social :is(svg, img) {
    width: 30px;
    height: 30px;
  }

  .brand--footer .brand__logo {
    width: 150px;
  }

  .footer__blurb,
  .footer__copy {
    font-size: 16px;
  }

  .footer__heading {
    font-size: 16px;
  }

  .footer__links a {
    font-size: 16px;
  }

  .footer__links {
    gap: 60px;
    margin-top: 10px;
    justify-content: flex-start;
    width: 100%;
  }

  .cta-card::after {
    height: 300px;
    display: none;
  }

  .shell.about-hero__grid,
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero__visual {
    min-height: unset;
  }

  .about-story__grid {
    gap: 10px;
  }

  .about-vmv__grid {
    grid-template-columns: 1fr;
  }

  .about-vmv__heading {
    margin-bottom: .25rem;
  }

  .about-story {
    padding-bottom: 2rem;
  }

  .about-vmv__list li {
    margin-bottom: .25rem;
  }

  .about-quote__heading {
    margin-bottom: 1.5rem;
  }

  .about-quote__card {
    padding: 2rem 1.5rem;
  }

  .about-quote__tab {
    font-size: 12px;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 5rem 2rem;
  }

  .about-team__intro {
    margin-bottom: 2rem;
  }

  .about-faq {
    padding: 2.25rem 0;
  }

  .section--cta {
    padding: 0 15px 40px;
  }

  .about-touch .about-touch__card {
    padding: 2rem;
  }

  .about-touch__card::after {
    width: 26.34375rem;
    height: 11.34375rem;
  }

  .about-touch__card::before {
    width: 20.34375rem;
    height: 11.34375rem;
  }

  .about-touch .shell::before {
    height: 11.5rem;
    background-position: 0px 0px;
  }

  /* ACT Box */
  .act-box {
    height: 23.75rem;
    max-width: 100%;
  }

  .act-box .act-header {
    width: 92%;
    padding: 0.75rem;
  }

  .act-box .act-header .title {
    font-size: 1.125rem;
  }

  .act-box .act-header .subtitle {
    font-size: 0.8125rem;
  }

  .act-box .act-border-container {
    width: 92%;
  }

  .act-box .act-scroll-area {
    width: 78%;
  }

  .act-box .fade-top-inner {
    width: 92%;
  }

  .act-box .act-card-title {
    font-size: 0.75rem;
  }

  .act-box .act-card-desc {
    font-size: 0.6875rem;
  }

  .act-box .act-icon {
    width: 1.875rem;
    height: 1.875rem;
  }

  .act-box .act-icon :is(svg, img) {
    width: 0.875rem;
    height: 0.875rem;
  }

  /* Graphics */
  .graphic-stage .card--normalizer {
    padding: 1.125rem;
  }

  .graphic-stage .card--roi {
    padding: 1.125rem;
  }

  .product-hero::before {
    top: -70px;
  }

  .product-hero {
    padding-top: 3rem;
  }

  .product-hero__visual-wrap {
    margin-top: 2rem;
  }

  .graphic-stage {
    transform: scale(1);
  }

  .graphic-stage .card {
    width: 100% !important;
    margin-bottom: 28px;
  }

  .graphic-stage .grid-lines-h .grid-line:last-child {
    display: none;
    width: 0;
  }

  .graphic-stage .grid-lines-h .grid-line:nth-child(5)~.grid-line {
    display: none !important;
    width: 0;
  }

  .product-overview__top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .act-box .act-border-container {
    width: 100%;
  }

  .act-box .act-header {
    width: 100%;
  }

  /* Hero Banner */
  .hero-layout {
    height: 28rem;
  }

  .hero-layout .slider-grid {
    gap: 0.75rem;
  }

  .hero-layout .slider-track {
    gap: 0.75rem;
  }

  .hero-layout .slider-track img {
    border-radius: 0.75rem;
  }

  #solution-hero .revenue-tooltip {
    padding: 1rem 1.5rem 1rem 1rem;
  }

  .hero-layout .revenue-amount {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  #solution-hero .revenue-tooltip {
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 14rem;
    backdrop-filter: blur(.25rem);
  }

  .hero__visual {
    height: 30rem;
    max-height: unset;
    min-height: unset;
    margin-top: 4rem;
  }

  section.section.section--hero.solution-hero-section .shell {
    gap: 0;
  }

  .solutions-split__media img {
    height: 200px;
    line-height: 0;
  }

  .solutions-split__copy .heading-lg {
    margin-bottom: .75rem;
  }

  .hero-layout .slider-track img {
    transform: scale(1.01);
  }

  /* how it works auto animated steps */
  .how-it-works .card {
    padding: 2.75rem 1rem;
    border-radius: 0.75rem;
  }

  .how-it-works .headline {
    font-size: 1.75rem;
  }

  .how-it-works .step {
    width: 100%;
  }

  /* hide desktop right visual */
  .how-it-works .visual {
    display: none;
  }

  /* mobile visual */
  .how-it-works .mobile-visual {
    display: block;
    width: 100%;
    height: 27.5rem;
    max-width: 30rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin: 1.25rem auto 0;
  }

  /* only active visual visible */
  .how-it-works .mobile-visual.active {
    display: block;
  }

  .how-it-works .mobile-visual .slide {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    height: 100%;
  }

  .how-it-works .mobile-visual .slide-img {
    border-radius: 1rem;
  }

  .how-it-works .mobile-visual .overlay-card {
    max-width: 88%;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .how-it-works .mobile-visual .card-analyze {
    top: auto;
    left: 0.75rem;
  }

  .how-it-works .mobile-visual .card-captured,
  .how-it-works .mobile-visual .card-deliver,
  .how-it-works .mobile-visual .card-engage {
    left: 0.75rem;
    bottom: 1.75rem;
  }

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

  .who-header__title span {
    display: inline;
  }

  .hero--home .hero__inner {
    max-width: 100%;
    padding: 0;
    gap: 3rem;
  }

  .hero--home .hero__content {
    gap: 1rem;
  }

  .hero.hero--home {
    min-height: unset;
    padding-bottom: 2rem;
  }

  .hero--home .hero__bg {
    overflow: unset;
  }

  .hero--home .hero__inner .hero__graphic {
    transform: translateX(-.625rem) scale(1.15);
  }

  .hero--home .hero__bg-blur--1 {
    top: auto;
    width: 10rem;
    height: 13rem;
    bottom: 8rem;
    right: 2rem;
  }

  .hero--home .hero__bg-blur--2 {
    width: 10rem;
    height: 13rem;
    bottom: 0rem;
    top: auto;
    right: auto;
    left: 1rem;
  }

  .feature-cell p {
    font-size: .875rem;
  }

  .works-card__header {
    margin-bottom: 1rem;
  }

  .stat-item {
    width: 100%;
  }

  .how-it-works .step.active .step-progress-fill,
  .how-it-works .step-progress-fill {
    display: none;
  }

  .section--cta .about-touch__sub p {
    display: none;
  }

  .product-hero__title,
  .product-hero__sub {
    margin-bottom: 1.25rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
  }

  .barAnimation {
    display: none;
  }

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

  header #site-header-menu {
    top: 70px;
  }

  /* solution page revenue counter card */
  .distinct-graphic {
    max-width: 100%;
  }

  .distinct-graphic__container {
    aspect-ratio: auto;
    height: 23.75rem;
  }

  .distinct-graphic__browser {
    width: 20rem;
    top: 1.25rem;
  }

  .distinct-graphic__card {
    width: 25rem;
  }

  .revenue-counter {
    top: 0;
    right: 0;
  }

  .product-privacy__badges {
    gap: 20px;
  }

  .about-team__card {
    height: 5.3125rem;
  }
}

@media (max-width:600px) {
  .btn--header-cta {
    max-width: 100%
  }
}

@media (max-width:480px) {
  .distinct-graphic__container {
    height: 21.25rem;
    border-radius: 0.75rem;
  }

  .distinct-graphic__browser {
    width: 16.25rem;
    top: 3rem;
    border-radius: 0.625rem;
  }

  .distinct-graphic__titlebar {
    height: 1.875rem;
    padding: 0 0.625rem;
  }

  .distinct-graphic__browser-title {
    font-size: 0.625rem;
  }

  .distinct-graphic__browser-content {
    padding: 1.25rem 1rem;
    gap: 1rem;
    min-height: 12.5rem;
  }

  .distinct-graphic__profile-avatar {
    width: 2rem;
    height: 2rem;
  }

  .distinct-graphic__profile-avatar svg {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .distinct-graphic__profile-name {
    font-size: 0.75rem;
  }

  .distinct-graphic__profile-sub {
    font-size: 0.625rem;
  }

  .distinct-graphic__pill {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    gap: 0.375rem;
  }

  .distinct-graphic__pill svg {
    width: 0.8125rem;
    height: 0.8125rem;
  }

  .distinct-graphic__card {
    width: calc(100% - 2.5rem);
    padding: 0.625rem;
    gap: 0.875rem;
  }

  .distinct-graphic__card-avatar {
    width: 2.375rem;
    height: 2.375rem;
  }

  .distinct-graphic__card-avatar img {
    width: 1.375rem;
    height: 1.375rem;
  }

  .distinct-graphic__progress-label {
    font-size: 0.625rem;
  }

  .distinct-graphic__progress-value {
    font-size: 0.75rem;
  }
}

@media (max-width:360px) {

  .graphic-stage .card--capture .card-icons,
  .graphic-stage .card--capture .card-header {
    width: 14rem;
  }
}

@media (max-width:320px) {

  .graphic-stage .card--capture .card-icons,
  .graphic-stage .card--capture .card-header {
    width: 13rem;
  }
}