:root {
  --color-bg: #050505;
  --color-bg-soft: #0c0c0c;
  --color-card: #181a1a;
  --color-card-2: #202020;
  --color-border: rgba(255, 255, 255, 0.10);
  --color-text: #f5f7f8;
  --color-muted: #a8b4ba;
  --color-orange: #ff9f43;
  --color-orange-strong: #ff8617;
  --color-blue: #111111;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.34);
  --container: 1300px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-color: var(--color-orange) #151515;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #151515;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #151515;
  border-radius: 999px;
  background: var(--color-orange);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange-strong);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E"),
    linear-gradient(#030303, #030303);
  background-attachment: fixed;
  background-size: 180px 180px, auto;
  font-family: "Overused Grotesk", Inter, "Titillium Web", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  display: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--color-bg);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

.page-loader__mark::before,
.page-loader__mark::after {
  position: absolute;
  inset: -8px;
  content: "";
  border-radius: inherit;
  border: 1px solid transparent;
  border-top-color: var(--color-orange);
  border-right-color: rgba(255, 159, 67, 0.35);
  animation: spin-loader 1100ms linear infinite;
}

.page-loader__mark::after {
  inset: 9px;
  animation-direction: reverse;
  animation-duration: 1500ms;
}

@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 18px;
  left: 18px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--color-blue);
  background: var(--color-orange);
  border-radius: 999px;
}

.site-header {
  position: absolute;
  top: 45px;
  left: 15px;
  right: 15px;
  z-index: 50;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  padding: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header.is-hidden {
  transform: translateY(-115%);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  max-width: 1300px;
  min-height: 84px;
  padding: 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-left: 15px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand img {
  width: 180px;
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.site-nav a {
  padding: 12px 10px;
  border-radius: 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-orange);
  background: transparent;
}

.site-nav__group {
  display: contents;
}

.site-nav__toggle,
.site-nav__submenu,
.mobile-nav-cta {
  display: none;
}

.header-shell > .btn {
  grid-column: 3;
  justify-self: end;
  width: max-content;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-toggle__line::before {
  transform: translateY(-6px);
}

.menu-toggle__line::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line::after {
  transform: translateY(-2px) rotate(-90deg);
}

.btn {
  --btn-bg: transparent;
  --btn-fill: var(--color-white);
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 52px 13px 50px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  background-color: var(--btn-bg);
  background-image: linear-gradient(90deg, var(--btn-fill), var(--btn-fill));
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 420ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  top: 50%;
  left: 21px;
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.01 3 3.28 8.73 3.28 15.76c0 2.25.59 4.45 1.72 6.38L3 29l7.03-1.84a12.7 12.7 0 0 0 6.01 1.53h.01c7.03 0 12.76-5.72 12.76-12.76C28.8 8.73 23.08 3 16.04 3Zm0 23.53h-.01a10.56 10.56 0 0 1-5.38-1.47l-.39-.23-4.17 1.09 1.11-4.06-.26-.42a10.55 10.55 0 1 1 9.1 5.09Zm5.79-7.9c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.81 1.03-.99 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.08-1.1 2.63s1.13 3.05 1.29 3.26c.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.2 2 .12.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.34);
  content: "➜";
  transform: translateY(-50%);
  transition: background 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn--small {
  min-height: 40px;
  padding: 11px 46px 11px 42px;
  font-size: 16px;
}

.btn--small::before {
  left: 18px;
  width: 17px;
  height: 17px;
}

.btn--small::after {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.btn--tiny {
  min-height: 34px;
  padding: 9px 38px 9px 18px;
  border-radius: 10px;
  font-size: 13px;
}

.btn--tiny::before {
  display: none;
}

.btn--tiny::after {
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 0.86em;
}

.btn--no-icon {
  padding-left: 22px;
}

.btn--small.btn--no-icon {
  padding-left: 20px;
}

.btn--no-icon::before {
  display: none;
}

.btn--arrow-down::after {
  content: "\2193";
}

.btn--primary {
  --btn-bg: var(--color-orange);
  --btn-fill: var(--color-white);
  color: #170b02;
  box-shadow: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #170b02;
  background-size: 100% 100%;
  box-shadow: none;
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.05);
  --btn-fill: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost::before {
  background: rgba(255, 159, 67, 0.18);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: #080808;
  border-color: var(--color-white);
  background-size: 100% 100%;
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fill: rgba(245, 247, 248, 0.92);
  color: var(--color-white);
  border-color: rgba(245, 247, 248, 0.42);
  background-color: transparent;
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  color: #080808;
  border-color: rgba(245, 247, 248, 0.82);
  background-size: 100% 100%;
}

.section-pad {
  padding: 110px 0;
}

.hero {
  --metrics-height: 92px;
  position: relative;
  min-height: calc(100vh + 6px);
  margin: 15px 15px 0;
  padding: 205px 0 110px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(18, 18, 18, 0.54) 42%, rgba(0, 0, 0, 0.92)),
    linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
  isolation: isolate;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, #161616 0%, #080808 100%);
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  contain: paint;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#home .hero-bg-video {
  background: #050505;
}

#home .hero-bg-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42) 64%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.56));
}

#home .hero-bg-slideshow {
  opacity: 1;
  visibility: visible;
}

#home .hero-bg-slideshow .hero-bg-image {
  opacity: 0;
  visibility: visible;
  filter: saturate(0.94) contrast(1.04) brightness(1.08);
  transform: scale(1.02);
}

#home .hero-bg-slideshow .hero-bg-image:first-child {
  opacity: 0.7;
}

#home .hero-bg-slideshow.is-slideshow-ready.is-slideshow-active .hero-bg-image {
  animation: hero-photo-blend 32s ease-in-out infinite;
  will-change: opacity, transform;
}

#home .hero-bg-slideshow.is-slideshow-ready.is-slideshow-active .hero-bg-image:first-child {
  animation-name: hero-photo-first;
}

#home .hero-bg-slideshow.is-slideshow-ready.is-slideshow-active .hero-bg-image:nth-child(2) {
  animation-delay: 8s;
}

#home .hero-bg-slideshow.is-slideshow-ready.is-slideshow-active .hero-bg-image:nth-child(3) {
  animation-delay: 16s;
}

#home .hero-bg-slideshow.is-slideshow-ready.is-slideshow-active .hero-bg-image:nth-child(4) {
  animation-delay: 24s;
}

#home .hero-neural-canvas {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: screen;
}

@keyframes hero-photo-blend {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }

  6% {
    opacity: 0.7;
    transform: scale(1.045);
  }

  25% {
    opacity: 0.7;
    transform: scale(1.13);
  }

  33% {
    opacity: 0;
    transform: scale(1.16);
  }

  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes hero-photo-first {
  0% {
    opacity: 0.7;
    transform: scale(1.02);
  }

  25% {
    opacity: 0.7;
    transform: scale(1.13);
  }

  33% {
    opacity: 0;
    transform: scale(1.16);
  }

  92% {
    opacity: 0;
    transform: scale(1.02);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.045);
  }
}

.hero-neural-canvas,
.hero-assets-svg,
.hero-bg-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-assets-svg {
  z-index: 0;
  opacity: 0.82;
  pointer-events: none;
  overflow: visible;
}

.hero.use-assets-svg .hero-neural-canvas {
  opacity: 0;
  visibility: hidden;
}

.hero.use-asset-rings .hero-neural-canvas {
  opacity: 0.86;
  visibility: visible;
  mix-blend-mode: screen;
}

.asset-svg__backdrop {
  fill: #050505;
}

.asset-svg__grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.045);
  stroke-width: 1;
}

.asset-svg__link {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 1.2;
}

.asset-svg__flow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 16 260;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.24));
  animation: asset-flow 5.8s linear infinite;
}

.asset-svg__flow--two {
  animation-delay: -1.4s;
}

.asset-svg__flow--three {
  animation-delay: -2.7s;
}

.asset-svg__flow--four {
  animation-delay: -4s;
}

.asset-svg__module,
.asset-svg__chip {
  fill: rgba(12, 13, 13, 0.44);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.2;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.28));
  animation: asset-float 9s ease-in-out infinite;
}

.asset-svg__module--two,
.asset-svg__chip--two {
  animation-delay: -2.2s;
}

.asset-svg__module--three,
.asset-svg__chip--three {
  animation-delay: -4.6s;
}

.asset-svg__module--four {
  animation-delay: -6.2s;
}

.asset-svg__module-core,
.asset-svg__glyph,
.asset-svg__chip path {
  fill: none;
  stroke: rgba(245, 247, 248, 0.58);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.asset-svg__node {
  fill: rgba(245, 247, 248, 0.86);
  transform-box: fill-box;
  transform-origin: center;
  animation: asset-node-pulse 3.8s ease-in-out infinite;
}

.asset-svg__node--accent {
  fill: var(--color-orange);
  animation-delay: -1.7s;
}

.asset-svg__ping {
  fill: var(--color-white);
  opacity: 0.72;
  transform-box: fill-box;
  transform-origin: center;
  animation: asset-ping 3.6s ease-out infinite;
}

.asset-svg__ping--delay-one {
  animation-delay: -0.9s;
}

.asset-svg__ping--delay-two {
  animation-delay: -1.8s;
}

.asset-svg__ping--delay-three {
  animation-delay: -2.7s;
}

.asset-svg__spark {
  fill: none;
  stroke: rgba(255, 159, 67, 0.38);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: asset-spark 6.2s ease-in-out infinite;
}

.asset-svg__spark--two {
  animation-delay: -2.1s;
}

.asset-svg__spark--three {
  animation-delay: -4.2s;
}

@keyframes asset-flow {
  to {
    stroke-dashoffset: -276;
  }
}

@keyframes asset-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes asset-node-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes asset-ping {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  26% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: scale(4.8);
  }
}

@keyframes asset-spark {
  0%,
  100% {
    opacity: 0.22;
    transform: rotate(0deg) scale(0.92);
  }

  50% {
    opacity: 0.64;
    transform: rotate(12deg) scale(1.06);
  }
}

.hero-neural-canvas {
  opacity: 0.94;
  filter: blur(0.15px);
}

.hero-bg-video video {
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.hero.use-video-fallback .hero-neural-canvas {
  opacity: 0;
  visibility: hidden;
}

.hero.use-video-fallback .hero-bg-video video {
  opacity: 0.72;
  visibility: visible;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(8, 8, 8, 0.14) 48%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(2, 2, 2, 0.52));
  opacity: 0.98;
}

#home.hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.5) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(8, 8, 8, 0.12) 48%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(2, 2, 2, 0.46));
}

.about-page .about-hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(8, 8, 8, 0.1) 48%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(2, 2, 2, 0.38));
  opacity: 0.9;
}

.about-page .about-hero .hero-bg-video {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.16), transparent 46%),
    linear-gradient(180deg, #1b1b1b 0%, #090909 100%);
}

.about-page .about-hero .hero-neural-canvas {
  opacity: 1;
  filter: blur(0.1px) brightness(1.16);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  justify-items: center;
  min-height: calc(100vh - 236px);
  align-content: center;
  padding-bottom: 0;
}

.hero-copy {
  position: relative;
  top: -58px;
  z-index: 2;
  max-width: 1040px;
  text-align: center;
}

.hero-equation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--color-white);
  font-size: 0.94rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: none;
}

.hero-equation__muted {
  color: rgba(245, 247, 248, 0.44);
  font-size: 1.08em;
  font-weight: 400;
}

.hero-equation__brace {
  font-size: 1.28em;
}

.hero-equation__brand {
  color: var(--color-orange);
}

.hero-equation__value {
  color: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 28px;
  padding: 4px 18px 4px 4px;
  color: var(--color-white);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 12px;
  color: #170b02;
  background: var(--color-orange);
  font-weight: 400;
}

.eyebrow span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 930px;
  margin-inline: auto;
  font-size: clamp(3.35rem, 4.35vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-title {
  display: grid;
  gap: 0.04em;
}

.hero-title span {
  display: block;
}

.typed-title {
  min-height: 1em;
  color: var(--color-orange);
}

.hero-title__accent {
  color: var(--color-orange);
}

.inline-accent {
  color: var(--color-orange);
}

.typed-title::after {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
  vertical-align: -0.08em;
  animation: typing-caret 900ms ease-in-out infinite;
}

@keyframes typing-caret {
  0%,
  42% {
    opacity: 1;
  }

  62%,
  100% {
    opacity: 0;
  }
}

h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.7rem);
}

h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
}

