:root {
  --alab-bg: #f2eee1;
  --alab-bg-2: #e8e2d1;
  --alab-black: #0d0d0d;
  --alab-surface: #141414;
  --alab-line: #d8d3c4;
  --alab-line-dark: #262626;
  --alab-text: #0d0d0d;
  --alab-muted: #6a6a64;
  --alab-muted-2: #8a8576;
  --alab-white: #ffffff;
  --alab-blue: #3b88e8;
  --alab-green: #1ea572;
  --alab-yellow: #f2a21d;
  --alab-magenta: #d75180;
  --alab-cyan: #25c3d3;
  --container: 1280px;
  --gap: clamp(20px, 3vw, 38px);
  --radius: 12px;
  --font-display: "Tektur", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--alab-bg);
  color: var(--alab-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--alab-yellow);
  color: var(--alab-black);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 200;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 18px;
  background: var(--alab-yellow);
  color: var(--alab-black);
}

.container {
  width: min(calc(100% - 56px), var(--container));
  margin-inline: auto;
}

.top-color-bar {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 6px;
}

.top-color-bar span {
  flex: 1;
}

.top-color-bar span:nth-child(1) { background: var(--alab-blue); }
.top-color-bar span:nth-child(2) { background: var(--alab-green); }
.top-color-bar span:nth-child(3) { background: var(--alab-yellow); }
.top-color-bar span:nth-child(4) { background: var(--alab-magenta); }
.top-color-bar span:nth-child(5) { background: var(--alab-cyan); }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(13, 13, 13, 0.88);
  color: var(--alab-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.alab-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: "Baloo 2", var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.alab-logo span:nth-child(1) { color: var(--alab-cyan); }
.alab-logo span:nth-child(2) { color: var(--alab-green); }
.alab-logo span:nth-child(3) { color: var(--alab-yellow); }
.alab-logo span:nth-child(4) { color: var(--alab-blue); }

.alab-logo-img,
.custom-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 138px;
  object-fit: contain;
}

.site-header__logo,
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo .alab-logo-img,
.site-footer__logo .custom-logo {
  height: 50px;
  max-width: 164px;
}

.site-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}

.site-menu a,
.footer-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--alab-yellow);
}

.site-menu li {
  position: relative;
}

.site-menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  z-index: 30;
  min-width: 250px;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu .sub-menu a {
  display: block;
  padding: 11px 12px;
  color: #f4f1e8;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.25;
}

.site-menu .sub-menu a:hover,
.site-menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--alab-yellow);
}

.site-header__burger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__burger span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background: var(--alab-white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-menu a:focus-visible,
.footer-menu a:focus-visible,
.service-card a:focus-visible,
.project-card a:focus-visible,
.blog-card a:focus-visible {
  outline: 2px solid var(--alab-yellow);
  outline-offset: 4px;
}

.button--primary,
.button--accent {
  background: var(--alab-yellow);
  color: var(--alab-black);
}

.button--light {
  background: var(--alab-white);
  color: var(--alab-black);
}

.button--dark {
  background: #1a1a1a;
  color: var(--alab-white);
  border-color: #2a2a2a;
}

.button--outline {
  background: transparent;
  color: var(--alab-black);
  border-color: var(--alab-black);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.breadcrumbs {
  padding-block: 14px;
  background: var(--alab-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.32);
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--alab-yellow);
  text-decoration: underline;
}

.breadcrumbs--hero {
  max-width: 100%;
  margin: -12px 0 clamp(22px, 4vw, 34px);
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.breadcrumbs--hero ol {
  gap: 9px;
}

.breadcrumbs--hero a,
.breadcrumbs--hero span[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.breadcrumbs--hero span[aria-current="page"] {
  color: var(--alab-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.breadcrumbs--hero li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 9px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.32);
}

.hero-kinetic {
  position: relative;
  overflow: hidden;
  background: var(--alab-black);
  color: var(--alab-white);
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-x-soft: 0px;
  --hero-y-soft: 0px;
  --hero-scroll: 0px;
  --hero-scroll-soft: 0px;
  --hero-scroll-mid: 0px;
  --hero-scroll-deep: 0px;
  --hero-scroll-fast: 0px;
}

.hero-kinetic::before,
.hero-kinetic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-kinetic::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.74) 38%, rgba(10, 10, 10, 0.34) 66%, rgba(10, 10, 10, 0.64) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.58) 100%);
}

.hero-kinetic::after {
  z-index: 1;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255, 255, 255, 0.12) 89px, transparent 90px),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(255, 255, 255, 0.08) 77px, transparent 78px);
  transform: translate3d(var(--hero-x-soft), var(--hero-y-soft), 0);
  transition: transform 0.24s ease-out;
}

.hero-kinetic__art {
  position: absolute;
  inset: -18% -12%;
  z-index: 0;
  pointer-events: none;
  contain: layout paint;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll-soft)), 0);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-kinetic__strips-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.hero-kinetic__art.has-canvas-strips span {
  opacity: 0 !important;
}

.hero-kinetic__art::before,
.hero-kinetic__art::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero-kinetic__art::before {
  background:
    linear-gradient(108deg, transparent 0 28%, rgba(255, 255, 255, 0.1) 29%, transparent 30% 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%),
    repeating-linear-gradient(108deg, transparent 0 42px, rgba(255, 255, 255, 0.06) 43px, transparent 44px);
  animation: hero-line-field 18s linear infinite;
}

.hero-kinetic__art::after {
  width: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 100%);
  mix-blend-mode: screen;
  transform: translate3d(-120%, 0, 0) skewX(-18deg);
  animation: hero-scan 9s cubic-bezier(.2,.8,.2,1) infinite;
}

.hero-kinetic__art span {
  --strip-color: var(--alab-blue);
  --strip-opacity: 0.96;
  --strip-angle: -18deg;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-scroll-x: 0px;
  --strip-scroll-y: 0px;
  --strip-auto-x: 0px;
  --strip-auto-y: 0px;
  --strip-mouse-x: 0px;
  --strip-mouse-y: 0px;
  --strip-tilt: 0deg;
  --strip-intro-x: -160px;
  --strip-intro-y: 0px;
  --strip-shift: 0px;
  --strip-duration: 12s;
  --strip-delay: 0s;
  --strip-motion: hero-ribbon-a;
  position: absolute;
  display: block;
  width: 64vw;
  height: clamp(14px, 4vw, 96px);
  border-radius: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--strip-color) 88%, #fff 12%), var(--strip-color));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 255, 255, 0.08);
  backface-visibility: hidden;
  opacity: 0;
  transform: translate3d(
    calc(var(--strip-shift) + var(--strip-auto-x) + var(--strip-scroll-x) + var(--strip-mouse-x)),
    calc(var(--strip-scroll) + var(--strip-auto-y) + var(--strip-scroll-y) + var(--strip-mouse-y)),
    0
  ) rotate(calc(var(--strip-angle) + var(--strip-tilt)));
  translate: var(--strip-intro-x) var(--strip-intro-y);
  transition: opacity 1.45s ease, translate 2.25s cubic-bezier(.16,1,.18,1);
  transition-delay: var(--strip-delay);
  will-change: transform;
}

.hero-kinetic.is-active .hero-kinetic__art span {
  opacity: var(--strip-opacity);
  translate: 0 0;
}

.hero-kinetic__art span:nth-child(1) {
  top: 12%;
  left: -18%;
  width: 78vw;
  height: clamp(48px, 7vw, 104px);
  --strip-color: var(--alab-cyan);
  --strip-opacity: 0.95;
  --strip-scroll: var(--hero-scroll-soft);
  --strip-intro-x: -360px;
  --strip-intro-y: -42px;
  --strip-duration: 11s;
  --strip-delay: 0.05s;
}

.hero-kinetic__art span:nth-child(2) {
  top: 21%;
  left: 54%;
  width: 46vw;
  height: clamp(18px, 2.2vw, 34px);
  --strip-color: var(--alab-yellow);
  --strip-opacity: 1;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: 260px;
  --strip-intro-y: -90px;
  --strip-duration: 8.5s;
  --strip-delay: 0.12s;
  --strip-motion: hero-ribbon-b;
}

.hero-kinetic__art span:nth-child(3) {
  top: 38%;
  left: -26%;
  width: 58vw;
  height: clamp(30px, 4.6vw, 72px);
  --strip-color: var(--alab-green);
  --strip-opacity: 0.93;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: -280px;
  --strip-intro-y: 96px;
  --strip-duration: 10s;
  --strip-delay: 0.18s;
  --strip-motion: hero-ribbon-c;
}

.hero-kinetic__art span:nth-child(4) {
  top: 53%;
  left: 28%;
  width: 84vw;
  height: clamp(58px, 8vw, 118px);
  --strip-color: var(--alab-magenta);
  --strip-opacity: 0.94;
  --strip-scroll: var(--hero-scroll-soft);
  --strip-intro-x: 340px;
  --strip-intro-y: 110px;
  --strip-duration: 13s;
  --strip-delay: 0.24s;
  --strip-motion: hero-ribbon-b;
}

.hero-kinetic__art span:nth-child(5) {
  top: 72%;
  left: -12%;
  width: 56vw;
  height: clamp(16px, 2vw, 30px);
  --strip-color: var(--alab-blue);
  --strip-opacity: 1;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: -240px;
  --strip-intro-y: 160px;
  --strip-duration: 7.5s;
  --strip-delay: 0.3s;
}

.hero-kinetic__art span:nth-child(6) {
  top: 78%;
  left: 48%;
  width: 52vw;
  height: clamp(42px, 5vw, 82px);
  --strip-color: var(--alab-yellow);
  --strip-opacity: 0.9;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: 260px;
  --strip-intro-y: 140px;
  --strip-duration: 12.5s;
  --strip-delay: 0.36s;
  --strip-motion: hero-ribbon-c;
}

.hero-kinetic__art span:nth-child(7) {
  top: 3%;
  left: 82%;
  width: 34vw;
  height: clamp(62px, 7vw, 110px);
  --strip-color: var(--alab-blue);
  --strip-opacity: 0.88;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: 240px;
  --strip-intro-y: -180px;
  --strip-duration: 9.5s;
  --strip-delay: 0.42s;
  --strip-motion: hero-ribbon-b;
}

