: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;
  }
}

/* ATA Segurança: a quiet architectural scene, not a product collage or dashboard. */
.security-hero {
  position: relative;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #031326;
}

.security-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 33, 0.84) 0%, rgba(3, 15, 33, 0.66) 32%, rgba(3, 15, 33, 0.18) 56%, rgba(3, 15, 33, 0.06) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.24) 0%, transparent 31%, rgba(2, 12, 29, 0.1) 72%, rgba(2, 12, 29, 0.48) 100%);
  content: "";
  pointer-events: none;
}

.security-hero::after {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: 13%;
  width: min(18vw, 270px);
  aspect-ratio: 1;
  border: 1px solid rgba(97, 201, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(32, 136, 201, 0.025), 0 0 64px rgba(40, 158, 230, 0.14);
  content: "";
  opacity: 0;
  transform: scale(0.78);
  animation: security-focus-enter 1.15s cubic-bezier(0.16, 0.74, 0.26, 1) 520ms forwards;
  pointer-events: none;
}

.security-hero .hero-frame {
  z-index: 2;
}

.security-hero .hero-copy {
  max-width: 560px;
}

.security-hero .hero-copy h1 {
  max-width: 555px;
  font-size: clamp(46px, 4.3vw, 64px);
  line-height: 1.03;
}

.security-hero .hero-description {
  max-width: 520px;
}

.security-hero .hero-support-line {
  color: #acd0e6;
}

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

.security-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.018);
  animation: security-hero-reveal 1.05s cubic-bezier(0.2, 0.75, 0.25, 1) 80ms forwards;
}

.security-hero .hero-leadership-flag {
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 66.2%;
  width: 94px;
  min-height: 94px;
  padding: 12px 9px 11px;
  background: linear-gradient(142deg, #22a9e8 0%, #0b83c7 59%, #076ead 100%);
}

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

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

@keyframes security-hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.018);
  }

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

@keyframes security-focus-enter {
  from {
    opacity: 0;
    transform: scale(0.78);
  }

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

@media (max-width: 1200px) {
  .security-hero .hero-leadership-flag {
    top: 29%;
    left: 67%;
    width: 82px;
    min-height: 82px;
    padding: 10px 8px;
  }

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

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

@media (max-width: 960px) {
  .security-hero {
    min-height: 690px;
    aspect-ratio: auto;
  }

  .security-hero .hero-frame {
    min-height: 690px;
    padding-bottom: 112px;
  }

  .security-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 15, 33, 0.9) 0%, rgba(3, 15, 33, 0.69) 51%, rgba(3, 15, 33, 0.2) 100%),
      linear-gradient(180deg, rgba(2, 12, 29, 0.26), rgba(2, 12, 29, 0.54));
  }

  .security-hero .hero-leadership-flag {
    top: auto;
    bottom: 13%;
    left: 56%;
  }
}