.hero-text,
.section-heading p,
.split-copy > p,
.method-header > p,
.faq-intro p,
.final-cta p,
.footer-brand p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 45px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 16px 60px 16px 56px;
  border-radius: 16px;
  font-size: 19px;
}

.hero-actions .btn--arrow-down.btn--no-icon {
  min-height: 52px;
  padding: 15px 58px 15px 26px;
}

.hero-actions .btn::before {
  left: 23px;
  width: 22px;
  height: 22px;
}

.hero-actions .btn::after {
  right: 7px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.microcopy {
  margin: 45px 0 0;
  color: rgba(245, 247, 248, 0.86);
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.microcopy span {
  display: block;
}

.hero-more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
}

.hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 8px;
  z-index: 45;
  width: 32px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  border-radius: 13px;
  background: rgba(28, 28, 28, 0.92);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms ease;
  animation: scroll-cue-pulse 1900ms ease-in-out infinite;
}

.hero-scroll-cue span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(14px) scale(0.9);
}

@keyframes scroll-cue-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    transform: translateX(-50%) translateY(0);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    transform: translateX(-50%) translateY(5px);
  }
}

.hero-more-link span {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #170b02;
  border-radius: 50%;
  background: var(--color-orange);
  font-size: 16px;
  line-height: 1;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 60px;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 40px 0 0;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  text-align: left;
}

.hero-proof-list li {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.hero-proof-list li::before {
  position: absolute;
  top: 0.02em;
  left: 0;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  color: #170b02;
  background: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
}

.hero-panel,
.visual-block {
  position: relative;
  min-height: 570px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 34%, rgba(255, 159, 67, 0.16), transparent 22rem),
    var(--color-card);
  box-shadow: var(--shadow-soft);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(440px, 38vw);
  min-height: 320px;
  margin-top: 0;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 50% 20%, rgba(255, 159, 67, 0.14), transparent 19rem),
    rgba(6, 20, 27, 0.82);
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--parallax-y, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tilt-card:hover {
  border-color: rgba(255, 159, 67, 0.25);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 46px rgba(255, 159, 67, 0.06);
}

.hero-panel::before,
.visual-block::before {
  position: absolute;
  inset: 70px 42px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(var(--rotate, 0deg));
}

.hero-panel::before {
  inset: 56px 54px;
}

.hero-panel::after,
.visual-block::after {
  position: absolute;
  inset: 128px 94px;
  content: "";
  border: 1px dashed rgba(255, 159, 67, 0.24);
  border-radius: 50%;
  transform: rotate(calc(var(--rotate, 0deg) * -0.7));
}

.hero-panel::after {
  inset: 104px 112px;
}

.panel-top,
.panel-footer,
.orbit-card,
.dashboard-card,
.visual-block__metric,
.visual-stack {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-border);
  background: rgba(2, 13, 19, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.panel-top,
.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.panel-top strong {
  color: var(--color-orange);
}

.panel-footer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.orbit-card {
  position: absolute;
  width: min(220px, calc(100% - 56px));
  padding: 18px;
  border-radius: var(--radius-md);
  animation: floating-card 5.2s ease-in-out infinite;
}

.hero-panel .orbit-card {
  width: min(176px, calc(50% - 26px));
  padding: 14px;
}

.hero-panel .orbit-card strong {
  font-size: 1.12rem;
}

.orbit-card--two {
  animation-delay: -1.2s;
}

@keyframes floating-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.orbit-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.orbit-card strong {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-size: 1.5rem;
}

.orbit-card--one {
  top: 86px;
  left: 18px;
}

.orbit-card--two {
  top: 86px;
  right: 18px;
}

.dashboard-card {
  position: absolute;
  right: 18px;
  bottom: 70px;
  left: 18px;
  padding: 16px;
  border-radius: 24px;
}

.hero-panel .dashboard-card {
  bottom: 64px;
}

.hero-panel .chart-bars {
  height: 54px;
  margin: 12px 0;
}

.dashboard-card__header,
.dashboard-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.dashboard-card__header span:last-child {
  color: var(--color-orange);
  font-weight: 500;
}

.chart-bars {
  display: grid;
  height: 76px;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  margin: 16px 0;
}

.chart-bars i {
  display: block;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--color-orange), rgba(255, 159, 67, 0.14));
  transform-origin: bottom;
  animation: bar-rise 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.chart-bars i:nth-child(2) {
  animation-delay: 80ms;
}

.chart-bars i:nth-child(3) {
  animation-delay: 160ms;
}

.chart-bars i:nth-child(4) {
  animation-delay: 240ms;
}

.chart-bars i:nth-child(5) {
  animation-delay: 320ms;
}

@keyframes bar-rise {
  from {
    transform: scaleY(0.08);
    opacity: 0.35;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.metrics {
  --metrics-height: 92px;
  position: relative;
  z-index: 8;
  margin-top: calc(var(--metrics-height) / -2);
  padding: 0 0 calc(4px + var(--metrics-height) / 5);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 940px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 159, 67, 0.34);
  border-radius: 18px;
  background: var(--color-orange);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.metrics-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: var(--metrics-height);
  padding: 14px 18px;
  border-right: 1px solid rgba(23, 11, 2, 0.16);
  text-align: center;
}

.metrics-grid article:last-child {
  border-right: 0;
}

.metrics-grid strong {
  display: block;
  color: #170b02;
  font-size: clamp(1.75rem, 2.45vw, 2.7rem);
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 11, 2, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.about-showcase {
  position: relative;
  overflow: hidden;
  padding: 52px 0 62px;
  background: transparent;
}

@media (min-width: 1025px) {
  .about-showcase--internal {
    padding-top: calc(52px + 100px);
  }
}

.about-showcase__inner {
  position: relative;
}

.about-showcase__mark {
  position: absolute;
  left: 0;
  top: 300px;
  z-index: 0;
  width: 320px;
  height: 289px;
  opacity: 0.055;
  filter: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-showcase__portrait {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: min(300px, 92%);
  height: auto;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + 300px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-showcase__header,
.about-showcase__content,
.about-certifications {
  position: relative;
  z-index: 1;
}

.about-showcase__header {
  display: grid;
  grid-template-columns: 0.34fr 0.34fr 0.32fr;
  gap: 42px;
  align-items: start;
}

.eyebrow--section,
.eyebrow--compact {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  min-height: 26px;
  margin: 0 0 40px;
  padding: 0 12px;
  color: var(--color-white);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eyebrow--section span,
.eyebrow--compact span {
  display: inline-grid;
  width: 10px;
  height: 10px;
  place-items: center;
  color: var(--color-orange);
  font-size: 15px;
  line-height: 1;
  transform: translateY(0);
}

.about-showcase h2 {
  grid-column: 2 / -1;
  max-width: 810px;
  color: var(--color-white);
  font-size: clamp(2.68rem, 2.85vw, 3.32rem);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.about-showcase__content {
  display: grid;
  grid-template-columns: 0.34fr 0.34fr 0.32fr;
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}

.about-experience {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  padding-right: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.about-experience__figure {
  --experience-number-size: clamp(7.7rem, 8.65vw, 9.5rem);
  --experience-badge-x: calc(var(--experience-number-size) * 0.82);
  position: relative;
  display: inline-grid;
  min-width: 340px;
  max-width: 100%;
}

.about-experience__number {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 0.78;
}

.about-experience__plus {
  color: var(--color-white);
  font-size: calc(var(--experience-number-size) * 0.72);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.78;
  transform: translateY(0.04em);
}

.about-experience__number strong {
  color: var(--color-white);
  font-size: var(--experience-number-size);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-experience__number span:not(.about-experience__plus) {
  margin-top: 0;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: lowercase;
}

.about-experience__badge {
  position: absolute;
  left: var(--experience-badge-x);
  top: calc(var(--experience-number-size) * 0.47);
  right: auto;
  z-index: 1;
  display: inline-flex;
  margin: 0;
  padding: 6px 20px;
  color: #170b02;
  border-radius: 11px;
  background: var(--color-orange);
  font-size: 0.95rem;
  line-height: 1;
}

.about-experience p,
.about-showcase__copy p {
  color: rgba(245, 247, 248, 0.82);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.56;
}

.about-experience p {
  max-width: 390px;
  margin: 16px 0 0;
}

.about-showcase__copy {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  align-items: center;
  align-self: center;
  padding-right: 86px;
}

.about-showcase__copy p {
  flex: 1 1 100%;
  margin: 0;
}

.about-contact {
  position: relative;
  display: inline-grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--color-white);
}

.about-contact__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: spin-loader 14s linear infinite;
}

.about-contact__ring text {
  fill: var(--color-white);
  font-size: 8.2px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.about-contact__arrow {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #170b02;
  border-radius: 50%;
  background: var(--color-orange);
  line-height: 1;
}

.about-contact__arrow::before {
  width: 25px;
  height: 25px;
  display: block;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.01 3 3.28 8.73 3.28 15.76c0 2.25.59 4.45 1.72 6.38L3 29l7.03-1.84a12.7 12.7 0 0 0 6.01 1.53h.01c7.03 0 12.76-5.72 12.76-12.76C28.8 8.73 23.08 3 16.04 3Zm0 23.53h-.01a10.56 10.56 0 0 1-5.38-1.47l-.39-.23-4.17 1.09 1.11-4.06-.26-.42a10.55 10.55 0 1 1 9.1 5.09Zm5.79-7.9c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.81 1.03-.99 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.08-1.1 2.63s1.13 3.05 1.29 3.26c.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.2 2 .12.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-certifications {
  margin-top: 92px;
}

.about-certifications__title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.about-certifications__title strong {
  font-weight: 300;
}

.about-certifications__title span {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.about-certifications__grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: clamp(30px, 4.8vw, 72px);
  align-items: center;
  margin-top: 0;
}

.about-certifications__marquee,
.about-certifications__track {
  display: contents;
}

.about-certifications__track[aria-hidden="true"] {
  display: none;
}

.about-certification {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.about-certification__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-orange);
}

.about-certification__icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

@keyframes certifications-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--wide {
  max-width: 970px;
}

.section-heading p {
  margin: 20px 0 0;
}

.feature-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.service-card,
.method-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)), var(--color-card);
}

.feature-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(125deg, transparent 15%, rgba(255, 255, 255, 0.06), transparent 42%);
  transform: translateX(-100%);
  transition: opacity 240ms ease, transform 700ms ease;
}

.feature-card:hover::before,
.service-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.feature-card::after,
.service-card::after,
.method-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(255, 159, 67, 0.18);
  border-radius: 50%;
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 500;
}

.card-number {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.feature-card p,
.service-card p,
.method-card p {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.section-surface {
  background: transparent;
}

#trafego.section-surface {
  position: relative;
  margin: 0 15px;
  padding: 110px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 159, 67, 0.045), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.045), transparent 26rem),
    #181818;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

#trafego.section-surface::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 46%, rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.08));
}

#trafego .section-heading h2 {
  font-size: clamp(2.65rem, 3.55vw, 4rem);
}

#trafego .section-heading h2 .services-title__break {
  display: block;
}

.ads-marquee {
  --ads-logo-width: clamp(92px, 9vw, 120px);
  --ads-logo-gap: clamp(28px, 4.4vw, 64px);
  --ads-marquee-offset-y: 20px;
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: clamp(34px, 4.8vw, 62px) 0;
  overflow: hidden;
  background: transparent;
  transform: translateY(var(--ads-marquee-offset-y));
}

.ads-marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.ads-marquee__track {
  display: flex;
  width: max-content;
  animation: ads-logo-marquee 34s linear infinite;
  will-change: transform;
}

.ads-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--ads-logo-gap);
  align-items: center;
  padding-right: var(--ads-logo-gap);
}

.ads-marquee__logo {
  flex: 0 0 var(--ads-logo-width);
  width: var(--ads-logo-width);
  height: calc(var(--ads-logo-width) / 3);
  display: grid;
  place-items: center;
  opacity: 0.88;
  filter: saturate(0.9);
}

.ads-marquee__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#metodo {
  padding-top: 78px;
}