.hero-kinetic__art span:nth-child(8) {
  top: 31%;
  left: 72%;
  width: 38vw;
  height: clamp(8px, 1vw, 14px);
  --strip-color: var(--alab-cyan);
  --strip-opacity: 1;
  --strip-scroll: var(--hero-scroll-fast);
  --strip-intro-x: 220px;
  --strip-intro-y: -60px;
  --strip-duration: 6.8s;
  --strip-delay: 0.48s;
}

.hero-kinetic__art span:nth-child(9) {
  top: 46%;
  left: 8%;
  width: 28vw;
  height: clamp(8px, 0.9vw, 12px);
  --strip-color: var(--alab-yellow);
  --strip-opacity: 0.9;
  --strip-scroll: var(--hero-scroll-fast);
  --strip-intro-x: -180px;
  --strip-intro-y: 90px;
  --strip-duration: 7.2s;
  --strip-delay: 0.54s;
  --strip-motion: hero-ribbon-b;
}

.hero-kinetic__art span:nth-child(10) {
  top: 88%;
  left: 18%;
  width: 78vw;
  height: clamp(10px, 1.3vw, 20px);
  --strip-color: var(--alab-green);
  --strip-opacity: 0.92;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: -120px;
  --strip-intro-y: 220px;
  --strip-duration: 8s;
  --strip-delay: 0.6s;
}

.hero-kinetic__art span:nth-child(11) {
  top: 14%;
  left: 18%;
  width: 18vw;
  height: clamp(8px, 0.8vw, 12px);
  --strip-color: var(--alab-magenta);
  --strip-opacity: 0.86;
  --strip-scroll: var(--hero-scroll-fast);
  --strip-intro-x: -120px;
  --strip-intro-y: -120px;
  --strip-duration: 6.4s;
  --strip-delay: 0.66s;
  --strip-motion: hero-ribbon-c;
}

.hero-kinetic__art span:nth-child(12) {
  top: 62%;
  left: 78%;
  width: 25vw;
  height: clamp(12px, 1.4vw, 22px);
  --strip-color: var(--alab-cyan);
  --strip-opacity: 0.86;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: 160px;
  --strip-intro-y: 120px;
  --strip-duration: 9s;
  --strip-delay: 0.72s;
  --strip-motion: hero-ribbon-b;
}

.hero-kinetic__art span:nth-child(13) {
  top: 6%;
  left: -30%;
  width: 68vw;
  height: clamp(18px, 2.6vw, 42px);
  --strip-color: var(--alab-green);
  --strip-opacity: 0.86;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: -260px;
  --strip-intro-y: -130px;
  --strip-delay: 0.18s;
}

.hero-kinetic__art span:nth-child(14) {
  top: 18%;
  left: 64%;
  width: 42vw;
  height: clamp(28px, 3.8vw, 62px);
  --strip-color: var(--alab-magenta);
  --strip-opacity: 0.88;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: 280px;
  --strip-intro-y: -120px;
  --strip-delay: 0.23s;
}

.hero-kinetic__art span:nth-child(15) {
  top: 29%;
  left: -18%;
  width: 74vw;
  height: clamp(10px, 1.5vw, 24px);
  --strip-color: var(--alab-yellow);
  --strip-opacity: 0.94;
  --strip-scroll: var(--hero-scroll-fast);
  --strip-intro-x: -220px;
  --strip-intro-y: -40px;
  --strip-delay: 0.28s;
}

.hero-kinetic__art span:nth-child(16) {
  top: 41%;
  left: 58%;
  width: 64vw;
  height: clamp(18px, 2.4vw, 38px);
  --strip-color: var(--alab-cyan);
  --strip-opacity: 0.9;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: 260px;
  --strip-intro-y: 20px;
  --strip-delay: 0.33s;
}

.hero-kinetic__art span:nth-child(17) {
  top: 49%;
  left: -32%;
  width: 52vw;
  height: clamp(34px, 4.8vw, 74px);
  --strip-color: var(--alab-blue);
  --strip-opacity: 0.82;
  --strip-scroll: var(--hero-scroll-soft);
  --strip-intro-x: -320px;
  --strip-intro-y: 80px;
  --strip-delay: 0.38s;
}

.hero-kinetic__art span:nth-child(18) {
  top: 68%;
  left: 70%;
  width: 58vw;
  height: clamp(12px, 1.8vw, 30px);
  --strip-color: var(--alab-green);
  --strip-opacity: 0.88;
  --strip-scroll: var(--hero-scroll-fast);
  --strip-intro-x: 260px;
  --strip-intro-y: 120px;
  --strip-delay: 0.43s;
}

.hero-kinetic__art span:nth-child(19) {
  top: 81%;
  left: -22%;
  width: 72vw;
  height: clamp(22px, 3vw, 48px);
  --strip-color: var(--alab-magenta);
  --strip-opacity: 0.84;
  --strip-scroll: var(--hero-scroll-mid);
  --strip-intro-x: -260px;
  --strip-intro-y: 180px;
  --strip-delay: 0.48s;
}

.hero-kinetic__art span:nth-child(20) {
  top: 93%;
  left: 44%;
  width: 80vw;
  height: clamp(8px, 1vw, 16px);
  --strip-color: var(--alab-cyan);
  --strip-opacity: 0.82;
  --strip-scroll: var(--hero-scroll-deep);
  --strip-intro-x: 240px;
  --strip-intro-y: 210px;
  --strip-delay: 0.53s;
}

.hero-kinetic__content,
.hero-ops-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-kinetic.is-active .hero-kinetic__content,
.hero-kinetic.is-active .hero-ops-card {
  opacity: 1;
  transform: translateY(0);
}

.hero-kinetic.is-active .hero-ops-card {
  transition-delay: 0.18s;
}

.hero-kinetic__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  padding-block: clamp(64px, 8vw, 112px) 56px;
}