@media (max-width: 560px) {
  .security-hero {
    min-height: 745px;
  }

  .security-hero .hero-frame {
    min-height: 745px;
    align-items: flex-start;
    padding: 28px 0 0;
  }

  .security-hero .hero-copy {
    max-width: 100%;
  }

  .security-hero .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(36px, 10vw, 42px);
  }

  .security-hero .hero-description {
    max-width: 355px;
  }

  .security-hero::before {
    background:
      linear-gradient(180deg, #031024 0%, #031024 43%, rgba(3, 16, 36, 0.91) 54%, rgba(3, 16, 36, 0.36) 76%, rgba(3, 16, 36, 0.16) 100%),
      linear-gradient(90deg, rgba(3, 16, 36, 0.54), transparent 92%);
  }

  .security-hero::after {
    top: auto;
    right: 7%;
    bottom: 8%;
    width: 135px;
    box-shadow: 0 0 0 20px rgba(32, 136, 201, 0.025), 0 0 46px rgba(40, 158, 230, 0.13);
  }

  .security-hero-art img {
    object-position: 70% center;
    transform: scale(1.1);
  }

  .security-hero .hero-leadership-flag {
    top: auto;
    bottom: 17%;
    left: 18px;
    width: 76px;
    min-height: 76px;
    padding: 9px 7px 8px;
  }

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

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

@media (max-width: 360px) {
  .security-hero {
    min-height: 650px;
  }

  .security-hero .hero-frame {
    min-height: 650px;
    padding-top: 22px;
  }

  .security-hero .hero-copy h1 {
    max-width: 290px;
    font-size: 34px;
  }

  .security-hero .hero-description {
    max-width: 290px;
    margin: 17px 0 18px;
    font-size: 14px;
  }

  .security-hero .hero-support-line {
    font-size: 8px;
    line-height: 1.35;
  }

  .security-hero .hero-leadership-flag {
    bottom: 10%;
    width: 68px;
    min-height: 68px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .security-hero::after,
  .security-hero-art img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ATA Segurança: institutional proof built around the physical space, not vendors. */
.security-authority .authority-header h2 {
  max-width: 720px;
}

.security-authority .authority-header > div > p {
  max-width: 630px;
}

.security-authority-quote {
  max-width: 560px;
  margin: 26px 0 0;
  padding: 1px 0 1px 18px;
  border-left: 2px solid #2b9bd4;
  color: #24547a;
  font-size: 16px;
  font-style: italic;
  font-weight: 570;
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.security-authority .authority-spotlight {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  background: #062a53;
}

.security-authority .authority-story {
  padding-bottom: 62px;
}

.security-authority .security-intelbras-video {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(112, 212, 255, 0.28), transparent 31%),
    linear-gradient(152deg, #0e5a91 0%, #083e6d 100%);
}

.security-authority .security-intelbras-video::before {
  position: absolute;
  top: -102px;
  right: -130px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(169, 230, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(169, 230, 255, 0.035), 0 0 0 74px rgba(169, 230, 255, 0.018);
  content: "";
  pointer-events: none;
}

.security-authority .security-intelbras-video-heading,
.security-authority .security-intelbras-video-frame {
  position: relative;
  z-index: 1;
}

.security-authority .security-intelbras-video-heading {
  width: min(100%, 286px);
}

.security-authority .security-intelbras-video-heading > p:first-child {
  color: #d7f4ff;
}

.security-authority .security-intelbras-video-frame {
  border-color: rgba(218, 246, 255, 0.46);
  box-shadow: 0 20px 38px rgba(0, 12, 35, 0.35);
}

.security-project-scope {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 51px 42px 42px;
  overflow: hidden;
  background:
    linear-gradient(154deg, rgba(16, 91, 143, 0.92), rgba(6, 51, 93, 0.98)),
    #073d70;
  isolation: isolate;
}

.security-project-scope::before {
  position: absolute;
  z-index: -1;
  top: -118px;
  right: -122px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(139, 221, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 39px rgba(113, 203, 245, 0.025), 0 0 0 79px rgba(113, 203, 245, 0.02);
  content: "";
}

.security-scope-heading {
  position: relative;
  z-index: 1;
  max-width: 275px;
}

.security-scope-heading p {
  margin: 0;
  color: #8edaff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.security-scope-heading span {
  display: block;
  margin-top: 12px;
  color: #eff9ff;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.security-project-scope ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.security-project-scope li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0 16px;
  border-top: 1px solid rgba(187, 231, 255, 0.18);
}

.security-project-scope li:last-child {
  border-bottom: 1px solid rgba(187, 231, 255, 0.18);
}

.security-project-scope li > span {
  color: #7ed4fb;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.security-project-scope li strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.security-project-scope li p {
  margin: 4px 0 0;
  color: #c2dfef;
  font-size: 12px;
  line-height: 1.38;
}

.security-scope-signal {
  position: absolute;
  right: 39px;
  bottom: 29px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 25px;
  opacity: 0.72;
}

.security-scope-signal i {
  display: block;
  width: 3px;
  border-radius: 99px;
  background: #8cddff;
  box-shadow: 0 0 10px rgba(126, 212, 251, 0.45);
}

.security-scope-signal i:nth-child(1) { height: 8px; }
.security-scope-signal i:nth-child(2) { height: 16px; }
.security-scope-signal i:nth-child(3) { height: 25px; }

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

@media (max-width: 960px) {
  .security-authority .authority-spotlight {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  }

  .security-project-scope {
    padding: 42px 28px 35px;
  }

  .security-authority-quote {
    font-size: 15px;
  }
}

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

  .security-project-scope {
    min-height: 0;
    padding: 38px 24px 35px;
  }

  .security-scope-heading {
    max-width: 340px;
  }

  .security-project-scope ol {
    margin-top: 25px;
  }
}

@media (max-width: 560px) {
  .security-authority .authority-story {
    padding-bottom: 35px;
  }

  .security-authority-quote {
    margin-top: 21px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .security-project-scope {
    padding: 34px 24px 30px;
  }

  .security-scope-heading span {
    font-size: 16px;
  }

  .security-project-scope li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    padding: 13px 0 14px;
  }

  .security-project-scope li p {
    font-size: 11px;
  }

  .security-scope-signal {
    right: 25px;
    bottom: 23px;
  }
}

/* ATA Segurança: a solutions map built around the physical space, not a product catalogue. */
.security-solutions {
  position: relative;
  overflow: hidden;
  padding: 142px 0 126px;
  background:
    linear-gradient(112deg, rgba(232, 245, 255, 0.82) 0%, rgba(247, 251, 255, 0) 34%),
    #f8fbfe;
  color: #09284d;
}

.security-solutions::before {
  position: absolute;
  top: 138px;
  right: max(-184px, -12vw);
  width: min(34vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(40, 156, 221, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(91, 191, 240, 0.025), inset 0 0 0 108px rgba(91, 191, 240, 0.018);
  content: "";
  pointer-events: none;
}

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

.security-solutions-intro {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.security-solutions-eyebrow {
  display: flex;
  align-items: center;
  align-self: stretch;
  min-height: 164px;
  margin: 2px 0 0;
  padding-left: 18px;
  border-left: 1px solid #78c8ef;
  color: #1677ae;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.security-solutions-eyebrow span {
  display: none;
}

.security-solutions-intro h2 {
  max-width: 760px;
  margin: -8px 0 0;
  color: #09284d;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 820;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.security-solutions-intro > div > p {
  max-width: 590px;
  margin: 29px 0 0;
  color: #537087;
  font-size: 18px;
  line-height: 1.54;
}

.security-solutions-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(48px, 7.8vw, 126px);
  align-items: center;
  margin-top: 74px;
}

.security-solutions-scene {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.96;
  margin: 0;
  overflow: hidden;
  background: #09233d;
  box-shadow: 28px 30px 0 -26px rgba(70, 176, 230, 0.52), 0 30px 70px rgba(4, 45, 78, 0.16);
  isolation: isolate;
}

.security-solutions-scene::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 26, 48, 0.5), rgba(3, 28, 51, 0.02) 58%, rgba(2, 23, 43, 0.15));
  content: "";
  pointer-events: none;
}

.security-solutions-scene::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(174, 231, 255, 0.27);
  content: "";
  pointer-events: none;
}

.security-solutions-scene > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.012);
}

.security-scene-scan {
  position: absolute;
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: -24%;
  width: 11%;
  background: linear-gradient(90deg, transparent, rgba(141, 225, 255, 0.22), rgba(214, 249, 255, 0.44), rgba(141, 225, 255, 0.18), transparent);
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-12deg) translateX(-260%);
}

.security-scene-marker {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(216, 249, 255, 0.92);
  border-radius: 50%;
  background: rgba(46, 170, 226, 0.4);
  box-shadow: 0 0 0 6px rgba(113, 215, 255, 0.11), 0 0 20px rgba(115, 218, 255, 0.52);
}