@keyframes ads-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.about-showcase + .section-pad {
  padding-top: 82px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-groups {
  display: grid;
  gap: 46px;
}

.service-group {
  position: relative;
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 38px 28px 26px;
  border: 0;
  border-radius: 24px;
}

.service-group::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 3px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(245, 247, 248, 0.18) 0%,
    rgba(245, 247, 248, 0.145) 18%,
    rgba(245, 247, 248, 0.095) 42%,
    rgba(245, 247, 248, 0.025) 76%,
    rgba(245, 247, 248, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-group > * {
  position: relative;
  z-index: 1;
}

.service-group__intro {
  position: relative;
  min-width: 0;
}

.service-group__intro::before {
  position: absolute;
  z-index: 0;
  top: -49px;
  left: -18px;
  content: attr(data-service-index);
  color: rgba(245, 247, 248, 0.08);
  font-size: clamp(4.6rem, 6.6vw, 6.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.service-group__title {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  color: var(--color-orange);
  background: transparent;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.88;
  text-transform: none;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.service-group__title span {
  display: block;
}

.service-group__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.service-group__copy p {
  margin: 0;
  color: var(--color-white);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
}

.service-menu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.service-menu__item {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  color: rgba(245, 247, 248, 0.72);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-groups .service-group:nth-child(2) .service-menu__item {
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.service-menu__item:last-child {
  border-bottom: 0;
}

.service-menu__item span {
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.service-menu__item strong {
  color: var(--color-white);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.18;
}

.service-menu__item.is-active {
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 159, 67, 0.72);
}

.service-menu__item.is-active strong {
  color: var(--color-orange);
}

.service-menu__item:focus-visible,
.service-slider__button:focus-visible {
  outline: 1px solid rgba(255, 159, 67, 0.72);
  outline-offset: 3px;
}

.service-slider {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
}

.service-slider__controls {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
}

.service-slider__button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-slider__button::before {
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-1px);
}

.service-slider__button[data-service-prev]::before {
  content: "‹";
}

.service-slider__button[data-service-next]::before {
  content: "›";
}

.service-slider__button:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.service-slides {
  --service-slide-index: 0;
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--service-slide-index) * -100%));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-slide {
  min-width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-slide[aria-hidden="true"] {
  pointer-events: none;
}

.service-slide .card-number {
  margin-bottom: 5px;
}

.service-slide h3 {
  max-width: calc(100% - 92px);
  font-size: clamp(1.42rem, 1.9vw, 1.78rem);
  line-height: 1;
}

.service-slide p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(245, 247, 248, 0.72);
}

.service-slide .tags {
  margin-top: auto;
  padding-top: 16px;
}

.service-slide__button {
  align-self: flex-end;
  width: max-content;
  min-height: 30px;
  margin-top: 14px;
  margin-left: auto;
  padding: 7px 34px 7px 12px;
  color: rgba(245, 247, 248, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-image: none;
  font-size: 0.78rem;
}

.service-slide__button::before {
  display: none;
}

.service-slide__button::after {
  right: 13px;
  width: 7px;
  height: 7px;
  display: block;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 180ms ease;
}

.service-slide__button:hover::after,
.service-slide__button:focus-visible::after {
  transform: translate(2px, -50%) rotate(45deg);
}

.service-slide__button:hover,
.service-slide__button:focus-visible {
  color: rgba(245, 247, 248, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
  background-size: 0% 100%;
}

.service-accordion {
  display: none;
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.service-card--featured {
  background: transparent;
}

.service-card::after {
  display: none;
}

.service-card.tilt-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.service-card .card-number {
  margin-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 500;
}

.service-card h3 {
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  line-height: 1;
}

.service-description-toggle {
  align-self: flex-start;
  margin-top: 10px;
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: #050505;
  border: 0;
  border-radius: 4px;
  background: var(--color-orange);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.service-description-toggle:focus-visible {
  outline: 1px solid rgba(255, 159, 67, 0.72);
  outline-offset: 4px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
}

.tags span {
  padding: 4px 7px;
  color: rgba(245, 247, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.62rem;
  letter-spacing: 0.55px;
  line-height: 1;
  text-transform: uppercase;
}

.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.visual-block {
  min-height: 520px;
}

.visual-block__metric {
  width: min(330px, 100%);
  padding: 24px;
  border-radius: 24px;
}

.visual-block__metric strong {
  display: block;
  font-size: 2rem;
}

.visual-block__metric span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
}

.visual-stack {
  position: absolute;
  right: 28px;
  bottom: 34px;
  display: grid;
  width: min(280px, calc(100% - 56px));
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
}

.visual-stack span,
.reason-grid span {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.visual-stack span {
  padding: 13px 14px;
}

.split-copy p {
  margin: 22px 0 0;
}

.eyebrow.eyebrow--section,
.eyebrow.eyebrow--compact {
  min-height: 26px;
  margin: 0 0 40px;
  padding: 0 12px;
  gap: 6px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow.eyebrow--section span,
.eyebrow.eyebrow--compact span {
  width: 10px;
  height: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.reason-grid span {
  padding: 14px 16px;
  color: rgba(245, 247, 248, 0.88);
}

.method-header {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(340px, 0.36fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 74px;
}

#method-title {
  max-width: 680px;
  font-size: clamp(3.25rem, 3.6vw, 4rem);
  line-height: 1.05;
  white-space: nowrap;
}

.method-header p,
.method-proof p {
  margin: 0;
}

.method-header__aside {
  display: grid;
  justify-items: end;
  padding-top: 0;
  text-align: left;
}

.method-header__aside p {
  max-width: 560px;
  color: rgba(245, 247, 248, 0.88);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: method;
}

.method-card {
  --method-lift: 0px;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 22px 20px;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(12, 13, 13, 0.92);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, calc(var(--parallax-y, 0px) + var(--method-lift)), 0);
  transition:
    transform 1100ms cubic-bezier(0.45, 0, 0.55, 1),
    box-shadow 1100ms cubic-bezier(0.45, 0, 0.55, 1),
    border-color 560ms ease;
}

.method-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 4px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(245, 247, 248, 0.18) 0%,
    rgba(245, 247, 248, 0.145) 18%,
    rgba(245, 247, 248, 0.095) 42%,
    rgba(245, 247, 248, 0.025) 76%,
    rgba(245, 247, 248, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.method-card::after {
  display: none;
}

.method-card.tilt-card:hover {
  --method-lift: -14px;
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.42);
}

.method-card__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  color: rgba(245, 247, 248, 0.94);
}

.method-card__icon::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: var(--color-orange);
  opacity: 0.82;
}

.method-card__icon img {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: block;
  filter: invert(1) brightness(1.2);
}

.method-card__kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: clamp(1.02rem, 1.08vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.method-card h3 {
  position: relative;
  z-index: 1;
  max-width: 250px;
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.34;
}

.method-card__number {
  --method-number-lift: 0px;
  position: absolute;
  right: 6px;
  bottom: -10px;
  z-index: 1;
  margin: 0;
  color: var(--color-orange);
  font-size: clamp(3rem, 4vw, 3.85rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.04em;
  transform: translate3d(0, var(--method-number-lift), 0);
  transition: transform 1100ms cubic-bezier(0.45, 0, 0.55, 1);
}

.method-card:hover .method-card__number {
  --method-number-lift: -14px;
}

.method-proof {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin-top: 64px;
  color: var(--color-white);
  text-align: center;
}

.method-proof p {
  max-width: 720px;
  color: rgba(245, 247, 248, 0.78);
  font-size: 1.02rem;
}

.method-proof .btn {
  min-width: 168px;
}

.faq-section {
  padding: 82px 0 0;
}

.faq-section .container {
  width: min(calc(100% - 92px), 1820px);
  max-width: none;
}

.faq-panel {
  --faq-accent: var(--color-orange);
  display: grid;
  grid-template-columns: minmax(580px, 1fr) minmax(560px, 606px);
  gap: clamp(48px, 4.4vw, 72px);
  align-items: center;
  min-height: 760px;
  padding: 118px clamp(96px, 14.35vw, 275px);
  border-radius: 18px;
  background: #181818;
}

.faq-panel .eyebrow span {
  color: var(--faq-accent);
}

.faq-intro {
  max-width: 680px;
}

@media (min-width: 1025px) {
  .faq-panel {
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: clamp(96px, 12vh, 130px);
    align-self: start;
  }
}

.faq-intro .eyebrow {
  margin-bottom: 24px;
}

.faq-intro h2 {
  max-width: 680px;
  color: var(--color-white);
  font-size: clamp(2.85rem, 3vw, 3.15rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

.faq-contact {
  position: relative;
  display: inline-grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin-top: 46px;
  color: var(--color-white);
}

.faq-contact__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: spin-loader 14s linear infinite;
}

.faq-contact__ring text {
  fill: var(--color-white);
  font-size: 8.4px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.faq-contact__arrow {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #170b02;
  border-radius: 50%;
  background: var(--faq-accent);
  line-height: 1;
}

.faq-contact__arrow::before {
  width: 25px;
  height: 25px;
  display: block;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.01 3 3.28 8.73 3.28 15.76c0 2.25.59 4.45 1.72 6.38L3 29l7.03-1.84a12.7 12.7 0 0 0 6.01 1.53h.01c7.03 0 12.76-5.72 12.76-12.76C28.8 8.73 23.08 3 16.04 3Zm0 23.53h-.01a10.56 10.56 0 0 1-5.38-1.47l-.39-.23-4.17 1.09 1.11-4.06-.26-.42a10.55 10.55 0 1 1 9.1 5.09Zm5.79-7.9c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.81 1.03-.99 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.08-1.1 2.63s1.13 3.05 1.29 3.26c.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.2 2 .12.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 24px;
  width: 100%;
  align-items: center;
  gap: 0;
  min-height: 70px;
  padding: 20px 30px;
  color: var(--color-white);
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.28;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  justify-self: end;
  width: 18px;
  height: 18px;
}

.faq-question span::before,
.faq-question span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--faq-accent);
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  border-top: 1px solid transparent;
  transition: max-height 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.faq-answer__content {
  display: grid;
  min-height: 0;
  gap: 12px;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  max-height: 720px;
  padding-top: 24px;
  padding-bottom: 26px;
  border-color: rgba(255, 255, 255, 0.095);
}

.faq-answer p {
  margin: 0;
  padding: 0;
  color: rgba(245, 247, 248, 0.84);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
}

.faq-page-hero {
  position: relative;
  display: grid;
  min-height: clamp(360px, 42vh, 470px);
  align-items: end;
  margin: 15px 15px 0;
  padding: 148px 0 72px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(12, 12, 12, 0.72)),
    radial-gradient(circle at 78% 26%, rgba(255, 159, 67, 0.18), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #161616 0%, #090909 100%);
  isolation: isolate;
}

.faq-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.04) 0 18px, rgba(255, 255, 255, 0.01) 18px 44px);
  filter: blur(1px);
  opacity: 0.42;
  transform: skewX(-8deg) scaleX(1.12);
}

.faq-page-hero__inner {
  width: min(calc(100% - 92px), 1300px);
  max-width: none;
}

.faq-page-hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(3.1rem, 5.35vw, 6.1rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

.faq-page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 300;
  line-height: 1.58;
}

.faq-page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(245, 247, 248, 0.66);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.faq-page-breadcrumb a {
  transition: color 180ms ease;
}

.faq-page-breadcrumb a:hover,
.faq-page-breadcrumb a:focus-visible {
  color: var(--color-orange);
}

.faq-page-content {
  padding-top: 96px;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 760px);
  gap: clamp(46px, 5.4vw, 86px);
  align-items: start;
  justify-content: center;
  width: min(calc(100% - 92px), 1300px);
  max-width: none;
}

.faq-page-sidebar {
  position: sticky;
  top: clamp(22px, 3vh, 34px);
  display: grid;
  gap: 22px;
  align-self: start;
}

.faq-page-nav,
.faq-page-cta {
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-page-nav {
  display: grid;
  padding: 22px;
}

.faq-page-cta h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.18;
}

.faq-page-nav a {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 248, 0.82);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.faq-page-nav a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-page-nav a span {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.05);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-page-nav a span::before {
  width: 17px;
  height: 17px;
  content: "";
  background: var(--color-orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.6 3.8 13.8 8l-4.2 4.2-.9-.9 2.6-2.6H2.2V7.3h9.1L8.7 4.7l.9-.9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-page-nav a:hover,
.faq-page-nav a:focus-visible {
  color: var(--color-orange);
  transform: translateX(4px);
}

.faq-page-nav a:hover span,
.faq-page-nav a:focus-visible span {
  border-color: rgba(255, 159, 67, 0.24);
  background: rgba(0, 0, 0, 0.12);
  transform: translateX(2px);
}

.faq-page-cta {
  padding: 26px 24px 28px;
}

.faq-page-cta__icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--color-orange);
}

.faq-page-cta__icon::before {
  width: 22px;
  height: 22px;
  content: "";
  background: #150b03;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.01 3 3.28 8.73 3.28 15.76c0 2.25.59 4.45 1.72 6.38L3 29l7.03-1.84a12.7 12.7 0 0 0 6.01 1.53h.01c7.03 0 12.76-5.72 12.76-12.76C28.8 8.73 23.08 3 16.04 3Zm0 23.53h-.01a10.56 10.56 0 0 1-5.38-1.47l-.39-.23-4.17 1.09 1.11-4.06-.26-.42a10.55 10.55 0 1 1 9.1 5.09Zm5.79-7.9c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.81 1.03-.99 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.08-1.1 2.63s1.13 3.05 1.29 3.26c.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.2 2 .12.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-page-cta p {
  margin: 18px 0 26px;
  color: rgba(245, 247, 248, 0.72);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.58;
}

.faq-page-cta .btn {
  width: 100%;
  min-width: 0;
  padding-right: 42px;
  padding-left: 42px;
  white-space: nowrap;
}

.faq-page-group {
  scroll-margin-top: 120px;
  margin-bottom: clamp(58px, 6vw, 86px);
}

.faq-page-group:last-child {
  margin-bottom: 0;
}

.faq-page-group__title {
  margin: 0 0 24px;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(1.86rem, 2.22vw, 2.82rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-page-list {
  display: grid;
  gap: 14px;
}

.faq-page .faq-page-list .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(255, 255, 255, 0.075);
}

.faq-page .faq-page-list .faq-question {
  min-height: 64px;
  padding: 18px 26px;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.3;
}

.faq-page .faq-page-list .faq-item.is-open .faq-answer {
  padding-top: 20px;
  padding-bottom: 24px;
}

.faq-page .faq-page-list .faq-answer {
  padding-right: 26px;
  padding-left: 26px;
}

.faq-page .faq-page-list .faq-answer p {
  color: rgba(245, 247, 248, 0.78);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.54;
}

.legal-page-content {
  padding-top: 96px;
  padding-bottom: 42px;
}

.legal-page-layout {
  width: min(calc(100% - 92px), 980px);
  max-width: none;
}

.legal-page-panel {
  display: grid;
  gap: 34px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.legal-page-updated {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(245, 247, 248, 0.68);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page-section {
  display: grid;
  gap: 14px;
}

.legal-page-section h2 {
  margin: 0;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(1.34rem, 1.55vw, 1.76rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.legal-page-section p,
.legal-page-section li {
  color: rgba(245, 247, 248, 0.78);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.62;
}

.legal-page-section p {
  margin: 0;
}

.legal-page-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-page-section li {
  position: relative;
  padding-left: 22px;
}

.legal-page-section li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--color-orange);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: clamp(640px, 76vh, 760px);
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

.final-cta__inner {
  position: relative;
  top: clamp(52px, 7vh, 84px);
  max-width: 1300px;
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 32px;
}

.giant-text {
  position: absolute;
  top: -70px;
  left: -12px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 500;
  line-height: 0.88;
  white-space: nowrap;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.final-cta__visual {
  position: absolute;
  right: clamp(-80px, calc(6vw - 100px), 50px);
  bottom: 80px;
  z-index: 0;
  width: min(500px, 38vw);
  height: auto;
  opacity: 0.72;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  pointer-events: none;
  will-change: transform;
}

.final-cta__inner > *:not(.giant-text, .final-cta__visual) {
  position: relative;
  z-index: 1;
}

.site-footer {
  --footer-accent: var(--color-orange);
  padding: 110px 0 34px;
  background: transparent;
}

.site-footer .container {
  width: min(calc(100% - 92px), 1820px);
  max-width: none;
}

.footer-panel {
  padding: clamp(78px, 7vw, 120px) clamp(64px, 14vw, 275px) 48px;
  border-radius: 18px;
  background: #181818;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.16fr) repeat(3, minmax(170px, 0.7fr));
  gap: clamp(46px, 5vw, 90px);
  align-items: start;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 28px 0 0;
  color: rgba(245, 247, 248, 0.86);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
}

.footer-links h2 {
  margin: 0 0 26px;
  color: var(--color-white);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.footer-links a {
  position: relative;
  display: block;
  margin: 0 0 18px;
  padding-left: 20px;
  color: rgba(245, 247, 248, 0.86);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.35;
  transition: color 180ms ease;
}

.footer-links a::before {
  position: absolute;
  top: 0.03em;
  left: 0;
  content: "*";
  color: var(--footer-accent);
  font-size: 1rem;
  line-height: 1;
  background: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--footer-accent);
}

.footer-links h2 a {
  display: inline;
  margin: 0;
  padding-left: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.footer-links h2 a::before {
  display: none;
  content: none;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 44px;
  align-items: center;
  margin: 64px auto 0;
  padding: 58px 52px 64px;
  border: 0;
  border-radius: 18px 18px 0 0;
}

.footer-cta::before {
  position: absolute;
  inset: 0;
  padding: 4px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 159, 67, 0.98) 0%,
    rgba(255, 159, 67, 0.78) 30%,
    rgba(255, 159, 67, 0.16) 62%,
    rgba(255, 159, 67, 0) 82%,
    rgba(255, 159, 67, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.footer-cta.is-border-visible::before {
  opacity: 1;
}

.footer-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.45rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.footer-cta .btn {
  position: relative;
  z-index: 1;
  justify-self: center;
  min-width: 300px;
  min-height: 58px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 19px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 54px 0 30px;
}

.footer-legal a {
  color: rgba(245, 247, 248, 0.48);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.3;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: rgba(245, 247, 248, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 0;
  color: rgba(245, 247, 248, 0.48);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.text-anime .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--char-index, 0) * 18ms);
}

.text-anime .word-unit {
  display: inline-block;
  white-space: nowrap;
}

.text-anime.is-visible .char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.text-scrub .scrub-word {
  display: inline-block;
  white-space: nowrap;
}

.text-scrub .scrub-char {
  display: inline-block;
  color: rgba(245, 247, 248, 0.22);
  transition: color 180ms linear, text-shadow 180ms linear;
}

.text-scrub .scrub-char.is-lit {
  color: var(--color-text);
}

.text-scrub .scrub-char.is-lit-soft {
  color: rgba(245, 247, 248, 0.58);
}

.text-scrub .scrub-word--accent .scrub-char {
  color: rgba(255, 159, 67, 0.34);
}

.text-scrub .scrub-word--accent .scrub-char.is-lit,
.text-scrub .scrub-word--accent .scrub-char.is-lit-soft {
  color: var(--color-orange);
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 22px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  --reveal-x: -34px;
  --reveal-y: 0px;
}

.reveal[data-reveal="right"] {
  --reveal-x: 34px;
  --reveal-y: 0px;
}

.reveal[data-reveal="scale"] {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.reveal.is-visible.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--parallax-y, 0px), 0);
}

.reveal.is-visible.method-card.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, calc(var(--parallax-y, 0px) + var(--method-lift, 0px)), 0);
}

.reveal.method-card {
  transition:
    opacity 720ms ease,
    transform 1100ms cubic-bezier(0.45, 0, 0.55, 1),
    box-shadow 1100ms cubic-bezier(0.45, 0, 0.55, 1),
    border-color 560ms ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .service-page-card:hover,
  .service-page-card:focus-within {
    transform: translate3d(0, 0, 0);
  }

  .page-loader {
    display: none;
  }

  .text-anime .char,
  .text-scrub .scrub-char {
    opacity: 1;
    transform: none;
    color: inherit;
  }

  .typed-title::after {
    animation: none;
    opacity: 1;
  }

  .orbit-card,
  .chart-bars i,
  .page-loader__mark::before,
  .page-loader__mark::after {
    animation: none;
  }
}

@media (max-width: 1320px) and (min-width: 1025px) {
  #trafego .section-heading h2 {
    max-width: none;
  }

  .about-showcase__header,
  .about-showcase__content {
    grid-template-columns: minmax(300px, 0.32fr) minmax(285px, 0.30fr) minmax(350px, 0.38fr);
    gap: 32px;
  }

  .about-showcase h2 {
    max-width: 760px;
    font-size: clamp(2.55rem, 3.65vw, 3.25rem);
  }

  .about-experience {
    padding-right: 32px;
  }

  .about-experience__figure {
    min-width: 0;
    width: 100%;
  }

  .about-experience__badge {
    left: var(--experience-badge-x);
    right: auto;
  }

  .about-showcase__copy {
    max-width: 430px;
    padding-right: 56px;
  }

  .faq-section .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .faq-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 64px 56px;
  }

  .faq-intro {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 40px;
    align-items: center;
    max-width: none;
  }

  .faq-intro .eyebrow,
  .faq-intro h2 {
    grid-column: 1;
  }

  .faq-intro h2 {
    max-width: 760px;
  }

  .faq-contact {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .site-footer .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .footer-panel {
    padding: 64px 56px 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(145px, 0.7fr));
    gap: 30px;
  }

  .footer-brand p,
  .footer-links a {
    font-size: 0.92rem;
  }

  .footer-links h2 {
    font-size: 1rem;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 34px 50px;
  }

  .footer-cta h2 {
    max-width: 760px;
    font-size: clamp(2.05rem, 3.6vw, 2.8rem);
  }
}

@media (max-width: 1460px) and (min-width: 1025px) {
  .faq-section .container,
  .site-footer .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .faq-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 64px clamp(42px, 4.8vw, 72px);
  }

  .faq-intro {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 40px;
    align-items: center;
    max-width: none;
  }

  .faq-intro .eyebrow,
  .faq-intro h2 {
    grid-column: 1;
  }

  .faq-intro h2 {
    max-width: 760px;
  }

  .faq-contact {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .footer-panel {
    padding: 64px clamp(42px, 4.8vw, 72px) 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(26px, 2.7vw, 42px);
  }

  .footer-brand p,
  .footer-links a {
    font-size: 0.92rem;
  }

  .footer-links h2 {
    font-size: 1rem;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 34px 50px;
  }

  .footer-cta h2 {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(2.05rem, 3.6vw, 2.8rem);
  }

  .footer-cta .btn {
    justify-self: center;
  }
}

@media (max-width: 1840px) and (min-width: 1461px) {
  .faq-section .container,
  .site-footer .container {
    width: min(calc(100% - 92px), 1820px);
  }

  .faq-panel {
    grid-template-columns: minmax(420px, 0.92fr) minmax(500px, 1fr);
    gap: clamp(44px, 3.5vw, 64px);
    padding: 96px clamp(56px, 5.2vw, 96px);
  }

  .faq-intro h2 {
    max-width: 610px;
  }

  .faq-list {
    min-width: 0;
  }

  .footer-panel {
    padding: clamp(78px, 6.4vw, 112px) clamp(56px, 5.2vw, 96px) 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(34px, 3vw, 58px);
  }

  .footer-brand p,
  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-links h2 {
    font-size: 1.04rem;
  }

  .footer-cta {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    padding: 58px clamp(48px, 4.4vw, 72px) 64px;
  }
}

@media (max-width: 1160px) and (min-width: 1025px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
  }

  .footer-brand p {
    max-width: 360px;
  }

  .footer-cta h2 {
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  body.is-menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 90;
  }

  .site-header.is-menu-open {
    transform: none;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 26px;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 92;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    color: #170b02;
    border-color: rgba(255, 159, 67, 0.86);
    background: var(--color-orange);
  }

  .site-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 86;
    width: min(92vw, 420px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 154px 54px 28px;
    overflow-y: auto;
    color: var(--color-text);
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0 24px 24px 0;
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0) 34%),
      linear-gradient(145deg, rgba(34, 34, 34, 0.88), rgba(10, 10, 10, 0.92) 58%, rgba(0, 0, 0, 0.95));
    box-shadow: 26px 0 72px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-105%, 0, 0);
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav__group {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .site-nav__desktop-link {
    display: none;
  }

  .site-nav > .site-nav__link,
  .site-nav__toggle {
    width: 100%;
    height: 58px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--color-text);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: transparent;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
  }

  .site-nav > .site-nav__link {
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .site-nav__toggle {
    flex-direction: row-reverse;
    border-bottom: 0;
  }

  .site-nav__toggle > span:not(.site-nav__chevron) {
    display: inline-flex;
    height: 100%;
    align-items: center;
  }

  .site-nav > .site-nav__link:hover,
  .site-nav > .site-nav__link:focus-visible,
  .site-nav__toggle:hover,
  .site-nav__toggle:focus-visible {
    color: var(--color-orange);
  }

  .site-nav__chevron {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .site-nav__chevron::before,
  .site-nav__chevron::after {
    position: absolute;
    inset: 0;
    content: "";
    background: currentColor;
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .site-nav__chevron::before {
    opacity: 1;
    transform: translateY(0);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  }

  .site-nav__chevron::after {
    opacity: 0;
    transform: translateY(2px);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  }

  .site-nav__toggle[aria-expanded="true"] .site-nav__chevron::before {
    opacity: 0;
    transform: translateY(-2px);
  }

  .site-nav__toggle[aria-expanded="true"] .site-nav__chevron::after {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__submenu {
    display: grid;
    gap: 2px;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
    transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, transform 320ms ease, padding 240ms ease;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu {
    max-height: 420px;
    padding: 7px 0 12px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-nav__submenu a {
    padding: 9px 0 9px 18px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.55px;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
    opacity: 0;
    transform: translate3d(-8px, 0, 0);
    transition: color 180ms ease, opacity 260ms ease, transform 320ms ease;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a:nth-child(2) {
    transition-delay: 35ms;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a:nth-child(3) {
    transition-delay: 70ms;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a:nth-child(4) {
    transition-delay: 105ms;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a:nth-child(5) {
    transition-delay: 140ms;
  }

  .site-nav__group.is-submenu-open .site-nav__submenu a:nth-child(6) {
    transition-delay: 175ms;
  }

  .site-nav__submenu a:hover,
  .site-nav__submenu a:focus-visible,
  .site-nav a[aria-current="page"] {
    color: var(--color-orange);
  }

  .mobile-nav-cta {
    position: relative;
    width: 118px;
    height: 118px;
    min-height: 118px;
    display: inline-grid;
    place-items: center;
    align-self: flex-end;
    margin-top: 26px;
    padding: 0;
    color: var(--color-white);
    border-radius: 50%;
    background: transparent;
  }

  .mobile-nav-cta__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: spin-loader 14s linear infinite;
  }

  .mobile-nav-cta__ring text {
    fill: var(--color-white);
    font-size: 8.9px;
    font-weight: 500;
    letter-spacing: 1.25px;
    text-transform: uppercase;
  }

  .mobile-nav-cta__icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #170b02;
    border-radius: 50%;
    background: var(--color-orange);
    line-height: 1;
    transition: background 220ms ease, color 220ms ease;
  }

  .mobile-nav-cta__icon::before {
    width: 28px;
    height: 28px;
    display: block;
    content: "";
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.01 3 3.28 8.73 3.28 15.76c0 2.25.59 4.45 1.72 6.38L3 29l7.03-1.84a12.7 12.7 0 0 0 6.01 1.53h.01c7.03 0 12.76-5.72 12.76-12.76C28.8 8.73 23.08 3 16.04 3Zm0 23.53h-.01a10.56 10.56 0 0 1-5.38-1.47l-.39-.23-4.17 1.09 1.11-4.06-.26-.42a10.55 10.55 0 1 1 9.1 5.09Zm5.79-7.9c-.32-.16-1.87-.92-2.16-1.03-.29-.1-.5-.16-.71.16-.21.32-.81 1.03-.99 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.47-.55.16-.18.21-.32.32-.53.1-.21.05-.39-.03-.55-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.39-.29.32-1.1 1.08-1.1 2.63s1.13 3.05 1.29 3.26c.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.2 2 .12.61-.09 1.87-.76 2.13-1.5.26-.74.26-1.37.18-1.5-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .mobile-nav-cta:hover,
  .mobile-nav-cta:focus-visible {
    color: var(--color-white);
  }

  .mobile-nav-cta:hover .mobile-nav-cta__icon,
  .mobile-nav-cta:focus-visible .mobile-nav-cta__icon {
    color: #170b02;
    background: var(--color-white);
  }

  .header-shell > .btn {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(920px, 100%);
    min-height: 410px;
    margin-top: 2px;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: left;
  }

  .about-showcase__header,
  .about-showcase__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-showcase h2 {
    grid-column: auto;
    max-width: 900px;
  }

  .about-experience,
  .about-showcase__portrait,
  .about-showcase__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .about-showcase__portrait {
    width: min(320px, 82vw);
    justify-self: start;
    transform: none;
  }

  .about-experience {
    padding-right: 0;
    border-right: 0;
  }

  .about-showcase__copy {
    max-width: 680px;
    padding-right: 0;
  }

  .about-certifications__grid {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .dashboard-card {
    right: 42px;
    left: 42px;
  }

  .feature-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }

  .method-header__aside {
    max-width: 680px;
    padding-top: 0;
  }

  .method-grid {
    gap: 18px;
  }

  .method-card {
    min-height: 220px;
  }

  .method-proof {
    margin-top: 44px;
  }

  .faq-section .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .faq-panel {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
    padding: 62px 42px;
  }

  .faq-intro h2 {
    max-width: 760px;
  }

  .faq-list {
    gap: 18px;
  }

  .site-footer .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .footer-panel {
    padding: 62px 42px 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 34px 50px;
  }

  .footer-cta h2 {
    max-width: 760px;
  }
}

@media (max-width: 1024px) and (min-width: 761px) {
  #trafego .section-heading h2 {
    max-width: none;
  }

  .hero {
    min-height: calc(100vh + 6px);
  }

  .hero-grid {
    min-height: calc(100vh - 236px);
  }

  .hero-copy {
    top: -92px;
  }

  .hero-text {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 54px;
  }

  .hero-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 34px;
    max-width: 100%;
    margin-top: 82px;
    padding-top: 40px;
  }

  .hero-proof-list li {
    padding-left: 34px;
    font-size: 15px;
  }

  .metrics {
    --metrics-height: 86px;
  }

  .metrics-grid {
    width: min(calc(100% - 80px), 820px);
    border-radius: 18px;
  }

  .metrics-grid article {
    padding: 12px 14px;
  }

  .metrics-grid strong {
    font-size: clamp(1.65rem, 3.35vw, 2.35rem);
  }

  .about-showcase__header,
  .about-showcase__content {
    grid-template-columns: minmax(220px, 0.3fr) minmax(260px, 0.34fr) minmax(300px, 0.36fr);
    gap: 26px;
  }

  .about-showcase h2 {
    grid-column: 2 / -1;
    max-width: 650px;
    font-size: clamp(2.2rem, 4vw, 2.9rem);
  }

  .about-showcase__portrait {
    grid-column: 1;
    grid-row: 1;
    width: min(240px, 92%);
    justify-self: center;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
  }

  .about-experience {
    grid-column: 2;
    grid-row: 1;
    padding-right: 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-experience__figure {
    --experience-number-size: clamp(6.6rem, 9.2vw, 7.8rem);
    --experience-badge-x: calc(var(--experience-number-size) * 0.84);
    min-width: 0;
    width: 100%;
  }

  .about-experience__badge {
    padding: 6px 16px;
    font-size: 0.86rem;
  }

  .about-showcase__copy {
    grid-column: 3;
    grid-row: 1;
    max-width: 360px;
    padding-right: 32px;
  }

  .about-certifications__grid {
    grid-template-columns: repeat(4, max-content);
    gap: clamp(18px, 3vw, 34px);
  }

  .about-certification {
    gap: 9px;
    font-size: 0.95rem;
  }

  .about-certification__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero {
    margin: 0;
    padding-top: 170px;
    padding-bottom: 40px;
    border-radius: 0 0 22px 22px;
  }

  #trafego.section-surface {
    margin: 0;
    padding: 76px 0;
    border-radius: 22px;
  }

  .ads-marquee {
    --ads-logo-width: clamp(78px, 24vw, 105px);
    --ads-logo-gap: 28px;
    padding: 30px 0;
  }

  #metodo {
    padding-top: 56px;
  }

  .brand img,
  .footer-brand img {
    width: 150px;
  }

  h1 {
    font-size: clamp(2.45rem, 10vw, 3.7rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .faq-section {
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .faq-panel {
    gap: 38px;
    padding: 42px 18px 28px;
    border-radius: 18px;
  }

  .faq-intro {
    display: contents;
  }

  .faq-intro .eyebrow {
    order: 1;
  }

  .faq-intro h2 {
    order: 2;
  }

  .faq-list {
    order: 3;
  }

  .faq-section + .final-cta {
    padding-top: 36px;
  }

  .faq-intro h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
    line-height: 1.08;
  }

  .faq-contact {
    order: 4;
    justify-self: center;
    width: 94px;
    height: 94px;
    margin: 32px auto 0;
  }

  .faq-contact__arrow {
    width: 44px;
    height: 44px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-question {
    grid-template-columns: 1fr 20px;
    min-height: 62px;
    padding: 18px 18px;
    font-size: 0.98rem;
  }

  .faq-question span::before,
  .faq-question span::after {
    width: 14px;
  }

  .faq-answer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .faq-item.is-open .faq-answer {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .faq-answer p {
    font-size: 0.94rem;
  }

  .split-copy .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 14px 52px 14px 50px;
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-actions .btn--arrow-down.btn--no-icon {
    min-height: 48px;
    padding: 14px 54px 14px 22px;
  }

  .hero-actions .btn::before {
    left: 21px;
    width: 20px;
    height: 20px;
  }

  .hero-actions .btn::after {
    right: 6px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero-copy {
    top: 0;
    text-align: center;
  }

  .hero-text {
    max-width: 330px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-text br {
    display: block;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof-list {
    position: relative;
    gap: 18px;
    margin-top: 32px;
    padding-top: 30px;
    border-top: 0;
  }

  .hero-proof-list::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%);
  }

  .hero-proof-list li + li {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-proof-list li + li::before {
    top: calc(18px + 0.02em);
  }

  .about-showcase {
    padding: 48px 0 78px;
  }

  .about-showcase__mark {
    left: 14px;
    top: 260px;
    width: 220px;
    height: auto;
  }

  .eyebrow--section,
  .eyebrow--compact {
    justify-self: start;
  }

  .about-showcase h2 {
    font-size: clamp(2.45rem, 10vw, 3.7rem);
  }

  .about-showcase__content {
    margin-top: 28px;
  }

  .about-experience__figure {
    --experience-number-size: clamp(8.6rem, 42vw, 11.4rem);
    --experience-badge-x: calc(var(--experience-number-size) * 0.82);
    width: 100%;
    min-width: 0;
    min-height: calc(var(--experience-number-size) * 0.76);
    margin: 0 0 20px;
  }

  .about-experience__number strong {
    font-size: var(--experience-number-size);
  }

  .about-experience__number span:not(.about-experience__plus) {
    margin-top: 0;
    font-size: 1.1rem;
  }

  .about-experience__badge {
    left: var(--experience-badge-x);
    top: calc(var(--experience-number-size) * 0.46);
    right: auto;
    bottom: auto;
    width: auto;
    justify-content: flex-start;
    margin: 0;
    padding: 6px 20px;
    font-size: 0.85rem;
  }

  .about-showcase__copy {
    gap: 16px;
    justify-content: center;
  }

  .about-certifications {
    margin-top: 34px;
    overflow: hidden;
  }

  .about-certifications__title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-certifications__grid {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .about-contact {
    width: 156px;
    height: 156px;
    margin: 8px auto 26px;
  }

  .about-contact__arrow {
    width: 72px;
    height: 72px;
  }

  .about-contact__arrow::before {
    width: 37px;
    height: 37px;
  }

  .about-certifications__marquee {
    display: flex;
    width: max-content;
    animation: certifications-marquee 20s linear infinite;
    will-change: transform;
  }

  .about-certifications__track,
  .about-certifications__track[aria-hidden="true"] {
    display: flex;
    flex: 0 0 auto;
    gap: 30px;
    align-items: center;
    padding-right: 30px;
  }

  .about-certification {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 0.88rem;
  }

  .about-certification__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .about-certification__icon img {
    width: 27px;
    height: 27px;
  }

  .hero-panel,
  .visual-block {
    min-height: 480px;
    padding: 18px;
    border-radius: 22px;
  }

  .panel-footer {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .orbit-card--one {
    top: 118px;
    left: 18px;
  }

  .orbit-card--two {
    top: 205px;
    right: 18px;
  }

  .dashboard-card {
    right: 18px;
    bottom: 82px;
    left: 18px;
    padding: 18px;
  }

  .hero-panel .dashboard-card {
    bottom: 82px;
  }

  .chart-bars {
    height: 96px;
  }

  .hero-panel .chart-bars {
    height: 96px;
    margin: 16px 0;
  }

  .metrics {
    margin-top: 56px;
    padding-bottom: 128px;
  }

  .metrics::after {
    position: absolute;
    left: 50%;
    bottom: 48px;
    width: min(82%, 320px);
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%);
  }

  .feature-grid,
  .services-grid,
  .method-grid,
  .reason-grid,
  .certifications__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 76px;
  }

  .footer-panel {
    padding: 42px 18px 32px;
    border-radius: 18px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-links h2 {
    margin-bottom: 18px;
  }

  .footer-links a {
    margin-bottom: 14px;
  }

  .footer-cta {
    margin-top: 42px;
    padding: 32px 22px 38px;
    border-width: 3px;
  }

  .footer-cta h2 {
    font-size: clamp(1.58rem, 7.2vw, 2.05rem);
    line-height: 1.12;
  }

  .footer-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-legal {
    gap: 12px;
    margin: 34px 0 24px;
  }

  .footer-bottom {
    padding-top: 0;
  }

  .method-header {
    display: contents;
    gap: 24px;
    margin-bottom: 34px;
  }

  #metodo > .container {
    display: grid;
  }

  .method-header > div {
    order: 1;
  }

  #method-title {
    font-size: clamp(3rem, 12vw, 4rem);
    white-space: normal;
  }

  .method-header__aside {
    display: contents;
    gap: 22px;
    padding-top: 0;
  }

  .method-header__aside p {
    order: 2;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .method-grid {
    order: 3;
    margin-top: 34px;
  }

  .method-proof {
    order: 5;
  }

  .metrics-grid article {
    min-height: 112px;
    padding: 16px 10px;
    border: 1px solid rgba(255, 159, 67, 0.34);
    border-radius: 14px;
    background: var(--color-orange);
  }

  .metrics-grid {
    width: min(calc(100% - 48px), 420px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .metrics-grid strong {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .metrics-grid span {
    font-size: 0.64rem;
    letter-spacing: 0.6px;
  }

  .about-showcase .eyebrow--section {
    margin-bottom: 20px;
  }

  .service-groups {
    gap: 36px;
  }

  .service-group {
    margin-top: 12px;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 14px 14px;
    border-radius: 18px;
  }

  .service-group__title {
    margin-top: 25px;
    font-size: 34px;
  }

  .service-group__intro::before {
    top: -24px;
    left: -4px;
    font-size: clamp(3.9rem, 18vw, 5.2rem);
  }

  .service-group__copy {
    gap: 12px;
    margin-top: 18px;
  }

  .service-group__copy p:first-child {
    display: none;
  }

  .service-showcase {
    display: block;
  }

  .service-menu,
  .service-slider {
    display: none;
  }

  .service-accordion {
    display: grid;
    gap: 10px;
  }

  .service-accordion__item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.012);
  }

  .service-accordion__button {
    width: 100%;
    min-height: 50px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 0 14px;
    color: rgba(245, 247, 248, 0.78);
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .service-groups .service-group:nth-child(2) .service-accordion__button {
    grid-template-columns: 22px 1fr auto;
    gap: 8px;
  }

  .service-accordion__button::after {
    width: 8px;
    height: 8px;
    content: "";
    border-top: 1px solid rgba(245, 247, 248, 0.74);
    border-right: 1px solid rgba(245, 247, 248, 0.74);
    transform: rotate(135deg);
    transition: transform 180ms ease;
  }

  .service-accordion__item.is-open .service-accordion__button::after {
    transform: rotate(-45deg);
  }

  .service-accordion__button span {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .service-accordion__button strong {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.18;
  }

  .service-accordion__item.is-open .service-accordion__button strong {
    color: var(--color-orange);
  }

  .service-accordion__panel {
    height: 0;
    overflow: hidden;
    padding: 0 14px;
    opacity: 0;
    transition:
      height 360ms cubic-bezier(0.45, 0, 0.22, 1),
      opacity 260ms ease;
    will-change: height, opacity;
  }

  .service-accordion__item.is-open .service-accordion__panel {
    opacity: 1;
  }

  .service-groups .service-group:nth-child(2) .service-accordion__panel {
    padding-left: 14px;
  }

  .service-accordion__panel p {
    margin: 0;
    padding: 12px 0 16px;
    color: rgba(245, 247, 248, 0.68);
    font-weight: 400;
  }

  .service-accordion__panel .tags {
    margin-top: 0;
    padding-top: 14px;
  }

  .service-accordion__panel .service-slide__button {
    display: flex;
    margin: 14px 0 16px auto;
  }

  .service-accordion__button:focus-visible {
    outline: 1px solid rgba(255, 159, 67, 0.72);
    outline-offset: -3px;
  }

  .feature-card,
  .service-card,
  .method-card {
    min-height: auto;
  }

  .method-card {
    min-height: 220px;
    padding: 22px 20px;
  }

  .method-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
  }

  .method-card__icon::after {
    width: 10px;
    height: 10px;
  }

  .method-card__icon img {
    width: 42px;
    height: 42px;
  }

  .method-card__kicker {
    margin-bottom: 14px;
    font-size: clamp(1rem, 4.4vw, 1.16rem);
  }

  .method-card h3 {
    max-width: 250px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .method-card__number {
    right: 6px;
    bottom: -10px;
    font-size: clamp(3rem, 14vw, 3.85rem);
  }

  .method-proof {
    gap: 14px;
    margin-top: 36px;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .service-group .services-grid {
    gap: 10px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    min-height: auto;
    padding: 14px 44px 14px 12px;
    border-radius: 10px;
    cursor: pointer;
  }

  .service-card::before {
    display: none;
  }

  .service-card::after {
    top: 19px;
    right: 18px;
    bottom: auto;
    display: block;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 1px solid rgba(245, 247, 248, 0.74);
    border-right: 1px solid rgba(245, 247, 248, 0.74);
    border-radius: 0;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .service-card.is-open {
    align-items: start;
    padding-block: 16px;
  }

  .service-card.is-open::after {
    transform: rotate(135deg);
  }

  .service-card .card-number {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .service-card h3 {
    margin: 0;
    font-size: clamp(0.95rem, 4vw, 1.08rem);
    line-height: 1.18;
  }

  .service-card p,
  .service-card .service-description-toggle,
  .service-card .tags {
    grid-column: 1 / -1;
  }

  .service-card p {
    margin-top: 14px;
  }

  .service-card .tags {
    margin-top: 0;
    padding-top: 14px;
  }

  .service-card:not(.is-open) p,
  .service-card:not(.is-open) .service-description-toggle,
  .service-card:not(.is-open) .tags {
    display: none;
  }

  .service-card:focus-visible {
    outline: 2px solid rgba(255, 159, 67, 0.72);
    outline-offset: 3px;
  }

  .visual-block::before,
  .visual-block::after,
  .hero-panel::before,
  .hero-panel::after {
    inset-inline: 24px;
  }

  .visual-stack {
    right: 18px;
    bottom: 18px;
  }

  .final-cta {
    display: block;
    min-height: auto;
    padding: 84px 0;
  }

  .final-cta__inner {
    top: 0;
    padding-top: clamp(130px, 42vw, 170px);
  }

  .giant-text {
    top: clamp(150px, 43vw, 182px);
    white-space: normal;
  }

  .final-cta__visual {
    position: absolute;
    top: -54px;
    right: -100px;
    bottom: auto;
    display: block;
    width: min(280px, 74vw);
    margin: 0;
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
  }

  .certifications__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .panel-top,
  .panel-footer,
  .dashboard-card__header,
  .dashboard-grid {
    display: grid;
  }

  .orbit-card {
    width: calc(100% - 36px);
  }

  .hero-panel .orbit-card {
    width: calc(100% - 36px);
  }

  .orbit-card--two {
    top: 214px;
  }

  .dashboard-card {
    bottom: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-certifications__marquee,
  .ads-marquee__track {
    animation: none;
    transform: none;
  }

  #home .hero-bg-slideshow .hero-bg-image {
    animation: none;
    opacity: 0;
    transform: none;
  }

  #home .hero-bg-slideshow .hero-bg-image:first-child {
    opacity: 0.7;
  }

  .asset-svg__flow,
  .asset-svg__module,
  .asset-svg__chip,
  .asset-svg__node,
  .asset-svg__ping,
  .asset-svg__spark {
    animation: none;
  }

  .asset-svg__ping {
    opacity: 0.28;
    transform: none;
  }
}

.about-page .about-hero {
  min-height: calc(82vh + 6px);
  padding-top: 198px;
  padding-bottom: 118px;
}

.about-page .about-hero .hero-grid {
  min-height: calc(82vh - 236px);
}

.about-page .about-hero .hero-copy {
  top: -18px;
  max-width: 1060px;
}

.about-page .about-hero .hero-title {
  max-width: 1020px;
  margin-inline: auto;
}

.about-page .about-hero .hero-text {
  max-width: 760px;
  margin-top: 28px;
}

.about-page .about-hero .hero-proof-list {
  margin-top: 58px;
}

.about-metrics {
  padding-bottom: 32px;
}

.about-story {
  position: relative;
  overflow: hidden;
}

.about-story--accent {
  margin: 0 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.045), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.032), transparent 26rem),
    rgba(255, 255, 255, 0.024);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.about-story__grid--reverse {
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
}

.about-story__grid--reverse .about-story__media {
  grid-column: 2;
  grid-row: 1;
}

.about-story__grid--reverse .about-story__copy {
  grid-column: 1;
  grid-row: 1;
}

.about-story__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 159, 67, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  overflow: hidden;
}

.about-story__media::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: rotate(var(--rotate, 0deg));
}

.about-story--accent .about-story__media {
  min-height: 560px;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.about-story--accent .about-story__media::before {
  display: none;
}

.about-story__media img {
  position: relative;
  z-index: 1;
  width: min(74%, 430px);
  height: auto;
  filter: drop-shadow(0 22px 52px rgba(0, 0, 0, 0.34));
}

.about-story--immersion {
  overflow: visible;
}

.about-story--immersion .about-story__media {
  min-height: 560px;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.about-story--immersion .about-story__media::before {
  display: none;
}

.about-story--immersion .about-story__mark {
  position: absolute;
  left: clamp(12px, 4vw, 58px);
  top: 80px;
  z-index: 0;
  width: min(360px, 78%);
  height: auto;
  opacity: 0.055;
  filter: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-story--immersion .about-story__floating-image {
  position: relative;
  z-index: 1;
  width: min(520px, 94%);
  max-width: none;
  height: auto;
  filter: none;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + 300px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-story--accent .about-story__floating-image {
  position: relative;
  z-index: 1;
  width: min(429px, 92%);
  max-width: none;
  height: auto;
  filter: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-story__media--symbol img {
  width: min(54%, 320px);
  opacity: 0.92;
}

.about-story__copy {
  max-width: 720px;
}

.about-story__copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
}

.about-story__copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 247, 248, 0.74);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  font-weight: 300;
  line-height: 1.58;
}

.about-story__copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 18px;
}

.about-story--accent .eyebrow {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
}

.about-story--accent .about-story__copy h2 {
  color: var(--color-white);
}

.about-story--accent .text-scrub .scrub-char {
  color: rgba(245, 247, 248, 0.22);
}

.about-story--accent .text-scrub .scrub-char.is-lit {
  color: var(--color-text);
}

.about-story--accent .text-scrub .scrub-char.is-lit-soft {
  color: rgba(245, 247, 248, 0.58);
}

.about-story--accent .text-scrub .scrub-word--accent .scrub-char,
.about-story--accent .text-scrub .scrub-word--accent .scrub-char.is-lit,
.about-story--accent .text-scrub .scrub-word--accent .scrub-char.is-lit-soft {
  color: var(--color-orange);
}

.about-story--accent .about-story__copy p:not(.eyebrow) {
  color: rgba(245, 247, 248, 0.74);
  font-weight: 300;
}

.ai-powered-section {
  position: relative;
  margin: 0 15px clamp(58px, 6vw, 96px);
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 159, 67, 0.06), transparent 25rem),
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.018), transparent 28rem),
    linear-gradient(145deg, rgba(14, 14, 14, 0.42), rgba(4, 4, 4, 0.3)),
    rgba(10, 10, 10, 0.12);
  box-shadow: none;
  isolation: isolate;
}

.ai-powered-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 74% 42%, #000 0, transparent 64%);
  opacity: 0.5;
}

.ai-powered-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.ai-powered-content {
  max-width: 790px;
}

.ai-powered-content h2 {
  max-width: 760px;
  margin: 0 0 28px;
}

.ai-powered-content p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
}

.ai-powered-content .ai-powered-lead {
  color: rgba(245, 247, 248, 0.86);
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
}

.ai-powered-content p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 18px;
}

.ai-powered-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.ai-powered-card {
  position: relative;
  min-height: 198px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 18, 0.72);
}

.ai-powered-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 16% 14%, rgba(255, 159, 67, 0.16), transparent 9rem);
  opacity: 0.8;
}

.ai-powered-card span,
.ai-powered-card h3,
.ai-powered-card p {
  position: relative;
  z-index: 1;
}

.ai-powered-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-orange);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1;
}

.ai-powered-card h3 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: clamp(1.06rem, 1.26vw, 1.22rem);
  font-weight: 400;
  line-height: 1em;
}

.ai-powered-content .ai-powered-card p {
  margin: 0;
  color: rgba(245, 247, 248, 0.75);
  font-size: 0.98rem;
  line-height: 1.2;
}

.ai-powered-visual {
  min-width: 0;
}

.ai-powered-frame {
  position: relative;
  width: min(148%, 860px);
  margin-inline: auto;
  aspect-ratio: 678 / 612;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-powered-frame::before,
.ai-powered-frame::after {
  display: none;
}

.ai-powered-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.about-models {
  position: relative;
  margin: 0 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.045), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.032), transparent 26rem),
    rgba(255, 255, 255, 0.024);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.about-models .container {
  position: relative;
  z-index: 1;
}

.about-models .section-heading {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-bottom: 64px;
}

.about-models__visual {
  position: absolute;
  right: clamp(-54px, 2vw, 42px);
  top: clamp(116px, 13vw, 190px);
  bottom: auto;
  z-index: 0;
  width: min(540px, 39vw);
  height: auto;
  opacity: 0.5;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  pointer-events: none;
  will-change: transform;
}

.about-models__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.about-model-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-width: 3px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
    rgba(20, 20, 20, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}

.about-model-card::before {
  position: absolute;
  inset: -3px -1px auto;
  height: 120px;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0.42;
}

.about-model-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  color: var(--color-orange);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
}

.about-model-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: var(--color-white);
  font-size: clamp(1.34rem, 1.8vw, 1.72rem);
}

.about-model-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(245, 247, 248, 0.7);
  font-size: 0.98rem;
  line-height: 1.58;
}

.about-models__actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 42px);
}