.hero-kinetic__eyebrow,
.section-eyebrow {
  margin: 0 0 18px;
  color: var(--alab-muted-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kinetic__eyebrow {
  color: #cfcfcf;
  font-size: 15px;
}

.hero-kinetic h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 8.6vw, 126px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-kinetic__lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #d8d8d8;
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-kinetic .button-row {
  margin-top: 38px;
}

.hero-kinetic__note {
  margin: 38px 0 0;
  color: #9a9a9a;
  font-family: var(--font-display);
  font-size: 14px;
}

.hero-ops-card {
  overflow: hidden;
  padding: 26px;
  background: var(--alab-surface);
  border: 1px solid var(--alab-line-dark);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-ops-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hero-ops-card__head p {
  margin: 0 0 8px;
  color: #6f6f6f;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.hero-ops-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 54px;
}

.mini-bars span {
  width: 8px;
  background: var(--alab-blue);
  transform-origin: bottom;
  animation: grow-bar 0.9s ease both;
}

.mini-bars span:nth-child(1) { height: 40%; background: var(--alab-cyan); }
.mini-bars span:nth-child(2) { height: 62%; animation-delay: 0.1s; }
.mini-bars span:nth-child(3) { height: 80%; background: var(--alab-green); animation-delay: 0.2s; }
.mini-bars span:nth-child(4) { height: 100%; background: var(--alab-yellow); animation-delay: 0.3s; }

.hero-ops-card > p {
  margin: 20px 0;
  color: #bdbdbd;
  font-size: 15px;
}

.lead-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-height: 146px;
  padding: 18px 0;
}

.lead-map::before {
  content: "";
  position: absolute;
  inset: 26px 18px;
  border: 1px solid #353535;
  transform: skewY(-10deg);
}

.lead-map span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  background: #1c1c1c;
  color: #cfcfcf;
  font-family: var(--font-display);
  font-size: 12px;
}

.hero-ops-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-ops-card__metrics b {
  display: block;
  padding: 12px;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: var(--alab-cyan);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}

.hero-ops-card__metrics small {
  display: block;
  margin-bottom: 5px;
  color: #7d7d7d;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero-proof-grid div {
  min-width: 0;
  padding: 14px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-proof-grid b {
  display: block;
  color: var(--alab-cyan);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1;
}

.hero-proof-grid span {
  display: block;
  margin-top: 8px;
  color: #d6d6d6;
  font-size: 12px;
  line-height: 1.3;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #0a0a0a;
  border-block: 1px solid #1f1f1f;
}

.marquee span {
  display: block;
  width: max-content;
  padding: 16px 0;
  color: #d8d8d8;
  font-family: var(--font-display);
  font-size: 18px;
  animation: marquee 26s linear infinite;
}

.section {
  padding-block: clamp(70px, 8vw, 104px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section-heading h2,
.section-title,
.cms-section h2,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading p {
  max-width: 380px;
  margin: 0;
  color: var(--alab-muted);
}

.service-grid,
.project-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  contain: layout paint;
  min-width: 0;
  min-height: 470px;
  height: 100%;
  padding: 30px 28px 26px;
  color: var(--alab-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  filter: saturate(1.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.service-card--blue { background: var(--alab-blue); }
.service-card--green { background: var(--alab-green); }
.service-card--yellow { background: var(--alab-yellow); }
.service-card--magenta { background: var(--alab-magenta); }
.service-card--cyan { background: var(--alab-cyan); }
.service-card--black { background: var(--alab-black); }

.service-card--yellow,
.service-card--cyan {
  color: var(--alab-black);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}

.service-card__icon {
  display: flex;
  width: 78px;
  height: 54px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.2);
}

.service-card--yellow .service-card__icon,
.service-card--cyan .service-card__icon {
  background: rgba(0, 0, 0, 0.12);
}

.service-card__icon i {
  display: block;
  height: 6px;
  background: currentColor;
  opacity: 0.9;
}

.service-card__icon i:nth-child(2) {
  width: 58%;
  opacity: 0.55;
}

.service-card__title {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.9vw, 25px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-card__title a,
.project-card h2 a,
.project-card h3 a,
.blog-card h2 a,
.blog-card h3 a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.service-card__lead {
  display: -webkit-box;
  overflow: hidden;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.42;
  opacity: 0.93;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.service-card__scope {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.35;
}

.service-card__scope li {
  display: flex;
  gap: 9px;
  min-width: 0;
  overflow-wrap: break-word;
}

.service-card__scope li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.72;
}

.service-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.service-card__facts div {
  min-width: 0;
  padding: 12px 12px 11px;
  background: rgba(255, 255, 255, 0.16);
}

.service-card--yellow .service-card__facts div,
.service-card--cyan .service-card__facts div {
  background: rgba(0, 0, 0, 0.1);
}

.service-card__facts span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.72;
}

.service-card__facts b {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-card__proof {
  display: -webkit-box;
  overflow: hidden;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.74;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card__bottom {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.service-card__price {
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  opacity: 0.95;
}

.service-card__link {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  align-self: stretch;
  padding: 11px 12px 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.92);
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.15;
  overflow-wrap: break-word;
  text-align: left;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-card__link::after {
  content: "→";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--alab-black);
  color: var(--alab-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-card--yellow .service-card__link,
.service-card--cyan .service-card__link {
  border-color: rgba(0, 0, 0, 0.82);
  background: var(--alab-black);
  color: var(--alab-white);
}

.service-card--yellow .service-card__link::after,
.service-card--cyan .service-card__link::after {
  background: var(--alab-white);
  color: var(--alab-black);
}

.service-card__link:hover,
.service-card__link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--alab-white);
  background: var(--alab-white);
  color: var(--alab-black);
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after {
  transform: translateX(3px);
}

.service-card--yellow .service-card__link:hover,
.service-card--yellow .service-card__link:focus-visible,
.service-card--cyan .service-card__link:hover,
.service-card--cyan .service-card__link:focus-visible {
  border-color: var(--alab-black);
  background: var(--alab-black);
  color: var(--alab-white);
}

.service-compare-list {
  display: grid;
  gap: 14px;
}

.service-compare-row {
  display: grid;
  grid-template-columns: 72px minmax(210px, 0.8fr) minmax(0, 1.4fr) auto;
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  background: var(--alab-black);
  color: var(--alab-white);
  border: 1px solid var(--alab-line-dark);
}

.service-compare-row__num {
  color: var(--alab-yellow);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.service-compare-row__main h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-compare-row__main h3 a {
  text-decoration: none;
}

.service-compare-row__main p {
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
}

.service-compare-row__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.service-compare-row__facts div {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.service-compare-row__facts dt {
  margin-bottom: 5px;
  color: var(--alab-yellow);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-compare-row__facts dd {
  margin: 0;
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.35;
}

.service-compare-row__link {
  align-self: center;
  padding: 12px 16px;
  background: var(--alab-white);
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
}

.service-builder {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.service-builder__head {
  max-width: 900px;
}

.service-builder__head h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-builder__head p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--alab-muted);
  font-size: 18px;
}

.service-builder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: start;
}

.service-builder__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-option {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 22px;
  background: var(--alab-white);
  border: 1px solid rgba(14, 14, 13, 0.1);
}

.service-option__visual {
  display: block;
  margin: -6px -6px 18px;
  overflow: hidden;
  background: var(--alab-black);
  aspect-ratio: 16 / 10;
}

.service-option__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-option:hover .service-option__visual img {
  transform: scale(1.035);
}

.service-option label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: start;
  cursor: pointer;
}

.service-option input {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  margin: 3px 0 0;
  accent-color: var(--alab-blue);
}

.service-option label span {
  color: var(--alab-muted);
  font-family: var(--font-display);
  font-size: 18px;
}

.service-option label b {
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-option p {
  margin: 18px 0 0;
  color: #4d4d48;
  font-size: 15px;
}

.service-option__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.service-option__bottom strong {
  font-family: var(--font-display);
  font-size: 18px;
  white-space: nowrap;
}

.service-option__bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 14px;
}

.service-builder__summary {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--alab-black);
  color: var(--alab-white);
}

.service-builder__summary span {
  color: #bdbdb7;
  font-size: 13px;
  text-transform: uppercase;
}

.service-builder__summary b {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-builder__summary p {
  margin: 18px 0 26px;
  color: #d8d8d2;
}

.service-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.service-visual__art {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  overflow: hidden;
  background: var(--alab-black);
  color: var(--alab-white);
  isolation: isolate;
}

.service-visual__art--image {
  background: var(--alab-black);
}

.service-visual__image {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 520px);
  object-fit: contain;
}

.service-visual__art::before,
.service-visual__art::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 110px;
  transform: rotate(-18deg);
  opacity: 0.95;
}

.service-visual__art::before {
  top: 16%;
  left: -12%;
  background: var(--alab-blue);
  animation: float-a 9s ease-in-out infinite;
}

.service-visual__art::after {
  right: -18%;
  bottom: 12%;
  background: var(--alab-magenta);
  animation: float-b 11s ease-in-out infinite;
}

.service-visual__art--image::before,
.service-visual__art--image::after {
  content: none;
}

.service-visual--green .service-visual__art::before { background: var(--alab-green); }
.service-visual--yellow .service-visual__art::before { background: var(--alab-yellow); }
.service-visual--magenta .service-visual__art::before { background: var(--alab-magenta); }
.service-visual--cyan .service-visual__art::before { background: var(--alab-cyan); }
.service-visual--black .service-visual__art::before { background: #2f2f2f; }

.service-visual__browser {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 10%;
  width: min(72%, 520px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.service-visual__browser span {
  display: block;
  height: 14px;
  margin-bottom: 14px;
  background: #111;
}

.service-visual__browser span:nth-child(1) { width: 42%; background: var(--alab-cyan); }
.service-visual__browser span:nth-child(2) { width: 84%; background: #222; }
.service-visual__browser span:nth-child(3) { width: 66%; background: var(--alab-yellow); margin-bottom: 0; }

.service-visual__flow {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 16%;
  display: grid;
  grid-template-columns: repeat(2, 86px);
  gap: 12px;
}

.service-visual__flow i {
  display: block;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.service-visual__flow i:nth-child(2) { background: var(--alab-green); }
.service-visual__flow i:nth-child(3) { background: var(--alab-yellow); }

.service-visual__cards {
  position: absolute;
  z-index: 4;
  left: 14%;
  right: 12%;
  bottom: 12%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-visual__cards b {
  display: block;
  min-height: 74px;
  background: #111;
  border: 1px solid #333;
}

.service-visual__cards b:nth-child(1) { background: var(--alab-cyan); }
.service-visual__cards b:nth-child(2) { background: var(--alab-magenta); }
.service-visual__cards b:nth-child(3) { background: var(--alab-blue); }

.service-visual__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.service-visual__content h2,
.service-route__head h2,
.service-admin-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
}

.service-visual__content > p,
.service-route__head > p,
.service-admin-section p {
  margin: 22px 0 0;
  color: var(--alab-muted);
  font-size: 18px;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-metrics div {
  padding: 18px;
  background: var(--alab-black);
  color: var(--alab-white);
}

.service-metrics b,
.service-metrics span {
  display: block;
}

.service-metrics b {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.service-metrics span {
  margin-top: 8px;
  color: #bdbdbd;
  font-size: 13px;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-feature {
  min-height: 260px;
  padding: 26px;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.service-feature span {
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
}

.service-feature h3 {
  margin: 30px 0 0;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}

.service-feature p {
  margin: 16px 0 0;
  color: var(--alab-muted);
}

.service-route {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.service-route__head {
  align-self: start;
}

.service-route__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
}

.service-route__tabs {
  display: grid;
  gap: 10px;
}

.service-route__tabs button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-route__tabs button:hover,
.service-route__tabs button:focus-visible,
.service-route__tabs button.is-active {
  background: var(--alab-black);
  color: var(--alab-white);
  transform: translateX(4px);
}

.service-route__tabs span {
  font-family: var(--font-display);
  color: var(--alab-cyan);
}

.service-route__panels {
  min-height: 360px;
}

.service-route__panels article {
  display: none;
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--alab-black);
  color: var(--alab-white);
}

.service-route__panels article.is-active {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: route-panel-in 0.35s ease both;
}

.service-route__panels span {
  color: var(--alab-yellow);
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.85;
}

.service-route__panels h3 {
  margin: 32px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.service-route__panels p {
  max-width: 640px;
  margin: 20px 0 0;
  color: #d6d6d6;
  font-size: 18px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 64px;
  margin-top: 44px;
}

.scenario-grid--compact {
  gap: 28px 36px;
  margin-top: 30px;
}

.task-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.task-route {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line-dark);
  background: var(--alab-black);
  color: var(--alab-white);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.task-route:hover,
.task-route:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.task-route span,
.task-route b {
  font-family: var(--font-display);
}

.task-route span {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.05;
}

.task-route p {
  max-width: 310px;
  margin: 22px 0;
  color: #d8d8d8;
  font-size: 15px;
}

.task-route b {
  color: var(--alab-cyan);
  font-size: 14px;
}

.task-route--blue { border-top: 5px solid var(--alab-blue); }
.task-route--green { border-top: 5px solid var(--alab-green); }
.task-route--yellow { border-top: 5px solid var(--alab-yellow); }
.task-route--magenta { border-top: 5px solid var(--alab-magenta); }
.task-route--cyan { border-top: 5px solid var(--alab-cyan); }
.task-route--black { border-top: 5px solid #6a6a6a; }

.industry-route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.industry-route {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-black);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.industry-route:hover,
.industry-route:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.industry-route span {
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.industry-route h3 {
  margin: 22px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.06;
}

.industry-route p {
  margin: 0;
  color: var(--alab-muted);
  font-size: 15px;
}

.scenario {
  display: flex;
  gap: 22px;
  padding-top: 24px;
  border-top: 3px solid currentColor;
}

.scenario--blue { color: var(--alab-blue); }
.scenario--green { color: var(--alab-green); }
.scenario--yellow { color: var(--alab-yellow); }
.scenario--magenta { color: var(--alab-magenta); }

.scenario h3,
.scenario p {
  color: var(--alab-text);
}

.scenario span,
.scenario b {
  font-family: var(--font-display);
  font-weight: 600;
}

.scenario h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.12;
}

.scenario p {
  margin: 16px 0;
  color: #4a4a44;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.info-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-width: 0;
  padding: 22px;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--alab-muted);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.trust-link-grid,
.trust-summary-grid,
.partner-grid,
.certificate-grid {
  display: grid;
  gap: 18px;
}

.trust-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-link {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-link:hover,
.trust-link:focus-visible {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.trust-link--blue { color: var(--alab-blue); }
.trust-link--magenta { color: var(--alab-magenta); }

.trust-link span,
.trust-link strong {
  font-family: var(--font-display);
}

.trust-link span {
  color: currentColor;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-link strong {
  color: var(--alab-text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.04;
}

.trust-link em {
  max-width: 560px;
  color: #4a4a44;
  font-style: normal;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.58fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.about-intro__content {
  max-width: 900px;
}

.about-intro__content > p:first-child {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
}

.about-dashboard {
  position: sticky;
  top: 106px;
  overflow: hidden;
  background: var(--alab-black);
  color: var(--alab-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.about-dashboard__image {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
}

.about-dashboard__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(13, 13, 13, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.08) 55px, transparent 56px);
}

.about-dashboard__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) brightness(1.08);
}

.about-dashboard__stats {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.about-dashboard__stats div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 22px 24px;
  background: #111;
}

.about-dashboard__stats b {
  color: var(--alab-yellow);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
}

.about-dashboard__stats span {
  color: #d8d8d8;
  line-height: 1.35;
}

.about-system-section {
  background: #171717;
  color: var(--alab-white);
}

.about-system-section .section-heading p,
.about-system-section .section-eyebrow {
  color: #c9c9c9;
}

.about-system-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.about-system-node {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111;
}

.about-system-node::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 5px;
  background: currentColor;
  transform-origin: left;
}

.about-system-node:nth-child(1) { color: var(--alab-cyan); }
.about-system-node:nth-child(2) { color: var(--alab-yellow); }
.about-system-node:nth-child(3) { color: var(--alab-green); }
.about-system-node:nth-child(4) { color: var(--alab-magenta); }
.about-system-node:nth-child(5) { color: var(--alab-blue); }
.about-system-node:nth-child(6) { color: var(--alab-yellow); }

.about-system-node span,
.about-system-node h3 {
  font-family: var(--font-display);
}

.about-system-node span {
  display: block;
  margin-bottom: 52px;
  color: currentColor;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.about-system-node h3 {
  margin: 0;
  color: var(--alab-white);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.04;
}

.about-system-node p {
  margin: 16px 0 0;
  color: #cfcfcf;
  line-height: 1.4;
}

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

.about-role-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  color: var(--alab-white);
}

.about-role-card--blue { background: var(--alab-blue); }
.about-role-card--yellow { background: var(--alab-yellow); color: var(--alab-black); }
.about-role-card--green { background: var(--alab-green); }

.about-role-card span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-role-card h3 {
  max-width: 430px;
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.about-role-card p {
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

.trust-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.trust-preview {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.trust-preview__visual {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
  background: var(--alab-black);
}

.trust-preview__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(37, 195, 211, 0.34), transparent 32%),
    radial-gradient(circle at 72% 74%, rgba(215, 81, 128, 0.32), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.07) 43px, transparent 44px);
}

.trust-preview__visual span {
  position: relative;
  z-index: 1;
  width: min(100%, 126px);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--alab-white);
  font-family: var(--font-display);
  font-size: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.trust-preview__visual span:nth-child(2) { margin-left: auto; color: var(--alab-yellow); }
.trust-preview__visual span:nth-child(3) { color: var(--alab-cyan); }
.trust-preview__visual span:nth-child(4) { margin-left: auto; color: var(--alab-magenta); }

.trust-preview__visual--docs {
  display: block;
}

.trust-preview__visual--docs i {
  position: absolute;
  width: 54%;
  height: 62%;
  background: #f8f4e8;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.trust-preview__visual--docs i::before,
.trust-preview__visual--docs i::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 8px;
  background: #1f1f1f;
}

.trust-preview__visual--docs i::before { top: 24%; }
.trust-preview__visual--docs i::after { top: 42%; background: var(--alab-magenta); }
.trust-preview__visual--docs i:nth-child(1) { left: 18%; top: 18%; transform: rotate(-8deg); }
.trust-preview__visual--docs i:nth-child(2) { left: 28%; top: 22%; transform: rotate(5deg); }
.trust-preview__visual--docs i:nth-child(3) { left: 22%; top: 30%; transform: rotate(-1deg); }

.trust-preview__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 3.6vw, 38px);
}

.trust-preview__label {
  color: var(--alab-muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-preview h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.trust-preview p {
  margin: 0;
  color: #474741;
}

.trust-preview .button {
  width: fit-content;
  margin-top: 4px;
}

.trust-page-lead {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.trust-page-lead p {
  max-width: 820px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.trust-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 clamp(48px, 6vw, 72px);
}

.trust-summary {
  padding: 22px;
  border-top: 3px solid currentColor;
  background: var(--alab-white);
}

.trust-summary:nth-child(1) { color: var(--alab-cyan); }
.trust-summary:nth-child(2) { color: var(--alab-yellow); }
.trust-summary:nth-child(3) { color: var(--alab-magenta); }

.trust-summary span {
  display: block;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-summary b {
  display: block;
  margin-top: 14px;
  color: var(--alab-text);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.05;
}

.trust-copy {
  max-width: 900px;
  margin-bottom: 34px;
}

.tech-home-section {
  background: #fffaf0;
}

.tech-cloud {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.tech-tile,
.site-tool-card,
.site-tool-category-card {
  min-width: 0;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
  border-radius: 8px;
}

.tech-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.tech-tile--compact {
  grid-template-columns: 1fr;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tech-tile--compact:hover {
  border-color: rgba(13, 13, 13, 0.24);
  box-shadow: 7px 7px 0 rgba(13, 13, 13, 0.08);
  transform: translate(-2px, -2px);
}

.tech-tile h3,
.site-tool-card h3,
.site-tool-category-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
}

.tech-tile h3 {
  font-size: clamp(19px, 1.8vw, 24px);
}

.tech-tile--compact h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.3em;
  font-size: clamp(13px, 1.02vw, 16px);
  line-height: 1.14;
  overflow-wrap: anywhere;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tech-tile p,
.site-tool-card p,
.site-tool-category-card p {
  margin: 8px 0 0;
  color: var(--alab-muted);
}

.ecosystem-logo {
  position: relative;
  display: inline-flex;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 13, 13, 0.16);
  border-radius: 8px;
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(13, 13, 13, 0.08);
}

.ecosystem-logo::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  content: "";
}

.ecosystem-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 35px;
  height: 35px;
  pointer-events: none;
}

.ecosystem-logo--mini {
  width: 44px;
  height: 44px;
  font-size: 13px;
  box-shadow: none;
}

.ecosystem-logo--mini::after {
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
}

.ecosystem-logo--mini .ecosystem-icon {
  width: 25px;
  height: 25px;
}

.ecosystem-logo--blue {
  background: var(--alab-blue);
  color: var(--alab-white);
}

.ecosystem-logo--green {
  background: var(--alab-green);
  color: var(--alab-white);
}

.ecosystem-logo--yellow {
  background: var(--alab-yellow);
}

.ecosystem-logo--magenta {
  background: var(--alab-magenta);
  color: var(--alab-white);
}

.ecosystem-logo--cyan {
  background: var(--alab-cyan);
}

.ecosystem-logo--black {
  background: var(--alab-black);
  color: var(--alab-white);
}

.site-tools-home-section {
  background: var(--alab-bg);
}

.site-tool-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-tool-category-card {
  display: grid;
  gap: 22px;
  min-height: 268px;
  padding: clamp(20px, 2.4vw, 28px);
}

.site-tool-category-card h3 {
  margin-top: 16px;
  font-size: clamp(22px, 2.1vw, 30px);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.site-tool-category-card p {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.site-tool-category-card__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.site-tool-category-card__logos > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f7f3e8;
  border: 1px solid var(--alab-line);
  border-radius: 8px;
}

.site-tool-category-card__logos > span > b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ecosystem-page {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.ecosystem-group {
  display: grid;
  gap: 18px;
}

.tech-grid,
.site-tool-grid {
  display: grid;
  gap: 18px;
}

.tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-grid .tech-tile {
  align-items: start;
  grid-template-columns: 1fr;
  min-height: 230px;
  padding: 22px;
}

.site-tool-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 250px;
  padding: 22px;
}

.site-tool-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-tool-card h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-home-groups {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
}

.partner-group {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 56px);
}

.partner-group:first-child,
.partner-group--home {
  margin-top: 0;
}

.partner-group__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--alab-line);
}

.partner-group__head p {
  max-width: 860px;
  margin: 0;
  color: var(--alab-muted);
}

.partner-grid--home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-card,
.certificate-card {
  min-width: 0;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
  border-radius: 8px;
  overflow: hidden;
}

.partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.partner-card--home {
  min-height: 250px;
}

.partner-card--home .partner-card__body {
  gap: 12px;
  padding: 20px;
}

.partner-card--home h3 {
  font-size: clamp(22px, 2.2vw, 28px);
}

.partner-card--home p {
  color: var(--alab-muted);
  font-size: 14px;
  line-height: 1.35;
}

.partner-card__logo {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 26px;
  background: #f5f2e9;
}

.partner-card__logo img {
  display: block;
  width: auto;
  max-width: min(220px, 100%);
  max-height: 82px;
  object-fit: contain;
}

.partner-card__body,
.certificate-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.partner-card__body {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  height: 100%;
}

.certificate-card__body {
  align-content: start;
}

.partner-card h3,
.certificate-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.08;
}

.partner-card p,
.certificate-card p {
  margin: 0;
}

.partner-card__action,
.certificate-card__action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  align-self: end;
  width: fit-content;
  margin-top: 6px;
  padding: 9px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--alab-blue);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.partner-card__action:hover,
.partner-card__action:focus-visible,
.certificate-card__action:hover,
.certificate-card__action:focus-visible {
  background: var(--alab-blue);
  border-color: var(--alab-blue);
  color: var(--alab-white);
}

.partner-disclosure {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--alab-muted);
  font-size: 14px;
}

.clean-link-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  background: #f5f2e9;
  color: #5e5e55;
  font-family: var(--font-display);
  font-size: 12px;
}

.certificate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificate-card__image {
  display: grid;
  height: 210px;
  place-items: center;
  padding: 16px;
  background: #f5f2e9;
  border-bottom: 1px solid var(--alab-line);
}

.certificate-card__image img {
  display: block;
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
}

.cms-section {
  background: var(--alab-black);
  color: var(--alab-white);
}

.cms-section .section-eyebrow,
.cms-section p {
  color: #b8b8b8;
}

.cms-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 50px;
}

.cms-section h2 {
  color: var(--alab-white);
}

.cms-section p {
  max-width: 560px;
  margin: 28px 0 32px;
}

.cms-panel {
  padding: 30px;
  background: #161616;
  border: 1px solid var(--alab-line-dark);
  border-radius: var(--radius);
}

.cms-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 24px;
}

.cms-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--alab-line-dark);
}

.cms-row::before {
  content: "";
  width: 4px;
  height: 34px;
  flex: 0 0 4px;
  background: currentColor;
}

.cms-row--blue { color: var(--alab-blue); }
.cms-row--green { color: var(--alab-green); }
.cms-row--yellow { color: var(--alab-yellow); }
.cms-row--magenta { color: var(--alab-magenta); }

.cms-row b {
  min-width: 140px;
  color: var(--alab-white);
  font-family: var(--font-display);
  font-weight: 500;
}

.cms-row span {
  margin-left: auto;
  color: #9a9a9a;
  font-size: 14px;
  text-align: right;
}

.project-grid--featured .project-card:first-child {
  grid-column: span 2;
}

.project-card {
  min-width: 0;
}

.browser-shot {
  display: block;
  overflow: hidden;
  background: var(--alab-surface);
  border: 1px solid var(--alab-line-dark);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.2);
}

.browser-shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--alab-line-dark);
}

.browser-shot__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-shot__bar i:nth-child(1) { background: var(--alab-magenta); }
.browser-shot__bar i:nth-child(2) { background: var(--alab-yellow); }
.browser-shot__bar i:nth-child(3) { background: var(--alab-green); }

.browser-shot__bar b {
  margin-left: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #222;
  color: #9a9a9a;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
}

.browser-shot__image {
  display: grid;
  min-height: 230px;
  aspect-ratio: 1024 / 427;
  place-items: center;
  overflow: hidden;
  background: #f1efe8;
}

.browser-shot__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-shot__placeholder {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--alab-muted-2);
}

.project-card__body {
  padding: 24px 4px 0;
}

.project-card__kicker {
  margin: 0 0 10px;
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card--green .project-card__kicker { color: var(--alab-green); }
.project-card--yellow .project-card__kicker { color: var(--alab-yellow); }
.project-card--magenta .project-card__kicker { color: var(--alab-magenta); }
.project-card--cyan .project-card__kicker { color: var(--alab-cyan); }

.project-card h2,
.project-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.project-card p {
  margin: 0 0 16px;
  color: var(--alab-muted);
  font-size: 15px;
}

.project-card__result {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--alab-line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--alab-text) !important;
}

.project-card__result span {
  color: var(--alab-muted-2);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-proof-section {
  padding-block: clamp(36px, 5vw, 64px);
}

.project-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-proof {
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.project-proof span,
.project-case-flow span,
.project-side-checklist b {
  display: block;
  margin-bottom: 12px;
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-proof b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.12;
}

.project-side-checklist {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--alab-line);
  background: rgba(255, 255, 255, 0.6);
}

.project-side-checklist ul {
  margin: 0;
}

.project-case-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-case-flow article {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line-dark);
  background: var(--alab-black);
  color: var(--alab-white);
}

.project-case-flow h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.project-case-flow p {
  margin: 0;
  color: #d8d8d8;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.review-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--alab-white);
  border-top: 5px solid var(--alab-blue);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.review-card--green { border-top-color: var(--alab-green); }
.review-card--yellow { border-top-color: var(--alab-yellow); }
.review-card--magenta { border-top-color: var(--alab-magenta); }
.review-card--cyan { border-top-color: var(--alab-cyan); }
.review-card--black { border-top-color: var(--alab-black); }

.review-card__quote p {
  margin: 0;
  color: var(--alab-black);
  font-size: 16px;
  line-height: 1.48;
}

.review-card footer {
  margin-top: 28px;
}

.review-card b,
.review-card span {
  display: block;
}

.review-card b {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.15;
}

.review-card span {
  margin-top: 6px;
  color: var(--alab-muted-2);
  font-size: 13px;
  line-height: 1.35;
}

.tag-list,
.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list span,
.stack-list span {
  padding: 8px 14px;
  border: 1px solid var(--alab-line);
  border-radius: 999px;
  background: var(--alab-white);
  font-family: var(--font-display);
  font-size: 13px;
}

.section-more {
  margin-top: 34px;
}

.process-section {
  background: var(--alab-bg-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0 54px;
}

.process-card {
  display: flex;
  min-height: 148px;
  aspect-ratio: 1 / 1.08;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--alab-white);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-7px);
}

.process-card--blue { background: var(--alab-blue); }
.process-card--green { background: var(--alab-green); }
.process-card--yellow { background: var(--alab-yellow); }
.process-card--magenta { background: var(--alab-magenta); }
.process-card--cyan { background: var(--alab-cyan); }
.process-card--black { background: var(--alab-black); }

.process-card span,
.process-card b,
.stack-list b {
  font-family: var(--font-display);
  font-size: 22px;
}

.stack-list {
  align-items: center;
}

.stack-list b {
  margin-right: 10px;
}

.blog-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  background: var(--alab-white);
  border: 1px solid #e3ddcd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  background: var(--alab-black);
  aspect-ratio: 16 / 9;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.blog-card__meta span,
.blog-card__meta time {
  padding: 6px 9px;
  border: 1px solid var(--alab-line);
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.blog-card__excerpt {
  color: var(--alab-muted);
  font-size: 15px;
}

.blog-card__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  align-self: stretch;
  margin-top: auto;
  padding: 10px 12px 10px 15px;
  border: 1px solid var(--alab-black);
  background: var(--alab-black);
  color: var(--alab-white);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
}

.blog-card__link::after {
  content: "→";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--alab-white);
  color: var(--alab-black);
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.25s ease;
}

.blog-card__link:hover::after,
.blog-card__link:focus-visible::after {
  transform: translateX(3px);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 42px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers:focus-visible {
  border-color: var(--alab-black);
  background: var(--alab-black);
  color: var(--alab-white);
}

.faq-section {
  padding-top: 70px;
}

.faq-list {
  margin-top: 36px;
  border-bottom: 1px solid var(--alab-line);
}

.faq-item {
  border-top: 1px solid var(--alab-line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  width: 28px;
  height: 28px;
  position: relative;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--alab-black);
  transform: translate(-50%, -50%);
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  display: none;
}

.faq-item__answer {
  max-width: 760px;
  padding: 0 0 28px;
  color: #4a4a44;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
}

.cta-art {
  display: flex;
  min-height: 440px;
}

.cta-art span:first-child {
  flex: 1.4;
  background: var(--alab-blue);
}

.cta-art span:last-child {
  flex: 1;
  background: var(--alab-magenta);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 56px);
  background: var(--alab-black);
  color: var(--alab-white);
}

.cta-panel h2 {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.cta-panel p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #c4c4c4;
}

.cta-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.cta-quick .button {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

.cta-quick .button--outline {
  color: var(--alab-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.lead-form {
  display: grid;
  gap: 16px;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form label span {
  color: #9a9a9a;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #303030;
  border-radius: 0;
  background: #161616;
  color: var(--alab-white);
  padding: 15px 16px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--alab-yellow);
}

.lead-form__hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form__consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.45;
}

.lead-form__consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--alab-yellow);
}

.lead-form__consent span {
  color: #bdbdbd !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.lead-form__consent a {
  color: var(--alab-white);
}

.lead-form__privacy {
  margin: 0;
  color: #8a8a8a;
  font-size: 13px;
}

.lead-form__privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  aspect-ratio: 16 / 7;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--alab-line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr 1fr;
  gap: 30px;
  padding-block: 40px;
}

.site-footer__text,
.site-footer__links {
  color: #4a4a44;
  font-size: 15px;
  font-style: normal;
}

.site-footer__text a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.footer-menu {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.site-footer__links {
  text-align: right;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--alab-black);
  color: var(--alab-white);
  padding-block: clamp(76px, 10vw, 132px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 58%),
    radial-gradient(circle at 12% 78%, rgba(242, 162, 29, 0.12), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(-18%, 0, 0);
  animation: page-hero-light-sweep 13s ease-in-out infinite;
  pointer-events: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.52) 0%, rgba(10, 10, 10, 0.32) 42%, rgba(10, 10, 10, 0.12) 72%, rgba(10, 10, 10, 0.02) 100%),
    radial-gradient(circle at 78% 16%, rgba(35, 190, 207, 0.2), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(226, 29, 125, 0.14), transparent 30%);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 1;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  filter: brightness(1.14) saturate(1.08);
  will-change: transform, filter;
  animation: page-hero-image-drift 18s ease-in-out infinite alternate;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.24)),
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(255, 255, 255, 0.045) 95px, transparent 96px);
  background-size: auto, 192px 100%;
  animation: page-hero-grid-drift 22s linear infinite;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  animation: page-hero-content-in 0.8s cubic-bezier(.2,.8,.2,1) both;
}

