:root {
  --site-header-height: 84px;
  color-scheme: dark;
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  background: #071934;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 18px);
}

body {
  margin: 0;
  background: #071934;
  color: #f5f9ff;
}

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

.ponto-hero {
  position: relative;
  aspect-ratio: 1672 / 941;
  height: auto;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #000114;
}

.hero-header,
.hero-frame {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.hero-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  height: 84px;
  padding: 0 max(24px, calc((100% - 1320px) / 2));
  border-bottom: 1px solid rgba(162, 214, 255, 0.24);
  background: linear-gradient(90deg, rgba(4, 24, 59, 0.8), rgba(7, 43, 88, 0.62) 55%, rgba(4, 22, 52, 0.76));
  box-shadow: 0 14px 38px rgba(0, 5, 24, 0.28), inset 0 -1px 0 rgba(197, 231, 255, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-header.is-scrolled {
  border-bottom-color: rgba(178, 222, 250, 0.4);
  background: linear-gradient(90deg, rgba(3, 21, 52, 0.97), rgba(5, 45, 90, 0.95) 55%, rgba(3, 22, 52, 0.97));
  box-shadow: 0 12px 28px rgba(0, 7, 27, 0.36), inset 0 -1px 0 rgba(197, 231, 255, 0.08);
}

.hero-header-spacer {
  position: relative;
  z-index: 2;
  height: var(--site-header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 142px;
  height: 66px;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.78;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-navigation a {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 42px;
  padding: 0;
  color: #d7e9fa;
  font-size: 13px;
  font-weight: 720;
  transition:
    color 160ms ease;
}

.desktop-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #8bd3ff;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-navigation a:hover,
.desktop-navigation a:focus-visible,
.desktop-navigation a[aria-current="page"] {
  color: #ffffff;
}

.desktop-navigation a:hover::after,
.desktop-navigation a:focus-visible::after,
.desktop-navigation a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(177, 221, 250, 0.52);
  border-radius: 6px;
  background: rgba(33, 122, 190, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-action span {
  font-size: 19px;
  line-height: 1;
}

.header-action:hover,
.header-action:focus-visible {
  border-color: #ffffff;
  background: rgba(60, 160, 225, 0.34);
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-navigation {
  position: relative;
  display: none;
}

.hero-frame {
  display: flex;
  align-items: center;
  height: calc(100% - 84px);
  min-height: 0;
  padding: 24px 0 92px;
}

.hero-copy {
  max-width: 550px;
  animation: copy-enter 720ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

h1 {
  max-width: 542px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(52px, 4.9vw, 72px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.99;
}

.hero-description {
  max-width: 500px;
  margin: 28px 0 19px;
  color: #cfddf0;
  font-size: 18px;
  line-height: 1.58;
}

.hero-market-proof {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 0 0 29px;
  color: #dceeff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-market-proof strong {
  display: inline-block;
  color: #8ed2ff;
  font-size: 27px;
  font-weight: 790;
  line-height: 1;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-height: 58px;
  padding: 0 24px 0 27px;
  border: 1px solid #e7f5ff;
  border-radius: 5px;
  background: #e7f5ff;
  box-shadow: 0 15px 27px rgba(0, 0, 0, 0.18);
  color: #082950;
  font-size: 15px;
  font-weight: 780;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primary-action span {
  font-size: 22px;
  line-height: 1;
}

.primary-action:hover,
.primary-action:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.27);
  transform: translateY(-3px);
}

.hero-footnote {
  margin: 19px 0 0;
  color: #9bb1ca;
  font-size: 13px;
  line-height: 1.5;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-scene,
.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.hero-scene:first-child {
  opacity: 1;
}

.hero-art img {
  /* The hero scene contains a physical monitor at the right edge; never crop it to fill a taller viewport. */
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 1280px) {
  .hero-scene {
    /* The physical scene is identical between frames; only the monitor dissolves to its next system. */
    animation: hero-scene-cycle 15s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  }

  .hero-scene:nth-child(2) {
    animation-delay: -10s;
  }

  .hero-scene:nth-child(3) {
    animation-delay: -5s;
  }
}

@keyframes hero-scene-cycle {
  0%,
  26.5% {
    opacity: 1;
  }
  33.4%,
  93.2% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes art-enter {
  from {
    opacity: 0;
    transform: scale(1.012);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  :root {
    --site-header-height: 78px;
  }

  .hero-frame {
    width: min(100% - 64px, 1000px);
  }

  .ponto-hero {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
  }

  .hero-header {
    width: 100%;
    height: 78px;
    padding: 0 32px;
  }

  .brand {
    width: 126px;
    height: 58px;
  }

  .desktop-navigation {
    gap: 16px;
  }

  .desktop-navigation a {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-frame {
    display: block;
    height: auto;
    min-height: 0;
    padding: 34px 0 46px;
  }

  .hero-copy {
    max-width: 590px;
  }

  h1 {
    max-width: 590px;
    font-size: clamp(46px, 6.3vw, 61px);
  }

  .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1672 / 941;
    margin: 0;
    background: #071934;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-scene:not(:first-child) {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-frame {
    width: min(100% - 48px, 680px);
  }

  .hero-header {
    width: 100%;
    padding: 0 24px;
  }

  .desktop-navigation,
  .header-action {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .mobile-navigation summary {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(188, 226, 255, 0.5);
    background: rgba(11, 53, 99, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-navigation summary i {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1.5px;
    background: #edf8ff;
    transform-origin: center;
    transition:
      opacity 180ms ease,
      top 180ms ease,
      transform 180ms ease;
  }

  .mobile-navigation summary i:nth-child(1) {
    top: 15px;
  }

  .mobile-navigation summary i:nth-child(2) {
    top: 21px;
  }

  .mobile-navigation summary i:nth-child(3) {
    top: 27px;
  }

  .mobile-navigation[open] summary i:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .mobile-navigation[open] summary i:nth-child(2) {
    opacity: 0;
  }

  .mobile-navigation[open] summary i:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .mobile-navigation nav {
    position: absolute;
    z-index: 5;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 48px));
    padding: 8px;
    border: 1px solid rgba(170, 217, 255, 0.25);
    border-radius: 7px;
    background: rgba(4, 25, 59, 0.94);
    box-shadow: 0 22px 45px rgba(0, 7, 25, 0.4);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
  }

  .hero-header:has(.mobile-navigation[open]) + .ponto-hero .hero-frame {
    padding-top: 244px;
  }

  .mobile-navigation nav a {
    padding: 13px 12px;
    border-radius: 4px;
    color: #d7e9fa;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-navigation nav a:hover,
  .mobile-navigation nav a:focus-visible,
  .mobile-navigation nav a[aria-current="page"] {
    background: rgba(91, 180, 239, 0.16);
    color: #ffffff;
  }

  .mobile-navigation nav .mobile-contact {
    margin-top: 4px;
    background: #ed624b;
    color: #ffffff;
  }

  .hero-copy {
    max-width: 550px;
  }

  h1 {
    max-width: 540px;
    font-size: clamp(46px, 8vw, 61px);
  }
}

@media (max-width: 560px) {
  :root {
    --site-header-height: 72px;
  }

  .hero-frame {
    width: calc(100% - 32px);
  }

  .hero-header {
    width: 100%;
    height: 72px;
    padding: 0 16px;
  }

  .brand {
    width: 112px;
    height: 54px;
  }

  .hero-frame {
    padding: 27px 0 37px;
  }

  h1 {
    font-size: clamp(40px, 11.25vw, 51px);
    line-height: 1;
  }

  .hero-description {
    margin: 24px 0 17px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-market-proof {
    gap: 9px;
    margin-bottom: 25px;
    font-size: 12px;
  }

  .hero-market-proof strong {
    font-size: 24px;
  }

  .primary-action {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-footnote {
    max-width: 285px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-scene {
    animation: none;
    opacity: 0;
  }

  .hero-scene:first-child {
    opacity: 1;
  }
}

/* Hero authority composition */
.hero-copy {
  max-width: 590px;
  animation: none;
}

.hero-copy > * {
  animation: copy-enter 680ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 19px;
  color: #b9d8ef;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #64c5ff, rgba(100, 197, 255, 0.15));
  box-shadow: 0 0 14px rgba(76, 187, 255, 0.5);
}

.hero-copy h1 {
  max-width: 560px;
  font-size: clamp(46px, 4vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-copy h1 span {
  color: inherit;
  text-shadow: none;
}

.hero-copy .hero-description {
  max-width: 535px;
  margin: 24px 0 25px;
  font-size: 17px;
  line-height: 1.62;
}

.hero-action-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.hero-action-note {
  max-width: 145px;
  margin: 0;
  color: #93abc4;
  font-size: 11px;
  line-height: 1.45;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  color: #a9c3dc;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-benefits li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7cd0ff;
  box-shadow: 0 0 10px rgba(124, 208, 255, 0.6);
  content: "";
}

.hero-support-line {
  margin: 0;
  color: #9dc1dc;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-copy .primary-action {
  border-color: rgba(213, 241, 255, 0.9);
  border-radius: 7px;
  background: linear-gradient(135deg, #9bdcff, #5cbcf4);
  box-shadow: 0 15px 30px rgba(0, 10, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #062344;
}

.hero-copy .primary-action span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(4, 39, 75, 0.1);
  font-size: 18px;
  transition: transform 180ms ease;
}

.hero-copy .primary-action:hover,
.hero-copy .primary-action:focus-visible {
  border-color: #ffffff;
  background: linear-gradient(135deg, #c7ecff, #75caff);
  box-shadow: 0 18px 34px rgba(0, 8, 28, 0.36), 0 0 28px rgba(72, 183, 244, 0.15);
}

.hero-copy .primary-action:hover span,
.hero-copy .primary-action:focus-visible span {
  transform: translateX(3px);
}

.hero-copy .hero-market-proof {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 510px);
  min-height: 88px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 210, 255, 0.22);
  border-radius: 9px;
  background: linear-gradient(105deg, rgba(6, 35, 76, 0.78), rgba(14, 67, 119, 0.42));
  box-shadow: 0 18px 40px rgba(0, 8, 29, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
}

.hero-copy .hero-market-proof::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -25%;
  width: 22%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(174, 224, 255, 0.13), transparent);
  transform: rotate(16deg);
  animation: proof-shine 9s ease-in-out infinite;
  pointer-events: none;
}

.leadership-rank {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  min-width: 112px;
  padding: 17px 19px 0;
  border-right: 1px solid rgba(143, 210, 255, 0.18);
  color: #9ddcff;
  font-size: 49px;
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(80, 185, 248, 0.22);
}

.leadership-rank span {
  margin: 4px 3px 0 0;
  font-size: 12px;
  letter-spacing: 0;
}

.leadership-copy {
  display: grid;
  gap: 3px;
  padding: 13px 20px;
}

.leadership-copy small {
  color: #78c8f8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leadership-copy b {
  color: #f3f9ff;
  font-size: 15px;
  line-height: 1.25;
}

.leadership-copy em {
  color: #9fb5cc;
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
}

@keyframes proof-shine {
  0%, 72% { left: -25%; opacity: 0; }
  78% { opacity: 1; }
  90%, 100% { left: 120%; opacity: 0; }
}

@media (max-width: 1120px) {
  .hero-copy { max-width: 610px; }
  .hero-copy h1 { max-width: 610px; font-size: clamp(45px, 6vw, 59px); }
}

@media (max-width: 560px) {
  .hero-kicker { margin-bottom: 15px; font-size: 9px; letter-spacing: 0.12em; }
  .hero-kicker span { width: 24px; }
  .hero-copy h1 { font-size: clamp(35px, 9.5vw, 40px); }
  .hero-copy .hero-description { margin: 20px 0 22px; font-size: 15px; }
  .hero-support-line { font-size: 9px; letter-spacing: 0.07em; }
  .hero-action-row { display: block; margin-bottom: 22px; }
  .hero-action-note { max-width: none; margin-top: 10px; text-align: center; }
  .hero-copy .hero-market-proof { min-height: 78px; }
  .leadership-rank { min-width: 88px; padding: 16px 14px 0; font-size: 42px; }
  .leadership-copy { padding: 11px 14px; }
  .leadership-copy b { font-size: 13px; }
  .leadership-copy em { max-width: 210px; font-size: 9px; }
}
/* Floating leadership marker */
.hero-frame > .hero-market-proof {
  position: absolute;
  z-index: 4;
  top: 34%;
  left: clamp(485px, 38vw, 550px);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 185px;
  min-width: 0;
  min-height: 50px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  animation: marker-enter 700ms cubic-bezier(0.2, 0.75, 0.25, 1) 380ms both;
}

.leadership-icon {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding-top: 5px;
  border: 1px solid rgba(174, 225, 255, 0.46);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #9ee0ff, #238fd1 58%, #0b477e);
  box-shadow: 0 0 0 0 rgba(100, 198, 255, 0.26), 0 8px 18px rgba(0, 10, 31, 0.22);
  color: #05264a;
  animation: leadership-pulse 3.2s ease-out 1.8s infinite;
}

.leadership-icon small {
  margin: 3px 1px 0 0;
  font-size: 8px;
  font-weight: 850;
}

.leadership-icon strong {
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero-frame > .hero-market-proof .leadership-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 0;
  text-shadow: 0 2px 12px rgba(0, 12, 35, 0.75);
}

.hero-frame > .hero-market-proof .leadership-copy small {
  color: #78c8f8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-frame > .hero-market-proof .leadership-copy b {
  width: 26ch;
  max-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(154, 218, 255, 0.8);
  color: #f4faff;
  font-size: 11px;
  font-weight: 730;
  line-height: 1.25;
  white-space: nowrap;
  animation: leadership-type 1.55s steps(26, end) 1s both, leadership-caret 650ms step-end 1s 4;
}

.leadership-pointer {
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 204, 255, 0.65), rgba(113, 204, 255, 0.08));
}

.leadership-pointer::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(137, 215, 255, 0.8);
  border-radius: 50%;
  background: #0b3f77;
  box-shadow: 0 0 12px rgba(90, 196, 255, 0.65);
}

@keyframes marker-enter {
  from { opacity: 0; transform: translate(-16px, 8px); }
  to { opacity: 1; transform: translate(0, 0); }
}

@keyframes leadership-type {
  from { max-width: 0; }
  to { max-width: 26ch; }
}

@keyframes leadership-caret {
  0%, 100% { border-right-color: transparent; }
  50% { border-right-color: rgba(154, 218, 255, 0.9); }
}

@keyframes leadership-pulse {
  0% { box-shadow: 0 0 0 0 rgba(100, 198, 255, 0.3), 0 8px 18px rgba(0, 10, 31, 0.26); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(100, 198, 255, 0), 0 8px 18px rgba(0, 10, 31, 0.26); }
}

@media (max-width: 1120px) {
  .hero-frame > .hero-market-proof {
    position: relative;
    top: auto;
    left: auto;
    width: 185px;
    min-width: 0;
    margin-top: 23px;
  }

  .leadership-pointer { display: none; }
}

@media (max-width: 560px) {
  .hero-frame > .hero-market-proof {
    width: 185px;
    min-height: 50px;
    margin: 18px auto 0;
  }

  .leadership-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    padding-top: 5px;
  }

  .leadership-icon strong { font-size: 24px; }
  .hero-frame > .hero-market-proof .leadership-copy b { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame > .hero-market-proof,
  .leadership-icon,
  .hero-frame > .hero-market-proof .leadership-copy b {
    animation: none;
  }

  .hero-frame > .hero-market-proof .leadership-copy b {
    max-width: 26ch;
    border-right-color: transparent;
  }
}

/* The proof is pinned to the F4, not left floating in the copy gap. */
.hero-leadership-flag {
  position: absolute;
  z-index: 2;
  top: 37.5%;
  left: 50.25%;
  display: grid;
  width: 104px;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 3px;
  margin: 0;
  padding: 13px 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(229, 247, 255, 0.32);
  background: linear-gradient(142deg, #25aeef 0%, #0b86cd 60%, #0874b8 100%);
  box-shadow:
    0 14px 28px rgba(0, 5, 29, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
  isolation: isolate;
  pointer-events: none;
  will-change: opacity, scale, translate;
  animation:
    leadership-flag-enter 620ms cubic-bezier(0.2, 0.75, 0.25, 1) 220ms both,
    leadership-flag-float 4.6s ease-in-out 1.1s infinite;
}

.hero-leadership-flag::before {
  position: absolute;
  z-index: -1;
  top: -35%;
  left: 0;
  width: 38%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-220%) skewX(-18deg);
  animation: leadership-flag-sheen 6.4s ease-in-out 900ms infinite;
}

.hero-leadership-flag::after {
  display: none;
}

.hero-leadership-flag strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  font-size: 43px;
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.86;
  white-space: nowrap;
}

.hero-leadership-flag strong span {
  margin: 1px 3px 0 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-leadership-flag > span {
  color: #f7fcff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 1201px) {
  .hero-leadership-flag {
    /* Keep the plaque above the F4: 16px of air below, clear of the monitor. */
    top: calc(32.7% - 120px);
    left: calc(58.9% - 52px);
  }
}

@keyframes leadership-flag-enter {
  from {
    opacity: 0;
    scale: 0.9;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes leadership-flag-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

@keyframes leadership-flag-sheen {
  0%,
  11% {
    opacity: 0;
    transform: translateX(-220%) skewX(-18deg);
  }

  17% {
    opacity: 0.72;
  }

  31%,
  100% {
    opacity: 0;
    transform: translateX(330%) skewX(-18deg);
  }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .hero-leadership-flag {
    top: 30%;
    right: 4.5%;
    left: auto;
    width: 90px;
    min-height: 90px;
    padding: 11px 9px 10px;
  }

  .hero-leadership-flag strong {
    font-size: 37px;
  }

  .hero-leadership-flag > span {
    font-size: 10px;
  }
}

@media (max-width: 960px) {
  .hero-leadership-flag {
    top: 22%;
    left: 42%;
    width: 84px;
    min-height: 84px;
    padding: 10px 8px 9px;
    box-shadow:
      0 11px 22px rgba(0, 5, 29, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .hero-leadership-flag strong {
    font-size: 34px;
  }

  .hero-leadership-flag strong span {
    font-size: 10px;
  }

  .hero-leadership-flag > span {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .hero-leadership-flag {
    width: 76px;
    min-height: 76px;
    padding: 9px 7px 8px;
  }

  .hero-leadership-flag strong {
    font-size: 31px;
  }

  .hero-leadership-flag strong span {
    font-size: 9px;
  }

  .hero-leadership-flag > span {
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .hero-leadership-flag {
    left: 45%;
    width: 70px;
    min-height: 70px;
    padding: 8px 6px 7px;
  }

  .hero-leadership-flag strong {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-leadership-flag,
  .hero-leadership-flag::before {
    animation: none;
  }
}

/* ATA authority and client proof */
.authority-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 0;
  background: #edf5fb;
  color: #09284d;
}

.authority-container,
.client-area-inner {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.authority-header {
  display: grid;
  grid-template-columns: minmax(210px, 0.66fr) minmax(0, 1.34fr);
  gap: 58px;
  align-items: start;
}

.authority-section .section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 9px 0 0;
  color: #2875a8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.authority-section .section-kicker span {
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0c91d8, rgba(12, 145, 216, 0.18));
}

.authority-header h2,
.client-area h2 {
  margin: 0;
  color: #09284d;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.authority-header > div > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4d637c;
  font-size: 18px;
  line-height: 1.62;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 62px 0 78px;
  border-top: 1px solid #cdddea;
  border-bottom: 1px solid #cdddea;
}

.authority-stats > div {
  min-width: 0;
  padding: 28px 26px 27px;
  border-left: 1px solid #cdddea;
}

.authority-stats > div:first-child {
  border-left: 0;
}

.authority-stats dt {
  color: #0b75b8;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.authority-stats dd {
  margin: 10px 0 0;
  color: #5d7187;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.authority-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  overflow: hidden;
  border-radius: 18px;
  background: #062a53;
  box-shadow: 0 24px 54px rgba(17, 59, 94, 0.16);
}

.authority-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 64px 64px 50px;
  background: linear-gradient(132deg, #082f5d 0%, #052548 100%);
}

.authority-panel-kicker,
.authority-video-copy > p {
  margin: 0;
  color: #7ecfff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.authority-story h3 {
  max-width: 620px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(31px, 3.1vw, 47px);
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.authority-story > p:not(.authority-panel-kicker) {
  max-width: 570px;
  margin: 23px 0 0;
  color: #c2d8eb;
  font-size: 16px;
  line-height: 1.65;
}

.authority-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 21px 0 23px;
  border: 1px solid rgba(220, 246, 255, 0.84);
  border-radius: 6px;
  background: #93dbff;
  color: #07315b;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.authority-action span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(4, 44, 82, 0.11);
  font-size: 17px;
}

.authority-action:hover,
.authority-action:focus-visible {
  background: #c9efff;
  box-shadow: 0 13px 27px rgba(0, 7, 31, 0.28);
  transform: translateY(-2px);
}

.partner-credentials {
  width: 100%;
  margin-top: 44px;
  padding-top: 35px;
  border-top: 1px solid rgba(153, 210, 246, 0.2);
}

.partner-credentials > p {
  margin: 0 0 13px;
  color: #9fc4df;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.partner-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.partner-logo-card {
  display: grid;
  min-width: 0;
  min-height: 100px;
  margin: 0;
  padding: 12px 11px 10px;
  border: 1px solid rgba(173, 220, 246, 0.18);
  border-radius: 8px;
  background: rgba(7, 49, 91, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  grid-template-rows: minmax(44px, 1fr) auto;
  gap: 7px;
}

.partner-logo-mark {
  display: grid;
  min-width: 0;
  place-items: center;
}

.partner-logo-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.partner-logo-card--topdata {
  background: rgba(6, 61, 111, 0.88);
}

.partner-logo-card--topdata .partner-logo-mark img {
  max-width: 161px;
  max-height: 39px;
}

.partner-logo-card--secullum .partner-logo-mark img {
  max-width: 144px;
  max-height: 42px;
}

.partner-logo-card--controlid .partner-logo-mark img {
  max-width: 118px;
  max-height: 42px;
}

.partner-logo-card figcaption {
  min-height: 22px;
  color: #c6def0;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.015em;
  line-height: 1.28;
  text-align: center;
}

.authority-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 47px 34px 38px;
  background: #0a4779;
}

.authority-video-copy {
  width: min(100%, 280px);
}

.authority-video-copy > .authority-video-description {
  margin: 10px 0 0;
  color: #d7ebf7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.authority-video-frame {
  position: relative;
  width: min(100%, 278px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(205, 239, 255, 0.38);
  background: #03172e;
  box-shadow: 0 18px 34px rgba(0, 9, 28, 0.32);
}

.authority-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.client-area {
  margin-top: 106px;
  padding: 95px 0 106px;
  background: #ffffff;
  border-top: 1px solid #d9e5ee;
}

.client-area-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.34fr);
  gap: 58px;
  align-items: start;
}

.client-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 7px 0 0;
  color: #09284d;
}

.client-section-kicker-mark {
  display: grid;
  width: 23px;
  height: 29px;
  align-items: end;
  grid-template-columns: repeat(2, 4px);
  gap: 4px;
  padding-bottom: 2px;
  border-bottom: 2px solid #5cc3f4;
}

.client-section-kicker-mark i {
  display: block;
  width: 4px;
  background: #0b86ca;
  border-radius: 99px;
}

.client-section-kicker-mark i:first-child {
  height: 14px;
}

.client-section-kicker-mark i:last-child {
  height: 23px;
  background: #50c1f2;
}

.client-section-kicker-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.client-section-kicker-copy > span {
  color: #5680a0;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.client-section-kicker-copy strong {
  color: #167eb9;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.055em;
}

@media (min-width: 961px) {
  .client-section-kicker {
    white-space: nowrap;
  }
}

.client-area h2 {
  max-width: 730px;
  font-size: clamp(36px, 3.5vw, 54px);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 58px 0 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid #dbe6ee;
  background: #dbe6ee;
  list-style: none;
}

.client-logo-grid li {
  position: relative;
  display: grid;
  min-height: 134px;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.client-logo-grid li:not(.client-grid-callout) {
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.client-logo-grid li:not(.client-grid-callout)::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, transparent 36%, rgba(176, 226, 252, 0.52) 50%, transparent 64%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-125%);
}

.client-logo-grid img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.client-logo-grid .client-grid-callout {
  z-index: 1;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #eaf6fd;
}

.client-grid-callout a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 132px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 20px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eaf6fd;
  color: #09284d;
  isolation: isolate;
  transition: background-color 220ms ease;
}

.client-grid-callout a::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 2px;
  background: #1599dc;
  content: "";
  pointer-events: none;
}

.client-callout-title {
  display: grid;
  gap: 1px;
  margin: 0;
  color: #09284d;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.client-callout-title > span {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.client-callout-title > span:first-child {
  --type-size: 11ch;
}

.client-callout-title > span:last-child {
  --type-size: 15ch;
}

.client-callout-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #147bb5;
  font-size: 10px;
  font-weight: 760;
  line-height: 1.25;
  white-space: nowrap;
}

.client-callout-link i {
  display: inline-block;
  color: #0c639a;
  font-size: 14px;
  font-style: normal;
  line-height: 0.8;
  transition: transform 220ms ease;
}

@media (min-width: 961px) and (max-width: 1200px) {
  .client-grid-callout a {
    padding: 15px;
  }

  .client-callout-link {
    gap: 4px;
    font-size: 9px;
  }

  .client-callout-link i {
    font-size: 13px;
  }
}

@media (hover: hover) {
  .client-logo-grid li:not(.client-grid-callout):hover {
    background: #f4fbff;
    box-shadow: inset 0 0 0 1px rgba(104, 193, 237, 0.34);
  }

  .client-logo-grid li:not(.client-grid-callout):hover img {
    transform: scale(1.035);
  }

  .client-logo-grid li:not(.client-grid-callout):hover::after {
    opacity: 1;
    transform: translateX(125%);
    transition:
      opacity 120ms ease,
      transform 620ms ease;
  }

  .client-grid-callout a:hover {
    background: #dff2fc;
  }

  .client-grid-callout a:hover .client-callout-link i {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .authority-header:not(.is-revealed) .section-kicker,
  .has-scroll-motion .client-area-header:not(.is-revealed) .client-section-kicker,
  .has-scroll-motion .authority-header:not(.is-revealed) h2,
  .has-scroll-motion .client-area-header:not(.is-revealed) h2,
  .has-scroll-motion .authority-header:not(.is-revealed) > div > p {
    opacity: 0;
  }

  .has-scroll-motion .authority-header:not(.is-revealed) .section-kicker,
  .has-scroll-motion .client-area-header:not(.is-revealed) .client-section-kicker {
    transform: translateY(10px);
  }

  .has-scroll-motion .authority-header:not(.is-revealed) h2,
  .has-scroll-motion .client-area-header:not(.is-revealed) h2 {
    clip-path: inset(0 0 100% 0);
    transform: translateY(22px);
  }

  .has-scroll-motion .client-area-header:not(.is-revealed) h2 {
    clip-path: none;
    transform: translateY(16px);
  }

  .has-scroll-motion .authority-header:not(.is-revealed) > div > p {
    transform: translateY(14px);
  }

  .has-scroll-motion .authority-header.is-revealed .section-kicker,
  .has-scroll-motion .client-area-header.is-revealed .client-section-kicker {
    animation: section-label-enter 460ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .authority-header.is-revealed h2,
  .has-scroll-motion .client-area-header.is-revealed h2 {
    animation: section-title-enter 740ms cubic-bezier(0.2, 0.75, 0.25, 1) 70ms both;
  }

  .has-scroll-motion .client-area-header.is-revealed h2 {
    animation: client-title-enter 620ms cubic-bezier(0.2, 0.75, 0.25, 1) 70ms both;
  }

  .has-scroll-motion .authority-header.is-revealed > div > p {
    animation: section-copy-enter 520ms cubic-bezier(0.2, 0.75, 0.25, 1) 230ms both;
  }

  .has-scroll-motion .authority-stats > div {
    opacity: 0;
    transform: translateY(16px);
  }

  .has-scroll-motion .authority-stats.is-revealed > div {
    animation: proof-stat-enter 520ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .authority-stats.is-revealed > div:nth-child(1) { animation-delay: 0ms; }
  .has-scroll-motion .authority-stats.is-revealed > div:nth-child(2) { animation-delay: 80ms; }
  .has-scroll-motion .authority-stats.is-revealed > div:nth-child(3) { animation-delay: 160ms; }
  .has-scroll-motion .authority-stats.is-revealed > div:nth-child(4) { animation-delay: 240ms; }

  .has-scroll-motion .authority-spotlight {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 600ms cubic-bezier(0.2, 0.75, 0.25, 1),
      transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .has-scroll-motion .authority-spotlight.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .has-scroll-motion .partner-logo-row .partner-logo-card {
    opacity: 0;
    transform: translateY(10px);
  }

  .has-scroll-motion .partner-logo-row.is-revealed .partner-logo-card {
    animation: partner-card-enter 440ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .partner-logo-row.is-revealed .partner-logo-card:nth-child(1) { animation-delay: 60ms; }
  .has-scroll-motion .partner-logo-row.is-revealed .partner-logo-card:nth-child(2) { animation-delay: 130ms; }
  .has-scroll-motion .partner-logo-row.is-revealed .partner-logo-card:nth-child(3) { animation-delay: 200ms; }

  .has-client-motion .client-logo-grid.is-revealed > li:not(.client-grid-callout) {
    animation: client-logo-reveal 480ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(1) { animation-delay: 0ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(2) { animation-delay: 45ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(3) { animation-delay: 90ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(4) { animation-delay: 135ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(5) { animation-delay: 180ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(6) { animation-delay: 225ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(7) { animation-delay: 270ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(8) { animation-delay: 315ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(9) { animation-delay: 360ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(10) { animation-delay: 405ms; }
  .has-client-motion .client-logo-grid.is-revealed > li:nth-child(11) { animation-delay: 450ms; }

  .has-client-motion .client-logo-grid.is-revealed .client-grid-callout {
    animation: client-callout-arrive 580ms cubic-bezier(0.16, 0.83, 0.25, 1) 500ms both;
  }

  .has-client-motion .client-logo-grid.is-revealed .client-callout-title > span {
    width: 0;
    overflow: hidden;
    border-right: 1px solid transparent;
    animation:
      client-callout-write 580ms steps(14, end) 560ms forwards,
      client-callout-caret 520ms step-end 560ms 3;
  }

  .has-client-motion .client-logo-grid.is-revealed .client-callout-title > span:last-child {
    animation-delay: 1.14s, 1.14s;
  }
}

@keyframes section-label-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes section-title-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes section-copy-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes client-title-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes proof-stat-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes partner-card-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes client-logo-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes client-callout-arrive {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes client-callout-write {
  to {
    width: var(--type-size);
  }
}

@keyframes client-callout-caret {
  0%,
  100% {
    border-right-color: transparent;
  }

  50% {
    border-right-color: rgba(9, 40, 77, 0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  .authority-header .section-kicker,
  .client-section-kicker,
  .authority-header h2,
  .client-area-header h2,
  .authority-header > div > p,
  .authority-stats > div,
  .authority-spotlight,
  .partner-logo-card,
  .client-logo-grid > li,
  .client-grid-callout,
  .client-callout-title > span,
  .client-grid-callout a::before {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .client-callout-title > span {
    width: fit-content;
    border-right: 0;
  }
}

.authority-action:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.client-grid-callout a:focus-visible {
  outline: 2px solid #0b75b8;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .authority-section {
    padding-top: 80px;
  }

  .authority-container,
  .client-area-inner {
    width: min(100% - 64px, 920px);
  }

  .authority-header,
  .client-area-header {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .authority-section .section-kicker,
  .client-section-kicker {
    margin-top: 0;
  }

  .authority-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 48px 0 60px;
  }

  .authority-stats > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #cdddea;
  }

  .authority-stats > div:nth-child(4) {
    border-top: 1px solid #cdddea;
  }

  .authority-spotlight {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

  .authority-story {
    padding: 49px 42px 40px;
  }

  .authority-video {
    padding: 38px 24px 32px;
  }

  .client-area {
    margin-top: 76px;
    padding: 76px 0 82px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
  }
}

@media (max-width: 720px) {
  .authority-spotlight {
    grid-template-columns: 1fr;
  }

  .authority-story {
    min-height: 0;
  }

  .authority-video {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
    gap: 24px;
    align-items: center;
  }

  .authority-video-copy,
  .authority-video-frame {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .authority-section {
    padding-top: 65px;
  }

  .authority-container,
  .client-area-inner {
    width: calc(100% - 32px);
  }

  .authority-section .section-kicker {
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .authority-section .section-kicker span {
    width: 24px;
  }

  .authority-header h2,
  .client-area h2 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .authority-header > div > p {
    margin-top: 19px;
    font-size: 16px;
  }

  .authority-stats {
    margin: 38px 0 48px;
  }

  .authority-stats > div {
    padding: 21px 16px 20px;
  }

  .authority-stats dt {
    font-size: 31px;
  }

  .authority-stats dd {
    margin-top: 8px;
    font-size: 9px;
    letter-spacing: 0.01em;
  }

  .authority-spotlight {
    border-radius: 12px;
  }

  .authority-story {
    padding: 38px 24px 31px;
  }

  .authority-story h3 {
    margin-top: 14px;
    font-size: 31px;
  }

  .authority-story > p:not(.authority-panel-kicker) {
    margin-top: 18px;
    font-size: 15px;
  }

  .authority-action {
    width: 100%;
    margin-top: 25px;
  }

  .partner-credentials {
    margin-top: 34px;
    padding-top: 25px;
  }

  .partner-logo-row {
    gap: 6px;
  }

  .partner-logo-card {
    min-height: 91px;
    padding: 9px 5px 8px;
    border-radius: 6px;
    gap: 5px;
    grid-template-rows: minmax(38px, 1fr) auto;
  }

  .partner-logo-mark img {
    max-height: 34px;
  }

  .partner-logo-card--topdata .partner-logo-mark img {
    max-height: 30px;
  }

  .partner-logo-card--secullum .partner-logo-mark img {
    max-width: 100%;
    max-height: 34px;
  }

  .partner-logo-card--controlid .partner-logo-mark img {
    max-width: 76px;
    max-height: 30px;
  }

  .partner-logo-card figcaption {
    min-height: 21px;
    font-size: 8px;
    line-height: 1.22;
  }

  .authority-video {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 24px 35px;
  }

  .authority-video-copy,
  .authority-video-frame {
    width: min(100%, 258px);
  }

  .authority-video-copy {
    justify-self: start;
  }

  .client-area {
    margin-top: 58px;
    padding: 62px 0 66px;
  }

  .client-section-kicker {
    gap: 10px;
  }

  .client-section-kicker-mark {
    width: 21px;
    height: 27px;
  }

  .client-section-kicker-copy > span {
    font-size: 8px;
  }

  .client-section-kicker-copy strong {
    font-size: 12px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 35px;
  }

  .client-logo-grid li {
    min-height: 108px;
    padding: 14px;
  }

  .client-logo-grid img {
    height: 62px;
  }

  .client-logo-grid .client-grid-callout {
    padding: 0;
  }

  .client-grid-callout a {
    min-height: 106px;
    padding: 14px;
  }

  .client-callout-title {
    margin: 0;
    font-size: 16px;
  }

  .client-callout-link {
    font-size: 9px;
  }

  .client-callout-link i {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .authority-action {
    gap: 10px;
    padding: 0 12px;
    font-size: 13px;
  }

  .authority-action span {
    width: 23px;
    height: 23px;
    font-size: 16px;
  }
}

/* Product carousel: starts with iDFace Max and scales as more products are confirmed. */
.product-showcase {
  position: relative;
  overflow: hidden;
  padding: 122px 0 132px;
  background:
    radial-gradient(circle at 9% 28%, rgba(23, 137, 205, 0.2), transparent 29%),
    radial-gradient(circle at 87% 86%, rgba(9, 89, 166, 0.24), transparent 28%),
    #04182f;
  color: #f4faff;
}

.product-showcase::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(150, 218, 255, 0.04) 1px, transparent 1px);
  background-size: 124px 100%;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.product-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.product-showcase-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.34fr);
  gap: 58px;
  align-items: start;
}

.product-section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 10px 0 0;
  color: #87d6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-section-kicker span {
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #79d5ff, rgba(121, 213, 255, 0.22));
}

.product-showcase-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.product-showcase-heading > div > p {
  max-width: 660px;
  margin: 23px 0 0;
  color: #b9d3e9;
  font-size: 18px;
  line-height: 1.62;
}

.product-carousel {
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(151, 215, 249, 0.2);
  border-radius: 18px;
  background: rgba(4, 30, 58, 0.74);
  box-shadow: 0 30px 64px rgba(0, 6, 25, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-carousel-toolbar {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px 0 31px;
  border-bottom: 1px solid rgba(151, 215, 249, 0.16);
}

.product-carousel-toolbar > p {
  margin: 0;
  color: #a8d7f4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-carousel-navigation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-carousel-count {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-right: 7px;
  color: #769bb8;
  font-size: 12px;
  font-weight: 700;
}

.product-carousel-count strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.product-carousel-navigation button {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(162, 217, 249, 0.19);
  border-radius: 50%;
  background: rgba(154, 218, 255, 0.06);
  color: #7c9db7;
  font-size: 16px;
  cursor: not-allowed;
}

.product-carousel-navigation button:disabled {
  opacity: 0.55;
}

.product-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 650px;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: #020d1f;
}

.product-visual::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 50%;
  width: min(84%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 165, 229, 0.24) 0%, rgba(17, 79, 154, 0.1) 42%, transparent 72%);
  content: "";
  filter: blur(4px);
  transform: translateX(-50%);
}

.product-visual::after {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 10%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 211, 255, 0.66), transparent);
  content: "";
  pointer-events: none;
}

.product-visual img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-visual-label,
.product-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  color: #bde8ff;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-visual-label {
  top: 27px;
}

.product-visual figcaption {
  bottom: 28px;
  color: #eff9ff;
  letter-spacing: 0.07em;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 66px 64px 54px;
}

.product-maker {
  margin: 0;
  color: #8ed8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-details h3 {
  margin: 9px 0 0;
  color: #ffffff;
  font-size: clamp(48px, 4.5vw, 68px);
  font-weight: 810;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.product-intro {
  max-width: 510px;
  margin: 25px 0 0;
  color: #c5daea;
  font-size: 17px;
  line-height: 1.6;
}

.product-key-specs {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(153, 210, 244, 0.18);
  border-bottom: 1px solid rgba(153, 210, 244, 0.18);
  list-style: none;
}

.product-key-specs li {
  min-width: 0;
  padding: 19px 16px 18px;
  border-left: 1px solid rgba(153, 210, 244, 0.18);
}

.product-key-specs li:first-child {
  border-left: 0;
}

.product-key-specs strong,
.product-key-specs span {
  display: block;
}

.product-key-specs strong {
  color: #75d2ff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.product-key-specs span {
  margin-top: 7px;
  color: #aac5d8;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.product-spec-list {
  display: grid;
  width: 100%;
  gap: 11px;
  margin: 31px 0 0;
}

.product-spec-list > div {
  display: grid;
  grid-template-columns: minmax(112px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(153, 210, 244, 0.12);
}

.product-spec-list dt,
.product-spec-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
}

.product-spec-list dt {
  color: #82cfff;
  font-weight: 760;
}

.product-spec-list dd {
  color: #c8dbea;
}

.product-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
  padding: 0 20px 0 23px;
  border: 1px solid rgba(228, 247, 255, 0.85);
  border-radius: 6px;
  background: #9be0ff;
  color: #07315b;
  font-size: 14px;
  font-weight: 810;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-action span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 48, 87, 0.1);
  font-size: 17px;
}

.product-action:hover,
.product-action:focus-visible {
  background: #d8f4ff;
  box-shadow: 0 14px 29px rgba(0, 7, 28, 0.28);
  transform: translateY(-2px);
}

.product-note {
  max-width: 540px;
  margin: 16px 0 0;
  color: #7fa6c2;
  font-size: 11px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .product-showcase-heading:not(.is-revealed),
  .has-scroll-motion .product-carousel:not(.is-revealed) {
    opacity: 0;
    transform: translateY(24px);
  }

  .has-scroll-motion .product-showcase-heading.is-revealed {
    animation: product-section-enter 620ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .product-carousel.is-revealed {
    animation: product-section-enter 700ms cubic-bezier(0.2, 0.75, 0.25, 1) 80ms both;
  }

  .has-scroll-motion .product-carousel.is-revealed .product-visual img {
    animation: product-image-enter 820ms cubic-bezier(0.2, 0.75, 0.25, 1) 180ms both;
  }
}

@keyframes product-section-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes product-image-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

@media (max-width: 960px) {
  .product-showcase {
    padding: 92px 0 98px;
  }

  .product-showcase-inner {
    width: min(100% - 64px, 920px);
  }

  .product-showcase-heading {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .product-section-kicker {
    margin-top: 0;
  }

  .product-slide {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    min-height: 0;
  }

  .product-visual {
    min-height: 600px;
  }

  .product-details {
    padding: 54px 42px 45px;
  }
}

@media (max-width: 720px) {
  .product-carousel {
    margin-top: 47px;
  }

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

  .product-visual {
    min-height: min(610px, 132vw);
  }

  .product-details {
    padding: 45px 34px 42px;
  }
}

@media (max-width: 560px) {
  .product-showcase {
    padding: 72px 0 77px;
  }

  .product-showcase-inner {
    width: calc(100% - 32px);
  }

  .product-section-kicker {
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .product-section-kicker span {
    width: 24px;
  }

  .product-showcase-heading h2 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .product-showcase-heading > div > p {
    margin-top: 19px;
    font-size: 16px;
  }

  .product-carousel {
    margin-top: 38px;
    border-radius: 12px;
  }

  .product-carousel-toolbar {
    min-height: 58px;
    padding: 0 16px 0 18px;
  }

  .product-carousel-toolbar > p {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .product-carousel-count {
    display: none;
  }

  .product-carousel-navigation {
    gap: 6px;
  }

  .product-carousel-navigation button {
    width: 28px;
    height: 28px;
  }

  .product-visual {
    min-height: min(570px, 142vw);
  }

  .product-visual-label,
  .product-visual figcaption {
    left: 18px;
    font-size: 9px;
  }

  .product-visual-label {
    top: 19px;
  }

  .product-visual figcaption {
    bottom: 19px;
  }

  .product-details {
    padding: 34px 24px 31px;
  }

  .product-maker {
    font-size: 10px;
  }

  .product-details h3 {
    font-size: clamp(43px, 14vw, 55px);
  }

  .product-intro {
    margin-top: 18px;
    font-size: 15px;
  }

  .product-key-specs {
    margin-top: 29px;
  }

  .product-key-specs li {
    padding: 16px 10px 15px;
  }

  .product-key-specs strong {
    font-size: 24px;
  }

  .product-key-specs span {
    font-size: 8px;
  }

  .product-spec-list {
    margin-top: 25px;
  }

  .product-spec-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-bottom: 10px;
  }

  .product-spec-list dt,
  .product-spec-list dd {
    font-size: 12px;
  }

  .product-action {
    width: 100%;
    margin-top: 28px;
    gap: 10px;
    padding: 0 13px;
    font-size: 13px;
  }

  .product-action span {
    width: 23px;
    height: 23px;
    font-size: 16px;
  }

  .product-note {
    margin-top: 14px;
    font-size: 10px;
  }
}

/* Airy product showroom override: intentionally no outer card, toolbar, or boxed specs. */
.product-showcase {
  position: relative;
  overflow: hidden;
  padding: 148px 0 142px;
  background:
    radial-gradient(ellipse 58% 35% at 49% 54%, rgba(156, 226, 255, 0.5), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 46%, #eff8fd 100%);
  color: #09284d;
}

.product-showcase::before {
  position: absolute;
  z-index: 0;
  top: 16%;
  right: -14%;
  bottom: auto;
  left: auto;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(86, 181, 230, 0.17);
  border-radius: 50%;
  background: none;
  content: "";
  opacity: 1;
  pointer-events: none;
}

.product-showcase-inner {
  width: min(1240px, calc(100% - 96px));
}

.product-showcase-heading {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.product-heading-index {
  display: grid;
  width: min-content;
  margin: 0;
  color: #76c9ef;
  line-height: 1;
}

.product-heading-index strong {
  color: #1594d3;
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 770;
  letter-spacing: -0.1em;
}

.product-heading-index span {
  margin-top: 9px;
  color: #5790b2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.product-heading-copy {
  max-width: 690px;
}

.product-heading-copy > p {
  margin: 0 0 12px;
  color: #327fae;
  font-size: 13px;
  font-weight: 730;
  line-height: 1.45;
}

.product-showcase-heading h2 {
  max-width: 650px;
  color: #0a315a;
  font-size: clamp(40px, 3.65vw, 54px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.product-showcase-heading > div > p {
  color: #327fae;
}

.product-stage {
  position: relative;
  margin-top: 60px;
}

.product-stage::before {
  position: absolute;
  top: 53%;
  left: 51%;
  width: min(49%, 534px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 156, 210, 0.4), transparent);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.product-slide {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(220px, 0.76fr) minmax(350px, 1fr) minmax(220px, 0.76fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.product-introduction {
  align-self: center;
}

.product-maker {
  margin: 0;
  color: #147eb9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-introduction h3 {
  margin: 12px 0 0;
  color: #082b51;
  font-size: clamp(43px, 4.25vw, 59px);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.product-intro {
  margin: 23px 0 0;
  color: #0c5588;
  font-size: 20px;
  font-weight: 620;
  line-height: 1.38;
}

.product-description {
  max-width: 310px;
  margin: 17px 0 0;
  color: #617c93;
  font-size: 15px;
  line-height: 1.62;
}

.product-action {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  gap: 9px;
  margin-top: 31px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(12, 132, 190, 0.44);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #087dbb;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-action span {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-size: 20px;
  line-height: 0.8;
}

.product-action:hover,
.product-action:focus-visible {
  border-color: #087dbb;
  background: transparent;
  box-shadow: none;
  color: #045f99;
  transform: translateX(3px);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 0;
  height: 660px;
  margin: 0;
  overflow: visible;
  place-items: center;
  isolation: isolate;
  background: transparent;
}

.product-visual::before {
  z-index: -2;
  top: 50%;
  left: 50%;
  width: min(116%, 550px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 210, 247, 0.38) 0%, rgba(181, 235, 255, 0.25) 37%, transparent 70%);
  filter: blur(8px);
  transform: translate(-50%, -47%);
}

.product-visual::after {
  z-index: -1;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 88%;
  height: 71%;
  border: 1px solid rgba(44, 152, 210, 0.25);
  border-radius: 50%;
  background: none;
  content: "";
  opacity: 1;
  transform: translate(-50%, -49%) rotate(-12deg);
}

.product-visual img {
  position: relative;
  z-index: 0;
  inset: auto;
  width: 100%;
  height: 100%;
  -webkit-mask-image: radial-gradient(ellipse 78% 69% at 50% 47%, #000 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 69% at 50% 47%, #000 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03) contrast(1.015);
  transition: transform 440ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-visual figcaption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 9px;
  left: 50%;
  width: max-content;
  max-width: 100%;
  color: #6a91a9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.product-specs {
  min-width: 0;
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(47, 139, 190, 0.22);
}

.product-specs-label {
  margin: 0 0 16px;
  color: #347fae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-key-specs {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.product-key-specs li {
  display: grid;
  grid-template-columns: minmax(82px, auto) 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid rgba(47, 139, 190, 0.2);
  border-left: 0;
}

.product-key-specs li:last-child {
  border-bottom: 1px solid rgba(47, 139, 190, 0.2);
}

.product-key-specs strong {
  color: #0b8bc9;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.product-key-specs span {
  margin: 0;
  color: #54778d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.38;
}

.product-feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.product-feature-list > div {
  display: block;
  padding: 0;
  border: 0;
}

.product-feature-list dt,
.product-feature-list dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.46;
}

.product-feature-list dt {
  color: #0c79b7;
  font-weight: 780;
}

.product-feature-list dd {
  margin-top: 2px;
  color: #607b90;
}

.product-note {
  max-width: 300px;
  margin: 24px 0 0;
  color: #7c99ad;
  font-size: 10px;
  line-height: 1.52;
}

@media (hover: hover) {
  .product-visual:hover img {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .product-showcase-heading:not(.is-revealed),
  .has-scroll-motion .product-stage:not(.is-revealed) {
    opacity: 0;
    transform: translateY(20px);
  }

  .has-scroll-motion .product-showcase-heading.is-revealed {
    animation: product-showroom-enter 610ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .product-stage.is-revealed {
    animation: product-showroom-enter 700ms cubic-bezier(0.2, 0.75, 0.25, 1) 70ms both;
  }

  .has-scroll-motion .product-stage.is-revealed .product-visual img {
    animation: product-render-enter-light 760ms cubic-bezier(0.2, 0.75, 0.25, 1) 140ms both;
  }

  .has-scroll-motion .product-stage.is-revealed .product-key-specs li {
    animation: product-spec-enter 460ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .product-stage.is-revealed .product-key-specs li:nth-child(1) { animation-delay: 240ms; }
  .has-scroll-motion .product-stage.is-revealed .product-key-specs li:nth-child(2) { animation-delay: 320ms; }
  .has-scroll-motion .product-stage.is-revealed .product-key-specs li:nth-child(3) { animation-delay: 400ms; }
}

@keyframes product-showroom-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes product-render-enter-light {
  from {
    opacity: 0;
    filter: blur(5px) saturate(0.96);
    transform: translateY(24px) rotate(-2deg);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1.03) contrast(1.015);
    transform: translateY(0) rotate(0);
  }
}

@keyframes product-spec-enter {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

@media (max-width: 1080px) {
  .product-slide {
    grid-template-columns: minmax(190px, 0.74fr) minmax(310px, 1fr) minmax(190px, 0.74fr);
    gap: 32px;
  }

  .product-visual {
    height: 580px;
  }

  .product-intro {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .product-showcase {
    padding: 108px 0 104px;
  }

  .product-showcase-inner {
    width: min(100% - 64px, 760px);
  }

  .product-slide {
    grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
    gap: 34px;
  }

  .product-specs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    column-gap: 34px;
    padding: 33px 0 0;
    border-top: 1px solid rgba(47, 139, 190, 0.22);
    border-left: 0;
  }

  .product-specs-label {
    grid-column: 1;
    grid-row: 1;
  }

  .product-key-specs {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .product-feature-list,
  .product-note {
    grid-column: 1;
  }

  .product-visual {
    height: 545px;
  }
}

@media (max-width: 620px) {
  .product-showcase {
    padding: 80px 0 84px;
  }

  .product-showcase-inner {
    width: calc(100% - 32px);
  }

  .product-showcase-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .product-heading-index strong {
    font-size: 49px;
  }

  .product-heading-index span {
    margin-top: 6px;
    font-size: 7px;
  }

  .product-heading-copy > p {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .product-showcase-heading h2 {
    font-size: clamp(34px, 9.6vw, 43px);
  }

  .product-stage {
    margin-top: 44px;
  }

  .product-stage::before {
    display: none;
  }

  .product-slide {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .product-introduction {
    max-width: 330px;
  }

  .product-introduction h3 {
    font-size: clamp(45px, 13.3vw, 54px);
  }

  .product-intro {
    margin-top: 16px;
    font-size: 18px;
  }

  .product-description {
    margin-top: 13px;
    font-size: 14px;
  }

  .product-action {
    margin-top: 23px;
    font-size: 13px;
  }

  .product-visual {
    order: 2;
    height: min(560px, 139vw);
  }

  .product-visual::after {
    width: 82%;
    height: 71%;
  }

  .product-visual figcaption {
    bottom: -3px;
    font-size: 8px;
  }

  .product-specs {
    display: block;
    order: 3;
    padding-top: 27px;
  }

  .product-specs-label {
    margin-bottom: 14px;
  }

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

  .product-key-specs li {
    display: block;
    min-width: 0;
    padding: 0 11px 0 0;
    border: 0;
    border-right: 1px solid rgba(47, 139, 190, 0.2);
  }

  .product-key-specs li + li {
    padding-right: 8px;
    padding-left: 11px;
  }

  .product-key-specs li:last-child {
    border-bottom: 0;
    border-right: 0;
  }

  .product-key-specs strong {
    font-size: clamp(25px, 8.5vw, 32px);
  }

  .product-key-specs span {
    margin-top: 6px;
    font-size: 8px;
    line-height: 1.32;
  }

  .product-feature-list {
    gap: 10px;
    margin-top: 29px;
  }

  .product-feature-list dt,
  .product-feature-list dd {
    font-size: 12px;
  }

  .product-note {
    max-width: 100%;
    margin-top: 20px;
    font-size: 10px;
  }
}

/* Equipment turntable v2: a light product stage, not a card carousel. */
.product-showcase {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 92px;
  padding: 142px 0 128px;
  background:
    radial-gradient(ellipse 52% 32% at 70% 59%, rgba(151, 224, 251, 0.43), transparent 74%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 52%, #eef8fd 100%);
  color: #09284d;
}

.product-showcase::before {
  display: none;
}

.product-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 96px));
}

.equipment-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 7vw, 128px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(32, 128, 180, 0.18);
}

.equipment-section-heading h2 {
  max-width: 610px;
  margin: 0;
  color: #0a315a;
  font-size: clamp(40px, 4vw, 57px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.equipment-section-heading p {
  max-width: 315px;
  margin: 0 0 4px;
  color: #638197;
  font-size: 15px;
  line-height: 1.58;
}

.equipment-carousel {
  position: relative;
  margin-top: 56px;
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(252px, 0.58fr) minmax(520px, 1.42fr);
  gap: clamp(28px, 5.2vw, 82px);
  align-items: center;
}

.equipment-visual-column {
  position: relative;
  min-width: 0;
}

.equipment-copy {
  position: relative;
  z-index: 5;
  min-height: 350px;
  align-self: center;
}

.equipment-copy-panel {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 350px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-14px, 8px, 0);
  transition:
    opacity 360ms ease,
    transform 510ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.equipment-copy-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.equipment-brand {
  margin: 0;
  color: #1684be;
  font-size: 11px;
  font-weight: 810;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.equipment-copy-panel h3 {
  margin: 12px 0 0;
  color: #092d55;
  font-size: clamp(45px, 4.25vw, 62px);
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.equipment-statement {
  max-width: 310px;
  margin: 23px 0 0;
  color: #0b5c90;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.31;
}

.equipment-description {
  max-width: 310px;
  margin: 15px 0 0;
  color: #668297;
  font-size: 15px;
  line-height: 1.62;
}

.equipment-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(12, 132, 190, 0.44);
  color: #087dbb;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.equipment-action span {
  font-size: 19px;
  line-height: 0.7;
}

.equipment-action:hover,
.equipment-action:focus-visible {
  border-color: #087dbb;
  color: #045f99;
  transform: translateX(3px);
}

.equipment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 20px 0 0;
  color: #7794a7;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.015em;
  line-height: 1.55;
}

.equipment-facts span + span::before {
  margin: 0 9px;
  color: #87cbed;
  content: "•";
}

.equipment-turntable {
  position: relative;
  min-width: 0;
  height: 520px;
  margin: -18px -30px 0 -18px;
  overflow: visible;
  isolation: isolate;
  touch-action: pan-y;
}

.equipment-turntable::before {
  position: absolute;
  z-index: -3;
  top: 49%;
  left: 50%;
  width: min(68%, 405px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 211, 249, 0.42) 0%, rgba(179, 235, 255, 0.26) 41%, transparent 70%);
  content: "";
  filter: blur(10px);
  transform: translate(-50%, -48%);
}

.equipment-turntable::after {
  position: absolute;
  z-index: -2;
  top: 76%;
  left: 50%;
  width: min(56%, 330px);
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 132, 183, 0.21), rgba(105, 197, 235, 0.08) 43%, transparent 74%);
  content: "";
  filter: blur(12px);
  transform: translate(-50%, -50%);
}

.equipment-render {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  place-items: center;
  pointer-events: none;
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.22, 0.8, 0.22, 1),
    opacity 420ms ease,
    filter 420ms ease;
  will-change: transform, opacity, filter;
}

.equipment-render img {
  display: block;
  width: auto;
  max-width: min(72%, 405px);
  height: 465px;
  object-fit: contain;
  object-position: center;
}

.equipment-render--idface img {
  max-width: min(62%, 330px);
  height: 365px;
  transform: translateY(7px);
}

.equipment-render.is-active {
  z-index: 2;
  opacity: 1;
  filter: saturate(1.02) contrast(1.015);
  transform: translateX(0) scale(1);
}

.equipment-render.is-next {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.82) contrast(0.96) blur(0.7px);
  transform: translateX(28px) scale(0.965);
}

.equipment-render--max.is-next {
  transform: translateX(28px) scale(0.94);
}

.equipment-render.is-far {
  z-index: 0;
  opacity: 0;
  filter: blur(0.7px);
  transform: translateX(28px) scale(0.965);
}

.equipment-carousel.is-transitioning .equipment-render.is-active {
  filter: saturate(1.02) contrast(1.015);
}

.equipment-controls {
  position: relative;
  z-index: 6;
  display: grid;
  width: min(100%, 306px);
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  margin: 12px auto 0;
}

.equipment-control {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(26, 126, 184, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  color: #0d82bd;
  font-size: 18px;
  line-height: 1;
  place-items: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.equipment-control:hover {
  border-color: #0d82bd;
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.equipment-position {
  display: grid;
  min-width: 0;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.equipment-status {
  overflow: hidden;
  max-width: 100%;
  color: #397394;
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.equipment-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.equipment-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 135, 192, 0.27);
  transition:
    width 260ms ease,
    border-radius 260ms ease,
    background 260ms ease;
}

.equipment-dot.is-current {
  width: 21px;
  border-radius: 8px;
  background: #1090cc;
}

.equipment-control:focus-visible,
.equipment-dot:focus-visible,
.equipment-action:focus-visible {
  outline: 3px solid rgba(78, 184, 235, 0.42);
  outline-offset: 4px;
}

.equipment-disclaimer {
  margin: 16px auto 0;
  color: #7c9aac;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .equipment-section-heading:not(.is-revealed) {
    opacity: 0;
    transform: translateY(18px);
  }

  .has-scroll-motion .equipment-section-heading.is-revealed {
    animation: equipment-section-enter 600ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .equipment-carousel.is-revealed {
    animation: equipment-section-enter 700ms cubic-bezier(0.2, 0.75, 0.25, 1) 70ms both;
  }

  .has-scroll-motion .equipment-carousel.is-revealed .equipment-render.is-active img {
    animation: equipment-render-arrive 740ms cubic-bezier(0.16, 0.8, 0.22, 1) 130ms both;
  }
}

@keyframes equipment-section-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes equipment-render-arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1080px) {
  .equipment-layout {
    grid-template-columns: minmax(228px, 0.62fr) minmax(425px, 1.38fr);
    gap: 34px;
  }

  .equipment-turntable {
    height: 480px;
    margin: -12px -22px 0 -14px;
  }

  .equipment-render img {
    height: 425px;
  }

  .equipment-render--idface img {
    height: 340px;
  }

  .equipment-copy-panel h3 {
    font-size: clamp(45px, 5.4vw, 57px);
  }
}

@media (max-width: 860px) {
  .product-showcase {
    padding: 105px 0 100px;
  }

  .product-showcase-inner {
    width: min(100% - 64px, 760px);
  }

  .equipment-section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .equipment-section-heading p {
    max-width: 400px;
  }

  .equipment-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .equipment-copy {
    min-height: 290px;
  }

  .equipment-turntable {
    height: 420px;
    margin: -10px -34px 0 -34px;
  }

  .equipment-render img {
    height: 380px;
  }

  .equipment-render--idface img {
    height: 305px;
  }

  .equipment-controls {
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  .product-showcase {
    padding: 78px 0 82px;
  }

  .product-showcase-inner {
    width: calc(100% - 32px);
  }

  .equipment-section-heading {
    gap: 13px;
    padding-bottom: 22px;
  }

  .equipment-section-heading h2 {
    font-size: clamp(34px, 9.2vw, 43px);
  }

  .equipment-section-heading p {
    max-width: 330px;
    font-size: 14px;
  }

  .equipment-carousel {
    margin-top: 38px;
  }

  .equipment-copy {
    min-height: 303px;
  }

  .equipment-copy-panel {
    max-width: 320px;
  }

  .equipment-copy-panel h3 {
    font-size: clamp(45px, 13vw, 54px);
  }

  .equipment-statement {
    margin-top: 17px;
    font-size: 19px;
  }

  .equipment-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.57;
  }

  .equipment-action {
    margin-top: 22px;
    font-size: 13px;
  }

  .equipment-facts {
    margin-top: 17px;
    font-size: 9px;
  }

  .equipment-facts span + span::before {
    margin: 0 7px;
  }

  .equipment-turntable {
    height: 380px;
    margin: -8px -18px 0 -18px;
  }

  .equipment-render img {
    max-width: min(72%, 270px);
    height: 312px;
  }

  .equipment-render--idface img {
    max-width: min(61%, 220px);
    height: 255px;
  }

  .equipment-render.is-next {
    opacity: 0;
    filter: saturate(0.82) blur(0.6px);
    transform: translateX(19px) scale(0.965);
  }

  .equipment-render--max.is-next {
    transform: translateX(19px) scale(0.94);
  }

  .equipment-controls {
    width: min(100%, 278px);
    grid-template-columns: 39px minmax(0, 1fr) 39px;
    margin-top: 14px;
  }

  .equipment-control {
    width: 39px;
    height: 39px;
    font-size: 17px;
  }

  .equipment-status {
    font-size: 10px;
  }

  .equipment-disclaimer {
    margin-top: 13px;
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .equipment-copy {
    min-height: 320px;
  }

  .equipment-turntable {
    height: 350px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .equipment-render img {
    height: 272px;
  }

  .equipment-render--idface img {
    height: 225px;
  }

  .equipment-facts {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-copy-panel,
  .equipment-render,
  .equipment-control,
  .equipment-dot,
  .equipment-action {
    transition: none;
  }
}

/* Product catalogue expansion: two distinct, quiet showrooms with shared carousel behaviour. */
.equipment-section-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  margin: 0 0 17px;
  color: #1488c4;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.equipment-section-mark::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.equipment-section-heading > p {
  align-self: end;
}

.equipment-copy {
  min-height: 386px;
}

.equipment-counter {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #5f88a2;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  line-height: 1;
}

.equipment-counter i {
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.equipment-autoplay-progress {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(22, 132, 190, 0.17);
}

.equipment-autoplay-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #0d86c0;
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes equipment-autoplay-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.equipment-render--idface img {
  max-width: min(64%, 345px);
  height: 610px;
  transform: translateY(-38px);
}

.equipment-render--idclass img {
  max-width: min(86%, 510px);
  height: 390px;
}

.equipment-render--idclass-facial img {
  max-width: min(88%, 530px);
  height: 400px;
}

.equipment-render--idclass-373 img {
  max-width: min(88%, 525px);
  height: 550px;
  transform: translateY(28px);
}

.equipment-render--inner-rep img {
  max-width: min(104%, 650px);
  height: 550px;
}

.equipment-render--inner-ponto img {
  max-width: min(88%, 540px);
  height: 540px;
}

.equipment-render--facial img {
  max-width: min(58%, 300px);
  height: 430px;
}

.equipment-render--pontto img {
  max-width: min(98%, 610px);
  height: 550px;
}

.product-showcase--topdata {
  background:
    radial-gradient(ellipse 48% 46% at 74% 54%, rgba(53, 154, 211, 0.31), transparent 72%),
    linear-gradient(135deg, #082847 0%, #06203d 54%, #071a34 100%);
  color: #f7fbff;
}

.product-showcase--topdata .equipment-section-heading {
  border-bottom-color: rgba(162, 222, 255, 0.22);
}

.product-showcase--topdata .equipment-section-heading h2 {
  color: #ffffff;
}

.product-showcase--topdata .equipment-section-heading > p {
  color: #b7d5e9;
}

.product-showcase--topdata .equipment-section-mark,
.product-showcase--topdata .equipment-brand {
  color: #83d8ff;
}

.product-showcase--topdata .equipment-copy-panel h3 {
  color: #ffffff;
}

.product-showcase--topdata .equipment-statement {
  color: #9edfff;
}

.product-showcase--topdata .equipment-description {
  color: #b8d2e5;
}

.product-showcase--topdata .equipment-facts,
.product-showcase--topdata .equipment-status,
.product-showcase--topdata .equipment-counter,
.product-showcase--topdata .equipment-disclaimer {
  color: #a8c7dd;
}

.product-showcase--topdata .equipment-facts span + span::before {
  color: #7bd4fb;
}

.product-showcase--topdata .equipment-action {
  border-bottom-color: rgba(132, 218, 255, 0.52);
  color: #93ddff;
}

.product-showcase--topdata .equipment-action:hover,
.product-showcase--topdata .equipment-action:focus-visible {
  border-bottom-color: #d5f3ff;
  color: #d5f3ff;
}

.product-showcase--topdata .equipment-turntable::before {
  background: radial-gradient(circle, rgba(116, 214, 255, 0.27) 0%, rgba(73, 167, 227, 0.12) 43%, transparent 73%);
}

.product-showcase--topdata .equipment-turntable::after {
  background: radial-gradient(ellipse, rgba(6, 13, 29, 0.45), rgba(12, 41, 68, 0.16) 48%, transparent 76%);
}

.product-showcase--topdata .equipment-control {
  border-color: rgba(155, 223, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #9edfff;
}

.product-showcase--topdata .equipment-control:hover {
  border-color: #9edfff;
  background: rgba(255, 255, 255, 0.13);
}

.product-showcase--topdata .equipment-dot {
  background: rgba(156, 224, 255, 0.32);
}

.product-showcase--topdata .equipment-dot.is-current,
.product-showcase--topdata .equipment-autoplay-progress i {
  background: #9de1ff;
}

.product-showcase--topdata .equipment-autoplay-progress {
  background: rgba(176, 229, 255, 0.23);
}

@media (max-width: 1080px) {
  .equipment-copy {
    min-height: 400px;
  }

  .equipment-render--idface img {
    height: 560px;
  }

  .equipment-render--idclass img {
    height: 365px;
  }

  .equipment-render--idclass-facial img {
    height: 380px;
  }

  .equipment-render--idclass-373 img {
    height: 510px;
  }

  .equipment-render--inner-rep img,
  .equipment-render--pontto img {
    height: 510px;
  }

  .equipment-render--inner-ponto img {
    height: 500px;
  }

  .equipment-render--facial img {
    height: 400px;
  }
}

@media (max-width: 860px) {
  .equipment-copy {
    min-height: 350px;
  }

  .equipment-render--idface img {
    height: 500px;
    transform: translateY(-31px);
  }

  .equipment-render--idclass img {
    height: 342px;
  }

  .equipment-render--idclass-facial img {
    height: 365px;
  }

  .equipment-render--idclass-373 img {
    height: 470px;
  }

  .equipment-render--inner-rep img,
  .equipment-render--pontto img {
    height: 470px;
  }

  .equipment-render--inner-ponto img {
    height: 450px;
  }

  .equipment-render--facial img {
    height: 365px;
  }
}

@media (max-width: 620px) {
  .equipment-section-mark {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .equipment-copy {
    min-height: 342px;
  }

  .equipment-counter {
    font-size: 9px;
  }

  .equipment-autoplay-progress {
    width: 42px;
  }

  .equipment-render--idface img {
    max-width: min(78%, 335px);
    height: 440px;
    transform: translateY(-27px);
  }

  .equipment-render--idclass img {
    max-width: min(91%, 390px);
    height: 310px;
  }

  .equipment-render--idclass-facial img {
    max-width: min(94%, 400px);
    height: 335px;
  }

  .equipment-render--idclass-373 img {
    max-width: min(96%, 420px);
    height: 420px;
    transform: translateY(20px);
  }

  .equipment-render--inner-rep img {
    max-width: min(114%, 470px);
    height: 430px;
  }

  .equipment-render--inner-ponto img {
    max-width: min(94%, 410px);
    height: 400px;
  }

  .equipment-render--facial img {
    max-width: min(68%, 260px);
    height: 340px;
  }

  .equipment-render--pontto img {
    max-width: min(108%, 440px);
    height: 420px;
  }
}

@media (max-width: 360px) {
  .equipment-copy {
    min-height: 360px;
  }

  .equipment-render--idface img {
    height: 390px;
    transform: translateY(-23px);
  }

  .equipment-render--idclass img {
    height: 282px;
  }

  .equipment-render--idclass-facial img {
    height: 305px;
  }

  .equipment-render--idclass-373 img {
    height: 380px;
  }

  .equipment-render--inner-rep img,
  .equipment-render--pontto img {
    height: 385px;
  }

  .equipment-render--inner-ponto img {
    height: 360px;
  }

  .equipment-render--facial img {
    height: 305px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-autoplay-progress i {
    animation: none !important;
  }
}

/* Partner marks and a lighter hand-off between the products. */
.product-showcase {
  padding: 112px 0 118px;
}

.equipment-partner-proof {
  width: fit-content;
  margin: 2px 0 22px;
}

.equipment-partner-proof img {
  display: block;
  width: auto;
  max-width: 176px;
  height: 28px;
  object-fit: contain;
  object-position: left center;
}

.equipment-partner-proof--topdata img {
  max-width: 224px;
  height: 32px;
}

.partner-wordmark--controlid {
  display: grid;
  grid-template-columns: auto auto;
  width: fit-content;
  column-gap: 4px;
  align-items: baseline;
  color: #182c43;
  font-family: Arial, sans-serif;
  line-height: 0.8;
}

.partner-wordmark--controlid b,
.partner-wordmark--controlid strong {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.partner-wordmark--controlid strong {
  color: #e72f38;
  font-weight: 850;
  letter-spacing: -0.1em;
}

.partner-wordmark--controlid em {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #6b8192;
  font-size: 8px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.equipment-section-heading {
  padding-bottom: 32px;
}

.equipment-visual-column::after {
  position: absolute;
  z-index: 4;
  inset: 7% -14% 12%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(192, 239, 255, 0.68), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-155%) skewX(-16deg);
}

.equipment-carousel.is-transitioning .equipment-visual-column::after {
  animation: equipment-stage-sweep 620ms cubic-bezier(0.16, 0.8, 0.22, 1) both;
}

.product-showcase--topdata .equipment-visual-column::after {
  background: linear-gradient(90deg, transparent, rgba(158, 224, 255, 0.46), transparent);
}

.equipment-render--idflex img {
  max-width: min(82%, 485px);
  height: 480px;
  transform: translateY(8px);
}

@keyframes equipment-stage-sweep {
  0% {
    opacity: 0;
    transform: translateX(-155%) skewX(-16deg);
  }

  24% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(300%) skewX(-16deg);
  }
}

@media (max-width: 1080px) {
  .product-showcase {
    padding: 98px 0 104px;
  }

  .equipment-render--idflex img {
    height: 440px;
  }
}

@media (max-width: 860px) {
  .product-showcase {
    padding: 84px 0 92px;
  }

  .equipment-render--idflex img {
    height: 405px;
  }
}

@media (max-width: 620px) {
  .product-showcase {
    padding: 70px 0 78px;
  }

  .equipment-partner-proof {
    margin-bottom: 18px;
  }

  .equipment-partner-proof img {
    max-width: 154px;
    height: 25px;
  }

  .equipment-partner-proof--topdata img {
    max-width: 196px;
    height: 28px;
  }

  .equipment-render--idflex img {
    max-width: min(80%, 350px);
    height: 350px;
  }
}

@media (max-width: 360px) {
  .equipment-render--idflex img {
    height: 315px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-carousel.is-transitioning .equipment-visual-column::after {
    animation: none;
  }
}

/* Final editorial pass: proof, manufacturer marks and software systems. */
.hero-leadership-flag strong {
  gap: 4px;
  align-items: flex-start;
  letter-spacing: -0.06em;
}

.hero-leadership-flag strong .leadership-rank-letter,
.hero-leadership-flag strong .leadership-rank-number {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  line-height: 0.86;
}

.hero-leadership-flag strong sup {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.partner-logo-card--topdata .partner-logo-mark img {
  width: min(100%, 138px);
  max-height: 34px;
  filter: brightness(0) invert(1);
}

.partner-logo-card--controlid .partner-logo-mark {
  width: 100%;
  min-height: 42px;
  padding: 0;
  background: transparent;
}

.partner-logo-card--controlid .partner-logo-mark img {
  width: min(100%, 142px);
  max-height: 24px;
}

.equipment-manufacturer-logo {
  width: fit-content;
  margin: 0 0 24px;
}

.equipment-manufacturer-logo img {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
  object-position: left center;
}

.equipment-manufacturer-logo--controlid img {
  max-width: 142px;
}

.equipment-manufacturer-logo--controlid {
  padding: 8px 13px;
  border-radius: 3px;
  background: #11253a;
}

.equipment-manufacturer-logo--topdata img {
  width: 174px;
  max-width: min(100%, 174px);
  height: auto;
  filter: brightness(0) invert(1);
}

.software-solutions {
  position: relative;
  overflow: hidden;
  padding: 132px 0 126px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f9fc 54%, #ffffff 100%);
  color: #09284d;
}

.software-solutions-inner {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.software-solutions-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 8vw, 150px);
  align-items: start;
}

.software-solutions-eyebrow,
.software-solution-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: #137caf;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.software-solutions-eyebrow::before,
.software-solution-name::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}

.software-solutions-intro h2 {
  max-width: 710px;
  margin: 0;
  color: #09284d;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.software-solutions-intro > p:last-child {
  grid-column: 2;
  max-width: 560px;
  margin: 20px 0 0;
  color: #5f7789;
  font-size: 17px;
  line-height: 1.62;
}

.software-feature {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 116px);
  align-items: center;
  margin-top: 70px;
  padding: clamp(36px, 5vw, 66px);
  border: 1px solid rgba(58, 138, 182, 0.19);
  border-radius: 18px;
  background:
    radial-gradient(circle at 87% 14%, rgba(135, 220, 255, 0.29), transparent 31%),
    linear-gradient(138deg, #eaf8ff 0%, #f8fcfe 52%, #e4f4fb 100%);
  box-shadow: 0 25px 62px rgba(21, 89, 123, 0.1);
}

.software-feature-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #1a75a8;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.software-feature-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a6e2;
  box-shadow: 0 0 0 5px rgba(22, 166, 226, 0.13);
}

.software-feature-name {
  margin: 19px 0 0;
  color: #0b6d9f;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.software-feature-copy h3 {
  max-width: 410px;
  margin: 18px 0 0;
  color: #09284d;
  font-size: clamp(32px, 3.45vw, 51px);
  font-weight: 790;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.software-feature-copy > p:not(.software-feature-kicker, .software-feature-name) {
  max-width: 397px;
  margin: 20px 0 0;
  color: #557087;
  font-size: 16px;
  line-height: 1.63;
}

.software-feature-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 11px 16px 11px 17px;
  border: 1px solid #087ab7;
  border-radius: 999px;
  background: #087ab7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.software-feature-copy a span {
  font-size: 17px;
  line-height: 0.7;
}

.software-feature-copy a:hover,
.software-feature-copy a:focus-visible {
  border-color: #045f95;
  background: #045f95;
  transform: translateY(-2px);
}

.software-feature-screen {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(48, 126, 170, 0.22);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 28px 42px rgba(9, 75, 109, 0.18);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.software-feature-screen::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f2bd1a;
  box-shadow: 10px 0 #5bc2e9, 20px 0 #d3e8f1;
  content: "";
}

.software-feature-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.software-alternatives {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid #cddfe9;
}

.software-alternatives-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.software-alternatives-heading p {
  margin: 0;
  color: #0d345a;
  font-size: 17px;
  font-weight: 790;
  letter-spacing: -0.03em;
}

.software-alternatives-heading span {
  color: #668093;
  font-size: 13px;
}

.software-alternatives-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 68px);
  margin-top: 27px;
}

.software-alternative {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.software-alternative-screen {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(71, 142, 181, 0.18);
  border-radius: 6px;
  box-shadow: 0 12px 27px rgba(15, 86, 122, 0.11);
}

.software-alternative-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.software-alternative-screen--device {
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.software-alternative-screen--device img {
  filter: drop-shadow(0 13px 14px rgba(8, 51, 83, 0.19));
}

.software-alternative-screen--rhid-device {
  aspect-ratio: 1.28;
  overflow: hidden;
}

.software-solution-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #137caf;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.software-solution-name::before {
  width: 21px;
  height: 1px;
  background: currentColor;
  content: "";
}

.software-alternative h3 {
  margin: 10px 0 0;
  color: #10365b;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.software-alternative p:not(.software-solution-name) {
  margin: 10px 0 0;
  color: #617a8d;
  font-size: 14px;
  line-height: 1.53;
}

.software-solutions-footnote {
  margin: 35px 0 0;
  color: #4f7289;
  font-size: 14px;
  font-weight: 640;
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .software-solutions-intro:not(.is-revealed),
  .has-scroll-motion .software-feature:not(.is-revealed),
  .has-scroll-motion .software-alternatives:not(.is-revealed),
  .has-scroll-motion .software-solutions-footnote:not(.is-revealed) {
    opacity: 0;
    transform: translateY(18px);
  }

  .has-scroll-motion .software-solutions-intro.is-revealed,
  .has-scroll-motion .software-feature.is-revealed,
  .has-scroll-motion .software-alternatives.is-revealed,
  .has-scroll-motion .software-solutions-footnote.is-revealed {
    animation: software-section-enter 650ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }
}

@keyframes software-section-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .software-solutions {
    padding: 96px 0;
  }

  .software-solutions-inner {
    width: min(100% - 64px, 920px);
  }

  .software-solutions-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .software-solutions-intro > p:last-child {
    grid-column: 1;
    margin-top: 0;
  }

  .software-feature {
    grid-template-columns: minmax(240px, 0.83fr) minmax(350px, 1.17fr);
    gap: 42px;
  }

  .software-alternative {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .hero-leadership-flag strong sup {
    margin-top: 1px;
    font-size: 10px;
  }

  .software-solutions {
    padding: 72px 0 78px;
  }

  .software-solutions-inner {
    width: calc(100% - 32px);
  }

  .software-solutions-intro h2 {
    font-size: clamp(42px, 12.4vw, 54px);
  }

  .software-solutions-intro > p:last-child {
    font-size: 16px;
  }

  .software-feature {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 43px;
    padding: 30px 24px 25px;
    border-radius: 13px;
  }

  .software-feature-copy h3 {
    max-width: 360px;
    font-size: 39px;
  }

  .software-feature-copy > p:not(.software-feature-kicker, .software-feature-name) {
    max-width: 100%;
  }

  .software-feature-screen {
    width: calc(100% - 7px);
    margin-left: auto;
    transform: none;
  }

  .software-alternatives {
    margin-top: 39px;
    padding-top: 23px;
  }

  .software-alternatives-heading {
    display: block;
  }

  .software-alternatives-heading span {
    display: block;
    margin-top: 7px;
    line-height: 1.45;
  }

  .software-alternatives-list {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 23px;
  }

  .software-alternative {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 17px;
  }

  .software-alternative h3 {
    font-size: 20px;
  }

  .software-alternative p:not(.software-solution-name) {
    font-size: 13px;
  }

  .software-solutions-footnote {
    margin: 30px 0 0;
    font-size: 13px;
  }

  .equipment-manufacturer-logo {
    margin-bottom: 19px;
  }

  .equipment-manufacturer-logo img {
    height: 26px;
  }

  .equipment-manufacturer-logo--topdata img {
    width: 145px;
  }
}

.closing-conversation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 138px 0 128px;
  background:
    radial-gradient(circle at 85% 18%, rgba(25, 151, 219, 0.31), transparent 28%),
    radial-gradient(circle at 9% 100%, rgba(26, 93, 166, 0.22), transparent 34%),
    linear-gradient(118deg, #061a39 0%, #08345f 56%, #061d42 100%);
  color: #ffffff;
}

.closing-conversation::before {
  position: absolute;
  z-index: -1;
  top: -42%;
  right: -12%;
  width: min(64vw, 990px);
  aspect-ratio: 1;
  border: 1px solid rgba(157, 222, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 84px rgba(101, 200, 255, 0.025), 0 0 0 168px rgba(101, 200, 255, 0.018);
  content: "";
}

.closing-conversation-inner {
  display: grid;
  grid-template-columns: minmax(370px, 1.08fr) minmax(310px, 0.92fr);
  gap: clamp(54px, 12vw, 188px);
  align-items: center;
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.closing-conversation-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #93dcff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.closing-conversation-eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.closing-conversation h2 {
  max-width: 710px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 790;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.closing-conversation-copy > p:not(.closing-conversation-eyebrow) {
  max-width: 550px;
  margin: 25px 0 0;
  color: #c2d9eb;
  font-size: 18px;
  line-height: 1.58;
}

.closing-conversation-action {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  padding: 15px 20px 15px 22px;
  border: 1px solid #81d5ff;
  border-radius: 999px;
  background: #8bd7fc;
  box-shadow: 0 15px 31px rgba(0, 0, 0, 0.18);
  color: #062b52;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.closing-conversation-action span {
  font-size: 20px;
  line-height: 0.7;
}

.closing-conversation-action:hover,
.closing-conversation-action:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #063866;
  transform: translateY(-3px);
}

.closing-conversation-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin: 30px 0 0;
  padding: 0;
  color: #a8cae1;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.closing-conversation-topics li + li::before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 17px 2px 0;
  border-radius: 50%;
  background: #70cbf7;
  content: "";
}

.closing-conversation-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.closing-conversation-aura {
  position: absolute;
  width: min(100%, 370px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 214, 255, 0.34) 0%, rgba(80, 187, 244, 0.1) 43%, transparent 72%);
  filter: blur(1px);
}

.closing-conversation-orbit {
  position: relative;
  display: grid;
  width: min(100%, 277px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(164, 223, 255, 0.31);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, rgba(203, 243, 255, 0.17), rgba(24, 119, 177, 0.06) 54%, transparent 72%);
  box-shadow: inset 0 0 63px rgba(126, 211, 250, 0.09), 0 24px 60px rgba(0, 13, 43, 0.24);
}

.closing-conversation-orbit::before,
.closing-conversation-orbit::after {
  position: absolute;
  border: 1px solid rgba(171, 228, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.closing-conversation-orbit::before {
  inset: 21px;
}

.closing-conversation-orbit::after {
  inset: 48px;
}

.closing-conversation-orbit-line {
  position: absolute;
  width: 1px;
  height: 129%;
  background: linear-gradient(transparent, rgba(138, 220, 255, 0.38) 21% 78%, transparent);
  transform: rotate(42deg);
}

.closing-conversation-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(211, 244, 255, 0.52);
  border-radius: 50%;
  background: linear-gradient(140deg, #caefff, #5ec8fa 52%, #1689cf);
  box-shadow: 0 12px 24px rgba(1, 20, 55, 0.32), inset 0 1px rgba(255, 255, 255, 0.62);
}

.closing-conversation-bubble::after {
  position: absolute;
  right: 7%;
  bottom: -8%;
  width: 17px;
  height: 17px;
  border-radius: 0 0 5px;
  background: #209bdb;
  content: "";
  transform: rotate(43deg);
}

.closing-conversation-bubble i {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #075283;
}

.closing-conversation-bubble--one {
  top: 20%;
  right: -11%;
  width: 104px;
  aspect-ratio: 1;
}

.closing-conversation-bubble--two {
  bottom: 13%;
  left: -10%;
  width: 75px;
  aspect-ratio: 1;
  background: linear-gradient(140deg, #6dd3ff, #1685ce 68%, #075d9d);
}

.closing-conversation-art > p {
  position: absolute;
  right: -1%;
  bottom: 9%;
  display: grid;
  gap: 5px;
  margin: 0;
  text-align: right;
}

.closing-conversation-art > p strong {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: -0.045em;
}

.closing-conversation-art > p span {
  color: #8dc6e6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer {
  padding: 67px 0 25px;
  background: #05162f;
  color: #ffffff;
}

.site-footer-inner,
.site-footer-bottom {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(130px, 0.62fr) minmax(220px, 0.86fr);
  gap: clamp(34px, 8vw, 130px);
  padding-bottom: 58px;
}

.site-footer-brand > a {
  display: inline-flex;
  width: 136px;
  height: 68px;
  align-items: center;
}

.site-footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-brand p {
  max-width: 300px;
  margin: 19px 0 0;
  color: #a9c4dc;
  font-size: 14px;
  line-height: 1.58;
}

.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer-links > p,
.site-footer-contact > p {
  margin: 5px 0 4px;
  color: #74c9f4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer-links a,
.site-footer-contact a {
  color: #d9eaf6;
  font-size: 14px;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer-contact a {
  display: inline-flex;
  gap: 8px;
  color: #ffffff;
  font-weight: 720;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-contact a:hover,
.site-footer-contact a:focus-visible {
  color: #73d2ff;
  transform: translateX(3px);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(159, 207, 241, 0.16);
  color: #7794ae;
  font-size: 11px;
  line-height: 1.4;
}

.site-footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .closing-conversation-copy:not(.is-revealed),
  .has-scroll-motion .closing-conversation-art:not(.is-revealed) {
    opacity: 0;
    transform: translateY(20px);
  }

  .has-scroll-motion .closing-conversation-copy.is-revealed,
  .has-scroll-motion .closing-conversation-art.is-revealed {
    animation: closing-conversation-enter 700ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .closing-conversation-orbit {
    animation: closing-conversation-float 7s ease-in-out infinite;
  }

  .closing-conversation-bubble--one {
    animation: closing-conversation-bubble-one 6s ease-in-out infinite;
  }

  .closing-conversation-bubble--two {
    animation: closing-conversation-bubble-two 6.8s ease-in-out infinite;
  }
}

@keyframes closing-conversation-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes closing-conversation-float {
  50% {
    transform: translateY(-9px) rotate(1.3deg);
  }
}

@keyframes closing-conversation-bubble-one {
  50% {
    transform: translate(-6px, 8px);
  }
}

@keyframes closing-conversation-bubble-two {
  50% {
    transform: translate(7px, -8px);
  }
}

@media (max-width: 840px) {
  .closing-conversation {
    padding: 104px 0 96px;
  }

  .closing-conversation-inner,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .closing-conversation-inner {
    gap: 59px;
  }

  .closing-conversation-art {
    min-height: 300px;
    max-width: 420px;
    margin: 0 auto;
  }

  .site-footer-inner {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .closing-conversation {
    padding: 83px 0 72px;
  }

  .closing-conversation-inner,
  .site-footer-inner,
  .site-footer-bottom {
    width: calc(100% - 32px);
  }

  .closing-conversation h2 {
    font-size: clamp(42px, 12.1vw, 55px);
  }

  .closing-conversation-copy > p:not(.closing-conversation-eyebrow) {
    font-size: 16px;
  }

  .closing-conversation-action {
    width: 100%;
    justify-content: center;
  }

  .closing-conversation-topics {
    justify-content: center;
    margin-top: 26px;
  }

  .closing-conversation-art {
    min-height: 245px;
  }

  .closing-conversation-orbit {
    width: 207px;
  }

  .closing-conversation-bubble--one {
    width: 78px;
  }

  .closing-conversation-bubble--two {
    width: 59px;
  }

  .closing-conversation-art > p {
    right: 3%;
    bottom: 0;
  }

  .site-footer {
    padding-top: 55px;
  }

  .site-footer-inner {
    padding-bottom: 43px;
  }

  .site-footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

/* Mobile hero: the product scene belongs to the opening composition, not to a separate panel. */
@media (max-width: 960px) {
  .ponto-hero {
    background:
      radial-gradient(circle at 80% 82%, rgba(23, 115, 202, 0.2), transparent 40%),
      #000114;
  }

  .hero-frame {
    position: relative;
    z-index: 3;
    padding-bottom: 0;
  }

  .hero-art {
    z-index: 1;
    margin-top: -18px;
    aspect-ratio: 1.42 / 1;
    background: transparent;
  }

  .hero-art::before {
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 42%;
    background: linear-gradient(180deg, #000114 0%, rgba(0, 1, 20, 0.88) 26%, rgba(0, 1, 20, 0) 100%);
    content: "";
    pointer-events: none;
  }

  .hero-art img {
    object-fit: cover;
    object-position: 68% center;
  }

  .hero-leadership-flag {
    top: 31%;
  }
}

@media (max-width: 560px) {
  .hero-frame {
    padding-bottom: 0;
  }

  .hero-art {
    margin-top: -52px;
    aspect-ratio: 1.19 / 1;
  }

  .hero-art::before {
    height: 47%;
  }

  .hero-leadership-flag {
    top: 34%;
    left: 42%;
  }
}

/* On small screens, compose the hero as one scene instead of stacking copy and imagery. */
@media (max-width: 560px) {
  .ponto-hero {
    min-height: 720px;
  }

  .hero-frame {
    min-height: 0;
    padding: 27px 0 0;
  }

  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
  }

  .hero-art img {
    object-fit: contain;
    object-position: center bottom;
    transform: scale(1.28);
    transform-origin: center bottom;
  }

  .hero-art::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(180deg, #000114 0%, #000114 49%, rgba(0, 1, 20, 0.9) 58%, rgba(0, 1, 20, 0.2) 78%, rgba(0, 1, 20, 0) 100%),
      linear-gradient(90deg, rgba(0, 1, 20, 0.5), transparent 82%);
  }

  .hero-leadership-flag {
    top: 68%;
    left: 42%;
  }
}

/* Shown only after a real GA4/GTM ID and the privacy-policy URL are configured. */
.analytics-consent {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(620px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(152, 215, 255, 0.3);
  border-radius: 10px;
  background: rgba(4, 24, 59, 0.97);
  box-shadow: 0 20px 46px rgba(0, 7, 25, 0.38);
  color: #eaf6ff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.analytics-consent p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.analytics-consent div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.analytics-consent button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(165, 220, 255, 0.42);
  border-radius: 5px;
  background: transparent;
  color: #eaf6ff;
  font: inherit;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.analytics-consent button:last-child {
  border-color: #a8e0ff;
  background: #75c8f4;
  color: #062344;
}

.analytics-consent button:hover,
.analytics-consent button:focus-visible {
  border-color: #ffffff;
}

@media (max-width: 560px) {
  .analytics-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
    width: auto;
    gap: 13px;
  }

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