.about-models__contact {
  --faq-accent: var(--color-orange);
  width: 132px;
  height: 132px;
  margin: 0;
  color: var(--color-white);
}

.about-models__contact .faq-contact__ring text {
  font-size: 8.1px;
  letter-spacing: 1.25px;
}

.about-models__contact .faq-contact__arrow {
  width: 58px;
  height: 58px;
}

.about-models__contact .faq-contact__arrow::before {
  width: 29px;
  height: 29px;
}

@media (max-width: 1024px) {
  .about-page .about-hero {
    min-height: auto;
  }

  .about-page .about-hero .hero-grid {
    min-height: auto;
  }

  .about-page .about-hero .hero-copy {
    top: 0;
  }

  .about-story__grid,
  .about-story__grid--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story__grid--reverse .about-story__media,
  .about-story__grid--reverse .about-story__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .about-story__media {
    min-height: 360px;
  }

  .about-story--immersion .about-story__media {
    min-height: 460px;
  }

  .about-story--accent .about-story__media {
    min-height: 460px;
  }

  .ai-powered-grid {
    grid-template-columns: 1fr;
  }

  .ai-powered-content {
    max-width: 820px;
  }

  .ai-powered-visual {
    max-width: 720px;
  }

  .about-models__visual {
    top: 270px;
    right: -46px;
    bottom: auto;
    width: min(420px, 52vw);
    opacity: 0.26;
  }

  .about-models__grid {
    grid-template-columns: 1fr;
  }

  .about-model-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .about-page .about-hero {
    margin: 0;
    padding-top: 168px;
    padding-bottom: 58px;
    border-radius: 0 0 22px 22px;
  }

  .about-page .about-hero .hero-proof-list {
    margin-top: 36px;
  }

  .about-story {
    padding: 76px 0;
  }

  .about-story--accent {
    margin: 0;
    border-radius: 22px;
  }

  .about-story__media {
    min-height: 280px;
    border-radius: 18px;
  }

  .about-story--immersion .about-story__media {
    min-height: 360px;
    border-radius: 0;
  }

  .about-story--accent .about-story__media {
    min-height: 360px;
    border-radius: 0;
  }

  .about-story--immersion .about-story__mark {
    left: 8%;
    top: 56px;
    width: min(260px, 72%);
  }

  .about-story__media img {
    width: min(76%, 300px);
  }

  .about-story--immersion .about-story__floating-image {
    width: min(360px, 92%);
  }

  .about-story--accent .about-story__floating-image {
    width: min(340px, 88%);
  }

  .about-story__media--symbol img {
    width: min(58%, 210px);
  }

  .about-story__copy h2 {
    margin-bottom: 22px;
  }

  .about-story__copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .ai-powered-section {
    margin: 0 0 14px;
    padding: 76px 0 34px;
    border-radius: 22px;
  }

  .ai-powered-grid {
    gap: 26px;
  }

  .ai-powered-frame {
    width: min(100%, 420px);
  }

  .ai-powered-content h2 {
    margin-bottom: 22px;
  }

  .ai-powered-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .ai-powered-content .ai-powered-lead {
    font-size: 1.06rem;
  }

  .ai-powered-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .ai-powered-card {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
  }

  .ai-powered-content .ai-powered-card p {
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .about-models {
    margin: 0;
    border-radius: 22px;
  }

  .about-models .section-heading {
    margin-bottom: 36px;
  }

  .about-models__visual {
    right: -82px;
    top: 250px;
    bottom: auto;
    width: min(310px, 78vw);
    opacity: 0.18;
  }

  .about-models__grid {
    gap: 12px;
  }

  .about-model-card {
    padding: 22px;
    border-radius: 18px;
  }

  .about-model-card h3 {
    margin-top: 0;
  }

  .about-models__actions {
    margin-top: 24px;
  }

  .about-models__contact {
    width: 112px;
    height: 112px;
  }

  .about-models__contact .faq-contact__arrow {
    width: 50px;
    height: 50px;
  }

  .about-models__contact .faq-contact__arrow::before {
    width: 25px;
    height: 25px;
  }
}

.service-page .about-hero {
  min-height: calc(78vh + 6px);
  padding-top: 190px;
  padding-bottom: 112px;
}

.service-page .about-hero .hero-grid {
  min-height: calc(78vh - 236px);
}

.service-page .about-hero .hero-copy {
  top: -10px;
  max-width: 1080px;
}

.service-page .about-hero .hero-title {
  max-width: 1060px;
  margin-inline: auto;
}

.service-page .about-hero .hero-text {
  display: none;
}

.service-page .about-hero .hero-actions {
  margin-top: clamp(72px, 8.7vh, 90px);
}

.service-page .hero-proof-list {
  margin-top: clamp(72px, 8.7vh, 90px);
}

.service-page-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.service-page-section--floating {
  background: transparent;
}

.section-panel {
  position: relative;
  overflow: clip;
  margin-inline: 15px;
  padding: 80px 0;
  border: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.055), transparent 28rem),
    radial-gradient(circle at 18% 86%, rgba(255, 159, 67, 0.07), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  isolation: isolate;
}