.page-hero--visual .page-hero__inner::before {
  content: "";
  position: absolute;
  inset: -32px auto -36px -72px;
  z-index: -1;
  width: min(860px, 78vw);
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.36) 58%, transparent);
  filter: blur(10px);
  pointer-events: none;
}

.page-hero .section-eyebrow {
  color: #cfcfcf;
}

.page-hero h1 {
  max-width: 1000px;
  color: var(--alab-white);
  font-size: clamp(42px, 6vw, 84px);
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.page-hero p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d8d8d8;
  font-size: 19px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.page-hero--has-scene .page-hero__inner {
  z-index: 2;
}

.page-hero--has-scene .page-hero__media img {
  filter: brightness(1.08) saturate(1.12);
}

.page-hero-scene {
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-cyan: #23becf;
  --scene-yellow: #f2a21d;
  --scene-magenta: #e21d7d;
  --scene-blue: #1068b3;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-scene__stage {
  position: absolute;
  top: 50%;
  right: clamp(16px, 4vw, 58px);
  width: min(620px, 46vw);
  min-height: 420px;
  transform: translate3d(var(--scene-x), calc(-50% + var(--scene-y)), 0);
  transition: transform 0.35s ease-out;
}

.hero-scene-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scene-wire,
.scene-axis,
.scene-chart-line,
.scene-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scene-wire {
  stroke-width: 4;
  stroke-dasharray: 10 24;
  stroke-dashoffset: 0;
  opacity: 0.82;
  filter: drop-shadow(0 0 10px rgba(35, 190, 207, 0.35));
  animation: hero-scene-signal 5.4s linear infinite;
}

.scene-wire--cyan { stroke: var(--scene-cyan); }
.scene-wire--yellow { stroke: var(--scene-yellow); }
.scene-wire--magenta { stroke: var(--scene-magenta); }
.scene-wire--delay-1 { animation-delay: -1.7s; }
.scene-wire--delay-2 { animation-delay: -3.2s; }

.scene-node {
  transform-box: fill-box;
  transform-origin: center;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2;
  animation: hero-scene-node 3.8s ease-in-out infinite;
}

.scene-node--cyan { fill: var(--scene-cyan); }
.scene-node--yellow { fill: var(--scene-yellow); }
.scene-node--magenta { fill: var(--scene-magenta); }
.scene-node--delay-1 { animation-delay: -1.2s; }
.scene-node--delay-2 { animation-delay: -2.4s; }

.scene-panel,
.scene-window,
.scene-doc,
.scene-map,
.scene-pipeline {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 14, 13, 0.54);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.scene-panel {
  border-radius: 22px;
  padding: 20px;
}

.scene-window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.scene-window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.scene-window-dots i:nth-child(1) { background: var(--scene-magenta); }
.scene-window-dots i:nth-child(2) { background: var(--scene-yellow); }
.scene-window-dots i:nth-child(3) { background: var(--scene-cyan); }

.scene-monitor {
  top: 68px;
  left: 104px;
  width: 292px;
}

.scene-monitor--code {
  top: 58px;
  left: 84px;
  width: 330px;
}

.page-hero--scene-build .scene-monitor--code {
  left: 156px;
}

.scene-monitor b,
.scene-search b,
.scene-window b,
.scene-flow-card b,
.scene-message b,
.scene-doc b {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scene-code-line {
  display: block;
  width: var(--w, 70%);
  height: 9px;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-scene-type 5.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.scene-code-line--cyan { background: rgba(35, 190, 207, 0.78); }
.scene-code-line--yellow { background: rgba(242, 162, 29, 0.82); }
.scene-code-line--magenta { background: rgba(226, 29, 125, 0.78); }

.scene-metric {
  right: 56px;
  top: 104px;
  width: 150px;
}

.scene-metric span,
.scene-message span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.scene-metric b {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.scene-metric i,
.scene-flow-card span,
.scene-doc i {
  display: block;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--scene-cyan), var(--scene-yellow), var(--scene-magenta));
  background-size: 220% 100%;
  animation: hero-scene-gradient 4.2s linear infinite;
}

.scene-chart {
  right: 128px;
  bottom: 50px;
  display: flex;
  align-items: end;
  gap: 10px;
  width: 180px;
  height: 130px;
}

.scene-chart span,
.scene-bars span {
  display: block;
  width: 26px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--scene-cyan), rgba(35, 190, 207, 0.18));
  transform-origin: bottom center;
  animation: hero-scene-bar 4.5s ease-in-out infinite;
}