.security-scene-marker::before {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.security-scene-marker i {
  position: absolute;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(126, 220, 255, 0.44);
  border-radius: 50%;
  opacity: 0.75;
}

.security-scene-marker--camera {
  top: 11.5%;
  left: 44%;
}

.security-scene-marker--access {
  top: 63%;
  left: 48.5%;
}

.security-scene-marker--circulation {
  top: 57%;
  right: 13%;
}

.security-solutions-scene figcaption {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  margin: 0;
  color: #f1fbff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.42;
}

.security-solutions-scene figcaption span {
  display: block;
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: #7fdbff;
}

.security-solutions-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-solutions-list::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 23px;
  width: 1px;
  background: linear-gradient(#7ecff4, rgba(126, 207, 244, 0.07));
  content: "";
}

.security-solution-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 19px;
  align-items: start;
  min-height: 126px;
  padding: 8px 0 25px;
  border-bottom: 1px solid rgba(50, 126, 169, 0.2);
  transition: padding-left 300ms ease, border-color 300ms ease;
}

.security-solution-item + .security-solution-item {
  padding-top: 24px;
}

.security-solution-item:last-child {
  min-height: 102px;
  padding-bottom: 6px;
  border-bottom-color: transparent;
}

.security-solution-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 27px;
  place-items: center;
  border: 1px solid #9bdcf7;
  border-radius: 50%;
  background: #f8fbfe;
  color: #1477b0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.security-solution-item h3 {
  margin: 1px 0 0;
  color: #09284d;
  font-size: clamp(23px, 2.15vw, 31px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
  transition: color 250ms ease;
}

.security-solution-item p {
  max-width: 400px;
  margin: 11px 0 0;
  color: #607c90;
  font-size: 14px;
  line-height: 1.5;
}

.security-solution-arrow {
  display: grid;
  width: 29px;
  height: 29px;
  margin-top: 0;
  place-items: center;
  border-radius: 50%;
  color: #197bad;
  font-size: 18px;
  line-height: 1;
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}

.security-solution-item:hover,
.security-solution-item:focus-within {
  padding-left: 11px;
  border-bottom-color: rgba(50, 144, 194, 0.52);
}

.security-solution-item:hover h3,
.security-solution-item:focus-within h3 {
  color: #0a6fa9;
}

.security-solution-item:hover .security-solution-arrow,
.security-solution-item:focus-within .security-solution-arrow {
  background: #d5f2ff;
  color: #075b95;
  transform: translate(3px, -3px);
}

.security-solutions-outro {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin: 73px 0 0 174px;
  padding-top: 25px;
  border-top: 1px solid rgba(37, 125, 169, 0.26);
}

.security-solutions-outro p {
  max-width: 565px;
  margin: 0;
  color: #537087;
  font-size: 15px;
  line-height: 1.55;
}

.security-solutions-outro a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: #075d96;
  font-size: 14px;
  font-weight: 790;
  text-decoration: none;
  transition: gap 250ms ease, color 250ms ease;
}

.security-solutions-outro a span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #c7edff;
  color: #076299;
  font-size: 18px;
  line-height: 1;
}

.security-solutions-outro a:hover,
.security-solutions-outro a:focus-visible {
  gap: 16px;
  color: #003d6d;
}

@keyframes security-solutions-scan {
  0%, 14% { opacity: 0; transform: skewX(-12deg) translateX(-260%); }
  22%, 37% { opacity: 1; }
  52%, 100% { opacity: 0; transform: skewX(-12deg) translateX(1120%); }
}

@keyframes security-marker-breathe {
  0%, 100% { box-shadow: 0 0 0 6px rgba(113, 215, 255, 0.11), 0 0 20px rgba(115, 218, 255, 0.42); }
  50% { box-shadow: 0 0 0 10px rgba(113, 215, 255, 0.055), 0 0 28px rgba(115, 218, 255, 0.68); }
}