.section-panel::before {
  display: none;
}

.section-panel > * {
  position: relative;
  z-index: 1;
}

.advisory-trust {
  margin-top: 40px;
  margin-bottom: 40px;
}

.advisory-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.advisory-trust__copy {
  max-width: 790px;
}

.advisory-trust__copy h2 {
  max-width: 760px;
  margin: 0 0 28px;
}

.advisory-trust__copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 300;
  line-height: 1.62;
}

.advisory-trust__copy p:not(.eyebrow) + p {
  margin-top: 18px;
}

.advisory-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.advisory-trust__item {
  position: relative;
  min-height: 198px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 18, 0.72);
}

.advisory-trust__item::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 16% 14%, rgba(255, 159, 67, 0.16), transparent 9rem);
  opacity: 0.8;
}

.advisory-trust__item span,
.advisory-trust__item h3,
.advisory-trust__item p {
  position: relative;
  z-index: 1;
}

.advisory-trust__item span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-orange);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1;
}

.advisory-trust__item h3 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: clamp(1.06rem, 1.26vw, 1.22rem);
  font-weight: 400;
  line-height: 1em;
}

.advisory-trust__copy .advisory-trust__item p {
  margin: 0;
  color: rgba(245, 247, 248, 0.75);
  font-size: 0.98rem;
  line-height: 1.2;
}