.scene-chart span:nth-child(1) { height: 42%; animation-delay: -0.5s; }
.scene-chart span:nth-child(2) { height: 74%; animation-delay: -1s; background: linear-gradient(180deg, var(--scene-yellow), rgba(242, 162, 29, 0.16)); }
.scene-chart span:nth-child(3) { height: 58%; animation-delay: -1.5s; background: linear-gradient(180deg, var(--scene-magenta), rgba(226, 29, 125, 0.14)); }
.scene-chart span:nth-child(4) { height: 88%; animation-delay: -2s; }

.scene-axis {
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 2;
}

.scene-chart-line {
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 12;
}

.scene-search {
  top: 62px;
  left: 56px;
  width: 300px;
}

.scene-search-row {
  display: block;
  height: 38px;
  margin-top: 13px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 28%, transparent 28% 34%, rgba(255, 255, 255, 0.26) 34% 100%),
    rgba(255, 255, 255, 0.08);
  transform: translate3d(-10px, 0, 0);
  opacity: 0;
  animation: hero-scene-card-in 5.8s ease-in-out infinite;
}

.scene-search-row:nth-child(3) { animation-delay: 0.3s; }
.scene-search-row:nth-child(4) { animation-delay: 0.6s; }

.scene-bars {
  right: 72px;
  bottom: 64px;
  display: flex;
  align-items: end;
  gap: 13px;
  width: 200px;
  height: 156px;
}