@keyframes security-solution-enter {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

  .has-scroll-motion .security-solutions-stage:not(.is-revealed) .security-solution-item {
    opacity: 0;
    transform: translateX(20px);
  }

  .has-scroll-motion .security-solutions-stage.is-revealed .security-solution-item {
    animation: security-solution-enter 580ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .security-solutions-stage.is-revealed .security-solution-item:nth-child(1) { animation-delay: 90ms; }
  .has-scroll-motion .security-solutions-stage.is-revealed .security-solution-item:nth-child(2) { animation-delay: 165ms; }
  .has-scroll-motion .security-solutions-stage.is-revealed .security-solution-item:nth-child(3) { animation-delay: 240ms; }
  .has-scroll-motion .security-solutions-stage.is-revealed .security-solution-item:nth-child(4) { animation-delay: 315ms; }

  .has-scroll-motion .security-solutions-stage.is-revealed .security-scene-scan {
    animation: security-solutions-scan 10s cubic-bezier(0.28, 0.04, 0.28, 1) 520ms infinite;
  }

  .has-scroll-motion .security-solutions-stage.is-revealed .security-scene-marker {
    animation: security-marker-breathe 4.4s ease-in-out infinite;
  }

  .has-scroll-motion .security-solutions-stage.is-revealed .security-scene-marker--access { animation-delay: 780ms; }
  .has-scroll-motion .security-solutions-stage.is-revealed .security-scene-marker--circulation { animation-delay: 1560ms; }
}

@media (max-width: 1040px) {
  .security-solutions {
    padding: 112px 0 104px;
  }

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

  .security-solutions-stage {
    grid-template-columns: minmax(300px, 0.88fr) minmax(330px, 1.12fr);
    gap: clamp(38px, 6vw, 70px);
  }

  .security-solution-item h3 {
    font-size: clamp(22px, 2.5vw, 29px);
  }

  .security-solutions-outro {
    margin-left: 122px;
  }
}

@media (max-width: 760px) {
  .security-solutions {
    padding: 86px 0 82px;
  }

  .security-solutions-inner {
    width: calc(100% - 48px);
  }

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

  .security-solutions-eyebrow {
    display: inline-flex;
    width: fit-content;
    min-height: 0;
    padding: 0 0 0 38px;
    border-top: 0;
    border-left: 0;
    color: #1677ae;
    line-height: 1.2;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .security-solutions-eyebrow::before {
    position: absolute;
    width: 25px;
    height: 1px;
    margin-left: -38px;
    background: #56b8e6;
    content: "";
  }

  .security-solutions-intro h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(42px, 10.5vw, 65px);
  }

  .security-solutions-intro > div > p {
    margin-top: 21px;
    font-size: 17px;
  }

  .security-solutions-stage {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 50px;
  }

  .security-solutions-scene {
    width: min(100%, 560px);
    aspect-ratio: 1.18;
  }

  .security-solutions-scene > img {
    object-position: 58% center;
  }

  .security-solutions-outro {
    display: grid;
    gap: 21px;
    justify-items: start;
    margin: 50px 0 0;
  }
}

@media (max-width: 520px) {
  .security-solutions {
    padding: 72px 0 70px;
  }

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

  .security-solutions-intro h2 {
    font-size: clamp(38px, 11.6vw, 52px);
  }

  .security-solutions-intro > div > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .security-solutions-stage {
    gap: 35px;
    margin-top: 43px;
  }

  .security-solutions-scene {
    aspect-ratio: 1.1;
  }

  .security-solutions-scene figcaption {
    bottom: 19px;
    left: 18px;
    max-width: 190px;
    font-size: 10px;
  }

  .security-scene-marker {
    width: 17px;
    height: 17px;
  }

  .security-scene-marker i {
    width: 33px;
    height: 33px;
  }

  .security-solutions-list::before {
    left: 19px;
  }

  .security-solution-item,
  .security-solution-item + .security-solution-item {
    grid-template-columns: 39px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 0;
    padding: 17px 0 20px;
  }

  .security-solution-item:last-child {
    padding-bottom: 0;
  }

  .security-solution-index {
    width: 39px;
    height: 24px;
    font-size: 9px;
  }

  .security-solution-item h3 {
    font-size: clamp(21px, 6.3vw, 27px);
    line-height: 1.04;
  }

  .security-solution-item p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .security-solution-arrow {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }

  .security-solutions-outro {
    gap: 18px;
    margin-top: 42px;
    padding-top: 20px;
  }

  .security-solutions-outro p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-scene-scan,
  .security-scene-marker,
  .security-solution-item {
    animation: none !important;
  }
}

/* ATA Segurança: five solution stories, each with its own real-world scene. */
.security-solution-showcase {
  position: relative;
  margin-top: 74px;
}

.security-solution-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(33, 117, 161, 0.24);
}

.security-solution-tab {
  display: flex;
  min-width: 0;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  border: 1px solid rgba(42, 127, 173, 0.24);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.36);
  color: #26506e;
  cursor: pointer;
  font: inherit;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 760;
  letter-spacing: -0.024em;
  line-height: 1.18;
  text-align: center;
  transition: border-color 230ms ease, background-color 230ms ease, color 230ms ease, transform 230ms ease, box-shadow 230ms ease;
}

.security-solution-tab > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.security-solution-tab:hover,
.security-solution-tab:focus-visible {
  border-color: rgba(11, 113, 171, 0.58);
  background: rgba(222, 246, 255, 0.84);
  color: #075b91;
  transform: translateY(-2px);
}

.security-solution-tab.is-active {
  border-color: #0e85c2;
  background: linear-gradient(140deg, #078fd3 0%, #0a6099 100%);
  box-shadow: 0 11px 22px rgba(13, 109, 161, 0.2);
  color: #ffffff;
}

.security-solution-tab:focus-visible {
  outline: 2px solid #0e73ae;
  outline-offset: 3px;
}

.security-solution-panels {
  margin-top: 28px;
}

.security-solution-panel {
  position: relative;
  display: none;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(44, 132, 177, 0.23);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(239, 249, 254, 0.68));
  box-shadow: 0 24px 52px rgba(17, 67, 101, 0.09);
}

.security-solution-panel.is-active {
  display: grid;
}

.security-solution-media {
  position: relative;
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #082744;
  isolation: isolate;
}

.security-solution-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 25, 45, 0.12), rgba(2, 25, 45, 0.02) 52%, rgba(4, 24, 43, 0.36));
  content: "";
  pointer-events: none;
}

.security-solution-media::after {
  position: absolute;
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: -19%;
  width: 10%;
  background: linear-gradient(90deg, transparent, rgba(187, 237, 255, 0.42), transparent);
  content: "";
  filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-15deg) translateX(-260%);
}

.security-solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.91) contrast(1.03);
  transform: scale(1.018);
}

.security-solution-media figcaption {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f1fbff;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.security-solution-media figcaption > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(208, 245, 255, 0.7);
  border-radius: 50%;
  color: #e9faff;
  font-size: 10px;
  font-weight: 810;
}

.security-solution-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px) clamp(38px, 5.4vw, 82px);
  overflow: hidden;
}

.security-solution-copy::before {
  position: absolute;
  top: 33px;
  right: 31px;
  color: rgba(19, 141, 196, 0.075);
  content: "01";
  font-size: clamp(100px, 12vw, 180px);
  font-weight: 850;
  letter-spacing: -0.1em;
  line-height: 0.75;
  pointer-events: none;
}

.security-solution-panel:nth-child(2) .security-solution-copy::before { content: "02"; }
.security-solution-panel:nth-child(3) .security-solution-copy::before { content: "03"; }
.security-solution-panel:nth-child(4) .security-solution-copy::before { content: "04"; }
.security-solution-panel:nth-child(5) .security-solution-copy::before { content: "05"; }

.security-solution-panel-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #137db8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.security-solution-panel-kicker::before {
  width: 23px;
  height: 1px;
  background: #41b9ed;
  content: "";
}