.advisory-trust__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.advisory-trust__frame {
  position: relative;
  width: min(100%, 480px);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.advisory-trust__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.service-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  margin-bottom: 48px;
}

.service-page-heading h2 {
  max-width: 760px;
}

.service-page-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 247, 248, 0.7);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  font-weight: 300;
  line-height: 1.58;
}

.asset-feature-list {
  padding-top: 110px;
}

.asset-feature-heading {
  margin-bottom: 54px;
}

.asset-feature {
  --asset-focus: 1;
  position: relative;
  padding: 80px 0;
  overflow: clip;
}

.asset-feature--surface {
  padding: 80px 0;
}

.asset-feature__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: clamp(330px, 38vh, 420px);
}

.asset-feature__copy {
  align-self: center;
  width: min(720px, 55vw);
  max-width: 720px;
}

.asset-feature:nth-of-type(even) .asset-feature__copy {
  justify-self: end;
  transform: translateX(clamp(42px, 4vw, 78px));
}

.asset-feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 0 12px;
  min-height: 26px;
  color: var(--color-white);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.asset-feature__tag::before {
  display: inline-grid;
  width: 10px;
  height: 10px;
  place-items: center;
  color: var(--color-orange);
  content: "*";
  font-size: 15px;
  line-height: 1;
}