.scene-bars span {
  height: var(--h);
  animation-delay: var(--d);
}

.scene-pipeline {
  left: 52px;
  top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 142px);
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
}

.scene-pipeline__lane {
  min-height: 210px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.scene-pipeline__lane b {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.scene-pipeline__lane span {
  display: block;
  height: 46px;
  margin-top: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  animation: hero-scene-pipeline 5.2s ease-in-out infinite;
}

.scene-pipeline__lane:nth-child(2) span { background: rgba(242, 162, 29, 0.34); animation-delay: -1s; }
.scene-pipeline__lane:nth-child(3) span { background: rgba(35, 190, 207, 0.34); animation-delay: -2s; }

.scene-message {
  right: 44px;
  bottom: 58px;
  width: 216px;
}

.scene-message b {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}

.scene-window-stack {
  position: absolute;
  inset: 42px 74px 42px 88px;
}

.scene-window {
  border-radius: 28px;
}

.scene-window--back {
  inset: 34px 20px 50px 112px;
  background: rgba(35, 190, 207, 0.22);
  animation: hero-scene-window-back 8s ease-in-out infinite;
}

.scene-window--mid {
  inset: 82px 116px 18px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.11);
  animation: hero-scene-window-mid 7s ease-in-out infinite;
}

.scene-window--mid span {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.scene-window--front {
  top: 18px;
  right: 52px;
  width: 270px;
  height: 210px;
  padding: 22px;
  background: rgba(14, 14, 13, 0.66);
  animation: hero-scene-float 7.4s ease-in-out infinite;
}

.scene-window--front i {
  display: block;
  height: 22px;
  margin-top: 16px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: left center;
  animation: hero-scene-type 6s ease-in-out infinite;
}

.scene-window--front i:nth-child(3) { width: 72%; animation-delay: .4s; }
.scene-window--front i:nth-child(4) { width: 48%; animation-delay: .8s; background: rgba(242, 162, 29, 0.26); }

.scene-docs {
  position: absolute;
  inset: 38px 78px 40px 96px;
}

.scene-doc {
  border-radius: 24px;
  padding: 24px;
}

.scene-doc--main {
  left: 62px;
  top: 26px;
  width: 270px;
  height: 318px;
  background: rgba(255, 255, 255, 0.88);
  animation: hero-scene-float 7.2s ease-in-out infinite;
}

.scene-doc--main b,
.scene-doc--side b {
  color: #0e0e0d;
}

.scene-doc span {
  display: block;
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(14, 14, 13, 0.18);
  transform-origin: left center;
  animation: hero-scene-type 6s ease-in-out infinite;
}

.scene-doc span:nth-child(3) { width: 74%; animation-delay: .35s; }
.scene-doc span:nth-child(4) { width: 52%; animation-delay: .7s; }

.scene-doc--side {
  right: 34px;
  bottom: 18px;
  width: 190px;
  height: 214px;
  background: rgba(242, 162, 29, 0.9);
  animation: hero-scene-float-alt 7.8s ease-in-out infinite;
}

.scene-stamp {
  position: absolute;
  right: 120px;
  top: 86px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 4px solid var(--scene-magenta);
  border-radius: 50%;
  color: var(--scene-magenta);
  font-weight: 900;
  transform: rotate(-14deg);
  animation: hero-scene-stamp 5.6s ease-in-out infinite;
}

.scene-map {
  left: 70px;
  top: 60px;
  width: 470px;
  height: 300px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 74%, rgba(226, 29, 125, 0.22), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(35, 190, 207, 0.22), transparent 28%),
    rgba(14, 14, 13, 0.6);
}

.scene-map__grid {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.07) 45px 46px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(255, 255, 255, 0.07) 45px 46px);
  animation: hero-scene-map 14s linear infinite;
}

.scene-map svg {
  position: absolute;
  inset: 20px 24px;
  width: calc(100% - 48px);
  height: calc(100% - 40px);
}

.scene-route {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 12;
}

.scene-map__pin {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--scene-magenta);
  box-shadow: 0 0 0 10px rgba(226, 29, 125, 0.18);
  animation: hero-scene-node 3.6s ease-in-out infinite;
}

.scene-map__pin--a {
  left: 64px;
  bottom: 78px;
}

.scene-map__pin--b {
  right: 62px;
  top: 68px;
  background: var(--scene-cyan);
  box-shadow: 0 0 0 10px rgba(35, 190, 207, 0.2);
  animation-delay: -1.4s;
}

.scene-flow-card {
  right: 110px;
  top: 82px;
  width: 132px;
  animation: hero-scene-float-alt 6.8s ease-in-out infinite;
}

.scene-flow-card--alt {
  right: 58px;
  bottom: 70px;
  top: auto;
  animation-delay: -2s;
}

.scene-float-a { animation: hero-scene-float 7.5s ease-in-out infinite; }
.scene-float-b { animation: hero-scene-float-alt 8.2s ease-in-out infinite; }
.scene-float-c { animation: hero-scene-float 6.8s ease-in-out infinite reverse; }

.not-found-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  background: var(--alab-black);
  color: var(--alab-white);
  padding-block: clamp(72px, 9vw, 132px);
}

.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.78) 48%, rgba(10, 10, 10, 0.42) 100%),
    radial-gradient(circle at 80% 18%, rgba(35, 190, 207, 0.26), transparent 30%),
    radial-gradient(circle at 68% 78%, rgba(255, 189, 57, 0.18), transparent 34%);
}

.not-found-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.64;
}

.not-found-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.not-found-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.not-found-hero__content {
  position: relative;
  z-index: 2;
}

.not-found-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 600;
  line-height: 0.94;
  text-transform: uppercase;
}

.not-found-hero p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #dedede;
  font-size: 20px;
}

.not-found-hero .button-row {
  margin-top: 34px;
}

.not-found-hero__scene {
  position: relative;
  min-height: clamp(360px, 40vw, 560px);
}

.not-found-code {
  position: absolute;
  inset: 8% 0 auto auto;
  display: flex;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(88px, 13vw, 190px);
  font-weight: 700;
  line-height: 0.82;
}

.not-found-code span {
  display: inline-grid;
  width: 0.7em;
  aspect-ratio: 0.72;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--alab-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  animation: not-found-digit 5.8s ease-in-out infinite;
}

.not-found-code span:nth-child(1) { color: var(--alab-cyan); }
.not-found-code span:nth-child(2) { color: var(--alab-yellow); animation-delay: -1.8s; }
.not-found-code span:nth-child(3) { color: var(--alab-magenta); animation-delay: -3.2s; }

.not-found-routes {
  position: absolute;
  inset: 0;
}