.security-solution-copy h3 {
  position: relative;
  max-width: 470px;
  margin: 21px 0 0;
  color: #09284d;
  font-size: clamp(38px, 3.8vw, 57px);
  font-weight: 810;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.security-solution-copy > p:not(.security-solution-panel-kicker) {
  position: relative;
  max-width: 450px;
  margin: 22px 0 0;
  color: #547188;
  font-size: 16px;
  line-height: 1.57;
}

.security-solution-copy ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.security-solution-copy li {
  padding: 7px 10px;
  border: 1px solid rgba(44, 132, 177, 0.23);
  border-radius: 99px;
  color: #2e678a;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
}

@keyframes security-solution-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes security-solution-sweep {
  0%, 11% { opacity: 0; transform: skewX(-15deg) translateX(-260%); }
  19%, 29% { opacity: 1; }
  44%, 100% { opacity: 0; transform: skewX(-15deg) translateX(1300%); }
}

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

  .has-scroll-motion .security-solution-showcase.is-revealed {
    animation: security-solution-panel-in 620ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .security-solution-panel.is-active {
    animation: security-solution-panel-in 470ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .security-solution-panel.is-active .security-solution-media::after {
    animation: security-solution-sweep 9s cubic-bezier(0.28, 0.04, 0.28, 1) 380ms infinite;
  }
}

/* ATA Segurança: IA feature set, arranged as a calm monitoring board instead of generic cards. */
.security-ai-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0 128px;
  background:
    radial-gradient(circle at 98% 12%, rgba(27, 136, 195, 0.34), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(20, 109, 171, 0.19), transparent 28%),
    #061d39;
  color: #ffffff;
}

.security-ai-section::before {
  position: absolute;
  top: 142px;
  right: max(-145px, -10vw);
  width: min(37vw, 530px);
  aspect-ratio: 1;
  border: 1px solid rgba(144, 219, 253, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 47px rgba(125, 206, 247, 0.018), 0 0 0 124px rgba(125, 206, 247, 0.012);
  content: "";
  pointer-events: none;
}

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

.security-ai-intro {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: start;
}

.security-ai-mark {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding-left: 19px;
  border-left: 1px solid rgba(126, 215, 255, 0.52);
}

.security-ai-mark strong {
  color: #8bdcff;
  font-size: clamp(52px, 5vw, 75px);
  font-weight: 850;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

.security-ai-mark span {
  margin-top: 13px;
  color: #b8e7fb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.145em;
  line-height: 1.35;
  text-transform: uppercase;
}

.security-ai-intro h2 {
  max-width: 850px;
  margin: -5px 0 0;
  color: #ffffff;
  font-size: clamp(45px, 5.35vw, 76px);
  font-weight: 800;
  letter-spacing: -0.069em;
  line-height: 0.94;
}

.security-ai-intro > div > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #b9d6e7;
  font-size: 18px;
  line-height: 1.56;
}

.security-ai-board {
  display: grid;
  grid-template-columns: minmax(315px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 5.7vw, 84px);
  align-items: stretch;
  margin-top: 73px;
}

.security-ai-observation {
  position: relative;
  min-height: 586px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 221, 255, 0.3);
  background: #082746;
  box-shadow: 0 25px 58px rgba(0, 9, 28, 0.28);
  isolation: isolate;
}

.security-ai-observation::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 24, 45, 0.71), rgba(1, 24, 45, 0.02) 56%);
  content: "";
  pointer-events: none;
}

.security-ai-observation > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
  filter: saturate(0.84) contrast(1.04);
  transform: scale(1.025);
}

.security-ai-scan {
  position: absolute;
  z-index: 2;
  top: -8%;
  bottom: -8%;
  left: -25%;
  width: 15%;
  background: linear-gradient(90deg, transparent, rgba(140, 231, 255, 0.12), rgba(186, 242, 255, 0.42), rgba(140, 231, 255, 0.12), transparent);
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-13deg) translateX(-240%);
}

.security-ai-ping {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(230, 251, 255, 0.9);
  border-radius: 50%;
  background: rgba(30, 180, 232, 0.45);
  box-shadow: 0 0 0 7px rgba(106, 214, 255, 0.12), 0 0 19px rgba(106, 214, 255, 0.52);
}

.security-ai-ping::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.security-ai-ping i {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(133, 225, 255, 0.4);
  border-radius: 50%;
}

.security-ai-ping--one {
  top: 27%;
  left: 28%;
}

.security-ai-ping--two {
  top: 59%;
  right: 24%;
}

.security-ai-observation figcaption {
  position: absolute;
  z-index: 3;
  bottom: 29px;
  left: 29px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 255px;
  color: #effbff;
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.005em;
  line-height: 1.45;
}

.security-ai-observation figcaption span {
  width: 23px;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 7px;
  background: #83dcff;
}

.security-ai-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(174, 228, 251, 0.22);
  border-left: 1px solid rgba(174, 228, 251, 0.15);
  list-style: none;
}

.security-ai-features li {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  min-width: 0;
  padding: 26px 23px 24px;
  border-right: 1px solid rgba(174, 228, 251, 0.15);
  border-bottom: 1px solid rgba(174, 228, 251, 0.22);
  background: rgba(4, 36, 67, 0.14);
  transition: background-color 260ms ease, transform 260ms ease;
}

.security-ai-features li:hover {
  background: rgba(51, 152, 205, 0.17);
  transform: translateY(-2px);
}

.security-ai-features li > span {
  color: #7bd6fb;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.security-ai-features h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.security-ai-features p {
  margin: 9px 0 0;
  color: #bdd8e8;
  font-size: 12px;
  line-height: 1.48;
}

.security-ai-note {
  max-width: 720px;
  margin: 30px 0 0 148px;
  color: #8bb5ca;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes security-ai-scan {
  0%, 15% { opacity: 0; transform: skewX(-13deg) translateX(-240%); }
  24%, 40% { opacity: 1; }
  56%, 100% { opacity: 0; transform: skewX(-13deg) translateX(980%); }
}