.asset-feature__copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.95rem, 3.55vw, 3.85rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.asset-feature__copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  font-weight: 300;
  line-height: 1.58;
}

.asset-feature__copy .tags {
  margin-top: 24px;
}

.asset-feature__copy .tags + p {
  margin-top: 26px;
}

.asset-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.asset-feature__actions .btn {
  width: max-content;
}

.asset-feature__visual {
  position: absolute;
  right: clamp(-52px, -1.2vw, -18px);
  top: 50%;
  width: min(39vw, 610px);
  height: min(94vh, 900px);
  min-height: 710px;
  margin: 0;
  transform: translate3d(0, -50%, 0);
  will-change: auto;
}

.asset-feature:nth-of-type(even) .asset-feature__visual {
  right: auto;
  left: clamp(-132px, -6vw, -56px);
}

.asset-feature-list .asset-feature:last-of-type .asset-feature__visual {
  top: calc(50% + clamp(42px, 4.4vw, 68px));
}

.asset-feature__stack {
  --asset-stack-gap: clamp(10px, 0.9vw, 14px);
  position: absolute;
  inset: -12% 0;
  overflow: visible;
  border: 0;
  background: transparent;
  filter: blur(var(--asset-blur, 0px)) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.34));
  opacity: var(--asset-opacity, 1);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: filter, opacity, transform;
}

.asset-feature__stack--single {
  inset: -8% 0;
}

.asset-feature__frame {
  position: absolute;
  border-radius: 16px;
  isolation: isolate;
}

.asset-feature__frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border: 1.5px solid rgba(255, 159, 67, 0.86);
  border-radius: 18px;
  pointer-events: none;
}

.asset-feature__frame--one {
  left: 0;
  top: 8%;
  width: calc(50% - var(--asset-stack-gap) / 2);
  height: calc(62% - var(--asset-stack-gap) / 2);
}

.asset-feature__frame--two {
  left: 0;
  top: calc(70% + var(--asset-stack-gap) / 2);
  width: calc(50% - var(--asset-stack-gap) / 2);
  height: calc(24% - var(--asset-stack-gap) / 2);
}

.asset-feature__frame--three {
  right: 0;
  top: 0;
  width: calc(50% - var(--asset-stack-gap) / 2);
  height: calc(24% - var(--asset-stack-gap) / 2);
}

.asset-feature__frame--four {
  right: 0;
  top: calc(24% + var(--asset-stack-gap) / 2);
  width: calc(50% - var(--asset-stack-gap) / 2);
  height: calc(64% - var(--asset-stack-gap) / 2);
}

.asset-feature__frame--single {
  inset: 7% 0 7% 0;
  border-radius: 22px;
}

.asset-feature__frame--one::before {
  transform: translate3d(-16px, -26px, 0);
}

.asset-feature__frame--two::before {
  transform: translate3d(-16px, 12px, 0);
}

.asset-feature__frame--three::before {
  transform: translate3d(16px, -14px, 0);
}

.asset-feature__frame--four::before {
  transform: translate3d(16px, 16px, 0);
}

.asset-feature__frame--single::before {
  display: none;
  border-radius: 24px;
  transform: translate3d(18px, 18px, 0);
}