.not-found-routes i {
  position: absolute;
  left: -10%;
  width: 118%;
  height: clamp(12px, 1.6vw, 24px);
  border-radius: 2px;
  opacity: 0.9;
  transform: rotate(-16deg);
  animation: not-found-route 8s linear infinite;
}

.not-found-routes i:nth-child(1) { top: 22%; background: var(--alab-cyan); }
.not-found-routes i:nth-child(2) { top: 39%; background: var(--alab-green); animation-delay: -1.8s; }
.not-found-routes i:nth-child(3) { top: 56%; background: var(--alab-yellow); animation-delay: -3.1s; }
.not-found-routes i:nth-child(4) { top: 73%; background: var(--alab-magenta); animation-delay: -4.5s; }
.not-found-routes i:nth-child(5) { top: 87%; background: var(--alab-blue); animation-delay: -5.6s; }

.not-found-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(100%, 360px);
  gap: 10px;
  padding: 22px;
  background: rgba(18, 18, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.not-found-panel b {
  font-family: var(--font-display);
  font-size: 20px;
}

.not-found-panel span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8d8d8;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
  gap: clamp(34px, 6vw, 70px);
}

.entry-content {
  max-width: 860px;
}

.entry-content--article {
  max-width: 980px;
}

.entry-content--wide {
  max-width: none;
}

.entry-content--wide > p,
.entry-content--wide > h2,
.entry-content--wide > h3,
.entry-content--wide > ul,
.entry-content--wide > ol {
  max-width: 900px;
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  line-height: 1.12;
}

.entry-content h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.entry-content h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.entry-content p,
.entry-content li {
  color: #3e3e38;
}

.entry-content--article > p:first-of-type,
.article-lead {
  margin: 0 0 30px;
  padding: clamp(22px, 4vw, 34px);
  border-left: 8px solid var(--alab-cyan);
  background: var(--alab-white);
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.16;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

.project-filter a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.project-filter a:hover,
.project-filter a:focus-visible,
.project-filter a.is-active {
  border-color: var(--alab-black);
  background: var(--alab-black);
  color: var(--alab-white);
}

.alab-content-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 44px;
}

.alab-content-cards article {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.alab-content-cards span,
.alab-card-kicker,
.alab-content-cta span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.alab-content-cards h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.alab-content-cards p {
  margin: 0;
}

.alab-content-table {
  width: 100%;
  margin: 28px 0 44px;
  overflow-x: auto;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.alab-content-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.alab-content-table th,
.alab-content-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--alab-line);
  text-align: left;
  vertical-align: top;
}

.alab-content-table th {
  background: var(--alab-black);
  color: var(--alab-white);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}

.alab-content-table td:nth-child(2) {
  white-space: nowrap;
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-weight: 700;
}

.alab-content-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 42px 0 0;
  padding: clamp(26px, 4vw, 42px);
  background: var(--alab-black);
  color: var(--alab-white);
}

.alab-content-cta h2 {
  margin: 0 0 12px;
  color: inherit;
}

.alab-content-cta p {
  max-width: 680px;
  margin: 0;
  color: #d8d8d8;
}

.price-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 44px;
}

.price-package {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.price-package span {
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-package h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.price-package p {
  margin: 0 0 20px;
}

.price-package b {
  margin-top: auto;
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: 22px;
}

.price-package a {
  margin-top: 18px;
}

.alab-content-note {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  margin: 34px 0 44px;
  padding: clamp(24px, 4vw, 40px);
  border-left: 8px solid var(--alab-magenta);
  background: var(--alab-white);
}

.alab-content-note span,
.alab-note-kicker {
  color: var(--alab-magenta);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.alab-content-note p {
  margin: 0;
  color: var(--alab-black);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.14;
}

.alab-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 44px;
}

.alab-compare-grid article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.alab-compare-grid article:first-child {
  border-top: 5px solid var(--alab-green);
}

.alab-compare-grid article:last-child {
  border-top: 5px solid var(--alab-yellow);
}

.alab-compare-grid h3 {
  margin-top: 0;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.article-meta-line span,
.article-meta-line time {
  padding: 7px 11px;
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
  color: var(--alab-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.entry-shot--article {
  margin-bottom: 26px;
  background: var(--alab-black);
}

.entry-shot--article img {
  display: block;
  width: 100%;
  height: auto;
}

.article-infographic {
  margin: 34px 0;
  padding: clamp(20px, 4vw, 32px);
  background: var(--alab-black);
  color: var(--alab-white);
}

.article-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.article-infographic figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.article-keyline,
.article-icon-grid,
.article-example,
.article-check-card {
  margin: 28px 0;
}

.article-keyline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--alab-line);
  background: var(--alab-white);
}

.article-keyline div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--alab-line);
}

.article-keyline div:last-child {
  border-right: 0;
}

.article-keyline span,
.article-icon-grid span,
.article-example span,
.article-check-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--alab-blue);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-keyline b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.05;
}

.article-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-icon-grid article,
.article-example,
.article-check-card {
  padding: 22px;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.article-mini-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 16px;
  background: var(--alab-black);
  color: var(--alab-white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.article-icon-grid h3,
.article-example h3,
.article-check-card h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.5vw, 27px);
}

.article-example {
  border-left: 8px solid var(--alab-yellow);
}

.article-check-card {
  border-left: 8px solid var(--alab-magenta);
}

.article-check-card ol,
.article-check-card ul {
  margin-bottom: 0;
}

.side-panel {
  align-self: start;
  padding: 28px;
  background: var(--alab-white);
  border: 1px solid var(--alab-line);
}

.side-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 26px;
}

.side-panel h3 {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.15;
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #3e3e38;
  font-size: 15px;
}

.side-panel__price {
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid var(--alab-line);
  border-bottom: 1px solid var(--alab-line);
}

.side-panel__price span,
.side-panel__price b {
  display: block;
}

.side-panel__price span {
  color: var(--alab-muted-2);
  font-size: 13px;
  text-transform: uppercase;
}

.side-panel__price b {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.side-panel .button {
  margin-top: 24px;
}

.entry-shot {
  margin: 0 0 32px;
  overflow: hidden;
  border: 1px solid var(--alab-line);
}

.reveal-ready .service-card,
.reveal-ready .project-card,
.reveal-ready .review-card,
.reveal-ready .blog-card,
.reveal-ready .scenario,
.reveal-ready .process-card,
.reveal-ready .service-feature,
.reveal-ready .service-visual,
.reveal-ready .service-route__grid,
.reveal-ready .cms-row,
.reveal-ready .info-card,
.reveal-ready .side-panel,
.reveal-ready .entry-shot,
.reveal-ready .about-dashboard,
.reveal-ready .about-system-node,
.reveal-ready .about-role-card,
.reveal-ready .trust-preview,
.reveal-ready .tech-tile,
.reveal-ready .site-tool-category-card,
.reveal-ready .site-tool-card,
.reveal-ready .task-route,
.reveal-ready .industry-route {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 0.32s ease;
  transition-delay: calc(var(--reveal-index, 0) * 24ms);
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .service-card {
  transition-delay: 0s;
}

@media (max-width: 820px) {
  .reveal-ready .service-card,
  .reveal-ready .project-card,
  .reveal-ready .review-card,
  .reveal-ready .blog-card,
  .reveal-ready .scenario,
  .reveal-ready .process-card,
  .reveal-ready .service-feature,
  .reveal-ready .service-visual,
  .reveal-ready .service-route__grid,
  .reveal-ready .cms-row,
  .reveal-ready .info-card,
  .reveal-ready .side-panel,
  .reveal-ready .entry-shot,
  .reveal-ready .about-dashboard,
  .reveal-ready .about-system-node,
  .reveal-ready .about-role-card,
  .reveal-ready .trust-preview,
  .reveal-ready .tech-tile,
  .reveal-ready .site-tool-category-card,
  .reveal-ready .site-tool-card,
  .reveal-ready .task-route,
  .reveal-ready .industry-route {
    transform: none;
    transition-duration: 0.14s;
    transition-delay: 0s;
  }
}

.browser-shot__image img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.browser-shot:hover .browser-shot__image img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(-18px) rotate(-18deg); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(22px) rotate(-18deg); }
}

@keyframes hero-strip-in {
  from {
    opacity: 0;
    transform: translate3d(-34%, 28px, 0) rotate(-18deg);
  }
  to {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }
}

@keyframes hero-ribbon-a {
  0% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) - 28px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) - 18px), 0) rotate(var(--strip-angle));
  }
  45% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) + 24px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) + 10px), 0) rotate(calc(var(--strip-angle) - 1.5deg));
  }
  100% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) + 58px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) - 24px), 0) rotate(calc(var(--strip-angle) + 1deg));
  }
}

@keyframes hero-ribbon-b {
  0% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) + 42px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) + 22px), 0) rotate(var(--strip-angle));
  }
  55% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) - 18px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) - 16px), 0) rotate(calc(var(--strip-angle) + 1.8deg));
  }
  100% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) - 72px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) + 20px), 0) rotate(calc(var(--strip-angle) - 0.8deg));
  }
}

@keyframes hero-ribbon-c {
  0% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) - 18px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) + 34px), 0) rotate(calc(var(--strip-angle) + 0.8deg));
  }
  50% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) + 48px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) - 20px), 0) rotate(calc(var(--strip-angle) - 2deg));
  }
  100% {
    transform: translate3d(calc(var(--strip-shift) + var(--strip-scroll-x) + var(--strip-mouse-x) + 12px), calc(var(--strip-scroll) + var(--strip-scroll-y) + var(--strip-mouse-y) - 42px), 0) rotate(calc(var(--strip-angle) + 1.2deg));
  }
}

@keyframes hero-line-field {
  from { transform: translate3d(-70px, 0, 0); }
  to { transform: translate3d(70px, 0, 0); }
}

@keyframes hero-scan {
  0%, 18% {
    transform: translate3d(-130%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  34% {
    opacity: 0.62;
  }
  58% {
    opacity: 0.2;
  }
  82%, 100% {
    transform: translate3d(290%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes page-hero-image-drift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
    filter: brightness(1.1) saturate(1.06);
  }
  45% {
    transform: scale(1.07) translate3d(-18px, -8px, 0);
    filter: brightness(1.18) saturate(1.12);
  }
  100% {
    transform: scale(1.055) translate3d(20px, 10px, 0);
    filter: brightness(1.14) saturate(1.1);
  }
}

@keyframes page-hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 0, 192px 0; }
}

@keyframes page-hero-light-sweep {
  0%, 18% {
    transform: translate3d(-24%, 0, 0);
    opacity: 0.2;
  }
  48% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(18%, 0, 0);
    opacity: 0.24;
  }
}