@keyframes security-ai-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(106, 214, 255, 0.12), 0 0 19px rgba(106, 214, 255, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(106, 214, 255, 0.06), 0 0 29px rgba(106, 214, 255, 0.7); }
}

@media (prefers-reduced-motion: no-preference) {
  .has-scroll-motion .security-ai-intro:not(.is-revealed),
  .has-scroll-motion .security-ai-board:not(.is-revealed),
  .has-scroll-motion .security-ai-note:not(.is-revealed) {
    opacity: 0;
    transform: translateY(20px);
  }

  .has-scroll-motion .security-ai-intro.is-revealed,
  .has-scroll-motion .security-ai-board.is-revealed,
  .has-scroll-motion .security-ai-note.is-revealed {
    animation: security-solution-panel-in 650ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .has-scroll-motion .security-ai-board.is-revealed .security-ai-scan {
    animation: security-ai-scan 10.5s cubic-bezier(0.28, 0.04, 0.28, 1) 620ms infinite;
  }

  .has-scroll-motion .security-ai-board.is-revealed .security-ai-ping {
    animation: security-ai-pulse 4.6s ease-in-out infinite;
  }

  .has-scroll-motion .security-ai-board.is-revealed .security-ai-ping--two { animation-delay: 1.3s; }
}

@media (max-width: 1040px) {
  .security-solution-panel {
    grid-template-columns: minmax(300px, 0.9fr) minmax(330px, 1.1fr);
    min-height: 470px;
  }

  .security-solution-media {
    min-height: 470px;
  }

  .security-solution-copy {
    padding: 48px 44px;
  }

  .security-ai-section {
    padding: 112px 0 104px;
  }

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

  .security-ai-board {
    gap: 42px;
  }

  .security-ai-observation {
    min-height: 522px;
  }

  .security-ai-features li {
    padding: 22px 17px 20px;
  }
}

@media (max-width: 760px) {
  .security-solution-showcase {
    margin-top: 48px;
  }

  .security-solution-tabs {
    display: flex;
    gap: 8px;
    padding: 0 0 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scroll-snap-type: inline proximity;
  }

  .security-solution-tab {
    min-width: 155px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .security-solution-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .security-solution-media {
    min-height: 0;
    aspect-ratio: 1.42;
  }

  .security-solution-copy {
    min-height: 350px;
    padding: 45px clamp(25px, 7vw, 52px) 49px;
  }

  .security-solution-copy h3 {
    max-width: 520px;
    font-size: clamp(38px, 9.5vw, 58px);
  }

  .security-ai-section {
    padding: 86px 0 82px;
  }

  .security-ai-inner {
    width: calc(100% - 48px);
  }

  .security-ai-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .security-ai-mark {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-left: 16px;
  }

  .security-ai-mark strong {
    font-size: 52px;
  }

  .security-ai-mark span {
    max-width: 100px;
    margin: 0;
  }

  .security-ai-intro h2 {
    margin: 0;
    font-size: clamp(41px, 10.4vw, 65px);
  }

  .security-ai-intro > div > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .security-ai-board {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 53px;
  }

  .security-ai-observation {
    min-height: 0;
    aspect-ratio: 1.2;
  }

  .security-ai-note {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .security-solution-panels {
    margin-top: 21px;
  }

  .security-solution-tab {
    min-width: 147px;
    min-height: 51px;
    font-size: 11px;
  }

  .security-solution-media {
    aspect-ratio: 1.1;
  }

  .security-solution-media figcaption {
    bottom: 20px;
    left: 19px;
    font-size: 10px;
  }

  .security-solution-media figcaption > span {
    width: 26px;
    height: 26px;
    font-size: 9px;
  }

  .security-solution-copy {
    min-height: 0;
    padding: 35px 24px 39px;
  }

  .security-solution-copy h3 {
    margin-top: 17px;
    font-size: clamp(34px, 10.4vw, 46px);
  }

  .security-solution-copy > p:not(.security-solution-panel-kicker) {
    margin-top: 17px;
    font-size: 15px;
  }

  .security-solution-copy ul {
    margin-top: 23px;
  }

  .security-ai-section {
    padding: 74px 0 70px;
  }

  .security-ai-inner {
    width: calc(100% - 32px);
  }

  .security-ai-intro h2 {
    font-size: clamp(38px, 11.4vw, 51px);
  }

  .security-ai-intro > div > p {
    font-size: 16px;
    line-height: 1.52;
  }

  .security-ai-board {
    gap: 31px;
    margin-top: 44px;
  }

  .security-ai-observation {
    aspect-ratio: 1.08;
  }

  .security-ai-observation figcaption {
    bottom: 20px;
    left: 20px;
    max-width: 205px;
    font-size: 10px;
  }

  .security-ai-ping {
    width: 17px;
    height: 17px;
  }

  .security-ai-ping i {
    width: 34px;
    height: 34px;
  }

  .security-ai-features {
    grid-template-columns: 1fr;
  }

  .security-ai-features li {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 11px;
    padding: 19px 15px 18px;
  }

  .security-ai-features h3 {
    font-size: 15px;
  }

  .security-ai-features p {
    margin-top: 7px;
    font-size: 12px;
  }

  .security-ai-note {
    margin-top: 24px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-solution-panel,
  .security-solution-media::after,
  .security-ai-scan,
  .security-ai-ping {
    animation: none !important;
  }
}

/* Products: a continuous equipment gallery rather than a grid of cards. */
.security-products {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 92px;
  padding: 146px 0 132px;
  background:
    radial-gradient(ellipse 56% 48% at 91% 18%, rgba(167, 226, 249, 0.58), transparent 72%),
    linear-gradient(180deg, #f8fcff 0%, #eef7fb 100%);
  color: #092f58;
}

.security-products::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(35, 143, 193, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(35, 143, 193, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: 74px 74px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 83%, transparent);
  pointer-events: none;
}

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

.security-products-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(30px, 7vw, 118px);
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(20, 117, 166, 0.22);
}

.security-products-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0 0;
  color: #1686be;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.security-products-eyebrow span {
  width: 35px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d9cda, #96e0ff);
}

.security-products-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #092e56;
  font-size: clamp(42px, 4.18vw, 61px);
  font-weight: 770;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.security-products-heading > div > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #57788f;
  font-size: 17px;
  line-height: 1.63;
}

.security-products-stage {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 74px);
  margin-top: 61px;
}

.security-product-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-self: start;
  border-top: 1px solid rgba(19, 115, 164, 0.2);
}