.asset-feature:nth-of-type(even) .asset-feature__frame--single::before {
  transform: translate3d(-18px, 18px, 0);
}

.asset-feature__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(255, 159, 67, 0.08);
}

.asset-feature__stack--single .asset-feature__photo {
  background: transparent;
}

.asset-feature__photo img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.07) brightness(1.03);
  transform: scale(1.04);
}

.asset-feature__frame--one img {
  object-position: 42% 50%;
}

.asset-feature__frame--two img {
  object-position: 50% 70%;
}

.asset-feature__frame--three img {
  object-position: 50% 34%;
}

.asset-feature__frame--four img {
  object-position: 58% 52%;
}

.asset-feature__frame--single img {
  object-position: 50% 50%;
  opacity: 1;
}

.asset-operation .service-group {
  margin-top: 0;
}

.asset-operation-section {
  margin-top: 0;
  padding: clamp(72px, 7vw, 100px) 0;
}

.asset-operation-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.asset-operation-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.asset-operation .service-group {
  padding-top: 38px;
}

.asset-operation .service-group__intro::before {
  display: none;
}

.asset-operation .service-group__title {
  max-width: 300px;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  text-shadow: none;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page-grid--primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-page-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  transition: opacity 720ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.service-page-card:not(.reveal),
.service-page-card.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.service-page-card:not(.reveal).tilt-card,
.service-page-card.reveal.is-visible.tilt-card {
  transform: translate3d(0, 0, 0);
  transform-style: flat;
}

.service-page-card:not(.reveal):hover,
.service-page-card:not(.reveal):focus-within,
.service-page-card.reveal.is-visible:hover,
.service-page-card.reveal.is-visible:focus-within {
  transform: translate3d(0, -4px, 0);
}

.service-page-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 4px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(245, 247, 248, 0.2) 0%,
    rgba(245, 247, 248, 0.17) 18%,
    rgba(245, 247, 248, 0.11) 43%,
    rgba(245, 247, 248, 0.035) 76%,
    rgba(245, 247, 248, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-page-card > * {
  position: relative;
  z-index: 1;
}

.service-page-card__number,
.service-page-card__label {
  width: max-content;
  display: flex;
  margin-bottom: 5px;
  color: var(--color-orange);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page-card h3 {
  max-width: 420px;
  margin-top: 0;
  color: var(--color-white);
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 1.08;
}

.service-page-card h3.text-scrub {
  min-height: 2.16em;
}

.service-page-card p {
  margin: 18px 0 0;
  color: rgba(245, 247, 248, 0.68);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.52;
}

.service-page-card .tags {
  margin-top: 28px;
}

.service-page-card > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--color-orange);
  font-weight: 500;
}

.service-page-card > a:not(.btn)::after {
  content: "→";
}

.service-page-card__button {
  width: max-content;
  margin-top: 28px;
  padding-left: 22px;
}

.service-page-card__button::before {
  display: none;
}

.service-page-grid--primary .service-page-card {
  min-height: 270px;
  padding: 22px 24px 24px;
  border-radius: 18px;
}

.service-page-grid--primary .service-page-card__number,
.service-page-grid--primary .service-page-card__label {
  font-size: 0.76rem;
}

.service-page-grid--primary .service-page-card h3 {
  margin-top: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
}

.service-page-grid--primary .service-page-card p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.46;
}

.service-page-grid--primary .service-page-card .tags {
  margin-top: 22px;
}

.service-page-grid--primary .service-page-card__button,
.service-page-grid--primary .service-page-card > a:not(.btn) {
  margin-top: 22px;
}

.service-page-grid--primary .service-page-card > a:not(.btn) {
  --service-card-link-bg: var(--color-orange);
  --service-card-link-fill: var(--color-white);
  justify-content: center;
  width: max-content;
  padding: 12px 16px;
  color: #080808;
  border-radius: 12px;
  background-color: var(--service-card-link-bg);
  background-image: linear-gradient(90deg, var(--service-card-link-fill), var(--service-card-link-fill));
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-size 420ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.service-page-grid--primary .service-page-card > a:not(.btn):hover,
.service-page-grid--primary .service-page-card > a:not(.btn):focus-visible {
  background-size: 100% 100%;
}

.service-page-grid--primary .service-page-card > a:not(.btn)::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
}

.service-page-diagnosis-cta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: clamp(18px, 2.2vw, 28px);
}

.service-page-diagnosis-cta h3 {
  max-width: 380px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.service-page-diagnosis-cta p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(245, 247, 248, 0.7);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  font-weight: 300;
  line-height: 1.48;
}

.service-page-diagnosis-cta .btn {
  width: max-content;
  margin-top: 28px;
}

.service-page-card--compact {
  min-height: 260px;
  padding: 22px;
}

.service-page-card--compact h3 {
  margin-top: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.service-page-card--compact p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.46;
}

.service-page-card--compact .service-page-card__button {
  margin-top: 22px;
}

.service-page-band {
  margin: 0 15px;
  border-radius: 20px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.024);
}

.service-page-band .service-page-heading p:not(.eyebrow),
.service-page-band .service-page-card p {
  color: rgba(245, 247, 248, 0.7);
  font-weight: 300;
}

.service-page-band .eyebrow {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.service-page-band .service-page-card {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.035);
}

.service-page-band .service-page-card h3 {
  color: var(--color-white);
}

.service-page-band .service-page-card__number,
.service-page-band .service-page-card__label {
  color: var(--color-orange);
}

.service-page-band .service-page-card > a:not(.btn) {
  color: var(--color-orange);
}

[data-card-typing] {
  min-height: 2.16em;
}

[data-card-typing]::after {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
  vertical-align: -0.08em;
  opacity: 0;
}

[data-card-typing].is-typing::after {
  opacity: 1;
  animation: typing-caret 900ms ease-in-out infinite;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.service-detail-layout--single {
  display: block;
}

.service-detail-layout--single .service-detail-copy {
  max-width: 860px;
}

.service-detail-copy {
  max-width: 760px;
}

.service-detail-copy h2 {
  margin-bottom: 28px;
}

.service-detail-copy p {
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 300;
  line-height: 1.62;
}

.service-detail-copy p + p {
  margin-top: 18px;
}

.service-detail-aside {
  position: sticky;
  top: 120px;
  padding: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.service-detail-aside::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 4px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(245, 247, 248, 0.2) 0%,
    rgba(245, 247, 248, 0.17) 18%,
    rgba(245, 247, 248, 0.11) 43%,
    rgba(245, 247, 248, 0.035) 76%,
    rgba(245, 247, 248, 0) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-detail-aside > * {
  position: relative;
  z-index: 1;
}

.service-detail-aside ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-aside li {
  position: relative;
  padding-left: 26px;
  color: rgba(245, 247, 248, 0.72);
  line-height: 1.45;
}

.service-detail-aside li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--color-orange);
}

.website-intelligence-panel,
.asset-visual-panel {
  margin-top: -28px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .service-page .about-hero,
  .service-page .about-hero .hero-grid {
    min-height: auto;
  }

  .service-page .about-hero .hero-copy {
    top: 0;
  }

  .service-page-heading,
  .service-detail-layout,
  .advisory-trust__inner {
    grid-template-columns: 1fr;
  }

  .advisory-trust__copy {
    max-width: 760px;
  }

  .advisory-trust__visual {
    max-width: 720px;
  }

  .asset-feature-list {
    padding-top: 82px;
  }

  .asset-feature {
    --asset-focus: 1;
    padding: 78px 0;
    overflow: hidden;
  }

  .asset-feature--surface {
    padding: 68px 0;
  }

  .section-panel {
    overflow: hidden;
    padding: 58px 0;
  }

  .asset-feature__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
  }

  .asset-feature__copy {
    width: auto;
    max-width: 760px;
  }

  .asset-feature:nth-of-type(even) .asset-feature__copy {
    justify-self: auto;
    transform: none;
  }

  .asset-feature__visual {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    width: min(78vw, 390px);
    height: min(86vw, 470px);
    min-height: 360px;
    overflow: hidden;
    justify-self: center;
    order: -1;
    transform: none;
  }

  .asset-feature:nth-of-type(even) .asset-feature__visual {
    left: auto;
    right: auto;
  }

  .asset-feature-list .asset-feature:last-of-type .asset-feature__visual {
    top: auto;
  }

  .asset-feature__stack {
    inset: -6% 0;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
  }

  .asset-feature__frame::before {
    border-width: 1px;
  }

  .service-page-grid,
  .service-page-grid--two,
  .service-page-grid--primary,
  .service-page-grid--compact {
    grid-template-columns: 1fr;
  }

  .service-page-card {
    min-height: auto;
  }

  .service-detail-aside {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .service-page .about-hero {
    margin: 0;
    padding-top: 168px;
    padding-bottom: 58px;
    border-radius: 0 0 22px 22px;
  }

  .service-page .hero-proof-list {
    margin-top: 44px;
  }

  .service-page .about-hero .hero-actions {
    margin-top: 44px;
  }

  .service-page-section,
  .service-page-band {
    padding: 76px 0;
  }

  .asset-feature-heading {
    margin-bottom: 28px;
  }

  .asset-feature {
    padding: 66px 0;
  }

  .asset-feature--surface {
    padding: 54px 0;
  }

  .section-panel {
    margin-inline: 0;
    padding: 50px 0;
    border-radius: 22px;
  }

  .advisory-trust {
    padding-bottom: 24px;
  }

  .advisory-trust__copy h2 {
    margin-bottom: 22px;
  }

  .advisory-trust__copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .advisory-trust__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .advisory-trust__item {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
  }

  .advisory-trust__copy .advisory-trust__item p {
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .asset-feature__copy h2 {
    font-size: clamp(1.85rem, 9.4vw, 3rem);
  }

  .asset-feature__copy .tags {
    gap: 5px;
    padding-top: 12px;
  }

  .asset-feature__copy .tags span {
    padding: 4px 6px;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .asset-feature__visual {
    width: calc(100% + 40px);
    height: clamp(250px, 74vw, 360px);
    min-height: 0;
    margin-inline: -20px;
    border-radius: 0;
  }

  .asset-feature__stack--single {
    inset: -32% -4%;
  }

  .asset-feature__frame--single {
    inset: 0;
    border-radius: 0;
  }

  .asset-feature__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-page-band {
    margin: 0;
    border-radius: 22px;
  }

  .service-page-heading {
    gap: 22px;
    margin-bottom: 32px;
  }

  .service-page-grid {
    gap: 12px;
  }

  .service-page-card,
  .service-detail-aside {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .service-page-diagnosis-cta {
    min-height: auto;
    padding: 18px 0 0;
  }

  .service-page-diagnosis-cta .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-page-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  .faq-page-nav,
  .faq-page-cta {
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  .faq-page-hero {
    min-height: auto;
    margin: 0;
    padding: 152px 0 58px;
    border-radius: 0 0 22px 22px;
  }

  .faq-page-hero__inner,
  .faq-page-layout {
    width: min(calc(100% - 40px), var(--container));
  }

  .faq-page-hero h1 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
    line-height: 0.96;
  }

  .faq-page-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-page-breadcrumb {
    margin-top: 18px;
    font-size: 0.78rem;
  }

  .faq-page-content {
    padding-top: 68px;
    padding-bottom: 24px;
  }

  .faq-page-sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-page-nav,
  .faq-page-cta {
    border-radius: 16px;
  }

  .faq-page-cta {
    display: none;
  }

  .faq-page-nav {
    padding: 18px;
  }

  .faq-page-nav a {
    grid-template-columns: 1fr 30px;
    padding: 14px 0;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .faq-page-nav a span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .faq-page-group {
    scroll-margin-top: 92px;
    margin-bottom: 58px;
  }

  .faq-page-group__title {
    margin-bottom: 18px;
    font-size: clamp(1.36rem, 6.8vw, 2rem);
  }

  .faq-page .faq-page-list .faq-question {
    min-height: 58px;
    padding: 16px 18px;
    font-size: 0.97rem;
  }

  .faq-page .faq-page-list .faq-answer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .faq-page .faq-page-list .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-page .faq-page-content + .final-cta {
    padding-top: 28px;
  }

  .legal-page-content {
    padding-top: 62px;
    padding-bottom: 24px;
  }

  .legal-page-layout {
    width: min(calc(100% - 40px), var(--container));
  }

  .legal-page-panel {
    gap: 28px;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .legal-page-section h2 {
    font-size: clamp(1.18rem, 6vw, 1.52rem);
  }

  .legal-page-section p,
  .legal-page-section li {
    font-size: 0.96rem;
    line-height: 1.56;
  }
}