@keyframes page-hero-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-scene-signal {
  to {
    stroke-dashoffset: -170;
  }
}

@keyframes hero-scene-node {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  48% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes hero-scene-type {
  0%, 12% {
    opacity: 0;
    transform: scaleX(0);
  }
  30%, 78% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.35;
    transform: scaleX(0.68);
  }
}

@keyframes hero-scene-gradient {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes hero-scene-bar {
  0%, 100% {
    transform: scaleY(0.54);
    opacity: 0.7;
  }
  46% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes hero-scene-card-in {
  0%, 12% {
    opacity: 0;
    transform: translate3d(-12px, 8px, 0);
  }
  28%, 80% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.45;
    transform: translate3d(8px, 0, 0);
  }
}

@keyframes hero-scene-pipeline {
  0%, 100% {
    opacity: 0.62;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes hero-scene-window-back {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(-18px, 10px, 0) rotate(-1deg);
  }
}

@keyframes hero-scene-window-mid {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(20px, -8px, 0) rotate(1deg);
  }
}

@keyframes hero-scene-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(10px, -18px, 0) rotate(1deg);
  }
}

@keyframes hero-scene-float-alt {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-12px, 16px, 0) rotate(-1deg);
  }
}

@keyframes hero-scene-stamp {
  0%, 72%, 100% {
    opacity: 0.78;
    transform: scale(0.94) rotate(-14deg);
  }
  36% {
    opacity: 1;
    transform: scale(1.06) rotate(-10deg);
  }
}

@keyframes hero-scene-map {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 46px 0, 0 46px;
  }
}

@keyframes not-found-digit {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  45% {
    transform: translate3d(0, -12px, 0) rotate(1deg);
  }
}

@keyframes not-found-route {
  0% {
    translate: -16% 0;
  }
  100% {
    translate: 16% 0;
  }
}

@keyframes route-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow-bar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Home focus pass: preserve the ALAB language while reducing competing detail. */
.home .task-routes-section,
.home .projects-section,
.home .process-section {
  background: var(--alab-bg-2);
}

.home .services-section,
.home .reviews-section,
.home .blog-section {
  background: var(--alab-bg);
}

.home .service-card--home-compact {
  min-height: 390px;
  padding: 28px 26px 24px;
}

.home .service-card--home-compact.service-card--blue {
  background: color-mix(in srgb, var(--alab-blue) 82%, #000 18%);
}

.home .service-card--home-compact.service-card--green {
  background: color-mix(in srgb, var(--alab-green) 78%, #000 22%);
}

.home .service-card--home-compact.service-card--magenta {
  background: color-mix(in srgb, var(--alab-magenta) 84%, #000 16%);
}

.home .service-card--home-compact .service-card__title {
  margin-top: 24px;
}

.home .service-card--home-compact .service-card__lead {
  -webkit-line-clamp: 3;
}

.service-card__audience {
  display: grid;
  gap: 5px;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  font-size: 14px;
  line-height: 1.35;
}

.service-card__audience span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
}

.home .service-card--home-compact .service-card__bottom {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.92fr);
  align-items: end;
  gap: 16px;
}

.home .service-card--home-compact .service-card__price {
  padding: 0;
  border: 0;
  font-size: 20px;
}

.home .service-card--home-compact .service-card__link {
  align-self: end;
}

.home .projects-section .project-card__body {
  padding-top: 20px;
}

.home .projects-section .project-card__result {
  min-height: 72px;
}

.home .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .review-card {
  min-height: 260px;
}

.home .task-route b,
.home .section-more .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-header__cta {
    display: none;
  }

  .page-hero-scene__stage {
    right: -120px;
    width: 620px;
    opacity: 0.72;
  }

  .hero-kinetic__grid,
  .service-visual,
  .service-route,
  .cms-section__grid,
  .content-grid,
  .about-intro,
  .not-found-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-dashboard {
    position: relative;
    top: auto;
  }

  .not-found-hero__scene {
    min-height: 340px;
  }

  .service-grid,
  .project-grid,
  .review-grid,
  .blog-grid,
  .info-grid,
  .alab-content-cards,
  .price-package-grid,
  .project-proof-grid,
  .project-case-flow,
  .about-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-grid--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-cloud,
  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-tool-category-grid,
  .site-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-system-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-preview {
    grid-template-columns: 1fr;
  }

  .trust-preview__visual {
    min-height: 230px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-route__grid {
    grid-template-columns: 1fr;
  }

  .service-builder__layout {
    grid-template-columns: 1fr;
  }

  .service-builder__summary {
    position: static;
  }

  .service-compare-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-compare-row__facts,
  .service-compare-row__link {
    grid-column: 2;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__links,
  .footer-menu {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .page-hero-scene {
    opacity: 0.48;
  }

  .page-hero-scene__stage {
    right: -240px;
    width: 560px;
    min-height: 360px;
  }

  .scene-panel,
  .scene-window,
  .scene-doc,
  .scene-map,
  .scene-pipeline {
    backdrop-filter: blur(8px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-header__burger {
    display: block;
    margin-left: auto;
  }

  .site-header__nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 68px);
    padding: 22px 28px;
    background: var(--alab-black);
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-menu {
    display: grid;
    gap: 0;
  }

  .site-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
  }

  .site-menu .sub-menu a {
    padding: 10px 0;
    color: #d8d8d8;
    font-size: 16px;
  }

  .hero-kinetic__grid {
    padding-top: 52px;
  }

  .home .hero-ops-card {
    display: none;
  }

  .home .hero-kinetic__grid {
    padding-block: 48px 36px;
  }

  .hero-kinetic h1 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .hero-ops-card__metrics,
  .lead-form__row,
  .scenario-grid,
  .info-grid,
  .trust-link-grid,
  .trust-summary-grid,
  .partner-grid,
  .certificate-grid,
  .about-role-grid,
  .trust-preview-grid,
  .cta-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .about-system-node {
    min-height: 220px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .partner-group__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-grid,
  .project-grid,
  .project-grid--featured .project-card:first-child,
  .service-feature-grid,
  .service-builder__options,
  .review-grid,
  .blog-grid,
  .alab-content-cards,
  .price-package-grid,
  .project-proof-grid,
  .project-case-flow,
  .industry-route-grid,
  .alab-compare-grid,
  .partner-grid--home,
  .site-tool-category-grid,
  .site-tool-grid,
  .alab-content-cta {
    grid-template-columns: 1fr;
  }

  .tech-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-tile--compact {
    min-height: 118px;
    padding: 14px 8px;
  }

  .ecosystem-logo {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .ecosystem-icon {
    width: 30px;
    height: 30px;
  }

  .ecosystem-logo--mini {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .ecosystem-logo--mini .ecosystem-icon {
    width: 22px;
    height: 22px;
  }

  .site-tool-category-card {
    min-height: 0;
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alab-content-note {
    grid-template-columns: 1fr;
  }

  .alab-content-cta .button {
    width: 100%;
    justify-content: center;
  }

  .blog-card {
    min-height: 0;
  }

  .article-keyline,
  .article-icon-grid {
    grid-template-columns: 1fr;
  }

  .article-keyline div {
    border-right: 0;
    border-bottom: 1px solid var(--alab-line);
  }

  .article-keyline div:last-child {
    border-bottom: 0;
  }

  .project-grid--featured .project-card:first-child {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-visual__art {
    min-height: 320px;
  }

  .page-hero {
    padding-block: 68px 82px;
  }

  .breadcrumbs--hero a,
  .breadcrumbs--hero span[aria-current="page"] {
    min-height: 28px;
    padding: 5px 8px;
  }

  .page-hero__media {
    opacity: 0.72;
  }

  .not-found-hero__scene {
    min-height: 280px;
  }

  .not-found-code {
    inset-inline: 0 auto;
    font-size: clamp(74px, 28vw, 118px);
  }

  .not-found-panel {
    right: auto;
    left: 0;
    width: min(100%, 320px);
  }

  .service-metrics {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .home .section {
    padding-block: 58px;
  }

  .home .task-route {
    min-height: 184px;
  }

  .home .service-card--home-compact {
    min-height: 0;
  }

  .home .service-card--home-compact .service-card__bottom {
    grid-template-columns: 1fr;
  }

  .home .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card__facts,
  .service-compare-row__facts {
    grid-template-columns: 1fr;
  }

  .service-compare-row {
    grid-template-columns: 1fr;
  }

  .service-compare-row__facts,
  .service-compare-row__link {
    grid-column: auto;
  }

  .cta-art {
    min-height: 180px;
  }

  .map-embed {
    aspect-ratio: 1 / 1;
  }
}

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

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

  .reveal-ready .service-card,
  .reveal-ready .project-card,
  .reveal-ready .review-card,
  .reveal-ready .blog-card,
  .reveal-ready .scenario,
  .reveal-ready .process-card,
  .reveal-ready .service-feature,
  .reveal-ready .service-visual,
  .reveal-ready .service-route__grid,
  .reveal-ready .cms-row,
  .reveal-ready .info-card,
  .reveal-ready .side-panel,
  .reveal-ready .entry-shot,
  .reveal-ready .about-dashboard,
  .reveal-ready .about-system-node,
  .reveal-ready .about-role-card,
  .reveal-ready .trust-preview,
  .reveal-ready .tech-tile,
  .reveal-ready .site-tool-category-card,
  .reveal-ready .site-tool-card,
  .reveal-ready .task-route,
  .reveal-ready .industry-route {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .page-hero h1 {
    width: auto;
    max-width: min(100%, 12.5ch);
    font-size: clamp(31px, 8.6vw, 36px);
    word-break: normal;
    overflow-wrap: break-word;
  }

  .page-hero p:not(.section-eyebrow) {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .home .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .hero-proof-grid div:nth-child(n + 3) {
    display: none;
  }

  .hero-ops-card {
    padding: 20px;
  }

  .lead-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 300px;
    min-width: 0;
    padding: 24px 20px;
  }

  .service-card__icon {
    width: 62px;
    height: 46px;
    flex: 0 0 62px;
  }

  .service-card__title {
    font-size: 22px;
  }

  .process-grid {
    gap: 10px;
  }

  .process-card {
    min-height: 128px;
  }
}