.security-product-tab {
  position: relative;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 9px;
  width: 100%;
  min-height: 49px;
  align-items: center;
  padding: 0 4px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(19, 115, 164, 0.2);
  border-radius: 0;
  background: transparent;
  color: #53758b;
  font: inherit;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
  transition: color 190ms ease, padding-left 190ms ease;
}

.security-product-tab::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -11px;
  width: 2px;
  border-radius: 99px;
  background: #149bd5;
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 220ms ease;
}

.security-product-tab span {
  color: #7ca4ba;
  font-size: 9px;
  font-weight: 830;
  letter-spacing: 0.04em;
}

.security-product-tab:hover,
.security-product-tab:focus-visible,
.security-product-tab.is-active {
  padding-left: 10px;
  color: #093e6a;
}

.security-product-tab:focus-visible {
  outline: 2px solid #149bd5;
  outline-offset: 3px;
}

.security-product-tab.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.security-product-tab.is-active span {
  color: #149bd5;
}

.security-product-panels {
  min-width: 0;
}

.security-product-panel {
  display: none;
  grid-template-columns: minmax(300px, 0.94fr) minmax(290px, 0.88fr);
  gap: clamp(36px, 6vw, 92px);
  min-height: 488px;
  align-items: center;
}

.security-product-panel.is-active {
  display: grid;
}

.security-product-visual {
  position: relative;
  display: grid;
  min-height: 488px;
  margin: 0;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(222, 241, 250, 0.76)),
    #e7f4fa;
}

.security-product-visual::before,
.security-product-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.security-product-visual::before {
  width: min(74%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(28, 137, 191, 0.26);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.security-product-visual::after {
  top: 50%;
  left: 50%;
  width: min(90%, 405px);
  aspect-ratio: 1.38;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(108, 205, 244, 0.34) 0%, rgba(146, 223, 251, 0.14) 42%, transparent 73%);
  filter: blur(6px);
  transform: translate(-50%, -50%);
}

.security-product-orbit {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -26%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px dashed rgba(18, 137, 195, 0.28);
  border-radius: 50%;
  transform: rotate(24deg);
}

.security-product-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(72%, 290px);
  height: auto;
  max-height: 298px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(9, 44, 73, 0.22));
}

.security-product-visual--switch img {
  max-width: min(78%, 312px);
}

.security-product-visual--ronda img {
  max-width: min(57%, 265px);
  max-height: 340px;
}

.security-product-visual--lpr img {
  max-width: min(88%, 420px);
  max-height: 270px;
  mix-blend-mode: multiply;
}

.security-product-visual figcaption {
  position: absolute;
  bottom: 22px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #427a99;
  font-size: 9px;
  font-weight: 810;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.security-product-visual figcaption::before {
  width: 24px;
  height: 1px;
  background: #159bd5;
  content: "";
}

.security-product-copy {
  position: relative;
  min-width: 0;
  padding: 25px 0 28px;
}

.security-product-number {
  position: absolute;
  top: -9px;
  right: -12px;
  z-index: -1;
  margin: 0;
  color: rgba(67, 168, 215, 0.1);
  font-size: clamp(126px, 14vw, 205px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.72;
  pointer-events: none;
}

.security-product-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #1688c0;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.security-product-category::before {
  width: 28px;
  height: 1px;
  background: #1688c0;
  content: "";
}

.security-product-copy h3 {
  max-width: 500px;
  margin: 19px 0 0;
  color: #092f58;
  font-size: clamp(39px, 3.65vw, 54px);
  font-weight: 770;
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.security-product-copy > p:not(.security-product-number):not(.security-product-category) {
  max-width: 465px;
  margin: 21px 0 0;
  color: #55758b;
  font-size: 16px;
  line-height: 1.61;
}

.security-product-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  color: #287da8;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.4;
  list-style: none;
  text-transform: uppercase;
}

.security-product-copy li {
  display: inline-flex;
  align-items: center;
}

.security-product-copy li + li::before {
  width: 3px;
  height: 3px;
  margin: 0 11px;
  border-radius: 50%;
  background: #66c7ee;
  content: "";
}

.security-product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(17, 135, 193, 0.45);
  color: #087cb7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.security-product-copy a span {
  font-size: 20px;
  line-height: 0.75;
}

.security-product-copy a:hover,
.security-product-copy a:focus-visible {
  border-color: #087cb7;
  color: #045d95;
  transform: translateX(3px);
}

.security-product-controls {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 15px;
  margin-top: 23px;
  padding-top: 21px;
  border-top: 1px solid rgba(19, 115, 164, 0.2);
}

.security-product-controls button {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17, 124, 179, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: #0a78b3;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.security-product-controls button:hover,
.security-product-controls button:focus-visible {
  border-color: #0c8dcc;
  background: #0c8dcc;
  color: #ffffff;
  transform: translateY(-2px);
}

.security-product-controls p {
  display: flex;
  gap: 7px;
  margin: 0;
  color: #6f96ad;
  font-size: 11px;
  font-weight: 760;
}

.security-product-controls p span:first-child {
  color: #0d79b5;
  font-size: 15px;
}

.security-product-controls p i {
  width: 24px;
  height: 1px;
  align-self: center;
  background: rgba(24, 126, 178, 0.42);
}

.security-product-progress {
  display: block;
  width: min(172px, 22vw);
  height: 1px;
  margin-left: auto;
  overflow: hidden;
  background: rgba(25, 126, 178, 0.19);
}

.security-product-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #159bd5;
  transform: scaleX(0);
  transform-origin: left center;
}

.security-products-note {
  max-width: 650px;
  margin: 43px 0 0 calc(224px + clamp(34px, 5vw, 74px));
  color: #7b98aa;
  font-size: 12px;
  line-height: 1.55;
}

@keyframes security-product-image-in {
  from {
    opacity: 0;
    filter: blur(5px) drop-shadow(0 22px 18px rgba(9, 44, 73, 0.02));
    transform: translate3d(20px, 12px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    filter: blur(0) drop-shadow(0 22px 18px rgba(9, 44, 73, 0.22));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes security-product-copy-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

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

@keyframes security-product-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .security-product-panel.is-active .security-product-visual img {
    animation: security-product-image-in 620ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .security-product-panel.is-active .security-product-copy > :not(.security-product-number) {
    animation: security-product-copy-in 510ms cubic-bezier(0.2, 0.75, 0.25, 1) 90ms both;
  }

  .security-product-panel.is-active .security-product-copy > :not(.security-product-number):nth-child(3) { animation-delay: 130ms; }
  .security-product-panel.is-active .security-product-copy > :not(.security-product-number):nth-child(4) { animation-delay: 170ms; }
  .security-product-panel.is-active .security-product-copy > :not(.security-product-number):nth-child(5) { animation-delay: 210ms; }
  .security-product-panel.is-active .security-product-copy > :not(.security-product-number):nth-child(6) { animation-delay: 250ms; }
}

@media (max-width: 1040px) {
  .security-products {
    padding: 118px 0 110px;
  }

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

  .security-products-stage {
    grid-template-columns: 188px minmax(0, 1fr);
    column-gap: 40px;
  }

  .security-product-panel {
    grid-template-columns: minmax(270px, 0.92fr) minmax(260px, 0.9fr);
    gap: 42px;
    min-height: 452px;
  }

  .security-product-visual {
    min-height: 452px;
  }

  .security-products-note {
    margin-left: calc(188px + 40px);
  }
}

@media (max-width: 760px) {
  .security-products {
    padding: 87px 0 83px;
  }

  .security-products-inner {
    width: calc(100% - 48px);
  }

  .security-products-heading {
    grid-template-columns: 1fr;
    gap: 21px;
    padding-bottom: 29px;
  }

  .security-products-eyebrow {
    margin: 0;
  }

  .security-products-heading h2 {
    font-size: clamp(40px, 10vw, 55px);
  }

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

  .security-products-stage {
    grid-template-columns: 1fr;
    row-gap: 28px;
    margin-top: 42px;
  }

  .security-product-rail {
    flex-direction: row;
    width: calc(100% + 2px);
    margin-left: -1px;
    padding-bottom: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border-bottom: 1px solid rgba(19, 115, 164, 0.2);
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .security-product-rail::-webkit-scrollbar {
    display: none;
  }

  .security-product-tab {
    width: auto;
    min-width: 158px;
    flex: 0 0 auto;
    min-height: 47px;
    padding: 0 12px;
    border: 1px solid rgba(19, 115, 164, 0.2);
    border-left: 0;
    scroll-snap-align: start;
  }

  .security-product-tab:first-child {
    border-left: 1px solid rgba(19, 115, 164, 0.2);
  }

  .security-product-tab::after {
    top: auto;
    right: 13px;
    bottom: 0;
    left: 13px;
    width: auto;
    height: 2px;
    transform: scaleX(0.35);
  }

  .security-product-tab:hover,
  .security-product-tab:focus-visible,
  .security-product-tab.is-active {
    padding-left: 12px;
  }

  .security-product-tab.is-active::after {
    transform: scaleX(1);
  }

  .security-product-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .security-product-visual {
    min-height: 0;
    aspect-ratio: 1.22;
  }

  .security-product-visual img {
    max-height: 220px;
  }

  .security-product-visual--ronda img {
    max-height: 240px;
  }

  .security-product-visual--lpr img {
    max-height: 210px;
  }

  .security-product-copy {
    padding: 0 0 5px;
  }

  .security-product-number {
    top: 8px;
    right: -5px;
    font-size: 128px;
  }

  .security-product-copy h3 {
    max-width: 560px;
    font-size: clamp(37px, 10.2vw, 49px);
  }

  .security-product-controls {
    grid-column: auto;
    margin-top: 2px;
  }

  .security-product-progress {
    width: min(142px, 30vw);
  }

  .security-products-note {
    margin: 35px 0 0;
  }
}

@media (max-width: 520px) {
  .security-products {
    padding: 75px 0 70px;
  }

  .security-products-inner {
    width: calc(100% - 32px);
  }

  .security-products-heading h2 {
    font-size: clamp(37px, 11.4vw, 48px);
  }

  .security-products-heading > div > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .security-product-tab {
    min-width: 148px;
    font-size: 11px;
  }

  .security-product-visual {
    aspect-ratio: 1.08;
  }

  .security-product-visual figcaption {
    bottom: 16px;
    left: 18px;
    font-size: 8px;
  }

  .security-product-copy h3 {
    margin-top: 17px;
    font-size: clamp(35px, 11.3vw, 44px);
  }

  .security-product-copy > p:not(.security-product-number):not(.security-product-category) {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.55;
  }

  .security-product-copy ul {
    margin-top: 21px;
    font-size: 9px;
  }

  .security-product-copy a {
    margin-top: 24px;
    font-size: 12px;
  }

  .security-product-controls {
    gap: 12px;
    padding-top: 18px;
  }

  .security-product-controls button {
    width: 35px;
    height: 35px;
  }

  .security-product-progress {
    width: min(105px, 29vw);
  }

  .security-products-note {
    margin-top: 29px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-product-panel.is-active .security-product-visual img,
  .security-product-panel.is-active .security-product-copy > :not(.security-product-number),
  .security-product-progress i {
    animation: none !important;
  }
}
