* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
button,
input,
select,
textarea,
[role="button"],
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #030711;
  --text: #ffffff;
  --muted: #747d91;
  --blue: #78a5ff;
  --section-background:
    radial-gradient(ellipse at 50% 56%, rgba(48, 106, 221, 0.063), transparent 440px),
    radial-gradient(ellipse at 16% 60%, rgba(110, 82, 180, 0.047), transparent 360px),
    radial-gradient(ellipse at 84% 60%, rgba(49, 102, 89, 0.036), transparent 390px),
    #02060f;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-apple-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-tech-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

@property --float-y {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

html {
  background: #02060f;
  scroll-behavior: smooth;
  scrollbar-color: rgba(120, 165, 255, 0.72) rgba(3, 7, 17, 0.78);
  scrollbar-width: thin;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

html.smooth-scroll-ready {
  overscroll-behavior-y: none;
  scroll-behavior: auto;
}

html.smooth-scroll-native {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(10, 15, 29, 0.94), rgba(3, 7, 17, 0.98));
  border-left: 1px solid rgba(230, 238, 255, 0.055);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid rgba(3, 7, 17, 0.98);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(145, 185, 255, 0.95), rgba(73, 125, 213, 0.88) 52%, rgba(40, 89, 172, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 0 16px rgba(73, 125, 213, 0.22);
}

html::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(177, 207, 255, 0.98), rgba(91, 143, 236, 0.95) 52%, rgba(48, 106, 221, 0.96));
}

html::-webkit-scrollbar-corner {
  background: #030711;
}

@media (max-width: 999px) {
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

body {
  min-width: 260px;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--text);
  background: #02060f;
  font-family: "Satoshi", "Inter", "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

main {
  background: #02060f;
}

.site-frame {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: #02060f;
}

@media (max-width: 999px) and (min-width: 500px) {
  body {
    background: #02060f;
  }

  .site-frame {
    width: 100%;
  }

  .header,
  .site-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .header {
    padding-right: calc((100vw - 500px) / 2 + 18px);
    padding-left: calc((100vw - 500px) / 2 + 21px);
  }

  .hero__content {
    width: 500px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-mobile-art--code-left {
    left: calc(50% - 250px + var(--mobile-code-left-x));
  }

  .hero-mobile-art--code-right {
    right: calc((100vw - 500px) / 2 + var(--mobile-code-right-right, 0px));
    left: auto;
  }

  .hero-mobile-art--design {
    left: calc(50% - 250px + var(--mobile-design-x));
  }

  .hero__features {
    width: 444px;
  }
}

@media (max-width: 499px) {
  .site-frame {
    width: 100%;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

svg,
img {
  display: block;
}

.cursor {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  opacity: 0;
  pointer-events: none;
  contain: layout style paint;
  transition: opacity 180ms ease;
}

.cursor--visible {
  opacity: 1;
}

.cursor__glow,
.cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform, opacity;
}

.cursor__glow {
  width: 98px;
  height: 98px;
  background: radial-gradient(circle, rgba(78, 128, 222, 0.36) 0, rgba(78, 128, 222, 0.14) 36%, rgba(78, 128, 222, 0) 72%);
  opacity: 0.30;
  transform: translate3d(-120px, -120px, 0) translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.cursor__dot {
  width: 8.4px;
  height: 8.4px;
  background: #d9e6ff;
  box-shadow:
    0 0 10px rgba(146, 186, 255, 0.9),
    0 0 22px rgba(73, 125, 213, 0.42);
  transform: translate3d(-120px, -120px, 0) translate(-50%, -50%);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.cursor--hover .cursor__glow {
  opacity: 0.46;
}

.cursor--hover .cursor__dot {
  background: #ffffff;
  box-shadow:
    0 0 12px rgba(167, 199, 255, 0.95),
    0 0 28px rgba(73, 125, 213, 0.50);
}

.cursor--pressed .cursor__glow {
  opacity: 0.24;
}

@media (pointer: fine) {

  body.cursor-enabled,
  body.cursor-enabled * {
    cursor: none !important;
  }
}

@media (pointer: coarse),
(prefers-reduced-motion: reduce) {
  .cursor {
    display: none;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  width: 100%;
  max-width: none;
  height: 89px;
  margin: 0 auto;
  padding: 0 200px;
  align-items: center;
  overflow: visible;
  border: 1px solid rgba(171, 198, 255, 0.18);
  border-bottom-color: transparent;
  background:
    linear-gradient(180deg, rgba(17, 23, 39, 0.38) 0%, rgba(5, 9, 19, 0.22) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(120, 165, 255, 0.06),
    0 18px 52px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  isolation: isolate;
}

.header::before,
.header::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.header::before {
  background:
    radial-gradient(ellipse at 18% -28%, rgba(145, 185, 255, 0.20), transparent 34%),
    radial-gradient(ellipse at 78% 118%, rgba(40, 89, 172, 0.12), transparent 38%);
  opacity: 0.72;
}

.header::after {
  inset: auto 0 0;
  z-index: 1;
  height: 1px;
  background: radial-gradient(ellipse at 50% 50%,
      rgba(126, 170, 255, 0.14) 0%,
      rgba(126, 170, 255, 0.07) 36%,
      rgba(126, 170, 255, 0.025) 58%,
      rgba(126, 170, 255, 0) 82%);
}

.header__logo {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
}

.header__logo img {
  width: 86px;
  height: auto;
}

.header__logo-text {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.header__nav {
  position: relative;
  display: flex;
  width: 396.071px;
  padding: 12px 20.401px;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 70.559px;
  border: 0.941px solid rgba(166, 195, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.028));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.095),
    inset 0 -1px 0 rgba(120, 165, 255, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  isolation: isolate;
}

.header__nav::before,
.header__nav::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.header__nav::before {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(145, 185, 255, 0.10), transparent 44%),
    radial-gradient(ellipse at 86% 120%, rgba(40, 89, 172, 0.08), transparent 42%);
  opacity: 0.58;
}

.header__nav::after {
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 48%);
}

.header__nav-item {
  position: relative;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 14.112px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.282px;
  transition:
    color 420ms var(--ease-premium),
    background 420ms var(--ease-premium),
    text-shadow 420ms var(--ease-premium),
    transform 420ms var(--ease-premium);
}

.header__nav-item:hover {
  color: #a8c6ff;
  background: rgba(126, 170, 255, 0.08);
  text-shadow: 0 0 18px rgba(126, 170, 255, 0.42);
  transform: translateY(-1px);
}

.header__button {
  justify-self: end;
  display: inline-flex;
  padding: 17px 26.571px;
  align-items: center;
  justify-content: center;
  border-radius: 44.932px;
  background: radial-gradient(56.12% 56.13% at 50.22% 48.94%, #2859ac 0%, #497dd5 100%);
  box-shadow:
    0 3.708px 9.269px rgba(0, 0, 0, 0.08),
    0 11.123px 22.247px rgba(106, 143, 222, 0.20);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium),
    filter 520ms var(--ease-premium);
  font-family: Inter;
}

.header__button:hover,
.hero__button:hover {
  filter: saturate(1.12) brightness(1.08);
  transform: translateY(-3px);
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.12),
    0 18px 34px rgba(106, 143, 222, 0.34),
    0 0 34px rgba(73, 125, 213, 0.26);
}

.header__button:active,
.hero__button:active {
  transform: translateY(-1px) scale(0.985);
}

.header__menu {
  display: none;
}

.mobile-sidebar {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  height: 848px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--section-background);
}

.hero::before,
.hero::after {
  position: absolute;
  top: -130px;
  bottom: -150px;
  z-index: 0;
  width: 690px;
  pointer-events: none;
  content: "";
  mix-blend-mode: screen;
}

.hero::before {
  left: -190px;
  background:
    radial-gradient(ellipse at 22% 23%, rgba(73, 125, 213, 0.148) 0 88px, rgba(40, 89, 172, 0.082) 190px, transparent 380px),
    radial-gradient(ellipse at 42% 58%, rgba(83, 134, 228, 0.102) 0 80px, rgba(37, 91, 190, 0.052) 210px, transparent 390px),
    linear-gradient(112deg, transparent 0 24%, rgba(73, 125, 213, 0.07) 35%, transparent 53%),
    linear-gradient(66deg, transparent 0 42%, rgba(65, 117, 207, 0.05) 49%, transparent 62%);
  filter: blur(18px);
  animation: hero-side-light 7.5s ease-in-out infinite alternate;
}

.hero::after {
  right: -210px;
  background:
    radial-gradient(ellipse at 76% 19%, rgba(73, 125, 213, 0.172) 0 96px, rgba(40, 89, 172, 0.086) 210px, transparent 410px),
    radial-gradient(ellipse at 54% 62%, rgba(83, 134, 228, 0.096) 0 78px, rgba(37, 91, 190, 0.05) 220px, transparent 410px),
    linear-gradient(248deg, transparent 0 26%, rgba(73, 125, 213, 0.076) 38%, transparent 56%),
    linear-gradient(294deg, transparent 0 42%, rgba(65, 117, 207, 0.05) 50%, transparent 64%);
  filter: blur(18px);
  animation-delay: -3.2s;
}

@keyframes hero-side-light {
  from {
    opacity: 0.54;
  }

  to {
    opacity: 1.08;
  }
}

.hero__light {
  --hero-light-opacity: 0.8;
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 1;
  width: 950px;
  height: auto;
  opacity: var(--hero-light-opacity);
  object-fit: contain;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.hero__fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-mobile-art {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  width: 1016px;
  margin: 84px auto 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero__badge {
  border-radius: 30px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  background: linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow: 0 1px 8px 0 rgba(106, 152, 222, 0.10), 0 4px 12px -2px rgba(0, 0, 0, 0.06);
  display: flex;
  height: 49px;
  padding: 13px 25px;
  align-items: center;
  gap: 10px;
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.51px;

}




.hero__title {
  color: #FFF;
  text-align: center;
  text-shadow: 0 4px 6.8px rgba(0, 0, 0, 0.13);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 81px;
  /* 101.25% */
  letter-spacing: -0.8px;
  margin-top: 22px;

}

.hero__mobile-break {
  display: none;
}

.hero__desktop-break {
  display: block;
}

.hero__title .hero__accent {
  color: #5f94f2;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: -0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 3%;
  text-underline-offset: -1px;
  text-underline-position: from-font;
}

.hero__title-tail,
.hero__product-word {
  color: inherit;
  font: inherit;
}

.hero__description {
  width: 750px;
  max-width: 601px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.47);

  font-size: 19.5px;
  font-weight: 400;
  line-height: 27px;
  /* 142.105% */
  letter-spacing: 0.38px;
  font-family: Inter;
}

.hero__button {
  display: inline-flex;
  width: 288px;
  height: 66px;
  margin-top: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 11px 0 35px;
  border: 1.8px solid rgba(180, 205, 255, 0.25);
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.13), transparent 36%),
    radial-gradient(57% 57% at 50% 47%, rgba(40, 89, 172, 0.95) 0%, rgba(79, 124, 199, 0.95) 100%);
  box-shadow:
    0 22px 69px rgba(63, 126, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: Inter;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  transition:
    width 620ms var(--ease-premium),
    transform 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium),
    filter 520ms var(--ease-premium);
}

.hero__button:hover {
  width: 317px;
}

.hero__button-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.09);
  transition:
    transform 620ms var(--ease-premium),
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.hero__button-icon svg {
  width: 32px;
  height: 32px;
}

.hero__button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero__button:hover .hero__button-icon {
  background: rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 7px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(168, 198, 255, 0.22);
  transform: translateX(8px);
}

.hero__visual,
.hero-card {
  position: absolute;
  user-select: none;
  will-change: transform, opacity;
}

.hero__visual {
  --float-y: 0px;
  z-index: 3;
  display: block;
  pointer-events: auto;
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(0, var(--float-y), 0);
  transition:
    transform 900ms var(--ease-premium),
    filter 900ms var(--ease-premium);
}

.hero__visual--left {
  top: 100px;
  left: 260px;
}

.hero__visual--right {
  top: 45px;
  right: 340px;
}

.hero__visual::after {
  position: absolute;
  inset: 10% -6% -8%;
  z-index: 0;
  border-radius: 34%;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(112, 161, 255, 0.15), transparent 58%),
    radial-gradient(ellipse at 50% 72%, rgba(40, 89, 172, 0.11), transparent 64%);
  filter: blur(22px);
  opacity: 0.34;
  transition: opacity 900ms var(--ease-premium), transform 900ms var(--ease-premium);
  content: "";
  pointer-events: none;
}

.hero__visual:hover {
  filter: saturate(1.16) contrast(1.08) brightness(1.05);
}

.hero__visual:hover::after {
  opacity: 0.50;
}

.hero__visual:hover .hero__visual-shadow {
  opacity: 0.48;
}

.hero__visual:hover .hero__art {
  filter:
    drop-shadow(0 34px 32px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 30px rgba(103, 153, 245, 0.36));
}

.hero__visual-shadow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  z-index: 0;
  width: 72%;
  height: 26%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(44, 92, 178, 0.17) 0, rgba(20, 37, 73, 0.10) 45%, rgba(0, 0, 0, 0) 72%);
  filter: blur(18px);
  opacity: 0.36;
  transform: translateX(-50%);
  transition: opacity 900ms var(--ease-premium), transform 900ms var(--ease-premium);
  pointer-events: none;
}

.hero__art {
  position: relative;
  z-index: 2;
  height: auto;
  object-fit: contain;
  backface-visibility: hidden;
  filter:
    drop-shadow(0 28px 28px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 24px rgba(73, 125, 213, 0.30));
  transition: filter 900ms var(--ease-premium), transform 900ms var(--ease-premium);
}

.hero-card {
  --float-y: 0px;
  --card-rz: 0deg;
  --card-opacity: 1;
  z-index: 50;
  opacity: var(--card-opacity);
  display: flex;
  width: 277.232px;
  padding: 19.193px 21.326px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10.661px;
  border-radius: 27.723px;
  border: 1.066px solid rgba(0, 0, 0, 0.20);
  background: linear-gradient(181deg, rgba(92, 134, 255, 0.01) -48.37%, rgba(92, 134, 255, 0.04) -26.56%, rgba(51, 51, 51, 0.20) 39.63%), rgba(17, 22, 36, 0.86);
  box-shadow:
    0 30px 58px -20px rgba(0, 0, 0, 0.78),
    0 10px 32px -18px rgba(73, 125, 213, 0.42),
    0 1px 0 0 rgba(255, 255, 255, 0.18) inset;
  backdrop-filter: blur(5.800000190734863px);
  pointer-events: auto;
  transform:
    translate3d(0, var(--float-y), 0) rotateZ(var(--card-rz));
  transition:
    transform 820ms var(--ease-premium),
    border-color 820ms var(--ease-premium),
    box-shadow 820ms var(--ease-premium),
    background 820ms var(--ease-premium);
}

.hero-card--left {
  top: 303px;
  left: 192px;
  --card-rz: -10deg;
}

.hero-card--right {
  top: 152px;
  right: 176px;
  --card-rz: 11deg;
}

.hero-card--back {
  top: 500px;
  right: 150px;
  z-index: 1;
  width: 234px;
  min-height: 129px;
  --card-opacity: 0.45;
  --card-rz: -10deg;
}

.hero-card--bottom {
  top: 451px;
  right: 309px;
  width: 276px;
  min-height: 157px;
  --card-rz: -10deg;
}

.hero-card:hover {
  border-color: rgba(145, 185, 255, 0.28);
  background:
    linear-gradient(181deg, rgba(92, 134, 255, 0.04) -48.37%, rgba(92, 134, 255, 0.09) -26.56%, rgba(51, 51, 51, 0.24) 39.63%),
    rgba(17, 22, 36, 0.92);
  box-shadow:
    0 42px 72px -24px rgba(0, 0, 0, 0.82),
    0 18px 42px -18px rgba(73, 125, 213, 0.58),
    0 1px 0 0 rgba(255, 255, 255, 0.24) inset;
}

.hero-card__head {
  display: flex;
  align-items: center;
  gap: 10.658px;
  align-self: stretch;
}



.hero-card--left .hero-card__icon,
.hero-card--bottom .hero-card__icon {
  transform: rotate(9.926deg);
}

.hero-card--right .hero-card__icon,
.hero-card--back .hero-card__icon {
  transform: rotate(-10.257deg);
}

.hero-card h2 {
  color: #FFF;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.427px;
}

.hero-card p {
  align-self: stretch;
  color: var(--subtitle, rgba(229, 229, 229, 0.9));
  font-family: "Inter", "Satoshi", sans-serif;
  font-size: 13.862px;
  font-style: normal;
  font-weight: 300;
  line-height: 19.683px;
  /* 142% */
}

.hero__features {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 6;
  display: inline-flex;

  align-items: center;
  gap: 27.608px;
  padding: 36.176px 37.128px 37.128px;
  border: 0.952px solid rgba(230, 238, 255, 0.10);
  border-radius: 31.416px;
  background: rgba(15, 17, 30, 0.59);
  box-shadow: 0 3.808px 14.28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16.45px);
  transform: translateX(-50%);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.568px;
}





.hero-feature h2 {
  color: var(--title, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 21.896px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hero-feature p {
  width: 314px;
  max-width: 314px;
  color: var(--subtitle, rgba(229, 229, 229, 0.58));
  text-align: center;
  font-family: Inter;
  font-size: 14.28px;
  font-style: normal;
  font-weight: 300;
  line-height: 20.706px;
  /* 145% */
}

.tech-section {
  --tech-content-y: -70px;
  --active-node-rgb: 110, 82, 180;
  --active-node-light: #c9c1ff;
  --active-node-dark: #6e52b4;
  position: relative;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 740px;
  padding: 252px 200px 158px;
  overflow: hidden;
  border-top: 1px solid rgba(230, 238, 255, 0.08);
  background: var(--section-background);
  isolation: isolate;
}

.tech-section[data-active-tech="backend"] {
  --active-node-rgb: 101, 76, 63;
  --active-node-light: #d4aa8e;
  --active-node-dark: #654c3f;
}

.tech-section[data-active-tech="seo"] {
  --active-node-rgb: 104, 50, 100;
  --active-node-light: #d899d4;
  --active-node-dark: #683264;
}

.tech-section[data-active-tech="designer"] {
  --active-node-rgb: 49, 102, 89;
  --active-node-light: #9be5d2;
  --active-node-dark: #316659;
}

.tech-section::before,
.tech-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.tech-section::before {
  background:
    radial-gradient(ellipse at 50% 62%, rgba(var(--active-node-rgb), 0.055), transparent 44%),
    linear-gradient(rgba(73, 125, 213, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.018) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 52%, #000 0 58%, rgba(0, 0, 0, 0.86) 76%, transparent 100%);
  transition: background 620ms var(--ease-premium);
}

.tech-section::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(122, 176, 255, 0.20), transparent 286px),
    radial-gradient(ellipse at 24% 58%, rgba(var(--active-node-rgb), 0.080), transparent 360px),
    radial-gradient(ellipse at 76% 62%, rgba(48, 106, 221, 0.090), transparent 390px),
    radial-gradient(circle at 50% 78%, rgba(var(--active-node-rgb), 0.070), transparent 560px);
  mix-blend-mode: screen;
  opacity: 0.92;
  transition:
    background 620ms var(--ease-premium),
    opacity 620ms var(--ease-premium);
}

/* EDIT BLOCK: tech light photo position and size */
.tech-section__light {
  --tech-light-top: -380px;
  --tech-light-left: 50%;
  --tech-light-width: 1040px;
  --tech-light-opacity: 0.86;
  --tech-light-scale: 0.65;
  position: absolute;
  top: var(--tech-light-top);
  left: var(--tech-light-left);
  z-index: 1;
  width: var(--tech-light-width);
  max-width: none;
  opacity: var(--tech-light-opacity);
  pointer-events: none;
  filter: none;
  transform: translateX(-50%) scale(var(--tech-light-scale));
  transform-origin: 50% 36%;
}

.tech-section__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  pointer-events: none;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
}

.tech-section__head {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 760px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(var(--tech-content-y));
}

.tech-section__badge {
  display: flex;
  height: 49px;
  align-items: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.018) 100%),
    linear-gradient(0deg, rgba(42, 60, 94, 0.30) 23.47%, rgba(15, 22, 38, 0.46) 77.55%),
    rgba(7, 11, 22, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.16);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.51px;
  backdrop-filter: blur(12px) saturate(1.14) brightness(0.94);
  -webkit-backdrop-filter: blur(12px) saturate(1.14) brightness(0.94);
}

.section-title {
  color: #fff;
  text-align: center;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Cases page */
.cases-page {
  background: #020713;
}

.header__nav-item.is-active {
  color: #fff;
  background: rgba(126, 170, 255, 0.08);
}

.cases-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(47, 107, 255, 0.24), rgba(47, 107, 255, 0) 34%),
    radial-gradient(circle at 14% 70%, rgba(110, 82, 180, 0.15), rgba(110, 82, 180, 0) 30%),
    linear-gradient(180deg, rgba(2, 7, 19, 0.35), #020713 94%);
}

.cases-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(126, 170, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 170, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 46%, #000 0 44%, transparent 78%);
}

.cases-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 82px;
  width: min(760px, 84vw);
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(50% 70% at 50% 50%, rgba(126, 170, 255, 0.15), rgba(126, 170, 255, 0));
  filter: blur(8px);
}

.cases-hero__fx {
  display: none;
}

.cases-hero__head {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cases-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(126, 170, 255, 0.34);
  background: rgba(10, 15, 30, 0.54);
  color: #8fb4ff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 48px rgba(47, 107, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cases-hero__badge .badge-icon {
  width: 17px;
  height: 17px;
}

.cases-hero__title {
  width: min(980px, 100%);
  margin: 28px 0 0;
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.cases-hero__subtitle {
  width: min(690px, 100%);
  margin: 24px 0 0;
  color: rgba(229, 229, 229, 0.62);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-wrap: balance;
}

.cases-section {
  position: relative;
  padding: 0 24px 112px;
  background:
    radial-gradient(circle at 8% 22%, rgba(110, 82, 180, 0.12), transparent 28%),
    radial-gradient(circle at 92% 35%, rgba(47, 107, 255, 0.13), transparent 30%),
    #020713;
}

.cases-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.case-card {
  --case-color: 126, 170, 255;
  --case-border: rgba(var(--case-color), 0.30);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  border-radius: 18px;
  border: 1px solid rgba(var(--case-color), 0.28);
  background:
    linear-gradient(180deg, rgba(var(--case-color), 0.08), rgba(var(--case-color), 0.012) 38%, rgba(10, 11, 13, 0.98)),
    #0b0c0d;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
  will-change: transform;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--case-color), 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
  opacity: 0.72;
}

.case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--case-color), 0.55);
  box-shadow:
    0 44px 108px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(var(--case-color), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.case-card--purple {
  --case-color: 137, 103, 255;
}

.case-card--green {
  --case-color: 51, 230, 190;
}

.case-card--blue {
  --case-color: 82, 142, 255;
}

.case-card--silver {
  --case-color: 225, 232, 244;
}

.case-card--cyan {
  --case-color: 74, 201, 255;
}

.case-card--gold {
  --case-color: 255, 193, 86;
}

.case-card__preview,
.case-card__summary,
.case-card__details {
  position: relative;
  z-index: 1;
}

.case-card__preview {
  height: 286px;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: rgba(8, 12, 26, 0.72);
}

.case-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms ease;
  filter: saturate(0.92) brightness(0.88);
}

.case-card:hover .case-card__preview img {
  transform: scale(1.055);
  filter: saturate(1.06) brightness(0.96);
}

.case-card__summary {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 36px 36px 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--case-color), 0.08), transparent 30%),
    #101111;
}

.case-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.case-card__type,
.case-card__rating {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgb(var(--case-color));
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-card__rating {
  color: rgb(var(--case-color));
}

.case-card__title {
  margin: 20px 0 0;
  color: #f7f9ff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.case-card__description {
  min-height: 118px;
  margin: 19px 0 0;
  color: rgba(229, 229, 229, 0.64);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 260ms ease, transform 260ms ease;
}

.case-card__link svg {
  width: 20px;
  height: 20px;
  color: rgb(var(--case-color));
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms ease;
}

.case-card__link:hover {
  color: rgb(var(--case-color));
}

.case-card__link:hover svg {
  transform: translateX(4px);
}

.case-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-card__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 70px;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(var(--case-color), 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.case-card__stat small {
  color: rgba(220, 229, 255, 0.48);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-card__stat strong {
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.case-card__details {
  padding: 0 36px 32px;
  border-top: 1px solid rgba(226, 237, 255, 0.07);
  background: #101111;
}

.case-card__details-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  color: rgba(236, 241, 255, 0.82);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.case-card__details-summary::-webkit-details-marker {
  display: none;
}

.case-card__details-summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: rgb(var(--case-color));
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card__details[open] .case-card__details-summary svg {
  transform: rotate(90deg);
}

.case-card__details-body {
  display: grid;
  gap: 15px;
  padding: 8px 0 2px;
}

.case-card__group {
  display: grid;
  gap: 10px;
}

.case-card__label {
  color: rgba(236, 241, 255, 0.72);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(var(--case-color), 0.20);
  background: rgba(var(--case-color), 0.08);
  color: rgba(242, 246, 255, 0.86);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.case-card__chips--soft span {
  background: rgba(255, 255, 255, 0.035);
  color: rgba(226, 234, 255, 0.68);
}

.case-card__screens {
  display: contents;
}

.case-card__screens-title {
  color: rgba(236, 241, 255, 0.76);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.case-card__screen-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
}

.case-card__screen {
  display: grid;
  gap: 8px;
  margin: 0;
}

.case-card__screen span {
  color: rgba(226, 234, 255, 0.50);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card__screen-media {
  height: 128px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--case-color), 0.16);
  background: rgba(5, 8, 18, 0.70);
}

.case-card__screen:last-child .case-card__screen-media {
  height: 128px;
}

.case-card__screen-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), filter 620ms ease;
  filter: brightness(0.82) saturate(0.95);
}

.case-card__screen:hover .case-card__screen-media img {
  transform: scale(1.09);
  filter: brightness(0.98) saturate(1.06);
}

@media (max-width: 1100px) {
  .cases-grid {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .case-card {
    min-height: auto;
  }
}

@media (max-width: 999px) {
  .cases-hero {
    min-height: auto;
    padding: 118px 16px 64px;
  }

  .cases-hero__title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .cases-hero__subtitle {
    font-size: 15px;
  }

  .cases-section {
    padding: 0 16px 76px;
  }

  .case-card {
    border-radius: 24px;
  }

  .case-card:hover {
    transform: none;
  }

  .case-card__preview {
    height: 214px;
  }

  .case-card__summary {
    min-height: auto;
    padding: 28px 28px 24px;
  }

  .case-card__details {
    padding: 0 28px 26px;
  }

  .case-card__description {
    min-height: auto;
  }

  .case-card__stats {
    grid-template-columns: 1fr;
  }

  .case-card__screen-grid {
    grid-template-columns: 1fr;
  }

  .case-card__screen-media,
  .case-card__screen:last-child .case-card__screen-media {
    height: 172px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-card,
  .case-card__preview img,
  .case-card__screen-media img {
    transition: none;
  }
}

.cases-page--showcase {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 83% 13%, rgba(20, 74, 220, 0.16), rgba(20, 74, 220, 0) 14%),
    radial-gradient(circle at 20% 110%, rgba(18, 65, 170, 0.10), rgba(18, 65, 170, 0) 20%),
    #020610;
}

.cases-page--showcase .site-frame {
  overflow: hidden;
  background: transparent;
}

.cases-page--showcase .cases-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.cases-main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 46% 24% at 50% 3%, rgba(70, 118, 255, 0.16), rgba(70, 118, 255, 0) 70%),
    radial-gradient(ellipse 34% 18% at 16% 28%, rgba(35, 82, 206, 0.12), rgba(35, 82, 206, 0) 72%),
    radial-gradient(ellipse 32% 20% at 86% 38%, rgba(0, 154, 255, 0.095), rgba(0, 154, 255, 0) 76%),
    linear-gradient(180deg, #020610 0%, #030816 48%, #020610 100%);
}

@media (min-width: 1000px) {
  .cases-main {
    padding-top: 89px;
  }
}

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

.cases-main::before {
  z-index: 0;
  background:
    linear-gradient(rgba(92, 143, 255, 0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 143, 255, 0.018) 1px, transparent 1px);
  background-position: center top;
  background-size: 32px 32px;
}

.cases-main::after {
  z-index: 0;
  background:
    radial-gradient(ellipse 28% 12% at 50% 18%, rgba(112, 157, 255, 0.14), rgba(112, 157, 255, 0) 72%),
    radial-gradient(ellipse 36% 26% at 83% 24%, rgba(45, 115, 255, 0.18), rgba(45, 115, 255, 0) 76%),
    radial-gradient(ellipse 22% 34% at 3% 54%, rgba(40, 91, 205, 0.12), rgba(40, 91, 205, 0) 72%),
    radial-gradient(ellipse 35% 18% at 55% 64%, rgba(21, 54, 128, 0.14), rgba(21, 54, 128, 0) 76%);
  mix-blend-mode: screen;
  opacity: 0.82;
}

.cases-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 82%, transparent 100%);
  pointer-events: none;
}

.cases-page--showcase .cases-hero {
  --cases-header-height: 89px;
  position: relative;
  min-height: calc(607px - var(--cases-header-height));
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 clamp(24px, 12.97vw, 249px);
  overflow: hidden;
  border-bottom: 1px solid rgba(80, 127, 205, 0.17);
  background:
    radial-gradient(circle at 83% 50%, rgba(20, 74, 220, 0.13), rgba(20, 74, 220, 0) 30%);
}

.cases-page--showcase .cases-hero::before,
.cases-page--showcase .cases-hero::after {
  display: none;
}

.cases-hero__shell {
  position: relative;
  z-index: 3;
  width: min(1440px, 100%);
  min-height: calc(525px - var(--cases-header-height, 89px));
  display: flex;
  align-items: center;
}

.cases-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 54vw);
  padding: 68px 0 76px;
}

.cases-hero__eyebrow {
  margin: 0 0 17px;
  color: #60a5fa;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4.62px;
  text-transform: uppercase;
}

.cases-page--showcase .cases-hero__title {
  width: min(980px, 100%);
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 6.8px rgba(0, 0, 0, 0.13);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 81px;
  letter-spacing: -0.8px;
  text-align: left;
  text-wrap: initial;
}

.cases-page--showcase .cases-hero__title span {
  color: #5f94f2;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: -0.8px;
  white-space: nowrap;
}

.cases-page--showcase .cases-hero__subtitle {
  width: 750px;
  max-width: 601px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-family: Inter, "Manrope", sans-serif;
  font-size: 19.5px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.38px;
  text-align: left;
  text-wrap: initial;
}

.cases-hero__visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.cases-hero__sphere {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 0 17.5px rgba(20, 91, 255, 0.35));
  user-select: none;
  will-change: transform;
}

.cases-hero__sphere--large {
  right: -66px;
  bottom: -184px;
  width: 732px;
  animation: cases-sphere-float-large 8.5s var(--ease-premium) infinite alternate;
}

.cases-hero__sphere--small {
  right: 293px;
  top: -90px;
  width: 396px;
  transform: rotate(180deg);
  opacity: 0.59;
  animation: cases-sphere-float-small 7.8s var(--ease-premium) -1.4s infinite alternate;
}

@keyframes cases-sphere-float-large {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.8deg) scale(1);
  }

  to {
    transform: translate3d(-10px, -18px, 0) rotate(1.15deg) scale(1.012);
  }
}

@keyframes cases-sphere-float-small {
  from {
    transform: translate3d(0, 0, 0) rotate(180deg) scale(1);
  }

  to {
    transform: translate3d(12px, 14px, 0) rotate(178.9deg) scale(1.018);
  }
}

.cases-page--showcase .cases-section {
  position: relative;
  z-index: 3;
  padding: 76px clamp(24px, 12.97vw, 249px) 110px;
  background:
    radial-gradient(circle at 22% 100%, rgba(18, 65, 170, 0.08), rgba(18, 65, 170, 0) 30%);
}

.cases-page--showcase .cases-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cases-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 413px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(57, 111, 204, 0.38);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(7, 15, 31, 0.96), rgba(2, 7, 17, 0.98));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.cases-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 137, 255, 0.62);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    0 0 58px rgba(45, 115, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.cases-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 0;
}

.cases-card__number {
  color: #2d73ff;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.cases-card__preview {
  position: relative;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
  border: 1px solid rgba(103, 155, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(21, 48, 101, 0.28), rgba(4, 10, 22, 0.75)),
    linear-gradient(90deg, transparent 0%, transparent 7.76%, rgba(63, 114, 200, 0.06) 7.99%),
    #070e1c;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(47, 107, 255, 0.08),
    inset 0 1px 0 rgba(232, 240, 255, 0.08),
    inset 0 -1px 0 rgba(47, 107, 255, 0.14);
}

.cases-card__preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 8%),
    radial-gradient(circle at 70% 22%, rgba(45, 115, 255, 0.08), transparent 34%);
  opacity: 0.75;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cases-card:hover .cases-card__preview::before {
  opacity: 1;
  transform: scale(1.04);
}

.cases-card__preview img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: top center;
  transform: scale(1);
  transform-origin: top center;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.cases-card:hover .cases-card__preview img {
  transform: scale(1.018);
  filter: saturate(1.08) brightness(1.04);
}

.cases-card__preview span {
  position: relative;
  z-index: 1;
  color: #6d7c96;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.33px;
}

.cases-card__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 21px 18px 19px;
  border-top: 1px solid rgba(57, 111, 204, 0.38);
}

.cases-card__title {
  margin: 0;
  color: #f6f8fc;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.425px;
}

.cases-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cases-card__tags {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #60a5fa;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.cases-card__slash {
  color: #41526e;
}

.cases-card__year {
  color: #8994a8;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.cases-card__footer {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 18px;
  border-top: 1px solid rgba(80, 127, 205, 0.17);
  color: #60a5fa;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.cases-card__arrow {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 111, 204, 0.38);
  border-radius: 999px;
  color: #60a5fa;
  font-size: 24px;
  line-height: 1;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms ease, background 280ms ease;
}

.cases-card:hover .cases-card__arrow {
  transform: translateX(3px);
  border-color: rgba(96, 165, 250, 0.74);
  background: rgba(45, 115, 255, 0.08);
}

.cases-footer {
  padding: 27px clamp(24px, 12.97vw, 249px) 26px;
  border-top: 1px solid rgba(80, 127, 205, 0.17);
  background: #020610;
}

.cases-footer__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8994a8;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 1400px) {
  .cases-page--showcase .cases-hero,
  .cases-page--showcase .cases-section,
  .cases-footer {
    padding-inline: 64px;
  }

  .cases-hero__sphere--large {
    right: -170px;
  }

  .cases-hero__sphere--small {
    right: 180px;
  }
}

@media (max-width: 1100px) {
  .cases-page--showcase .cases-hero,
  .cases-page--showcase .cases-section,
  .cases-footer {
    padding-inline: 16px;
  }

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

  .cases-hero__content {
    width: min(640px, 72vw);
  }

  .cases-hero__sphere--large {
    right: -300px;
    width: 672px;
  }

  .cases-hero__sphere--small {
    right: 60px;
    width: 348px;
  }
}

@media (max-width: 760px) {
  .cases-particles {
    display: none;
  }

  .cases-main::after {
    opacity: 0.48;
  }

  .cases-page--showcase .cases-hero {
    min-height: 480px;
  }

  .cases-hero__shell {
    min-height: 408px;
  }

  .cases-hero__content {
    width: 100%;
    padding: 70px 0 54px;
  }

  .cases-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .cases-page--showcase .cases-hero__title {
    font-size: clamp(42px, 13.45vw, 57px);
    line-height: 1.05;
    letter-spacing: -2.5px;
  }

  .cases-page--showcase .cases-hero__title span {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .cases-page--showcase .cases-hero__subtitle {
    width: min(330px, 100%);
    font-size: 13px;
    line-height: 1.55;
  }

  .cases-hero__sphere--large {
    right: -210px;
    bottom: -102px;
    width: 387px;
    opacity: 0.62;
  }

  .cases-hero__sphere--small {
    right: 18px;
    top: -42px;
    width: 189px;
    opacity: 0.36;
  }

  .cases-page--showcase .cases-section {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .cases-page--showcase .cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cases-card {
    min-height: 350px;
  }

  .cases-card__preview {
    height: 176px;
  }

  .cases-card__title {
    font-size: 16px;
  }

  .cases-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cases-card,
  .cases-card__preview::before,
  .cases-card__arrow {
    transition: none;
  }
}

body.cases-reveal-ready:not(.is-cases-loaded) .cases-header {
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.985);
}

body.cases-reveal-ready.is-cases-loaded .cases-header {
  animation: reveal-header 1.05s var(--ease-cinematic) 0.12s both;
}

body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__eyebrow,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__title,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__subtitle,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__sphere {
  opacity: 0;
}

body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__eyebrow,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__title,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__subtitle {
  transform: translate3d(0, 26px, 0) scale(0.985);
}

body.cases-reveal-ready:not(.is-cases-loaded) .cases-card {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.985);
}

body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__number,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__preview,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__body,
body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__footer {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

body.cases-reveal-ready.is-cases-loaded .cases-hero__eyebrow {
  animation: cases-copy-in 900ms var(--ease-cinematic) 80ms both;
}

body.cases-reveal-ready.is-cases-loaded .cases-hero__title {
  animation: cases-title-in 1100ms var(--ease-cinematic) 190ms both;
}

body.cases-reveal-ready.is-cases-loaded .cases-hero__subtitle {
  animation: cases-copy-in 980ms var(--ease-cinematic) 430ms both;
}

body.cases-reveal-ready.is-cases-loaded .cases-hero__sphere--small {
  animation: cases-sphere-small-in 1400ms var(--ease-cinematic) 520ms both;
}

body.cases-reveal-ready.is-cases-loaded .cases-hero__sphere--large {
  animation: cases-sphere-large-in 1500ms var(--ease-cinematic) 650ms both;
}

body.cases-reveal-ready .cases-card {
  transition:
    opacity 820ms var(--ease-cinematic),
    transform 900ms var(--ease-cinematic),
    border-color 420ms ease,
    box-shadow 420ms ease;
  transition-delay: var(--case-delay), var(--case-delay), 0ms, 0ms;
}

body.cases-reveal-ready .cases-card.is-cases-card-visible {
  opacity: 1;
  transform: none;
}

body.cases-reveal-ready .cases-card.is-cases-card-settled {
  transition-delay: 0ms;
}

body.cases-reveal-ready .cases-card__number,
body.cases-reveal-ready .cases-card__preview,
body.cases-reveal-ready .cases-card__body,
body.cases-reveal-ready .cases-card__footer {
  transition:
    opacity 720ms var(--ease-cinematic),
    transform 780ms var(--ease-cinematic);
}

body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__number,
body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__preview,
body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__body,
body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__footer {
  opacity: 1;
  transform: none;
}

body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__number {
  transition-delay: calc(var(--case-delay) + 100ms);
}

body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__preview {
  transition-delay: calc(var(--case-delay) + 150ms);
}

body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__body {
  transition-delay: calc(var(--case-delay) + 235ms);
}

body.cases-reveal-ready .cases-card.is-cases-card-visible .cases-card__footer {
  transition-delay: calc(var(--case-delay) + 315ms);
}

body.cases-reveal-ready .cases-card.is-cases-card-settled .cases-card__number,
body.cases-reveal-ready .cases-card.is-cases-card-settled .cases-card__preview,
body.cases-reveal-ready .cases-card.is-cases-card-settled .cases-card__body,
body.cases-reveal-ready .cases-card.is-cases-card-settled .cases-card__footer {
  transition-delay: 0ms;
}

@keyframes cases-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
  }

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

@keyframes cases-title-in {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.975);
  }

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

@keyframes cases-sphere-large-in {
  from {
    opacity: 0;
    transform: translate3d(32px, 44px, 0) scale(0.94);
  }

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

@keyframes cases-sphere-small-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, -34px, 0) rotate(180deg) scale(0.92);
  }

  to {
    opacity: 0.59;
    transform: translate3d(0, 0, 0) rotate(180deg) scale(1);
  }
}

.case-detail-page {
  --case-accent-rgb: 45, 115, 255;
  --case-side-rgb: 35, 82, 206;
  --case-bg: #020610;
  --case-grid-rgb: 92, 143, 255;
  --case-detail-side-padding: clamp(58px, 6.7vw, 128px);
  min-height: 100vh;
  background:
    radial-gradient(ellipse 22% 14% at 84% 7%, rgba(var(--case-accent-rgb), 0.12), rgba(var(--case-accent-rgb), 0) 62%),
    radial-gradient(ellipse 18% 14% at 9% 62%, rgba(var(--case-side-rgb), 0.07), rgba(var(--case-side-rgb), 0) 70%),
    var(--case-bg);
}

.case-detail {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 38px 0 80px;
  background:
    linear-gradient(180deg, rgba(2, 6, 16, 0) 0%, rgba(2, 6, 16, 0.26) 64%, rgba(2, 6, 16, 0.88) 100%),
    radial-gradient(ellipse 31% 18% at 83% 8%, rgba(var(--case-accent-rgb), 0.15), rgba(var(--case-accent-rgb), 0) 70%),
    radial-gradient(ellipse 24% 18% at 8% 63%, rgba(var(--case-side-rgb), 0.09), rgba(var(--case-side-rgb), 0) 72%),
    linear-gradient(90deg, var(--case-bg) 0%, var(--case-bg) 100%);
}

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

.case-detail::before {
  z-index: 0;
  background:
    radial-gradient(circle, rgba(173, 204, 255, 0.24) 0 1px, transparent 1.4px),
    linear-gradient(rgba(var(--case-grid-rgb), 0.072) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--case-grid-rgb), 0.060) 1px, transparent 1px),
    linear-gradient(rgba(var(--case-grid-rgb), 0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--case-grid-rgb), 0.026) 1px, transparent 1px);
  background-position:
    24px 18px,
    center top,
    center top,
    center top,
    center top;
  background-size:
    132px 132px,
    96px 96px,
    96px 96px,
    24px 24px,
    24px 24px;
  opacity: 0.94;
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%),
    radial-gradient(ellipse 82% 64% at 52% 52%, #000 0%, transparent 78%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%),
    radial-gradient(ellipse 82% 64% at 52% 52%, #000 0%, transparent 78%);
  -webkit-mask-composite: source-in;
}

.case-detail::after {
  z-index: 1;
  background:
    radial-gradient(ellipse 24% 11% at 52% 37%, rgba(143, 181, 255, 0.12), rgba(143, 181, 255, 0) 72%),
    radial-gradient(ellipse 36% 21% at 82% 31%, rgba(var(--case-accent-rgb), 0.105), rgba(var(--case-accent-rgb), 0) 76%),
    radial-gradient(ellipse 28% 19% at 20% 73%, rgba(var(--case-side-rgb), 0.085), rgba(var(--case-side-rgb), 0) 78%),
    linear-gradient(90deg, rgba(2, 6, 16, 0.76) 0%, rgba(2, 6, 16, 0) 18%, rgba(2, 6, 16, 0) 82%, rgba(2, 6, 16, 0.76) 100%);
  opacity: 0.92;
  mix-blend-mode: screen;
}

.case-detail__container {
  position: relative;
  z-index: 2;
  width: min(1792px, calc(100% - (var(--case-detail-side-padding) * 2)));
  margin: 0 auto;
}

.case-detail__topline {
  display: flex;
  min-height: 42px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(74, 128, 219, 0.18);
  padding-bottom: 2px;
}

.case-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  color: #63a0ff;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  transition: color 260ms var(--ease-premium), transform 260ms var(--ease-premium);
}

.case-detail__back span {
  font-size: 20px;
  line-height: 20px;
}

.case-detail__back:hover {
  color: #91bbff;
  transform: translateX(-3px);
}

.case-detail__hero {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 110px;
  padding: 62px 136.75px 55px 0;
}

.case-detail__intro {
  display: flex;
  width: 885.25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 0 0 auto;
}

.case-detail__eyebrow,
.case-detail__screen-label {
  color: #63a0ff;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.56px;
  text-transform: uppercase;
}

.case-detail__title-row {
  display: flex;
  width: 100%;
  height: 121.59px;
  align-items: flex-end;
  gap: 39px;
  padding-right: 226.12px;
}

.case-detail__title {
  margin: 0;
  color: #f7f9fc;
  font-family: "Inter", "Satoshi", sans-serif;
  font-size: 152px;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -11.4px;
  white-space: nowrap;
  text-shadow:
    0 0 34px rgba(var(--case-accent-rgb), 0.07),
    0 18px 60px rgba(0, 0, 0, 0.32);
}

.case-detail__divider {
  width: 1px;
  height: 64px;
  margin-bottom: 4px;
  background: rgb(var(--case-accent-rgb));
  box-shadow:
    0 0 22px rgba(var(--case-accent-rgb), 0.42),
    0 0 54px rgba(var(--case-accent-rgb), 0.16);
  flex: 0 0 1px;
}

.case-detail__description {
  max-width: 280px;
  margin: 0 0 3.5px;
  color: #c6ceda;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24.75px;
  white-space: nowrap;
}

.case-detail__hero-spacer {
  width: 660px;
  max-width: 660px;
  height: 117.59px;
  flex: 0 1 660px;
}

.case-detail__screens {
  --case-screen-height: clamp(580px, 39vw, 740px);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 46px;
  width: 100%;
  padding-top: 48px;
}

.case-detail__screens--extra {
  margin-top: 22px;
  padding-top: 64px;
  border-top: 1px solid rgba(var(--case-accent-rgb), 0.12);
}

.case-detail__screens::before {
  position: absolute;
  z-index: -1;
  top: 72px;
  right: -2%;
  left: -2%;
  height: 290px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse 49% 54% at 50% 50%, rgba(var(--case-accent-rgb), 0.145), rgba(var(--case-accent-rgb), 0.055) 38%, transparent 72%),
    radial-gradient(ellipse 28% 42% at 14% 58%, rgba(160, 194, 255, 0.075), transparent 76%),
    radial-gradient(ellipse 24% 38% at 88% 42%, rgba(119, 164, 255, 0.080), transparent 74%);
  filter: blur(16px);
  opacity: 0.95;
  content: "";
}

.case-detail__screens--extra::before {
  display: none;
}

.case-detail__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.case-detail__screen--desktop {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 46px;
}

.case-detail__screen--desktop::after {
  position: absolute;
  top: 31px;
  right: 0;
  width: 1px;
  height: calc(100% - 31px);
  background:
    linear-gradient(180deg,
      rgba(var(--case-accent-rgb), 0) 0%,
      rgba(var(--case-accent-rgb), 0.26) 12%,
      rgba(var(--case-accent-rgb), 0.18) 72%,
      rgba(var(--case-accent-rgb), 0) 100%);
  opacity: 0.82;
  content: "";
  pointer-events: none;
}

.case-detail__screen--mobile {
  width: clamp(350px, 20.4vw, 390px);
  flex: 0 0 clamp(350px, 20.4vw, 390px);
  padding-left: 0;
}

.case-detail__screen-label {
  display: flex;
  height: 28px;
  align-items: flex-start;
  font-size: 10px;
  letter-spacing: 1.4px;
}

.case-detail__shot {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(var(--case-accent-rgb), 0.74);
  background: #ffffff;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(var(--case-accent-rgb), 0.13),
    0 0 110px rgba(var(--case-accent-rgb), 0.075),
    inset 0 0 38px rgba(7, 18, 36, 0.05),
    inset 0 0 0 8px rgba(6, 17, 38, 0.02);
  pointer-events: auto;
}

.case-detail__shot::before,
.case-detail__shot::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.case-detail__shot::before {
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(var(--case-accent-rgb), 0.13), transparent 16%),
    linear-gradient(90deg, rgba(var(--case-accent-rgb), 0.10), transparent 10%, transparent 90%, rgba(var(--case-accent-rgb), 0.08));
  mix-blend-mode: multiply;
  opacity: 0.28;
}

.case-detail__shot::after {
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.20),
    inset 0 -36px 80px rgba(4, 10, 24, 0.035);
}

.case-detail__shot--desktop {
  height: var(--case-screen-height);
  border-radius: 20px;
}

.case-detail__shot--mobile {
  height: var(--case-screen-height);
  border-radius: 24px;
}

.case-detail__shot-placeholder {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 28% at 50% 0%, rgba(245, 248, 255, 0.95), rgba(255, 255, 255, 0) 70%),
    #ffffff;
}

.case-detail__shot-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.001);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
}

.case-detail__shot:hover .case-detail__shot-image {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.case-detail__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding: 54px 0 0;
}

.case-detail__gallery-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--case-accent-rgb), 0.34);
  border-radius: 20px;
  background: rgba(5, 12, 26, 0.72);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 54px rgba(var(--case-accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.case-detail__gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.001);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
}

.case-detail__gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__topline,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__eyebrow,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__title,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__divider,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__description,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__screens::before,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__screen-label,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__shot,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__gallery-item {
  opacity: 0;
}

body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__topline,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__eyebrow,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__title,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__description,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__screen-label,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__shot,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__gallery-item {
  transform: translate3d(0, 28px, 0) scale(0.985);
}

body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__divider {
  transform: scaleY(0);
  transform-origin: 50% 100%;
}

body.case-detail-page.is-loaded .case-detail__topline {
  animation: case-detail-line-in 900ms var(--ease-cinematic) 80ms both;
}

body.case-detail-page.is-loaded .case-detail__eyebrow {
  animation: case-detail-copy-in 860ms var(--ease-cinematic) 260ms both;
}

body.case-detail-page.is-loaded .case-detail__title {
  animation: case-detail-title-in 1150ms var(--ease-cinematic) 430ms both;
}

body.case-detail-page.is-loaded .case-detail__divider {
  animation: case-detail-divider-in 800ms var(--ease-cinematic) 680ms both;
}

body.case-detail-page.is-loaded .case-detail__description {
  animation: case-detail-copy-in 940ms var(--ease-cinematic) 780ms both;
}

body.case-detail-page.is-loaded .case-detail__screens::before {
  animation: case-detail-glow-in 1000ms var(--ease-cinematic) 980ms both;
}

body.case-detail-page.is-loaded .case-detail__screen--desktop .case-detail__screen-label {
  animation: case-detail-copy-in 780ms var(--ease-cinematic) 1120ms both;
}

body.case-detail-page.is-loaded .case-detail__screen--mobile .case-detail__screen-label {
  animation: case-detail-copy-in 780ms var(--ease-cinematic) 1260ms both;
}

body.case-detail-page.is-loaded .case-detail__screen--desktop .case-detail__shot {
  animation: case-detail-shot-in 1150ms var(--ease-cinematic) 1220ms both;
}

body.case-detail-page.is-loaded .case-detail__screen--mobile .case-detail__shot {
  animation: case-detail-shot-in 1150ms var(--ease-cinematic) 1400ms both;
}

body.case-detail-page.is-loaded .case-detail__gallery-item {
  animation: case-detail-shot-in 1050ms var(--ease-cinematic) both;
}

body.case-detail-page.is-loaded .case-detail__gallery-item:nth-child(1) {
  animation-delay: 1580ms;
}

body.case-detail-page.is-loaded .case-detail__gallery-item:nth-child(2) {
  animation-delay: 1700ms;
}

body.case-detail-page.is-loaded .case-detail__gallery-item:nth-child(3) {
  animation-delay: 1820ms;
}

body.case-detail-page.is-loaded .case-detail__gallery-item:nth-child(4) {
  animation-delay: 1940ms;
}

@keyframes case-detail-line-in {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes case-detail-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
  }

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

@keyframes case-detail-title-in {
  from {
    opacity: 0;
    transform: translate3d(-28px, 32px, 0) scale(0.972);
  }

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

@keyframes case-detail-divider-in {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  62% {
    opacity: 1;
    transform: scaleY(1.08);
  }

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

@keyframes case-detail-shot-in {
  from {
    opacity: 0;
    transform: translate3d(0, 46px, 0) scale(0.976);
  }

  64% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.004);
  }

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

@keyframes case-detail-glow-in {
  from {
    opacity: 0;
    transform: scaleX(0.82);
  }

  to {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__eyebrow,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__title,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__subtitle,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-hero__sphere,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-card,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__number,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__preview,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__body,
  body.cases-reveal-ready:not(.is-cases-loaded) .cases-card__footer,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__topline,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__eyebrow,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__title,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__divider,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__description,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__screens::before,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__screen-label,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__shot,
  body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__gallery-item {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 1400px) {
  .case-detail__container {
    width: calc(100% - (var(--case-detail-side-padding) * 2));
  }

  .case-detail__hero {
    justify-content: flex-start;
    padding-right: 0;
  }

  .case-detail__hero-spacer {
    display: none;
  }

  .case-detail__intro {
    width: 100%;
  }

  .case-detail__title-row {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .case-detail-page {
    --case-detail-side-padding: 16px;
  }

  .case-detail {
    padding: 28px 0 54px;
  }

  .case-detail::before {
    background-size:
      116px 116px,
      64px 64px,
      64px 64px,
      16px 16px,
      16px 16px;
    opacity: 0.48;
  }

  .case-detail::after {
    background:
      radial-gradient(ellipse 58% 18% at 56% 26%, rgba(var(--case-accent-rgb), 0.11), rgba(var(--case-accent-rgb), 0) 72%),
      radial-gradient(ellipse 52% 22% at 6% 58%, rgba(var(--case-side-rgb), 0.07), rgba(var(--case-side-rgb), 0) 76%);
    opacity: 0.68;
  }

  .case-detail__container {
    width: calc(100% - 32px);
  }

  .case-detail__hero {
    padding: 48px 0 32px;
  }

  .case-detail__title-row {
    height: auto;
    align-items: center;
    gap: 22px;
  }

  .case-detail__title {
    font-size: clamp(74px, 22vw, 112px);
    line-height: 0.86;
    letter-spacing: -6px;
  }

  .case-detail__divider {
    height: 54px;
  }

  .case-detail__description {
    font-size: 13px;
    line-height: 1.55;
    white-space: normal;
  }

  .case-detail__screens {
    flex-direction: column;
    gap: 28px;
    padding-top: 34px;
  }

  .case-detail__screen--desktop {
    padding-right: 0;
  }

  .case-detail__screen--desktop::after {
    display: none;
  }

  .case-detail__screens::before {
    top: 68px;
    right: -24px;
    left: -24px;
    height: 220px;
    filter: blur(12px);
    opacity: 0.48;
  }

  .case-detail__screen--mobile {
    width: min(350px, 100%);
    flex-basis: auto;
  }

  .case-detail__shot--desktop {
    height: auto;
    aspect-ratio: 1920 / 960;
  }

  .case-detail__shot--mobile {
    height: auto;
    aspect-ratio: 390 / 780;
  }

  .case-detail__gallery {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 32px;
  }

  .case-detail__gallery-item {
    min-height: 320px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .case-detail__title-row {
    flex-wrap: wrap;
  }

  .case-detail__topline {
    min-height: 44px;
  }

  .case-detail__divider {
    height: 1px;
    width: 72px;
    margin: 0;
    flex-basis: 72px;
  }

  .case-detail__description {
    flex-basis: 100%;
  }

  .case-detail__shot--desktop {
    height: auto;
    aspect-ratio: 1920 / 960;
    border-radius: 18px;
  }

  .case-detail__shot--mobile {
    height: auto;
    aspect-ratio: 390 / 780;
    border-radius: 22px;
  }

  .case-detail__gallery-item {
    min-height: 260px;
  }
}

.case-detail__layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: clamp(54px, 5.8vw, 108px);
  align-items: center;
  min-height: calc(100vh - 160px);
  padding: clamp(54px, 6vw, 108px) 0 clamp(70px, 7vw, 120px);
}

.case-detail__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.case-detail__info .case-detail__eyebrow {
  margin-bottom: 34px;
}

.case-detail__title-row {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
}

.case-detail__title {
  max-width: 440px;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(54px, 4.8vw, 86px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
  white-space: normal;
}

.case-detail__divider {
  width: 54px;
  height: 2px;
  margin: 8px 0 8px;
  background: rgb(var(--case-accent-rgb));
  box-shadow:
    0 0 18px rgba(var(--case-accent-rgb), 0.44),
    0 0 46px rgba(var(--case-accent-rgb), 0.18);
  flex: 0 0 auto;
}

.case-detail__description {
  max-width: 420px;
  margin: 0;
  color: rgba(232, 238, 249, 0.70);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.58;
  white-space: normal;
}

.case-detail__meta {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(222, 234, 255, 0.08);
}

.case-detail__meta-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(222, 234, 255, 0.08);
}

.case-detail__meta-row dt,
.case-detail__meta-row dd {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.case-detail__meta-row dt {
  color: rgba(232, 238, 249, 0.48);
}

.case-detail__meta-row dd {
  color: rgba(250, 252, 255, 0.94);
  text-align: right;
}

.case-detail__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 42px;
}

.case-detail__stat {
  --stat-rgb: var(--case-accent-rgb);
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 15px;
  overflow: hidden;
  border: 1px solid rgba(var(--stat-rgb), 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--stat-rgb), 0.26), transparent 48%),
    linear-gradient(180deg, rgba(22, 30, 52, 0.68), rgba(8, 13, 25, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -24px 54px rgba(var(--stat-rgb), 0.045),
    0 18px 48px rgba(0, 0, 0, 0.22),
    0 0 46px rgba(var(--stat-rgb), 0.075);
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  transition: none;
}

.case-detail__stat::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.10) 45%, transparent 58%),
    radial-gradient(circle at 50% 120%, rgba(var(--stat-rgb), 0.10), transparent 48%);
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.case-detail__stat-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.case-detail__stat-icon svg {
  display: block;
  width: 48px;
  height: 48px;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 20px rgba(var(--stat-rgb), 0.22));
}

.case-detail__stat span:not(.case-detail__stat-icon) {
  position: relative;
  z-index: 1;
  color: rgba(210, 222, 246, 0.54);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.case-detail__stat strong {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.case-detail__stat span:not(.case-detail__stat-icon),
.case-detail__stat strong {
  grid-column: 2;
}

.case-detail__stat {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 5px;
}

.case-detail__stat-icon {
  grid-row: 1 / 3;
}

.case-detail__screens {
  --case-screen-height: clamp(520px, 38vw, 704px);
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0;
}

.case-detail__screens::before {
  top: 52%;
  right: -5%;
  left: -6%;
  height: 40%;
  filter: blur(18px);
  opacity: 0.62;
}

.case-detail__screen {
  min-width: 0;
}

.case-detail__screen--desktop {
  width: 100%;
  flex: 1 1 auto;
  padding-right: 0;
}

.case-detail__screen--desktop::after {
  display: none;
}

.case-detail__screen--mobile {
  display: none;
}

.case-detail__screen-label {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  gap: 14px;
  color: rgba(219, 229, 246, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.case-detail__screen-label::after {
  display: block;
  height: 1px;
  min-width: 42px;
  flex: 1;
  background: linear-gradient(90deg, rgba(221, 233, 255, 0.28), rgba(221, 233, 255, 0));
  content: "";
}

.case-detail__shot {
  height: auto;
  border-color: rgba(230, 238, 255, 0.58);
  background: transparent;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 64px rgba(var(--case-accent-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.case-detail__shot--desktop {
  height: auto;
  aspect-ratio: auto;
  border-radius: 18px;
}

.case-detail__shot--mobile {
  border-radius: 18px;
}

.case-detail__shot-image {
  position: relative;
  inset: auto;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: top center;
  transform: none;
}

.case-detail__gallery,
.case-detail__screens--extra {
  display: none;
}

body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__layout,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__meta,
body.case-detail-page.reveal-ready:not(.is-loaded) .case-detail__stat {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
}

body.case-detail-page.is-loaded .case-detail__layout {
  animation: case-detail-copy-in 920ms var(--ease-cinematic) 140ms both;
}

body.case-detail-page.is-loaded .case-detail__meta {
  animation: case-detail-copy-in 820ms var(--ease-cinematic) 760ms both;
}

body.case-detail-page.is-loaded .case-detail__stat {
  animation: case-detail-shot-in 820ms var(--ease-cinematic) both;
}

body.case-detail-page.is-loaded .case-detail__stat:nth-child(1) {
  animation-delay: 900ms;
}

body.case-detail-page.is-loaded .case-detail__stat:nth-child(2) {
  animation-delay: 1010ms;
}

body.case-detail-page.is-loaded .case-detail__stat:nth-child(3) {
  animation-delay: 1120ms;
}

@media (max-width: 1180px) {
  .case-detail__layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 46px;
    min-height: 0;
  }

  .case-detail__info {
    max-width: 620px;
  }

  .case-detail__screens {
    --case-screen-height: clamp(460px, 56vw, 660px);
  }

  .case-detail__screen--mobile {
    width: clamp(190px, 25vw, 270px);
    flex-basis: clamp(190px, 25vw, 270px);
  }
}

@media (max-width: 760px) {
  .case-detail__layout {
    padding: 42px 0 64px;
  }

  .case-detail__title {
    font-size: clamp(46px, 14vw, 64px);
    letter-spacing: -0.045em;
  }

  .case-detail__description {
    font-size: 16px;
  }

  .case-detail__stats {
    grid-template-columns: 1fr;
  }

  .case-detail__stat {
    min-height: 76px;
  }

  .case-detail__screens {
    --case-screen-height: auto;
    flex-direction: column;
  }

  .case-detail__screen--mobile {
    width: min(290px, 100%);
    flex-basis: auto;
  }

  .case-detail__shot--desktop {
    height: auto;
    aspect-ratio: auto;
  }

  .case-detail__shot--mobile {
    height: auto;
    aspect-ratio: 390 / 780;
  }
}

.section-title__mobile {
  display: none;
}

.section-title__desktop,
.section-title__mobile {
  color: inherit;
  text-decoration: none;
}

.section-subtitle {
  color: rgba(229, 229, 229, 0.58);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.48;
  text-align: center;
  letter-spacing: 0;
}

.tech-section__title {
  margin-top: 28px;
}

.tech-section__subtitle {
  width: min(680px, 100%);
  margin-top: 28px;
}

.tech-board {
  --tech-board-map-flex: 1 1 0;
  --tech-board-info-width: 532px;
  position: relative;
  z-index: 2;
  display: flex;
  contain: layout paint style;
  flex-direction: row;
  align-items: stretch;
  width: min(1110px, 100%);
  margin: 72px auto 0;
  gap: 0;
  overflow: hidden;
  transform: translateY(var(--tech-content-y));
  border: 1px solid rgba(230, 238, 255, 0.13);
  border-radius: 32.459px;
  border: 0.887px solid #1A203D;
  background: rgba(13, 15, 27, 0.85);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.070),
    inset 0 -1px 0 rgba(255, 255, 255, 0.030),
    inset 14px 0 38px -38px rgba(var(--active-node-rgb), 0.055),
    inset -14px 0 38px -38px rgba(var(--active-node-rgb), 0.055),
    0 24px 80px rgba(0, 0, 0, 0.18),
    0 0 74px rgba(var(--active-node-rgb), 0.060);
  backdrop-filter: blur(24px) saturate(1.24) brightness(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.24) brightness(1.08);
  padding: 21px 21px 21px 0px;
  isolation: isolate;
  transition:
    background 620ms var(--ease-premium),
    border-color 620ms var(--ease-premium),
    box-shadow 620ms var(--ease-premium);
}

.tech-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-board::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at -2% 18%, rgba(var(--active-node-rgb), 0.010), transparent 17%),
    radial-gradient(ellipse at 102% 82%, rgba(var(--active-node-rgb), 0.012), transparent 19%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.010), transparent 10% 90%, rgba(255, 255, 255, 0.009));
  opacity: 0.26;
  mix-blend-mode: screen;
  transition:
    background 620ms var(--ease-premium),
    opacity 620ms var(--ease-premium);
}

.tech-board::after {
  content: none;
}

.tech-board__marks {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.tech-board__mark {
  position: absolute;
  display: block;
}

.tech-board__mark--top {
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.tech-board__mark--bottom {
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.tech-board__mark--left {
  top: 50%;
  left: -137px;
  transform: translateY(-50%) rotate(90deg);
}

.tech-board__mark--right {
  top: 50%;
  right: -137px;
  transform: translateY(-50%) rotate(-90deg);
}

.tech-section.is-tech-intro-idle .tech-board {
  opacity: 0;
  transform: translate3d(0, calc(var(--tech-content-y) + 56px), -90px) rotateX(7deg) scale(0.965);
}

.tech-section.is-tech-intro-running .tech-board {
  animation: techIntroBoardReveal 640ms var(--ease-cinematic) both;
  pointer-events: none;
}

.tech-section.is-tech-intro-running:not(.is-tech-info-intro-visible) .tech-info {
  opacity: 0;
  transform: translate3d(38px, 28px, -70px) rotateY(-4deg) scale(0.972);
}

.tech-section.is-tech-intro-running .tech-board__side--map {
  animation: techIntroMapReveal 560ms var(--ease-cinematic) 280ms both;
}

.tech-board__side {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  align-items: stretch;
}

.tech-board__side--map {
  flex: var(--tech-board-map-flex);
}

.tech-board__side--info {
  flex: 0 0 var(--tech-board-info-width);
  justify-content: flex-end;
}



/* === EDIT BLOCK: team map layout ===
   Change only these variables to tune the left tech map.
   - --team-bg-* controls the exported Figma background SVG.
   - --team-center-* controls the main blue circle.
   - --team-*-x/y controls each member node position.
   - --team-*-rgb controls hover/active glow color for node + wire.
   To replace circles/badges/wires from Figma: paste SVG code in the EDIT BLOCK comments in index.html.
*/
.tech-map {
  box-sizing: border-box;
  flex: 1 1 auto;
  display: flex;
  width: 100%;
  min-height: calc(var(--team-stage-height) * var(--team-stage-scale));
  align-items: center;
  justify-content: center;
  overflow: visible;
  --team-stage-width: 548px;
  --team-stage-height: 330px;
  --team-stage-scale: 1.05;
  --team-label-scale: 0.9524;
  --team-stage-x: 0px;
  --team-stage-y: 0px;
  --team-bg-x: 50%;
  --team-bg-y: 50%;
  --team-bg-width: 548px;
  --team-bg-height: 355px;
  --team-bg-origin-x: -49.09%;
  --team-bg-origin-y: -44.79%;
  --team-center-x: 50%;
  --team-center-y: 50%;
  --team-center-origin-x: -50%;
  --team-center-origin-y: calc(-50% + 3px);
  --team-node-label-gap: 14px;
  --team-wire-width: 2;
  --team-wire-active-width: 2.64;
  --team-node-active-stroke-width: 1.5125px;
  --team-wire-frontend-x: 150.846px;
  --team-wire-frontend-y: 65.855px;
  --team-wire-backend-x: 264.676px;
  --team-wire-backend-y: 29px;
  --team-wire-seo-x: 155.258px;
  --team-wire-seo-y: 158.1px;
  --team-wire-designer-x: 280px;
  --team-wire-designer-y: 159px;
  --team-frontend-x: 55px;
  --team-frontend-y: 60px;
  --team-backend-x: 315px;
  --team-backend-y: 30px;
  --team-seo-x: 70px;
  --team-seo-y: 210px;
  --team-designer-x: 330px;
  --team-designer-y: 200px;
  --team-guide-start-x: 274px;
  --team-guide-start-y: 165px;
  --team-guide-target-x: calc(var(--team-frontend-x) + 83px - 38px);
  --team-guide-target-y: calc(var(--team-frontend-y) + 28px - 38px);
  --team-active-orb-size: 18px;
  --team-active-orb-half: 9px;
  --team-active-orb-lift: 48px;
  --team-frontend-rgb: 110, 82, 180;
  --team-backend-rgb: 101, 76, 63;
  --team-seo-rgb: 104, 50, 100;
  --team-designer-rgb: 49, 102, 89;
  --active-node-rgb: var(--team-frontend-rgb);
  --active-node-x: calc(var(--team-frontend-x) + 83px);
  --active-node-y: calc(var(--team-frontend-y) + 27px);
}

.tech-map__stage {
  position: relative;
  flex: 0 0 auto;
  width: var(--team-stage-width);
  min-width: var(--team-stage-width);
  height: var(--team-stage-height);
  overflow: visible;
  transform: translate(var(--team-stage-x), var(--team-stage-y)) scale(var(--team-stage-scale));
  transform-origin: 50% 50%;
}

.tech-section.is-tech-intro-running .tech-map__grid {
  animation: techIntroGridReveal 600ms var(--ease-cinematic) 450ms both;
}

.tech-section.is-tech-intro-running .tech-map__center {
  animation: techIntroCenterReveal 600ms var(--ease-cinematic) 650ms both;
}

.tech-section.is-tech-intro-running:not(.is-tech-info-intro-visible) .tech-map__wire-active {
  opacity: 0;
}

.tech-section.is-tech-intro-running .tech-map__wire-svg .tech-map__wire {
  stroke-dasharray: 1.015;
  stroke-dashoffset: 1.015;
  opacity: 0;
  animation: techIntroWireDraw 520ms linear both;
}

.tech-section.is-tech-intro-running .tech-map__wire-svg--frontend .tech-map__wire {
  animation-delay: 3930ms;
}

.tech-section.is-tech-intro-running .tech-map__wire-svg--backend .tech-map__wire {
  animation-delay: 3130ms;
}

.tech-section.is-tech-intro-running .tech-map__wire-svg--seo .tech-map__wire {
  animation-delay: 2330ms;
}

.tech-section.is-tech-intro-running .tech-map__wire-svg--designer .tech-map__wire {
  animation-delay: 1530ms;
}

.tech-section.is-tech-intro-running .tech-node {
  opacity: 0;
  pointer-events: none;
  animation: techIntroNodeReveal 1120ms var(--ease-tech-in-out) both;
}

.tech-section.is-tech-intro-running .tech-node--frontend {
  animation-delay: 3650ms;
}

.tech-section.is-tech-intro-running .tech-node--backend {
  animation-delay: 2850ms;
}

.tech-section.is-tech-intro-running .tech-node--seo {
  animation-delay: 2050ms;
}

.tech-section.is-tech-intro-running .tech-node--designer {
  animation-delay: 1250ms;
}

.tech-section.is-tech-intro-running:not(.is-tech-info-intro-visible) .tech-node.is-active,
.tech-section.is-tech-intro-running:not(.is-tech-info-intro-visible) .tech-node.is-active .tech-node__dot {
  filter: none;
  transform: none;
}

.tech-section.is-tech-intro-running.is-tech-info-intro-visible .tech-node--frontend {
  opacity: 1;
  animation: none;
}

.tech-map[data-active-tech="backend"] {
  --active-node-rgb: var(--team-backend-rgb);
  --active-node-x: calc(var(--team-backend-x) + 83px);
  --active-node-y: calc(var(--team-backend-y) + 27px);
}

.tech-map[data-active-tech="seo"] {
  --active-node-rgb: var(--team-seo-rgb);
  --active-node-x: calc(var(--team-seo-x) + 83px);
  --active-node-y: calc(var(--team-seo-y) + 27px);
}

.tech-map[data-active-tech="designer"] {
  --active-node-rgb: var(--team-designer-rgb);
  --active-node-x: calc(var(--team-designer-x) + 83px);
  --active-node-y: calc(var(--team-designer-y) + 27px);
}

.tech-map__grid {
  position: absolute;
  z-index: 0;
  top: var(--team-bg-y);
  left: var(--team-bg-x);
  width: var(--team-bg-width);
  height: var(--team-bg-height);
  background: url("../../assets-app/img/team-map-bg.svg") center / contain no-repeat;
  opacity: 0.92;
  transform: translate(var(--team-bg-origin-x), var(--team-bg-origin-y));
}

.tech-map__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background: radial-gradient(circle at var(--active-node-x) var(--active-node-y),
      rgba(var(--active-node-rgb), 0.16) 0,
      rgba(var(--active-node-rgb), 0.07) 44px,
      rgba(var(--active-node-rgb), 0.025) 70px,
      transparent 92px);
  mask: url("../../assets-app/img/team-map-bg.svg") center / contain no-repeat;
  -webkit-mask: url("../../assets-app/img/team-map-bg.svg") center / contain no-repeat;
  mix-blend-mode: screen;
  transition:
    background 520ms var(--ease-premium),
    opacity 520ms var(--ease-premium);
}

.tech-map__rings {
  display: none;
}

.tech-map__wires {
  position: absolute;
  z-index: 2;
  top: var(--team-bg-y);
  left: var(--team-bg-x);
  width: var(--team-bg-width);
  height: var(--team-bg-height);
  overflow: visible;
  transform: translate(var(--team-bg-origin-x), var(--team-bg-origin-y));
}

.tech-map__wire-svg {
  --wire-glow: 110, 82, 180;
  position: absolute;
  display: block;
  opacity: 1;
  overflow: visible;
  transition: opacity 420ms var(--ease-premium);
}

.tech-map__wire-svg.is-active {
  opacity: 1;
}

.tech-map__wire,
.tech-map__wire-active {
  fill: none;
  stroke-width: var(--team-wire-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tech-map__wire {
  opacity: 0.64;
  transition:
    opacity 520ms var(--ease-premium),
    stroke-width 520ms var(--ease-premium);
}

.tech-map__wire-active {
  opacity: 0;
  stroke-dasharray: 1.015;
  stroke-dashoffset: 0;
  transition:
    opacity 520ms var(--ease-premium),
    stroke-width 520ms var(--ease-premium);
}

.tech-map__wire-svg--frontend {
  --wire-glow: var(--team-frontend-rgb);
  top: var(--team-wire-frontend-y);
  left: var(--team-wire-frontend-x);
}

.tech-map__wire-svg--backend {
  --wire-glow: var(--team-backend-rgb);
  top: var(--team-wire-backend-y);
  left: var(--team-wire-backend-x);
}

.tech-map__wire-svg--seo {
  --wire-glow: var(--team-seo-rgb);
  top: var(--team-wire-seo-y);
  left: var(--team-wire-seo-x);
}

.tech-map__wire-svg--designer {
  --wire-glow: var(--team-designer-rgb);
  top: var(--team-wire-designer-y);
  left: var(--team-wire-designer-x);
}

.tech-map__wire-svg.is-active .tech-map__wire {
  opacity: 0.64;
  stroke-width: var(--team-wire-width);
}

.tech-map__wire-svg.is-active .tech-map__wire-active {
  opacity: 1;
  stroke-width: var(--team-wire-active-width);
}

.tech-map__wire-svg.is-animating .tech-map__wire-active {
  animation: techWireDraw 500ms linear both;
}

.tech-map__center {
  position: absolute;
  z-index: 3;
  top: var(--team-center-y);
  left: var(--team-center-x);
  display: grid;
  place-items: center;
  transform: translate(var(--team-center-origin-x), var(--team-center-origin-y)) scale(var(--team-center-scale, 1));
  transform-origin: 50% 50%;
}

.tech-map__center svg {
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
}

.tech-node {
  --node-rgb: var(--team-frontend-rgb);
  position: absolute;
  z-index: 4;
  display: grid;
  width: 166px;
  min-height: 92px;
  grid-template-rows: auto auto;
  row-gap: var(--team-node-label-gap);
  justify-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  transform-origin: center;
  transition:
    transform 420ms var(--ease-premium),
    filter 420ms var(--ease-premium);
}

.tech-node__dot {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: scale(var(--team-dot-scale, 1));
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.34),
    0 4px 10px rgba(0, 0, 0, 0.26);
  transition:
    transform 420ms var(--ease-premium),
    filter 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium);
}

.tech-node__dot svg {
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
}

.tech-map__active-orb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: var(--team-active-orb-size);
  height: var(--team-active-orb-size);
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(var(--active-node-rgb), 0.22);
  border-radius: 999px;
  background: #1B1825;
  box-shadow:
    0 7px 14px rgba(0, 0, 0, 0.32),
    0 3px 7px rgba(0, 0, 0, 0.25),
    0 0 9px rgba(var(--active-node-rgb), 0.14);
  transform:
    translate3d(calc(var(--active-node-x) - var(--team-active-orb-half)),
      calc(var(--active-node-y) - var(--team-active-orb-lift) - var(--team-active-orb-half)),
      0) scale(0.58);
  transition:
    transform 760ms var(--ease-apple-out),
    opacity 460ms var(--ease-premium),
    border-color 760ms var(--ease-premium),
    box-shadow 760ms var(--ease-premium);
  will-change: transform, opacity;
}

.tech-map__active-orb::before,
.tech-map__active-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.tech-map__active-orb::before {
  inset: 3px;
  border: 1px solid rgba(var(--active-node-rgb), 0.48);
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--active-node-rgb), 0.24) 0%, rgba(var(--active-node-rgb), 0.15) 44%, rgba(13, 15, 27, 0.86) 100%),
    #171D37;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.08),
    0 0 6px rgba(var(--active-node-rgb), 0.28),
    0 0 12px rgba(var(--active-node-rgb), 0.12);
  transition:
    border-color 760ms var(--ease-premium),
    background 760ms var(--ease-premium),
    box-shadow 760ms var(--ease-premium);
  animation: techActiveOrbGlow 2.4s ease-in-out infinite;
}

.tech-map__active-orb::after {
  inset: -4px;
  background: radial-gradient(circle, rgba(var(--active-node-rgb), 0.08), rgba(var(--active-node-rgb), 0.030) 48%, transparent 74%);
  filter: blur(1px);
  opacity: 0.62;
  transition:
    background 760ms var(--ease-premium),
    opacity 760ms var(--ease-premium);
}

.tech-map.has-active-orb .tech-map__active-orb {
  opacity: 1;
  transform:
    translate3d(calc(var(--active-node-x) - var(--team-active-orb-half)),
      calc(var(--active-node-y) - var(--team-active-orb-lift) - var(--team-active-orb-half)),
      0) scale(1);
}

.tech-map.is-active-orb-spawning .tech-map__active-orb {
  animation: techActiveOrbSpawn 740ms var(--ease-apple-out) both;
}

.tech-guide-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 76px;
  height: 76px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--team-guide-start-x), var(--team-guide-start-y), 0) scale(0.88);
  transform-origin: 50% 50%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 128, 222, 0.30) 0, rgba(78, 128, 222, 0.13) 34%, rgba(78, 128, 222, 0) 72%);
  filter: drop-shadow(0 0 18px rgba(95, 150, 255, 0.30));
}

.tech-guide-cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f4f8ff;
  box-shadow:
    0 0 10px rgba(210, 228, 255, 0.95),
    0 0 24px rgba(73, 125, 213, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.30);
  transform: translate(-50%, -50%);
}

.tech-guide-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(170, 156, 255, 0.62);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.32);
  box-shadow:
    0 0 22px rgba(110, 82, 180, 0.30),
    inset 0 0 18px rgba(110, 82, 180, 0.12);
}

.tech-section.is-tech-intro-running .tech-guide-cursor {
  animation: techGuideCursorMove 2300ms var(--ease-apple-out) 4650ms both;
}

.tech-section.is-tech-guide-clicking .tech-guide-cursor::after {
  animation: techGuideCursorClick 620ms var(--ease-cinematic) both;
}

.tech-node__outer-stroke,
.tech-node__outer-stroke-active {
  vector-effect: non-scaling-stroke;
}

.tech-node__outer-stroke-active {
  fill: none;
  stroke: rgb(var(--node-rgb));
  stroke-width: 1.375px;
  stroke-linejoin: round;
  stroke-dasharray: 1.015;
  stroke-dashoffset: 0;
  opacity: 0;
  transition:
    opacity 520ms var(--ease-premium),
    stroke-width 520ms var(--ease-premium);
}

.tech-node__label {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  min-width: var(--team-badge-width, 0px);
  max-width: none;
  height: 34.583px;
  padding: 0 14.814px;
  justify-content: center;
  align-items: center;
  gap: 11.925px;
  border-radius: 19.08px;
  border: 1.058px solid rgba(26, 32, 61, 0.49);
  background: #0D0F1B;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 12px 22px rgba(0, 0, 0, 0.28),
    0 3px 9px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter;
  font-size: 14.31px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  text-wrap: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  transform: scale(var(--team-label-scale));
  transform-origin: 50% 50%;
  box-sizing: border-box;
  transition:
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    filter 360ms var(--ease-premium);
}

.tech-node--frontend {
  --team-badge-width: 132px;
  top: var(--team-frontend-y);
  left: var(--team-frontend-x);
}

.tech-node--backend {
  --node-rgb: var(--team-backend-rgb);
  --team-badge-width: 148px;
  top: var(--team-backend-y);
  left: var(--team-backend-x);
}

.tech-node--seo {
  --node-rgb: var(--team-seo-rgb);
  --team-badge-width: 104px;
  top: var(--team-seo-y);
  left: var(--team-seo-x);
}

.tech-node--designer {
  --node-rgb: var(--team-designer-rgb);
  --team-badge-width: 124px;
  top: var(--team-designer-y);
  left: var(--team-designer-x);
}

.tech-node:hover,
.tech-node.is-active {
  transform: translateY(-2px);
  filter: saturate(1.12);
}

.tech-node:hover .tech-node__dot {
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.36),
    0 4px 10px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(var(--node-rgb), 0.18);
}

.tech-node:hover .tech-node__label {
  border-color: rgba(var(--node-rgb), 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    0 12px 22px rgba(0, 0, 0, 0.26),
    0 3px 8px rgba(0, 0, 0, 0.22);
  filter: none;
}

.tech-node.is-active .tech-node__dot {
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 5px 12px rgba(0, 0, 0, 0.30),
    0 0 20px rgba(var(--node-rgb), 0.28);
  transform: scale(var(--team-dot-active-scale, 1.15));
}

.tech-node.is-active .tech-node__outer-stroke-active {
  opacity: 1;
  stroke-width: var(--team-node-active-stroke-width);
}

.tech-node.is-animating .tech-node__outer-stroke-active {
  animation: techOuterStrokeSweep 500ms linear both;
}

.tech-node.is-active .tech-node__label {
  border-color: rgba(var(--node-rgb), 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36),
    0 13px 24px rgba(0, 0, 0, 0.28),
    0 3px 9px rgba(0, 0, 0, 0.23);
  filter: none;
}

.tech-info {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  padding: 35px 33px 32px 33px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 32.459px;
  border: 0.887px solid rgba(45, 49, 67, 0.70);
  background: rgba(13, 15, 27, 0.44);
  transform-origin: 50% 46%;
  transition:
    border-color 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.tech-info::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -1px;
  top: 66px;
  bottom: 50px;
  width: 2px;
  border-radius: 999px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--active-node-rgb), 0.81) 0%, rgba(var(--active-node-rgb), 0.21) 100%);
  box-shadow:
    0 0 18px rgba(var(--active-node-rgb), 0.46),
    0 0 42px rgba(var(--active-node-rgb), 0.18);
  pointer-events: none;
  transform-origin: 50% 50%;
  transition:
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.tech-info__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  align-self: stretch;
  transform-origin: 50% 42%;
  will-change: opacity, transform;
}

.tech-info.is-tech-info-revealing {
  animation: techInfoPanelReveal 1500ms var(--ease-cinematic) both;
}

.tech-info.is-tech-info-revealing::before {
  animation: techInfoLineReveal 1500ms var(--ease-cinematic) both;
}

.tech-info.is-tech-info-revealing .tech-info__role {
  animation: techInfoRevealFromTop 820ms var(--ease-cinematic) 30ms both;
}

.tech-info.is-tech-info-revealing .tech-info__title {
  animation: techInfoRevealTitleWave 920ms var(--ease-cinematic) 120ms both;
}

.tech-info.is-tech-info-revealing .tech-info__text {
  animation: techInfoRevealTextWave 940ms var(--ease-cinematic) 260ms both;
}

.tech-info.is-tech-info-revealing .tech-info__best {
  animation: techInfoRevealFromRight 820ms var(--ease-cinematic) 430ms both;
}

.tech-info.is-tech-info-revealing .tech-info__tags span {
  --badge-x: 0px;
  animation: techInfoBadgePop 540ms var(--ease-cinematic) both;
}

.tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(1) {
  --badge-x: -10px;
  animation-delay: 760ms;
}

.tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(2) {
  --badge-x: 8px;
  animation-delay: 870ms;
}

.tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(3) {
  --badge-x: -6px;
  animation-delay: 980ms;
}

.tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(4) {
  --badge-x: 10px;
  animation-delay: 1090ms;
}

.tech-info__main {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tech-info__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.tech-info__role {
  border-radius: 24.01px;
  border: 0.8px solid rgba(var(--active-node-rgb), 0.32);
  background:
    linear-gradient(0deg, rgba(var(--active-node-rgb), 0.11) 0%, rgba(var(--active-node-rgb), 0.055) 100%),
    rgba(13, 15, 27, 0.44);
  box-shadow:
    0 0.8px 6.403px 0 rgba(var(--active-node-rgb), 0.12),
    0 3.201px 9.604px -1.601px rgba(0, 0, 0, 0.18);
  display: flex;
  height: 39.216px;
  padding: 10.404px 20.008px;
  align-items: center;
  gap: 8.003px;
  transition:
    border-color 520ms var(--ease-premium),
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}


.tech-info__role-span {
  color: #fff;
  font-family: Manrope;
  font-size: 13.605px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.408px;
  transition: color 520ms var(--ease-premium), text-shadow 520ms var(--ease-premium);
}

.tech-info__title {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 6.8px rgba(0, 0, 0, 0.13);
  font-family: Satoshi;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.92px;
}

.tech-info__title span,
.tech-info__title em,
.tech-info__title strong {
  color: #fff;
  background: linear-gradient(90deg, var(--active-node-light) 0%, var(--active-node-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  -webkit-text-fill-color: transparent;
  font-family: Manrope;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;

}

.tech-info__text {
  --tech-info-text-lines: 3;
  display: -webkit-box;
  min-height: calc(1em * 1.52 * var(--tech-info-text-lines));
  height: calc(1em * 1.52 * var(--tech-info-text-lines));
  overflow: hidden;
  color: rgba(229, 229, 229, 0.54);
  font-family: "Inter", "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--tech-info-text-lines);
}

.tech-info__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-info__tags span {
  display: inline-flex;
  height: 37.787px;
  padding: 13.209px 18.289px;
  align-items: center;
  gap: 9.144px;
  padding: 0 15px;
  border: 1px solid rgba(var(--active-node-rgb), 0.30);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(var(--active-node-rgb), 0.18), rgba(var(--active-node-rgb), 0.09)),
    rgba(13, 15, 27, 0.34);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 8px 18px rgba(0, 0, 0, 0.18);
  transition:
    border-color 520ms var(--ease-premium),
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.tech-info__tags span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--active-node-rgb));
  box-shadow: 0 0 8px rgba(var(--active-node-rgb), 0.68);
  content: "";
  transition:
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.tech-info__best {
  display: flex;
  width: 100%;
  padding: 13px 15px;
  align-items: center;
  gap: 11px;
  align-self: stretch;
  border-radius: 15px;
  border: 0.887px solid rgba(var(--active-node-rgb), 0.24);
  background:
    linear-gradient(90deg, rgba(13, 15, 27, 0.54) 0.06%, rgba(var(--active-node-rgb), 0.16) 319.89%),
    rgba(13, 15, 27, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 13px 26px rgba(0, 0, 0, 0.20);
  transition:
    border-color 520ms var(--ease-premium),
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.tech-info__best svg>path {
  fill: transparent;
  transition: opacity 520ms var(--ease-premium);
}

.tech-info__best svg g path {
  fill: rgba(255, 255, 255, 0.10);
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 1.45px;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  transition:
    fill 520ms var(--ease-premium),
    stroke 520ms var(--ease-premium);
}

.tech-info__best svg {
  flex: 0 0 auto;
  border-radius: 10.088px;
  background:
    radial-gradient(circle at 50% 42%,
      rgba(var(--active-node-rgb), 0.34) 0%,
      rgba(var(--active-node-rgb), 0.58) 42%,
      rgba(var(--active-node-rgb), 0.88) 76%,
      rgba(255, 255, 255, 0.26) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 18px rgba(0, 0, 0, 0.24),
    inset 0 0 18px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(var(--active-node-rgb), 0.30),
    0 11px 24px rgba(0, 0, 0, 0.34),
    0 18px 38px rgba(var(--active-node-rgb), 0.12);
  transition:
    background 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}


.info__best_span {
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.857px;
  /* 163.265% */
  letter-spacing: 0.28px;
  white-space: nowrap;
}


.info__best_span strong {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.857px;
  letter-spacing: 0.28px;
}



@media (max-width: 1500px) {
  .tech-section {
    min-height: 660px;
    padding: 230px 96px 128px;
  }

  .tech-section__light {
    --tech-light-top: -466px;
    --tech-light-width: 890px;
  }

  .tech-board {
    --tech-board-info-width: 430px;
    width: min(980px, 100%);
    margin-top: 58px;
  }

  .tech-info {
    width: 394px;
    padding: 27px 28px;
  }

  .tech-info__title {
    font-size: 34px;
  }

  .tech-node__label {
    font-size: 11px;
  }

  .tech-map {
    --team-frontend-x: 88px;
    --team-frontend-y: 85px;
    --team-backend-x: 301px;
    --team-backend-y: 22px;
    --team-seo-x: 83px;
    --team-seo-y: 207px;
    --team-designer-x: 302px;
    --team-designer-y: 186px;
  }
}

@media (max-width: 999px) {
  .section-title__desktop {
    display: none;
  }

  .section-title__mobile {
    display: inline;
  }

  .section-title {
    font-size: clamp(32px, 6vw, 54px);
  }

  .tech-section {
    --tech-content-y: 0px;
    min-height: auto;
    padding: 82px 24px 72px;
  }

  .tech-section__light {
    --tech-light-top: -228px;
    --tech-light-width: 560px;
    --tech-light-opacity: 0.56;
  }

  .tech-board {
    --tech-board-info-width: 100%;
    flex-direction: column;
    width: min(560px, 100%);
    margin-top: 44px;
  }

  .tech-board__side--info {
    flex-basis: auto;
  }

  .tech-board__side--map,
  .tech-board__side--info {
    flex: 0 0 auto;
    width: 100%;
  }

  .tech-map {
    min-height: 300px;
    --team-stage-width: min(548px, 100%);
    --team-stage-height: 300px;
    --team-stage-scale: 1;
    --team-label-scale: 1;
    --team-frontend-x: 7%;
    --team-frontend-y: 64px;
    --team-backend-x: calc(93% - 166px);
    --team-backend-y: 45px;
    --team-seo-x: 4%;
    --team-seo-y: 186px;
    --team-designer-x: calc(96% - 166px);
    --team-designer-y: 212px;
  }

  .tech-info {
    width: auto;
    margin: 14px;
  }

  .tech-info__title {
    font-size: 31px;
  }

  .tech-map__grid,
  .tech-map__rings,
  .tech-map__center {
    left: 50%;
  }

}

.projects-section {
  position: relative;
  overflow: hidden;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  padding: 118px 200px 132px;
  border-top: 1px solid rgba(230, 238, 255, 0.08);
  background: var(--section-background);
  isolation: isolate;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(73, 125, 213, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 58%, rgba(0, 0, 0, 0.72) 74%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 0 58%, rgba(0, 0, 0, 0.72) 74%, transparent 92%);
}

.projects-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 2% 33%, rgba(110, 82, 180, 0.105), transparent 25%),
    radial-gradient(ellipse at 98% 45%, rgba(238, 244, 255, 0.050), transparent 25%),
    radial-gradient(ellipse at 18% 88%, rgba(110, 82, 180, 0.082), transparent 24%),
    radial-gradient(ellipse at 78% 90%, rgba(74, 128, 255, 0.09), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.24));
  mix-blend-mode: screen;
  opacity: 0.82;
}

.projects-section__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.projects-section__head {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1420px, calc(100vw - 128px));
  max-width: none;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.projects-section__badge {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.26px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.projects-section__badge-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(126, 170, 255, 0.70);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(126, 170, 255, 0.65) 41% 58%, transparent 59%),
    rgba(126, 170, 255, 0.08);
}

.projects-section__title {
  margin-top: 25px;
  line-height: 1.03;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.projects-section__subtitle {
  width: min(560px, 100%);
  margin-top: 22px;
  line-height: 1.45;
}

.projects-section__all {
  position: absolute;
  right: 8px;
  bottom: -48px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(126, 170, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(11, 17, 32, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 34px rgba(0, 0, 0, 0.20),
    0 0 28px rgba(47, 107, 255, 0.06);
  color: #8db6ff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  transition:
    transform 320ms var(--ease-premium),
    border-color 320ms var(--ease-premium),
    color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium);
}

.projects-section__all span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 170, 255, 0.12);
  color: #d9e7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 320ms var(--ease-premium), background 320ms var(--ease-premium);
}

.projects-section__all svg {
  width: 15px;
  height: 15px;
}

.projects-section__all path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.projects-section__all:hover,
.projects-section__all:focus-visible {
  color: #ffffff;
  border-color: rgba(126, 170, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 42px rgba(0, 0, 0, 0.25),
    0 0 34px rgba(47, 107, 255, 0.12);
  transform: translate3d(0, -2px, 0);
}

.projects-section__all:hover span,
.projects-section__all:focus-visible span {
  background: rgba(126, 170, 255, 0.22);
  transform: translateX(3px);
}

.projects-board {
  position: relative;
  z-index: 2;
  display: grid;
  contain: layout paint style;
  width: min(1420px, calc(100vw - 128px));
  margin: 72px auto 0;
  padding: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 32.459px;
  border: 0.887px solid #1A203D;
  background: rgba(13, 15, 27, 0.55);
}

.projects-slider-dots {
  display: none;
}

.project-card {
  --project-rgb: 110, 82, 180;
  --project-accent: #8b6cff;
  position: relative;
  isolation: isolate;
  contain: layout paint style;
  display: flex;
  height: 530px;
  overflow: hidden;
  padding: 23px 20px 22px;
  flex-direction: column;
}

/* Project card variants: edit only these direct card styles. */
.project-card--purple {
  order: 1;
  --project-rgb: 110, 82, 180;
  --project-accent: #8b6cff;
  border-radius: 27.465px;
  border: 1px solid #6D6ADE;
  background: linear-gradient(181deg, rgba(78, 90, 153, 0.10) -59.26%, rgba(26, 30, 51, 0.44) 38.32%);
  box-shadow: 0 -60px 120px 0 rgba(123, 97, 255, 0.08) inset;
}

.project-card--green {
  order: 4;
  --project-rgb: 38, 224, 171;
  --project-accent: #20e3ac;
  border-radius: 27.465px;
  border: 1px solid rgba(217, 255, 228, 0.16);
  background: rgba(26, 30, 51, 0.44);
  box-shadow: 0 -60px 120px 0 rgba(97, 255, 200, 0.06) inset;
}

.project-card--blue {
  order: 3;
  --project-rgb: 72, 132, 255;
  --project-accent: #4f8cff;
  border-radius: 27.465px;
  border: 1px solid rgba(159, 196, 255, 0.18);
  background: rgba(26, 30, 51, 0.44);
  box-shadow: 0 -60px 120px 0 rgba(97, 152, 255, 0.10) inset;
}

.project-card--silver {
  order: 2;
  --project-rgb: 214, 218, 224;
  --project-accent: #e2e5ea;
  border-radius: 27.465px;
  border: 1px solid rgba(238, 241, 247, 0.16);
  background: rgba(26, 30, 51, 0.44);
  box-shadow: 0 -60px 120px 0 rgba(255, 255, 255, 0.045) inset;
}

.project-card__top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card__type,
.project-card__year {
  --badge-rgb: var(--project-rgb);
  --badge-accent: var(--project-accent);
  display: inline-flex;
  height: 31px;
  align-items: center;
  border: 1px solid rgba(var(--badge-rgb), 0.34);
  border-radius: 999px;
  background: rgba(var(--badge-rgb), 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transform: scale(1.1);
  transform-origin: center;
}

.project-card__type {
  gap: 8px;
  padding: 0 14px;
  transform-origin: left center;
}

.project-card__type span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--badge-accent);
  box-shadow: 0 0 9px rgba(var(--badge-rgb), 0.72);
}

.project-card__year {
  min-width: 51px;
  justify-content: center;
  padding: 0 13px;
  transform-origin: right center;
}

.project-card__badge--purple,
.project-card__tag--purple {
  --badge-rgb: 110, 82, 180;
  --badge-accent: #8b6cff;
}

.project-card__badge--green,
.project-card__tag--green {
  --badge-rgb: 38, 224, 171;
  --badge-accent: #20e3ac;
}

.project-card__badge--blue,
.project-card__tag--blue {
  --badge-rgb: 72, 132, 255;
  --badge-accent: #4f8cff;
}

.project-card__badge--silver,
.project-card__tag--silver {
  --badge-rgb: 214, 218, 224;
  --badge-accent: #e2e5ea;
}

.project-card__visual {
  position: absolute;
  top: 78px;
  left: 50%;
  z-index: 0;
  width: 656px;
  height: 270px;
  margin: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + 18px));
}

.project-card__screen {
  position: absolute;
  bottom: 0;
  left: 50%;
  overflow: visible;
  border: 0;
  background: none;
  box-shadow: none;
  transform: translate(-50%, 25px);
}

.project-card__screen::after {
  content: none;
}

.project-card__screen img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.project-card__floaters {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.project-card__floater {
  --project-floater-scale: 0.93;
  position: absolute;
  border: 0;
  background: none;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  animation: projectFloaterLevitate 6.8s var(--ease-tech-in-out) infinite;
}

.project-card__floater--asset {
  width: auto;
  height: auto;
  filter: none;
}

.project-card__floater--asset img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  filter:
    drop-shadow(0 38px 30px rgba(0, 0, 0, 0.62)) drop-shadow(0 18px 18px rgba(0, 0, 0, 0.44)) drop-shadow(0 16px 42px rgba(var(--project-rgb), 0.25)) drop-shadow(0 0 22px rgba(var(--project-rgb), 0.20));
}

.project-card__floater--left {
  top: 58px;
  left: -10px;
}

.project-card__floater--right {
  top: -20px;
  right: 44px;
  animation-name: projectFloaterLevitateAlt;
  animation-duration: 7.4s;
}

.project-card:nth-child(1) .project-card__floater--left {
  animation-delay: -0.8s;
}

.project-card:nth-child(1) .project-card__floater--right {
  animation-delay: -2.1s;
}

.project-card:nth-child(2) .project-card__floater--left {
  animation-delay: -1.6s;
  animation-duration: 7.2s;
}

.project-card:nth-child(2) .project-card__floater--right {
  animation-delay: -3.0s;
  animation-duration: 8.0s;
}

.project-card:nth-child(3) .project-card__floater--left {
  animation-delay: -2.5s;
  animation-duration: 7.8s;
}

.project-card:nth-child(3) .project-card__floater--right {
  animation-delay: -1.1s;
  animation-duration: 6.9s;
}

.project-card:nth-child(4) .project-card__floater--left {
  animation-delay: -3.4s;
  animation-duration: 8.2s;
}

.project-card:nth-child(4) .project-card__floater--right {
  animation-delay: -2.7s;
  animation-duration: 7.6s;
}

.project-card--blue .project-card__floater--left,
.project-card--silver .project-card__floater--left {
  top: 48px;
  left: -20px;
}

.project-card--silver .project-card__floater--right {
  top: -25px;
  right: 39px;
}

.project-card--silver .project-card__floater--asset img {
  filter:
    drop-shadow(0 38px 30px rgba(0, 0, 0, 0.64)) drop-shadow(0 18px 18px rgba(0, 0, 0, 0.46)) drop-shadow(0 14px 36px rgba(255, 255, 255, 0.16)) drop-shadow(0 0 22px rgba(226, 229, 234, 0.18));
}

.project-card__info {
  position: relative;
  z-index: 999;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "title title title"
    "subtitle subtitle subtitle"
    "tags tags tags"
    "stack-icon stack-text link";
  padding: 28px 29px;
  align-items: center;
  column-gap: 11.88px;
  row-gap: 11px;
  align-self: stretch;
  margin-top: auto;
  overflow: hidden;
  border-radius: 27.465px;
  border: 0.887px solid rgba(var(--project-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115) 0%, rgba(255, 255, 255, 0.030) 27%, rgba(255, 255, 255, 0.006) 58%, rgba(0, 0, 0, 0.12) 100%),
    radial-gradient(ellipse at 50% -28%, rgba(var(--project-rgb), 0.25), rgba(var(--project-rgb), 0.070) 40%, rgba(var(--project-rgb), 0) 74%),
    linear-gradient(180deg, rgba(var(--project-rgb), 0.080) -20%, rgba(var(--project-rgb), 0.020) 38%, rgba(0, 0, 0, 0.10) 100%),
    rgba(13, 15, 27, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    inset 0 0 34px rgba(var(--project-rgb), 0.060),
    inset 0 -52px 84px rgba(0, 0, 0, 0.30),
    0 26px 82px -10px rgba(0, 0, 0, 0.38),
    0 12px 52px -24px rgba(var(--project-rgb), 0.28);
  backdrop-filter: blur(18px) saturate(1.38) brightness(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.38) brightness(1.05);
}

.project-card__title {
  grid-area: title;
  display: block;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.25px;
  background: var(--project-title-gradient, linear-gradient(90deg, #AEACEB 0%, #FFF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
}

.project-card__title--purple {
  --project-title-gradient: linear-gradient(90deg, #AEACEB 0%, #FFF 100%);
}

.project-card__title--green {
  --project-title-gradient: linear-gradient(90deg, #9FFFE3 0%, #FFF 100%);
}

.project-card__title--blue {
  --project-title-gradient: linear-gradient(90deg, #9FC1FF 0%, #FFF 100%);
}

.project-card__title--silver {
  --project-title-gradient: linear-gradient(90deg, #DDE3EA 0%, #FFF 100%);
}

.project-card__subtitle {
  grid-area: subtitle;
  display: block;
  max-width: 465px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 140% */
  letter-spacing: -0.15px;
}

.project-card__subtitle strong {
  color: #FFF;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.15px;
}

.project-card__subtitle--purple {
  --project-subtitle-strong: #fff;
}

.project-card__subtitle--green {
  --project-subtitle-strong: #E5FFF7;
}

.project-card__subtitle--blue {
  --project-subtitle-strong: #E8F0FF;
}

.project-card__subtitle--silver {
  --project-subtitle-strong: #fff;
}

.project-card__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding: 3px 0;
}

.project-card__tag {
  --badge-rgb: var(--project-rgb);
  --badge-accent: var(--project-accent);
  display: inline-flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 12.336px 17.08px;
  border: 1px solid rgba(var(--badge-rgb), 0.16);
  border-radius: 999px;
  background: rgba(var(--badge-rgb), 0.10);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transform: scale(1.1);
  transform-origin: center;
}

.project-card__stack-icon {
  grid-area: stack-icon;
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.project-card__stack-text {
  grid-area: stack-text;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  color: rgba(255, 255, 255, 0.74);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.857px;
  /* 163.265% */
  letter-spacing: 0.28px;
}

.project-card__stack-text strong {
  color: #FFF;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.857px;
  /* 142.857% */
  letter-spacing: -0.32px;
}

.project-card__stack-text span {
  white-space: nowrap;
}

.project-card__link {
  grid-area: link;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.158px;
  transition:
    color 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.project-card__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card__link:hover {
  color: var(--project-accent);
  transform: translateX(3px);
}

.projects-section:not(.is-projects-revealed) .projects-section__badge,
.projects-section:not(.is-projects-revealed) .projects-section__title,
.projects-section:not(.is-projects-revealed) .projects-section__subtitle,
.projects-section:not(.is-projects-revealed) .projects-section__all,
.projects-section:not(.is-projects-revealed) .projects-board,
.projects-section:not(.is-projects-revealed) .project-card,
.projects-section:not(.is-projects-revealed) .project-card__visual,
.projects-section:not(.is-projects-revealed) .project-card__info,
.projects-section:not(.is-projects-revealed) .project-card__type,
.projects-section:not(.is-projects-revealed) .project-card__year {
  opacity: 0;
}

.projects-section:not(.is-projects-revealed) .projects-section__badge,
.projects-section:not(.is-projects-revealed) .projects-section__title,
.projects-section:not(.is-projects-revealed) .projects-section__subtitle,
.projects-section:not(.is-projects-revealed) .projects-section__all,
.projects-section:not(.is-projects-revealed) .projects-board,
.projects-section:not(.is-projects-revealed) .project-card__info {
  transform: translateY(34px) scale(0.985);
}

.projects-section:not(.is-projects-revealed) .project-card__info {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.projects-section:not(.is-projects-revealed) .project-card {
  transform: translateY(48px) scale(0.972);
}

.projects-section:not(.is-projects-revealed) .project-card__visual {
  transform: translateX(calc(-50% + 18px)) translateY(30px) scale(0.955);
}

.projects-section:not(.is-projects-revealed) .project-card__type,
.projects-section:not(.is-projects-revealed) .project-card__year {
  transform: translateY(14px) scale(1.04);
}

.projects-section.is-projects-revealed .projects-section__badge {
  animation: projectRevealUp 860ms var(--ease-cinematic) 80ms backwards;
}

.projects-section.is-projects-revealed .projects-section__title {
  animation: projectRevealUp 960ms var(--ease-cinematic) 210ms backwards;
}

.projects-section.is-projects-revealed .projects-section__subtitle {
  animation: projectRevealUp 900ms var(--ease-cinematic) 390ms backwards;
}

.projects-section.is-projects-revealed .projects-section__all {
  animation: projectRevealUp 900ms var(--ease-cinematic) 470ms backwards;
}

.projects-section.is-projects-revealed .projects-board {
  animation: projectBoardReveal 1080ms var(--ease-cinematic) 620ms backwards;
}

.projects-section.is-projects-revealed .project-card {
  animation: projectCardReveal 1050ms var(--ease-cinematic) 860ms backwards;
}

.projects-section.is-projects-revealed .project-card:nth-child(2) {
  animation-delay: 980ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(3) {
  animation-delay: 1100ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(4) {
  animation-delay: 1220ms;
}

.projects-section.is-projects-revealed .project-card__visual {
  animation: projectVisualReveal 1100ms var(--ease-cinematic) 1210ms backwards;
}

.projects-section.is-projects-revealed .project-card:nth-child(2) .project-card__visual {
  animation-delay: 1320ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(3) .project-card__visual {
  animation-delay: 1430ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(4) .project-card__visual {
  animation-delay: 1540ms;
}

.projects-section.is-projects-revealed .project-card__info {
  animation: projectInfoReveal 980ms var(--ease-cinematic) 1470ms backwards;
}

.projects-section.is-projects-revealed .project-card:nth-child(2) .project-card__info {
  animation-delay: 1580ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(3) .project-card__info {
  animation-delay: 1690ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(4) .project-card__info {
  animation-delay: 1800ms;
}

.projects-section.is-projects-revealed .project-card__type {
  animation: projectBadgeReveal 760ms var(--ease-cinematic) 2190ms backwards;
}

.projects-section.is-projects-revealed .project-card__year {
  animation: projectBadgeReveal 760ms var(--ease-cinematic) 2310ms backwards;
}

.projects-section.is-projects-revealed .project-card:nth-child(2) .project-card__type {
  animation-delay: 2430ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(2) .project-card__year {
  animation-delay: 2550ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(3) .project-card__type {
  animation-delay: 2670ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(3) .project-card__year {
  animation-delay: 2790ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(4) .project-card__type {
  animation-delay: 2910ms;
}

.projects-section.is-projects-revealed .project-card:nth-child(4) .project-card__year {
  animation-delay: 3030ms;
}

@keyframes projectRevealUp {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes projectBoardReveal {
  0% {
    opacity: 0;
    transform: translateY(44px) scale(0.982);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes projectCardReveal {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.972);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes projectVisualReveal {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% + 18px)) translateY(30px) scale(0.955);
  }

  100% {
    opacity: 1;
    transform: translateX(calc(-50% + 18px)) translateY(0) scale(1);
  }
}

@keyframes projectInfoReveal {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.982);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes projectBadgeReveal {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(1.04);
  }

  72% {
    opacity: 1;
    transform: translateY(-2px) scale(1.115);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }
}

@keyframes projectFloaterLevitate {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.7deg) scale(var(--project-floater-scale));
  }

  24% {
    transform: translate3d(-5px, -9px, 0) rotate(1.2deg) scale(var(--project-floater-scale));
  }

  52% {
    transform: translate3d(4px, -15px, 0) rotate(-1.7deg) scale(var(--project-floater-scale));
  }

  78% {
    transform: translate3d(7px, -6px, 0) rotate(0.9deg) scale(var(--project-floater-scale));
  }
}

@keyframes projectFloaterLevitateAlt {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.8deg) scale(var(--project-floater-scale));
  }

  28% {
    transform: translate3d(6px, -11px, 0) rotate(-1.4deg) scale(var(--project-floater-scale));
  }

  56% {
    transform: translate3d(-4px, -17px, 0) rotate(1.8deg) scale(var(--project-floater-scale));
  }

  82% {
    transform: translate3d(-8px, -7px, 0) rotate(-0.8deg) scale(var(--project-floater-scale));
  }
}

.stack-section {
  position: relative;
  overflow: hidden;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  padding: 102px 200px 126px;
  border-top: 1px solid rgba(230, 238, 255, 0.08);
  background: var(--section-background);
  isolation: isolate;
}

.stack-section::before,
.stack-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.stack-section::before {
  background:
    radial-gradient(ellipse at 50% 52%, rgba(126, 170, 255, 0.058), transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.24));
}

.stack-section::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 24%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% 66%, rgba(48, 106, 221, 0.075), transparent 260px);
  mix-blend-mode: screen;
  opacity: 0.84;
}

.stack-section__head {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack-section__badge {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.26px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.stack-section__badge-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(126, 170, 255, 0.70);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(126, 170, 255, 0.65) 41% 58%, transparent 59%),
    rgba(126, 170, 255, 0.08);
}

.stack-section__copy {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  align-items: center;
}

.stack-section__title {
  line-height: 1.07;
}

.stack-section__subtitle {
  width: min(650px, 100%);
  margin-top: 17px;
  line-height: 1.42;
}

.stack-showcase {
  /* EDIT TECHNOLOGY CARD POSITIONS */
  --stack-frontend-top: 112px;
  --stack-frontend-left: 137px;
  --stack-backend-top: 112px;
  --stack-backend-right: 137px;
  --stack-design-top: 390px;
  --stack-design-left: 142px;
  --stack-seo-top: 390px;
  --stack-seo-right: 138px;
  position: relative;
  z-index: 2;
  width: min(1052px, calc(100vw - 160px));
  height: 650px;
  margin: 46px auto 0;
}

.stack-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(3, 7, 17, 0.32) 0deg 90deg, transparent 90deg 180deg, rgba(3, 7, 17, 0.32) 180deg 270deg, transparent 270deg 360deg),
    radial-gradient(ellipse at 50% 50%, rgba(48, 106, 221, 0.125), rgba(48, 106, 221, 0.052) 260px, transparent 480px);
  mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.72) 64%, transparent 84%);
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.72) 64%, transparent 84%);
}

.stack-showcase__bg::before,
.stack-showcase__bg::after {
  position: absolute;
  z-index: 6;
  content: "";
  pointer-events: none;
}

.stack-showcase__bg::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.018) 22%, rgba(255, 255, 255, 0.09) 44%, rgba(255, 255, 255, 0.09) 56%, rgba(255, 255, 255, 0.018) 78%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(81, 134, 255, 0) 18%, rgba(81, 134, 255, 0.22) 36%, rgba(129, 178, 255, 0.82) 50%, rgba(81, 134, 255, 0.22) 64%, rgba(81, 134, 255, 0) 82%, transparent 100%);
  background-size: 100% 100%, 28% 100%;
  background-position: 0 0, -28% 0;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  animation: stackAxisTraceX 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.stack-showcase__bg::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.018) 22%, rgba(255, 255, 255, 0.09) 44%, rgba(255, 255, 255, 0.09) 56%, rgba(255, 255, 255, 0.018) 78%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(81, 134, 255, 0) 18%, rgba(81, 134, 255, 0.22) 36%, rgba(129, 178, 255, 0.82) 50%, rgba(81, 134, 255, 0.22) 64%, rgba(81, 134, 255, 0) 82%, transparent 100%);
  background-size: 100% 100%, 100% 28%;
  background-position: 0 0, 0 -28%;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  animation: stackAxisTraceY 4.8s cubic-bezier(0.16, 1, 0.3, 1) 560ms infinite;
}

.stack-showcase__tick {
  position: absolute;
  left: 50%;
  z-index: 9;
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(217, 217, 217, 0.27);
  pointer-events: none;
  transform: translateX(-50%);
}

.stack-showcase__tick--top {
  top: calc(50% - 205px);
}

.stack-showcase__tick--bottom {
  top: calc(50% + 171px);
}

.stack-showcase__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(74, 128, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 128, 255, 0.032) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  background-position: calc(50% + 12px) calc(50% + 12px), calc(50% + 12px) calc(50% + 12px);
  background-repeat: repeat, repeat;
  mask-image:
    radial-gradient(circle at 50% 50%, transparent 0 91px, #000 92px 48%, rgba(0, 0, 0, 0.72) 64%, transparent 84%);
  -webkit-mask-image:
    radial-gradient(circle at 50% 50%, transparent 0 91px, #000 92px 48%, rgba(0, 0, 0, 0.72) 64%, transparent 84%);
}

.stack-showcase__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(126, 170, 255, 0.075);
  background: transparent;
  box-shadow:
    inset 0 0 0 1.5px rgba(126, 170, 255, 0.020),
    0 0 52px rgba(48, 106, 221, 0.030);
  transform: translate(-50%, -50%);
  animation: stackCorePulse 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.stack-showcase__core::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.stack-showcase__core::after {
  inset: 40px;
  border: 1.5px solid rgba(126, 170, 255, 0.090);
  background: transparent;
  box-shadow: none;
  animation: stackInnerRingPulse 4.8s cubic-bezier(0.16, 1, 0.3, 1) 180ms infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.stack-showcase__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  display: block;
  width: 110px;
  height: auto;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 18px rgba(73, 125, 213, 0.16));
  transform: translate(-50%, -50%);
  animation: stackLogoPulse 4.8s cubic-bezier(0.16, 1, 0.3, 1) 120ms infinite;
  will-change: transform, opacity;
}

.stack-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 274px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stack-card--frontend {
  top: var(--stack-frontend-top);
  left: var(--stack-frontend-left);
}

.stack-card--backend {
  top: var(--stack-backend-top);
  right: var(--stack-backend-right);
}

.stack-card--design {
  top: var(--stack-design-top);
  left: var(--stack-design-left);
}

.stack-card--seo {
  top: var(--stack-seo-top);
  right: var(--stack-seo-right);
}

.stack-card__icons,
.stack-card__single-icon {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  border: 0.887px solid rgba(230, 238, 255, 0.08);
  border-radius: 15px;
  background: rgba(19, 22, 39, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.stack-card__icons {
  gap: 14px;
  padding: 9px 17px;
}

.stack-card__icons--small {
  padding: 9px 17px;
}

.stack-card__single-icon {
  padding: 10px;
}

.stack-tech-logo {
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  transition:
    filter 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.stack-tech-logo:hover,
.stack-tech-logo:focus-visible,
.stack-tech-logo.is-active {
  filter:
    drop-shadow(0 0 10px rgba(126, 170, 255, 0.44)) drop-shadow(0 0 24px rgba(73, 125, 213, 0.28));
  transform: translate3d(0, -2px, 0) scale(1.08);
}

.stack-tech-logo:focus-visible {
  box-shadow: 0 0 0 2px rgba(126, 170, 255, 0.42);
}

.stack-card__divider {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.065);
}

.stack-card__title {
  margin-top: 24px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
}

.stack-card__text {
  max-width: 266px;
  margin-top: 10px;
  color: rgba(229, 229, 229, 0.50);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.stack-info {
  --stack-info-scale: 0.82;
  --stack-info-scale-hidden: 0.791;
  --stack-info-scale-start: 0.754;
  --stack-info-scale-overshoot: 0.829;
  position: absolute;
  z-index: 12;
  top: var(--stack-info-y, 270px);
  left: var(--stack-info-x, 590px);
  display: flex;
  width: min(340px, calc(100% - 36px));
  padding: 18px 18px 17px;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(126, 170, 255, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026) 42%, rgba(0, 0, 0, 0.12)),
    radial-gradient(ellipse at 20% 0%, rgba(126, 170, 255, 0.20), transparent 48%),
    rgba(12, 16, 30, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    0 26px 72px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(73, 125, 213, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-26px, 6px, 0) scale(var(--stack-info-scale-hidden));
  transform-origin: 0 50%;
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  transition:
    opacity 520ms var(--ease-premium),
    transform 520ms var(--ease-premium),
    border-color 520ms var(--ease-premium);
}

.stack-section.has-stack-info .stack-info {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(var(--stack-info-scale));
}

.stack-info.is-stack-info-revealing {
  animation: stackInfoReveal 760ms var(--ease-cinematic) both;
}

.stack-info__eyebrow {
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(126, 170, 255, 0.28);
  border-radius: 999px;
  background: rgba(126, 170, 255, 0.09);
  color: #9fc1ff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.stack-info__title {
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.stack-info__text {
  color: rgba(229, 229, 229, 0.66);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.stack-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.stack-info__tags span {
  display: inline-flex;
  height: 25px;
  align-items: center;
  border: 1px solid rgba(126, 170, 255, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(126, 170, 255, 0.095);
  color: rgba(255, 255, 255, 0.86);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.stack-guide-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 13;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 128, 222, 0.30) 0, rgba(78, 128, 222, 0.13) 34%, rgba(78, 128, 222, 0) 72%);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(95, 150, 255, 0.30));
  transform: translate3d(var(--stack-guide-start-x, 50%), var(--stack-guide-start-y, 50%), 0) scale(0.88);
}

.stack-guide-cursor::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f4f8ff;
  box-shadow:
    0 0 10px rgba(210, 228, 255, 0.95),
    0 0 24px rgba(73, 125, 213, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.30);
  content: "";
  transform: translate(-50%, -50%);
}

.stack-guide-cursor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(126, 170, 255, 0.62);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(73, 125, 213, 0.30),
    inset 0 0 18px rgba(73, 125, 213, 0.12);
  opacity: 0;
  content: "";
  transform: translate(-50%, -50%) scale(0.32);
}

.stack-section.is-stack-guide-running .stack-guide-cursor {
  animation: stackGuideCursorMove 2300ms var(--ease-apple-out) both;
}

.stack-section.is-stack-guide-clicking .stack-guide-cursor::after {
  animation: stackGuideCursorClick 620ms var(--ease-cinematic) both;
}

@keyframes stackInfoReveal {
  0% {
    opacity: 0;
    transform: translate3d(-34px, 4px, 0) scale(var(--stack-info-scale-start));
  }

  68% {
    opacity: 1;
    transform: translate3d(3px, 0, 0) scale(var(--stack-info-scale-overshoot));
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(var(--stack-info-scale));
  }
}

@keyframes stackGuideCursorMove {
  0% {
    opacity: 0;
    transform: translate3d(var(--stack-guide-start-x), var(--stack-guide-start-y), 0) scale(0.78);
  }

  18% {
    opacity: 1;
    transform: translate3d(var(--stack-guide-start-x), var(--stack-guide-start-y), 0) scale(1);
  }

  74% {
    opacity: 1;
    transform: translate3d(var(--stack-guide-end-x), var(--stack-guide-end-y), 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--stack-guide-end-x), var(--stack-guide-end-y), 0) scale(0.88);
  }
}

@keyframes stackGuideCursorClick {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.28);
  }

  42% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__badge,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__title,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__subtitle,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-showcase__bg,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-showcase__core,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-showcase__logo,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-showcase__tick,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__icons,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__single-icon,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__title,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__text,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card img,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__divider {
  opacity: 0;
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__badge,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__title,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-section__subtitle {
  transform: translate3d(0, 26px, 0) scale(0.975);
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-showcase__bg {
  transform: scale(0.985);
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card {
  transform: translate3d(0, 34px, 0) scale(0.972);
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__icons,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__single-icon {
  transform: translate3d(0, 14px, 0) scale(0.94);
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__title,
.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card__text {
  transform: translate3d(0, 16px, 0);
}

.stack-section.is-stack-reveal-ready:not(.is-stack-revealed) .stack-card img {
  transform: translate3d(0, 12px, 0) scale(0.58);
}

.stack-section.is-stack-revealed .stack-section__badge {
  animation: stackRevealSoft 760ms var(--ease-cinematic) 40ms both;
}

.stack-section.is-stack-revealed .stack-section__title {
  animation: stackRevealSoft 900ms var(--ease-cinematic) 160ms both;
}

.stack-section.is-stack-revealed .stack-section__subtitle {
  animation: stackRevealSoft 860ms var(--ease-cinematic) 310ms both;
}

.stack-section.is-stack-revealed .stack-showcase__bg {
  animation: stackRevealGrid 1120ms var(--ease-cinematic) 520ms both;
}

.stack-section.is-stack-revealed .stack-showcase__tick {
  animation: stackRevealTick 820ms var(--ease-cinematic) 840ms both;
}

.stack-section.is-stack-revealed .stack-showcase__core {
  animation:
    stackRevealCenter 980ms var(--ease-cinematic) 720ms both,
    stackCorePulse 4.8s cubic-bezier(0.16, 1, 0.3, 1) 1700ms infinite;
}

.stack-section.is-stack-revealed .stack-showcase__logo {
  animation:
    stackRevealLogo 900ms var(--ease-cinematic) 900ms both,
    stackLogoPulse 4.8s cubic-bezier(0.16, 1, 0.3, 1) 1800ms infinite;
}

.stack-section.is-stack-revealed .stack-card {
  animation: stackRevealCard 920ms var(--ease-cinematic) 880ms both;
}

.stack-section.is-stack-revealed .stack-card--backend {
  animation-delay: 1020ms;
}

.stack-section.is-stack-revealed .stack-card--design {
  animation-delay: 1160ms;
}

.stack-section.is-stack-revealed .stack-card--seo {
  animation-delay: 1300ms;
}

.stack-section.is-stack-revealed .stack-card__icons,
.stack-section.is-stack-revealed .stack-card__single-icon {
  animation: stackRevealIconShell 760ms var(--ease-cinematic) 1420ms both;
}

.stack-section.is-stack-revealed .stack-card__title {
  animation: stackRevealText 700ms var(--ease-cinematic) 1320ms both;
}

.stack-section.is-stack-revealed .stack-card__text {
  animation: stackRevealText 760ms var(--ease-cinematic) 1460ms both;
}

.stack-section.is-stack-revealed .stack-card img {
  animation: stackRevealTechLogo 620ms var(--ease-cinematic) backwards;
}

.stack-section.is-stack-revealed .stack-card__divider {
  animation: stackRevealDivider 520ms var(--ease-cinematic) backwards;
}

.stack-section.is-stack-revealed .stack-card--frontend img:nth-of-type(1) {
  animation-delay: 1900ms;
}

.stack-section.is-stack-revealed .stack-card--frontend img:nth-of-type(2) {
  animation-delay: 2030ms;
}

.stack-section.is-stack-revealed .stack-card--frontend img:nth-of-type(3) {
  animation-delay: 2160ms;
}

.stack-section.is-stack-revealed .stack-card--backend img:nth-of-type(1) {
  animation-delay: 2290ms;
}

.stack-section.is-stack-revealed .stack-card--backend img:nth-of-type(2) {
  animation-delay: 2420ms;
}

.stack-section.is-stack-revealed .stack-card--backend img:nth-of-type(3) {
  animation-delay: 2550ms;
}

.stack-section.is-stack-revealed .stack-card--design img:nth-of-type(1) {
  animation-delay: 2680ms;
}

.stack-section.is-stack-revealed .stack-card--design img:nth-of-type(2) {
  animation-delay: 2810ms;
}

.stack-section.is-stack-revealed .stack-card--seo img:nth-of-type(1) {
  animation-delay: 2940ms;
}

.stack-section.is-stack-revealed .stack-card__divider:nth-of-type(1) {
  animation-delay: 2120ms;
}

.stack-section.is-stack-revealed .stack-card__divider:nth-of-type(2) {
  animation-delay: 2380ms;
}

@keyframes stackRevealSoft {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.975);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stackRevealGrid {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }

  58% {
    opacity: 1;
    transform: scale(1.006);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes stackRevealTick {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.2);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes stackRevealCenter {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  62% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.045);
  }

  100% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes stackRevealLogo {
  0% {
    opacity: 0;
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 18px rgba(73, 125, 213, 0.16));
    transform: translate(-50%, -50%) scale(0.70);
  }

  64% {
    opacity: 1;
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 26px rgba(73, 125, 213, 0.26));
    transform: translate(-50%, -50%) scale(1.055);
  }

  100% {
    opacity: 0.94;
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 18px rgba(73, 125, 213, 0.16));
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes stackRevealCard {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.972);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stackRevealIconShell {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stackRevealText {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes stackRevealTechLogo {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.58);
  }

  58% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.12);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stackRevealDivider {
  0% {
    opacity: 0;
    transform: scaleY(0.3);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes stackCorePulse {

  0%,
  100% {
    opacity: 0.86;
    border-color: rgba(126, 170, 255, 0.075);
    box-shadow:
      inset 0 0 0 1.5px rgba(126, 170, 255, 0.020),
      0 0 52px rgba(48, 106, 221, 0.030);
    transform: translate(-50%, -50%) scale(1);
  }

  44% {
    opacity: 1;
    border-color: rgba(126, 170, 255, 0.18);
    box-shadow:
      inset 0 0 0 1.5px rgba(126, 170, 255, 0.052),
      0 0 34px rgba(48, 106, 221, 0.12),
      0 0 96px rgba(48, 106, 221, 0.075);
    transform: translate(-50%, -50%) scale(1.035);
  }

  72% {
    opacity: 0.92;
    border-color: rgba(126, 170, 255, 0.095);
    box-shadow:
      inset 0 0 0 1.5px rgba(126, 170, 255, 0.030),
      0 0 58px rgba(48, 106, 221, 0.045);
    transform: translate(-50%, -50%) scale(0.992);
  }
}

@keyframes stackInnerRingPulse {

  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }

  42% {
    opacity: 1;
    border-color: rgba(126, 170, 255, 0.23);
    box-shadow: 0 0 30px rgba(48, 106, 221, 0.12);
    transform: scale(1.12);
  }

  72% {
    opacity: 0.78;
    transform: scale(0.97);
  }
}

@keyframes stackLogoPulse {

  0%,
  100% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1);
  }

  42% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.045);
  }

  72% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(0.992);
  }
}

@keyframes stackAxisTraceX {

  0%,
  18% {
    background-position: 0 0, -28% 0;
    opacity: 0.78;
  }

  48% {
    opacity: 1;
  }

  78%,
  100% {
    background-position: 0 0, 128% 0;
    opacity: 0.78;
  }
}

@keyframes stackAxisTraceY {

  0%,
  18% {
    background-position: 0 0, 0 -28%;
    opacity: 0.78;
  }

  48% {
    opacity: 1;
  }

  78%,
  100% {
    background-position: 0 0, 0 128%;
    opacity: 0.78;
  }
}

.globe-section {
  position: relative;
  overflow: hidden;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 970px;
  padding: 104px 200px 136px;
  border-top: 1px solid rgba(230, 238, 255, 0.08);
  background: var(--section-background);
  isolation: isolate;
}

.globe-section::before,
.globe-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.globe-section::before {
  background:
    radial-gradient(circle at 50% 68%, rgba(73, 125, 213, 0.11), transparent 320px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.30));
}

.globe-section::after {
  background:
    linear-gradient(rgba(73, 125, 213, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 65%, #000 0 38%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 65%, #000 0 38%, transparent 72%);
  opacity: 0.72;
}

.globe-section__head {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.globe-section__badge {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.globe-section__badge-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(126, 170, 255, 0.70);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 170, 255, 0.72), transparent 34%),
    rgba(126, 170, 255, 0.08);
}

.globe-section__title {
  margin-top: 24px;
  line-height: 1.07;
}

.globe-section__subtitle {
  width: min(650px, 100%);
  margin-top: 17px;
  line-height: 1.42;
}

@media (min-width: 1000px) {
  .stack-section__head,
  .globe-section__head {
    isolation: isolate;
  }

  .stack-section__head::after,
  .globe-section__head::after {
    position: absolute;
    top: 36px;
    left: 50%;
    z-index: -1;
    width: 390px;
    height: 86px;
    border-radius: 999px;
    background:
      radial-gradient(ellipse at 50% 48%, rgba(126, 170, 255, 0.16) 0%, rgba(47, 107, 255, 0.075) 36%, rgba(47, 107, 255, 0) 72%),
      linear-gradient(90deg, transparent 0%, rgba(126, 170, 255, 0.075) 48%, transparent 100%);
    content: "";
    filter: blur(12px);
    opacity: 0.72;
    transform: translateX(-50%);
    pointer-events: none;
    mix-blend-mode: screen;
  }

  .globe-section__head::after {
    width: 420px;
    opacity: 0.66;
  }
}

.globe-contacts {
  display: flex;
  margin-top: 42px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.globe-contact {
  --contact-rgb: 72, 126, 232;
  position: relative;
  display: inline-flex;
  min-width: 228px;
  height: 74px;
  align-items: center;
  gap: 13px;
  padding: 0 20px 0 15px;
  overflow: hidden;
  border: 1px solid rgba(var(--contact-rgb), 0.25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--contact-rgb), 0.25), transparent 46%),
    linear-gradient(180deg, rgba(22, 30, 52, 0.66), rgba(8, 13, 25, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -24px 54px rgba(var(--contact-rgb), 0.045),
    0 18px 48px rgba(0, 0, 0, 0.22),
    0 0 46px rgba(var(--contact-rgb), 0.070);
  color: #fff;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  transition:
    border-color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    background 320ms var(--ease-premium),
    transform 320ms var(--ease-premium);
}

.globe-contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.10) 45%, transparent 58%),
    radial-gradient(circle at 50% 120%, rgba(var(--contact-rgb), 0.10), transparent 48%);
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.globe-contact--telegram {
  --contact-rgb: 79, 149, 255;
}

.globe-contact--kwork {
  --contact-rgb: 86, 139, 255;
}

.globe-contact img {
  position: relative;
  z-index: 1;
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 20px rgba(var(--contact-rgb), 0.22));
}

.globe-contact__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.globe-contact__label {
  color: rgba(255, 255, 255, 0.94);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.globe-contact__text {
  color: rgba(210, 222, 246, 0.54);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.globe-contact-dots {
  display: none;
}

.globe-contact:hover,
.globe-contact:focus-visible {
  border-color: rgba(var(--contact-rgb), 0.44);
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--contact-rgb), 0.34), transparent 48%),
    linear-gradient(180deg, rgba(26, 36, 62, 0.76), rgba(9, 15, 30, 0.54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -28px 64px rgba(var(--contact-rgb), 0.070),
    0 22px 58px rgba(0, 0, 0, 0.28),
    0 0 62px rgba(var(--contact-rgb), 0.13);
  transform: translateY(-3px);
}

.globe-stage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 13%, rgba(126, 170, 255, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 8%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 28%, rgba(126, 170, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 74%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 32%);
  opacity: 0.7;
  overflow: hidden;
  pointer-events: none;
}

.globe-stage__bg::before,
.globe-stage__bg::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 340px;
  background-repeat: no-repeat;
  content: "";
  opacity: 0.58;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.globe-stage__bg::before {
  background-image:
    radial-gradient(circle, rgba(209, 226, 255, 0.74) 0 1.4px, rgba(126, 170, 255, 0.24) 1.8px, transparent 4px),
    radial-gradient(circle, rgba(126, 170, 255, 0.58) 0 1px, transparent 3.2px),
    radial-gradient(circle, rgba(235, 244, 255, 0.42) 0 1.1px, transparent 3px),
    radial-gradient(circle, rgba(91, 139, 255, 0.42) 0 1.2px, transparent 3.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 0.9px, transparent 2.8px);
  background-position: 18% 92%, 32% 108%, 54% 98%, 70% 116%, 86% 90%;
  background-size: 8px 8px, 7px 7px, 7px 7px, 8px 8px, 6px 6px;
  animation: globeBottomDustUp 10.5s linear infinite;
}

.globe-stage__bg::after {
  height: 300px;
  background-image:
    radial-gradient(circle, rgba(126, 170, 255, 0.48) 0 1px, transparent 3px),
    radial-gradient(circle, rgba(225, 238, 255, 0.36) 0 0.9px, transparent 2.8px),
    radial-gradient(circle, rgba(73, 125, 213, 0.46) 0 1.2px, transparent 3.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 0.9px, transparent 2.7px);
  background-position: 24% 116%, 45% 96%, 63% 112%, 78% 104%;
  background-size: 7px 7px, 6px 6px, 8px 8px, 6px 6px;
  animation: globeBottomDustUp 13s linear infinite -4.2s;
  opacity: 0.42;
}

@keyframes globeBottomDustUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
  }

  12%,
  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -220px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .globe-stage__bg::before,
  .globe-stage__bg::after {
    animation: none;
    opacity: 0.22;
    transform: none;
  }
}

.globe-section__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1200ms var(--ease-premium);
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 92%, transparent 100%);
}

.globe-section.is-globe-ready .globe-section__particles {
  opacity: 1;
}

.globe-section__satellites {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease-premium);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 94%, transparent 100%);
}

.globe-section.is-globe-ready.is-globe-assembled .globe-section__satellites {
  opacity: 1;
}

.globe-stage__canvas,
.globe-stage__fallback,
.globe-stage__static {
  position: absolute;
  left: 50%;
  bottom: -1055px;
  z-index: 2;
  display: block;
  width: min(1189px, 96vw);
  height: min(1189px, 96vw);
  transform: translateX(-50%);
}

.globe-stage__static {
  display: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1000px) {
  .globe-stage__static {
    display: none !important;
  }
}

.globe-stage__canvas {
  opacity: 0;
  transition: opacity 1100ms var(--ease-premium);
}

.globe-section.is-globe-ready .globe-stage__canvas {
  opacity: 0.08;
}

.globe-section.is-globe-ready.is-globe-assembled .globe-stage__canvas {
  opacity: 1;
}

.globe-stage__fallback {
  display: none;
}

.globe-stage__fallback span {
  display: none;
}

.globe-section.is-globe-fallback .globe-stage__canvas {
  display: none;
}

.globe-section.is-globe-fallback .globe-stage__fallback {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(180, 204, 255, 0.18), transparent 16%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 104, 190, 0.16), rgba(22, 34, 74, 0.06) 42%, transparent 66%);
  box-shadow:
    inset 0 1px 0 rgba(216, 228, 255, 0.24),
    inset 0 0 0 2px rgba(148, 172, 230, 0.08),
    0 -24px 90px rgba(74, 128, 255, 0.08);
  opacity: 1;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.54) 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.54) 76%, transparent 100%);
}

.globe-section.is-globe-fallback .globe-stage__fallback::before,
.globe-section.is-globe-fallback .globe-stage__fallback::after,
.globe-section.is-globe-fallback .globe-stage__fallback span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.globe-section.is-globe-fallback .globe-stage__fallback span {
  display: block;
  background-image:
    radial-gradient(circle, rgba(214, 225, 255, 0.54) 0 1px, transparent 1.7px);
  background-size: 13px 7px;
  background-position: center 10%;
  opacity: 0.58;
  transform: perspective(720px) rotateX(61deg) translateY(-6%);
  transform-origin: 50% 30%;
  mask-image: radial-gradient(ellipse at 50% 24%, #000 0 42%, rgba(0, 0, 0, 0.60) 58%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 24%, #000 0 42%, rgba(0, 0, 0, 0.60) 58%, transparent 78%);
  animation: globeFallbackDotsDrift 18s linear infinite;
}

.globe-section.is-globe-fallback .globe-stage__fallback::before {
  border: 3px solid rgba(204, 218, 255, 0.15);
  border-bottom-color: transparent;
  transform: scale(0.97);
}

.globe-section.is-globe-fallback .globe-stage__fallback::after {
  background:
    repeating-radial-gradient(ellipse at 50% 18%, transparent 0 24px, rgba(204, 218, 255, 0.07) 25px 26px, transparent 27px 52px);
  opacity: 0.42;
  transform: perspective(760px) rotateX(61deg) translateY(-5%);
  transform-origin: 50% 28%;
  animation: globeFallbackLatitudeDrift 22s linear infinite;
}

.globe-section.is-globe-ready .globe-stage__fallback {
  opacity: 0;
}

.globe-section.is-globe-ready.is-globe-fallback .globe-stage__fallback {
  opacity: 1;
}

.globe-section:not(.is-globe-revealed) .globe-section__badge,
.globe-section:not(.is-globe-revealed) .globe-section__title,
.globe-section:not(.is-globe-revealed) .globe-section__subtitle,
.globe-section:not(.is-globe-revealed) .globe-contacts,
.globe-section:not(.is-globe-revealed) .globe-stage__canvas,
.globe-section:not(.is-globe-revealed) .globe-stage__static,
.globe-section:not(.is-globe-revealed) .globe-stage__fallback {
  opacity: 0;
  transform: translate3d(-50%, 34px, 0) scale(0.985);
}

.globe-section:not(.is-globe-revealed) .globe-section__particles {
  opacity: 1;
  filter: none;
}

.globe-section.is-globe-revealed .globe-section__particles {
  opacity: 1;
  filter: none;
}

.globe-section:not(.is-globe-revealed) .globe-section__satellites {
  opacity: 0;
}

.globe-section.is-globe-revealed .globe-section__badge {
  animation: stackRevealSoft 760ms var(--ease-cinematic) 60ms both;
}

.globe-section.is-globe-revealed .globe-section__title {
  animation: stackRevealSoft 920ms var(--ease-cinematic) 180ms both;
}

.globe-section.is-globe-revealed .globe-section__subtitle {
  animation: stackRevealSoft 860ms var(--ease-cinematic) 340ms both;
}

.globe-section.is-globe-revealed .globe-contacts {
  animation: stackRevealSoft 880ms var(--ease-cinematic) 470ms both;
}

.globe-section.is-globe-revealed .globe-stage__canvas,
.globe-section.is-globe-revealed .globe-stage__static,
.globe-section.is-globe-revealed .globe-stage__fallback {
  animation: globeStageReveal 1180ms var(--ease-cinematic) 580ms both;
}

@keyframes globeStageReveal {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 54px, 0) scale(0.972);
  }

  64% {
    opacity: 1;
    transform: translate3d(-50%, -3px, 0) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

.reviews-section {
  position: relative;
  overflow: hidden;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 760px;
  padding: 106px 0 118px;
  border-top: 1px solid rgba(230, 238, 255, 0.055);
  background: var(--section-background);
  isolation: isolate;
}

.reviews-section::before,
.reviews-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.reviews-section::before {
  background:
    linear-gradient(rgba(73, 125, 213, 0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.020) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3, 7, 17, 0) 0%, rgba(3, 7, 17, 0.36) 100%),
    radial-gradient(circle at 50% 46%, rgba(126, 170, 255, 0.060), transparent 520px);
  background-size: 64px 64px, 64px 64px, auto, auto;
  mask-image: radial-gradient(ellipse at 50% 54%, #000 0 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, #000 0 54%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
}

.reviews-section::after {
  display: none;
}

.reviews-section__heart {
  position: absolute;
  top: 83px;
  left: 50%;
  z-index: 0;
  width: 580px;
  opacity: 0.54;
  filter:
    drop-shadow(0 0 1px rgba(126, 170, 255, 0.12)) drop-shadow(0 0 42px rgba(73, 125, 213, 0.16)) drop-shadow(0 18px 96px rgba(48, 106, 221, 0.17));
  transform: translateX(-50%);
  transform-origin: 50% 42%;
  animation: reviewsHeartPulse 6.4s var(--ease-tech-in-out) infinite;
  pointer-events: none;
}

.reviews-section__heart::before,
.reviews-section__heart::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.reviews-section__heart::before {
  inset: 10% 8% 34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 170, 255, 0.18), transparent 58%),
    radial-gradient(ellipse at 50% 64%, rgba(48, 106, 221, 0.12), transparent 70%);
  filter: blur(28px);
  opacity: 0.46;
  animation: reviewsHeartGlow 6.4s var(--ease-tech-in-out) infinite;
}

.reviews-section__heart::after {
  display: none;
}

.reviews-section__heart img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

@media (min-width: 1000px) {
  .reviews-section__heart {
    opacity: 0.34;
    filter:
      drop-shadow(0 0 28px rgba(73, 125, 213, 0.12))
      drop-shadow(0 18px 86px rgba(48, 106, 221, 0.12));
  }

  .reviews-section__heart::before {
    display: none;
  }

}

.reviews-section__head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews-section__badge {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.reviews-section__badge-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(126, 170, 255, 0.70);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 170, 255, 0.72), transparent 34%),
    rgba(126, 170, 255, 0.08);
}

.reviews-section__title {
  margin-top: 26px;
  line-height: 1.06;
}

.reviews-section__subtitle {
  margin-top: 20px;
  letter-spacing: 0.16px;
}

.reviews-marquee {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  margin-top: 58px;
  flex-direction: column;
  gap: 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.reviews-marquee::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(90deg, rgba(3, 7, 17, 0.82) 0%, rgba(3, 7, 17, 0.58) 5%, transparent 18%, transparent 82%, rgba(3, 7, 17, 0.58) 95%, rgba(3, 7, 17, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.reviews-marquee__row {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.reviews-marquee__row--left {
  animation: reviewsMarqueeLeft 210s linear infinite;
}

.reviews-marquee__row--right {
  animation: reviewsMarqueeRight 227s linear infinite;
}

.reviews-marquee__track {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.review-card {
  display: flex;
  flex: 0 0 auto;
  width: 512px;
  height: 242px;
  padding: 28px 32px 27px;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(126, 170, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(19, 26, 44, 0.88), rgba(8, 13, 26, 0.84)),
    rgba(13, 17, 31, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -42px 80px rgba(48, 106, 221, 0.035),
    0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);


}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.13),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.review-card__person {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card__name {
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  white-space: nowrap;
}

.review-card__handle {
  margin-top: 1px;
  color: rgba(229, 229, 229, 0.43);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.18;
}

.review-card__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(222, 226, 240, 0.68);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.review-card__text a {
  color: #78A5FF;
}

.review-card__rating {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
}

.review-card__source {
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(126, 170, 255, 0.34));
}

.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-card__score {
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.reviews-section:not(.is-reviews-visible) .reviews-section__badge,
.reviews-section:not(.is-reviews-visible) .reviews-section__title,
.reviews-section:not(.is-reviews-visible) .reviews-section__subtitle,
.reviews-section:not(.is-reviews-visible) .reviews-marquee {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.985);
}

.reviews-section:not(.is-reviews-visible) .reviews-section__heart {
  opacity: 0;
  transform: translateX(-50%) scale(0.9);
}

.reviews-section.is-reviews-visible .reviews-section__heart {
  animation:
    reviewsHeartReveal 1200ms var(--ease-cinematic) 70ms both,
    reviewsHeartPulseLite 6.4s var(--ease-tech-in-out) 1300ms infinite;
}

.reviews-section.is-reviews-visible .reviews-section__badge {
  animation: stackRevealSoft 760ms var(--ease-cinematic) 120ms both;
}

.reviews-section.is-reviews-visible .reviews-section__title {
  animation: stackRevealSoft 920ms var(--ease-cinematic) 240ms both;
}

.reviews-section.is-reviews-visible .reviews-section__subtitle {
  animation: stackRevealSoft 820ms var(--ease-cinematic) 380ms both;
}

.reviews-section.is-reviews-visible .reviews-marquee {
  animation: reviewsBoardReveal 1180ms var(--ease-cinematic) 560ms both;
}

@keyframes reviewsMarqueeLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

@keyframes reviewsMarqueeRight {
  from {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reviewsHeartReveal {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(73, 125, 213, 0));
    transform: translateX(-50%) scale(0.88);
  }

  62% {
    opacity: 0.62;
    filter:
      drop-shadow(0 0 78px rgba(73, 125, 213, 0.24)) drop-shadow(0 24px 130px rgba(48, 106, 221, 0.24));
    transform: translateX(-50%) scale(1.035);
  }

  100% {
    opacity: 0.54;
    filter:
      drop-shadow(0 0 1px rgba(126, 170, 255, 0.12)) drop-shadow(0 0 58px rgba(73, 125, 213, 0.18)) drop-shadow(0 20px 120px rgba(48, 106, 221, 0.20));
    transform: translateX(-50%) scale(1);
  }
}

@keyframes reviewsHeartPulse {

  0%,
  100% {
    opacity: 0.50;
    filter:
      drop-shadow(0 0 1px rgba(126, 170, 255, 0.10)) drop-shadow(0 0 42px rgba(73, 125, 213, 0.16)) drop-shadow(0 18px 96px rgba(48, 106, 221, 0.17));
    transform: translateX(-50%) scale(1);
  }

  48% {
    opacity: 0.60;
    filter:
      drop-shadow(0 0 2px rgba(156, 192, 255, 0.30)) drop-shadow(0 0 7px rgba(126, 170, 255, 0.20)) drop-shadow(0 0 62px rgba(102, 153, 255, 0.25)) drop-shadow(0 22px 118px rgba(48, 106, 221, 0.24));
    transform: translateX(-50%) scale(1.032);
  }

  66% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.998);
  }
}

@keyframes reviewsHeartGlow {

  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.96);
  }

  48% {
    opacity: 0.62;
    transform: scale(1.08);
  }
}

@keyframes reviewsHeartAlphaBorderPulse {
  0% {
    opacity: 0.30;
    filter:
      drop-shadow(0 0 4px rgba(48, 106, 221, 0.34)) drop-shadow(0 0 18px rgba(34, 90, 210, 0.22));
    transform: scale(1);
  }

  48% {
    opacity: 0.78;
    filter:
      drop-shadow(0 0 8px rgba(84, 140, 255, 0.62)) drop-shadow(0 0 46px rgba(34, 90, 210, 0.46));
    transform: scale(1.022);
  }

  100% {
    opacity: 0.30;
    filter:
      drop-shadow(0 0 4px rgba(48, 106, 221, 0.34)) drop-shadow(0 0 18px rgba(34, 90, 210, 0.22));
    transform: scale(1);
  }
}

/* Lightweight pulse: no animated blur/masks on every frame. */
.reviews-section__heart {
  filter:
    drop-shadow(0 0 1px rgba(126, 170, 255, 0.10))
    drop-shadow(0 18px 82px rgba(48, 106, 221, 0.14));
  animation: reviewsHeartPulseLite 6.4s var(--ease-tech-in-out) infinite;
}

.reviews-section__heart::before {
  display: none;
}

.reviews-section__heart::after {
  inset: 2.5% 2.5% 5%;
  z-index: 2;
  border: 1px solid rgba(68, 128, 255, 0.54);
  border-radius: 50%;
  background: none;
  opacity: 0.34;
  filter: none;
  mix-blend-mode: screen;
  -webkit-mask-image: none;
  mask-image: none;
  animation: reviewsHeartBorderPulseLite 6.4s var(--ease-tech-in-out) infinite;
}

@keyframes reviewsHeartPulseLite {
  0%,
  100% {
    opacity: 0.50;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.38;
    transform: translateX(-50%) scale(1.026);
  }
}

@keyframes reviewsHeartBorderPulseLite {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.992);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.028);
  }
}

@keyframes reviewsBoardReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.976);
  }

  66% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.academy-section {
  position: relative;
  min-height: 1060px;
  padding: 118px 48px 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 28% at 50% 24%, rgba(126, 170, 255, 0.055), rgba(47, 107, 255, 0.020) 42%, transparent 72%),
    radial-gradient(ellipse 34% 58% at -4% 72%, rgba(47, 107, 255, 0.22), rgba(47, 107, 255, 0.08) 42%, transparent 73%),
    radial-gradient(ellipse 34% 58% at 104% 72%, rgba(126, 170, 255, 0.17), rgba(47, 107, 255, 0.055) 44%, transparent 74%),
    radial-gradient(ellipse 52% 28% at 50% 88%, rgba(47, 107, 255, 0.07), transparent 70%),
    var(--section-background);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.academy-section::before,
.academy-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.academy-section::before {
  z-index: 0;
  background:
    linear-gradient(rgba(73, 125, 213, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.academy-section::after {
  z-index: 4;
  background:
    radial-gradient(ellipse 26% 18% at 50% 25%, rgba(184, 207, 255, 0.045), transparent 72%),
    radial-gradient(ellipse 18% 48% at 0% 72%, rgba(184, 207, 255, 0.065), transparent 76%),
    radial-gradient(ellipse 18% 48% at 100% 72%, rgba(126, 170, 255, 0.055), transparent 76%),
    linear-gradient(180deg, #030711 0%, transparent 16%, transparent 78%, rgba(3, 7, 17, 0.16) 100%),
    linear-gradient(90deg, #030711 0%, transparent 12%, transparent 88%, #030711 100%);
}

.academy-section__head {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.academy-section__badge {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(73, 119, 198, 0.41);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(0deg, rgba(180, 181, 255, 0.08) 23.47%, rgba(108, 109, 153, 0.07) 77.55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 8px 0 rgba(106, 152, 222, 0.10),
    0 4px 12px -2px rgba(0, 0, 0, 0.06);
  color: #7EAAFF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26px;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.academy-section__badge-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(126, 170, 255, 0.70);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(126, 170, 255, 0.65) 41% 58%, transparent 59%),
    rgba(126, 170, 255, 0.08);
}

.hero__badge,
.tech-section__badge,
.projects-section__badge,
.stack-section__badge,
.globe-section__badge,
.reviews-section__badge,
.academy-section__badge {
  border: 1px solid rgba(73, 119, 198, 0.37);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.050) 0%, rgba(255, 255, 255, 0.016) 100%),
    linear-gradient(0deg, rgba(42, 60, 94, 0.27) 23.47%, rgba(15, 22, 38, 0.41) 77.55%),
    rgba(7, 11, 22, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.050),
    0 1px 8px 0 rgba(106, 152, 222, 0.09),
    0 4px 12px -2px rgba(0, 0, 0, 0.055),
    0 18px 44px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px) saturate(1.14) brightness(0.94);
  -webkit-backdrop-filter: blur(12px) saturate(1.14) brightness(0.94);
}

.academy-section__title {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.08;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.academy-section__subtitle {
  width: min(620px, 100%);
  margin-top: 24px;
  line-height: 1.48;
}

.academy-section__button {
  display: inline-flex;
  height: 52px;
  margin-top: 38px;
  align-items: center;
  gap: 14px;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(126, 170, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.028)),
    rgba(22, 26, 42, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(47, 107, 255, 0.08);
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.academy-section__button:hover,
.academy-section__button:focus-visible {
  border-color: rgba(126, 170, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 58px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(47, 107, 255, 0.16);
  transform: translateY(-2px);
}

.academy-section__button-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 170, 255, 0.16);
  color: #fff;
  transition: transform 360ms var(--ease-premium);
}

.academy-section__button:hover .academy-section__button-arrow,
.academy-section__button:focus-visible .academy-section__button-arrow {
  transform: translateX(3px);
}

.academy-section__button-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-board {
  --academy-cell: 38px;
  --academy-glow-inset: min(150px, 12vw);
  position: relative;
  z-index: 2;
  width: min(1190px, calc(100vw - 96px));
  height: 780px;
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  background:
    linear-gradient(180deg, transparent 64%, rgba(47, 107, 255, 0.075) 82%, rgba(126, 170, 255, 0.14) 100%),
    linear-gradient(180deg, rgba(3, 7, 17, 0) 0%, rgba(8, 15, 34, 0.20) 38%, rgba(15, 29, 62, 0.62) 100%),
    radial-gradient(ellipse at 50% 88%, rgba(47, 107, 255, 0.34), transparent 44%),
    rgba(4, 7, 18, 0.18);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -34px 78px rgba(126, 170, 255, 0.28),
    0 38px 110px rgba(0, 0, 0, 0.22);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
}

.academy-board::before,
.academy-board::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.academy-board::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(126, 170, 255, 0.020), transparent 18%, transparent 82%, rgba(126, 170, 255, 0.018));
  opacity: 0.72;
}

.academy-board::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(47, 107, 255, 0.040), transparent 18%, transparent 82%, rgba(126, 170, 255, 0.034));
  opacity: 0.46;
}

.academy-board__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(126, 170, 255, 0.050) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 170, 255, 0.050) 1px, transparent 1px),
    linear-gradient(rgba(126, 170, 255, 0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 170, 255, 0.030) 1px, transparent 1px);
  background-size: var(--academy-cell) var(--academy-cell), var(--academy-cell) var(--academy-cell), calc(var(--academy-cell) * 4) calc(var(--academy-cell) * 4), calc(var(--academy-cell) * 4) calc(var(--academy-cell) * 4);
  background-position: center top;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 12%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 12%, #000 100%);
}

.academy-board__shine {
  position: absolute;
  right: var(--academy-glow-inset);
  bottom: -36px;
  left: var(--academy-glow-inset);
  z-index: 2;
  width: auto;
  height: 210px;
  border-radius: 42px 42px 0 0;
  opacity: 0.42;
  filter: blur(10px);
  pointer-events: none;
}

.academy-board__shine--left {
  background:
    linear-gradient(180deg, transparent 0%, rgba(47, 107, 255, 0.40) 48%, rgba(236, 242, 255, 0.92) 92%, rgba(255, 255, 255, 0.98) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(126, 170, 255, 0.80), transparent 72%);
}

.academy-board__shine--right {
  background:
    linear-gradient(180deg, transparent 0%, rgba(47, 107, 255, 0.40) 48%, rgba(236, 242, 255, 0.92) 92%, rgba(255, 255, 255, 0.98) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(126, 170, 255, 0.80), transparent 72%);
}

.academy-board__playfield {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: calc(var(--academy-cell) * 10);
  height: 100%;
  margin: 0 auto;
  border-left: 1px solid rgba(126, 170, 255, 0.10);
  border-right: 1px solid rgba(126, 170, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.026), rgba(47, 107, 255, 0.078)),
    rgba(126, 170, 255, 0.012);
  box-shadow:
    inset 0 0 0 1px rgba(126, 170, 255, 0.025),
    inset 0 -110px 240px rgba(47, 107, 255, 0.12);
}

.academy-game {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: calc(var(--academy-cell) * 10);
  height: calc(var(--academy-cell) * 20);
  outline: none;
  touch-action: none;
}

.academy-game__grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(10, var(--academy-cell));
  grid-template-rows: repeat(20, var(--academy-cell));
}

.academy-game__cell {
  width: var(--academy-cell);
  height: var(--academy-cell);
  border: 1px solid rgba(126, 170, 255, 0.065);
  background: rgba(126, 170, 255, 0.012);
  transition:
    background-color 120ms linear,
    border-color 120ms linear,
    box-shadow 120ms linear,
    opacity 120ms linear;
}

.academy-game__cell.is-filled,
.academy-game__cell.is-active,
.academy-game__cell.is-ghost {
  border-color: rgba(182, 207, 255, 0.17);
  background:
    linear-gradient(180deg, rgba(184, 207, 255, 0.22), rgba(47, 107, 255, 0.12)),
    rgba(126, 170, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(47, 107, 255, 0.10),
    0 0 18px rgba(47, 107, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.academy-game__cell.is-ghost {
  opacity: 0.20;
  box-shadow: inset 0 0 0 1px rgba(126, 170, 255, 0.12);
}

.academy-game__cell--i {
  background:
    linear-gradient(180deg, rgba(189, 216, 255, 0.28), rgba(47, 107, 255, 0.16)),
    rgba(47, 107, 255, 0.16);
}

.academy-game__cell--j,
.academy-game__cell--l {
  background:
    linear-gradient(180deg, rgba(160, 194, 255, 0.26), rgba(39, 92, 224, 0.13)),
    rgba(73, 125, 213, 0.14);
}

.academy-game__cell--o,
.academy-game__cell--s,
.academy-game__cell--z {
  background:
    linear-gradient(180deg, rgba(141, 184, 255, 0.23), rgba(47, 107, 255, 0.11)),
    rgba(73, 125, 213, 0.12);
}

.academy-game__cell--t {
  background:
    linear-gradient(180deg, rgba(203, 219, 255, 0.28), rgba(70, 124, 255, 0.15)),
    rgba(126, 170, 255, 0.15);
}

.academy-game__hud {
  position: absolute;
  top: 18px;
  left: 50%;
  display: flex;
  gap: 12px;
  color: rgba(229, 229, 229, 0.50);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12px;
  opacity: 0.74;
  transform: translateX(-50%);
  pointer-events: none;
}

.academy-game__hud strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.academy-game__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  height: 38px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(126, 170, 255, 0.20);
  border-radius: 999px;
  background: rgba(10, 14, 26, 0.54);
  color: rgba(229, 229, 229, 0.62);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 260ms var(--ease-premium);
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.academy-game.is-paused .academy-game__overlay,
.academy-game.is-game-over .academy-game__overlay {
  opacity: 1;
}

.academy-controls {
  position: relative;
  z-index: 7;
  display: flex;
  width: min(760px, calc(100% - 48px));
  margin: 22px auto 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(229, 229, 229, 0.48);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.academy-controls__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.academy-controls kbd {
  display: inline-grid;
  min-width: 28px;
  height: 26px;
  padding: 0 8px;
  place-items: center;
  border: 1px solid rgba(126, 170, 255, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(16, 21, 38, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 8px 18px rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.academy-board__bottom-glow {
  display: none;
}

.academy-section:not(.is-academy-visible) .academy-section__badge,
.academy-section:not(.is-academy-visible) .academy-section__title,
.academy-section:not(.is-academy-visible) .academy-section__subtitle,
.academy-section:not(.is-academy-visible) .academy-section__button,
.academy-section:not(.is-academy-visible) .academy-board,
.academy-section:not(.is-academy-visible) .academy-controls {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.985);
}

.academy-section.is-academy-visible .academy-section__badge {
  animation: stackRevealSoft 760ms var(--ease-cinematic) 80ms both;
}

.academy-section.is-academy-visible .academy-section__title {
  animation: stackRevealSoft 940ms var(--ease-cinematic) 180ms both;
}

.academy-section.is-academy-visible .academy-section__subtitle {
  animation: stackRevealSoft 820ms var(--ease-cinematic) 340ms both;
}

.academy-section.is-academy-visible .academy-section__button {
  animation: stackRevealSoft 820ms var(--ease-cinematic) 500ms both;
}

.academy-section.is-academy-visible .academy-board {
  animation: academyBoardReveal 1280ms var(--ease-cinematic) 660ms both;
}

.academy-section.is-academy-visible .academy-controls {
  animation: stackRevealSoft 780ms var(--ease-cinematic) 980ms both;
}

@keyframes academyBoardReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.975);
  }

  64% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.page-section {
  position: relative;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 720px;
  padding: 150px 200px;
  border-top: 1px solid rgba(230, 238, 255, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(73, 125, 213, 0.10), transparent 360px),
    radial-gradient(circle at 86% 38%, rgba(40, 89, 172, 0.08), transparent 420px),
    #030711;
}

.page-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(73, 125, 213, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
}

.page-section__inner {
  position: relative;
  z-index: 1;
  width: min(1190px, 100%);
  margin: 0 auto;
}

.page-section__label {
  display: inline-flex;
  height: 36px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(89, 134, 219, 0.32);
  border-radius: 999px;
  color: #79a7ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.page-section__title {
  width: min(760px, 100%);
  margin-top: 28px;
  color: #fff;
  font-family: "Moment Rob", "Satoshi", "Inter", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-section--pricing {
  background:
    radial-gradient(circle at 80% 16%, rgba(73, 125, 213, 0.10), transparent 380px),
    radial-gradient(circle at 18% 58%, rgba(40, 89, 172, 0.07), transparent 430px),
    #030711;
}

.page-section--process {
  background:
    radial-gradient(circle at 28% 18%, rgba(73, 125, 213, 0.08), transparent 390px),
    radial-gradient(circle at 76% 66%, rgba(40, 89, 172, 0.09), transparent 460px),
    #030711;
}

.page-section--contacts {
  min-height: 560px;
}

.site-footer {
  position: relative;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 92%, rgba(88, 56, 178, 0.11), transparent 390px),
    radial-gradient(circle at 86% 8%, rgba(48, 106, 221, 0.10), transparent 460px),
    linear-gradient(135deg, rgba(8, 12, 24, 0.98), rgba(3, 7, 17, 0.985) 52%, rgba(7, 13, 25, 0.98)),
    var(--section-background);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 88%, rgba(113, 72, 255, 0.10), transparent 360px),
    radial-gradient(circle at 82% 12%, rgba(73, 125, 213, 0.08), transparent 430px),
    linear-gradient(rgba(73, 125, 213, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 125, 213, 0.012) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 88%);
  pointer-events: none;
  content: "";
}

.site-footer::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background: radial-gradient(ellipse at 50% 50%,
      rgba(126, 170, 255, 0.18) 0%,
      rgba(126, 170, 255, 0.10) 34%,
      rgba(126, 170, 255, 0.035) 62%,
      rgba(126, 170, 255, 0) 100%);
  pointer-events: none;
  content: "";
}

.site-footer__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 96px 24px 42px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(420px, 1.45fr) minmax(300px, 1fr);
  align-items: start;
  gap: 96px;
}

.site-footer__brand {
  display: flex;
  max-width: 315px;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 9px;
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.site-footer__logo-image {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
}

.site-footer__description {
  margin-top: 32px;
  color: rgba(229, 229, 229, 0.50);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
}

.site-footer__socials {
  display: flex;
  margin-top: 28px;
  gap: 18px;
  align-items: center;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  color: rgba(229, 229, 229, 0.60);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 0;
  text-decoration: none;
  transition: opacity 260ms var(--ease-premium), transform 260ms var(--ease-premium);
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  opacity: 0.82;
  transform: translateY(-2px);
}

.site-footer__social img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 16px rgba(73, 125, 213, 0.12));
}

.site-footer__social span {
  line-height: 1;
}

.site-footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 96px;
  text-align: left;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer__heading {
  margin-bottom: 31px;
  color: rgba(229, 229, 229, 0.52);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    color 260ms var(--ease-premium),
    transform 260ms var(--ease-premium);
}

.site-footer__column a:not(:first-of-type) {
  margin-top: 22px;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #9bbcff;
  transform: translateX(2px);
}

.site-footer__subscribe {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: flex-start;
  column-gap: 12px;
  width: min(100%, 530px);
  padding: 2px 0 0;
  transform: translateX(-25px);
}

.site-footer__subscribe-text {
  grid-column: 1 / -1;
  max-width: 330px;
  margin: -12px 0 21px;
  color: rgba(229, 229, 229, 0.58);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer__subscribe .site-footer__heading {
  grid-column: 1 / -1;
}

.site-footer__field {
  display: block;
  width: 100%;
}

.site-footer__field input {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(126, 170, 255, 0.22);
  border-radius: 18px;
  padding: 0 21px;
  outline: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 170, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(18, 24, 44, 0.76), rgba(8, 12, 25, 0.82));
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(47, 107, 255, 0.07),
    0 18px 48px rgba(0, 0, 0, 0.24);
  transition:
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

.site-footer__field input::placeholder {
  color: rgba(213, 224, 255, 0.44);
}

.site-footer__field input:focus {
  border-color: rgba(126, 170, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(47, 107, 255, 0.10),
    0 0 0 4px rgba(47, 107, 255, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.28);
}

.site-footer__subscribe-button {
  display: inline-flex;
  height: 52px;
  align-items: center;
  gap: 13px;
  margin-top: 0;
  border: 1.5px solid rgba(180, 205, 255, 0.24);
  border-radius: 999px;
  padding: 0 9px 0 27px;
  white-space: nowrap;
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.13), transparent 36%),
    radial-gradient(57% 57% at 50% 47%, rgba(40, 89, 172, 0.95) 0%, rgba(79, 124, 199, 0.95) 100%);
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 14px 28px rgba(47, 107, 255, 0.24),
    0 0 36px rgba(79, 124, 199, 0.22);
  transition:
    transform 260ms var(--ease-premium),
    gap 260ms var(--ease-premium),
    padding 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    filter 260ms var(--ease-premium);
}

.site-footer__button-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 8px 20px rgba(0, 0, 0, 0.14);
  transition:
    transform 260ms var(--ease-premium),
    background 260ms var(--ease-premium);
}

.site-footer__button-icon svg {
  width: 16px;
  height: 16px;
}

.site-footer__button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__subscribe-button:hover,
.site-footer__subscribe-button:focus-visible {
  transform: translateY(-2px);
  gap: 17px;
  padding-right: 7px;
  filter: brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 18px 38px rgba(47, 107, 255, 0.30),
    0 0 46px rgba(79, 124, 199, 0.30);
}

.site-footer__subscribe-button:hover .site-footer__button-icon,
.site-footer__subscribe-button:focus-visible .site-footer__button-icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.18);
}

.site-footer__bottom {
  display: flex;
  margin-top: 116px;
  padding-top: 34px;
  justify-content: center;
  border-top: 1px solid rgba(126, 170, 255, 0.13);
}

.site-footer__copyright {
  color: rgba(229, 229, 229, 0.62);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.site-footer:not(.is-footer-visible) .site-footer__brand,
.site-footer:not(.is-footer-visible) .site-footer__nav,
.site-footer:not(.is-footer-visible) .site-footer__subscribe,
.site-footer:not(.is-footer-visible) .site-footer__bottom {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.99);
}

.site-footer.is-footer-visible .site-footer__brand {
  animation: stackRevealSoft 1180ms var(--ease-cinematic) 80ms both;
}

.site-footer.is-footer-visible .site-footer__nav {
  animation: stackRevealSoft 1280ms var(--ease-cinematic) 210ms both;
}

.site-footer.is-footer-visible .site-footer__subscribe {
  animation: stackRevealSoft 1280ms var(--ease-cinematic) 340ms both;
}

.site-footer.is-footer-visible .site-footer__bottom {
  animation: stackRevealSoft 1080ms var(--ease-cinematic) 540ms both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

body.reveal-ready:not(.is-loaded) .header,
body.reveal-ready:not(.is-loaded) .hero__light,
body.reveal-ready:not(.is-loaded) .hero__fx,
body.reveal-ready:not(.is-loaded) .hero__badge,
body.reveal-ready:not(.is-loaded) .hero__title,
body.reveal-ready:not(.is-loaded) .hero__description,
body.reveal-ready:not(.is-loaded) .hero__button,
body.reveal-ready:not(.is-loaded) .hero__visual,
body.reveal-ready:not(.is-loaded) .hero-mobile-art,
body.reveal-ready:not(.is-loaded) .hero-card,
body.reveal-ready:not(.is-loaded) .hero__features,
body.reveal-ready:not(.is-loaded) .hero__features>svg {
  opacity: 0;
}

body.is-loaded:not(.is-reveal-complete) .header {
  animation: reveal-header 1.05s var(--ease-cinematic) 0.22s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__title {
  animation: reveal-title 1.35s var(--ease-cinematic) 0.10s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__badge {
  animation: reveal-soft-up 1.05s var(--ease-cinematic) 0.38s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__light {
  animation: reveal-light 1.60s var(--ease-cinematic) 0.46s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__description {
  animation: reveal-soft-up 1.10s var(--ease-cinematic) 0.78s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__fx {
  animation: reveal-fx 1.20s var(--ease-cinematic) 1.00s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__button {
  animation: reveal-cta 1.05s var(--ease-cinematic) 1.12s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-mobile-art--code-left {
  animation: mobile-art-reveal-left 1.55s var(--ease-cinematic) 1.50s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-mobile-art--code-right {
  animation: mobile-art-reveal-right 1.55s var(--ease-cinematic) 1.72s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-mobile-art--design {
  animation: mobile-art-reveal-left 1.50s var(--ease-cinematic) 2.02s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__visual--left {
  animation: reveal-visual-left 1.35s var(--ease-cinematic) 1.50s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__visual--right {
  animation: reveal-visual-right 1.35s var(--ease-cinematic) 1.70s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-card--left {
  animation: reveal-card 1.20s var(--ease-cinematic) 2.05s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-card--right {
  animation: reveal-card 1.20s var(--ease-cinematic) 2.28s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-card--bottom {
  animation: reveal-card 1.20s var(--ease-cinematic) 2.50s both;
}

body.is-loaded:not(.is-reveal-complete) .hero-card--back {
  animation: reveal-card 1.10s var(--ease-cinematic) 2.72s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__features {
  animation: reveal-panel 1.05s var(--ease-cinematic) 2.90s both;
}

body.is-loaded:not(.is-reveal-complete) .hero__features>svg {
  animation: reveal-divider 0.80s var(--ease-cinematic) 3.12s both;
}

body.is-reveal-complete .hero__visual--left {
  animation: visual-float-left 8.8s ease-in-out infinite;
}

body.is-reveal-complete .hero__visual--right {
  animation: visual-float-right 9.4s ease-in-out infinite;
}

body.is-reveal-complete .hero-mobile-art--code-left {
  animation: mobile-art-float-a 8.4s ease-in-out infinite;
}

body.is-reveal-complete .hero-mobile-art--code-right {
  animation: mobile-art-float-b 9.2s ease-in-out -1.4s infinite;
}

body.is-reveal-complete .hero-mobile-art--design {
  animation: mobile-art-float-c 8.8s ease-in-out -2.1s infinite;
}

body.is-reveal-complete .hero-card--left {
  animation: card-float-a 8.2s ease-in-out infinite;
}

body.is-reveal-complete .hero-card--right {
  animation: card-float-b 8.8s ease-in-out infinite;
}

body.is-reveal-complete .hero-card--bottom {
  animation: card-float-c 9.6s ease-in-out infinite;
}

body.is-reveal-complete .hero-card--back {
  animation: card-float-b 10.2s ease-in-out infinite;
}

html.lean-fx .cursor__glow {
  opacity: 0.22;
}

@keyframes reveal-header {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reveal-title {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, -90px) rotateX(10deg) scale(0.94);
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@keyframes reveal-soft-up {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, -46px) scale(0.965);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reveal-cta {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, -54px) scale(0.94);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.018);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reveal-light {
  from {
    opacity: 0;
    transform: translateX(-50%) translate3d(0, -42px, -140px) scale(0.88);
  }

  to {
    opacity: var(--hero-light-opacity);
    transform: translateX(-50%) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reveal-fx {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes reveal-visual-left {
  0% {
    opacity: 0;
    transform: translate3d(-92px, 72px, 0);
  }

  64% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, var(--float-y), 0);
  }
}

@keyframes reveal-visual-right {
  0% {
    opacity: 0;
    transform: translate3d(92px, 72px, 0);
  }

  64% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, var(--float-y), 0);
  }
}

@keyframes mobile-art-reveal-left {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 34px, 0) rotate(var(--mobile-art-rotate)) scale(0.92);
  }

  68% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--mobile-art-rotate)) scale(1);
  }
}

@keyframes mobile-art-reveal-right {
  0% {
    opacity: 0;
    transform: translate3d(34px, 30px, 0) rotate(var(--mobile-art-rotate)) scale(0.92);
  }

  68% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--mobile-art-rotate)) scale(1);
  }
}

@keyframes reveal-card {
  0% {
    opacity: 0;
    transform:
      translate3d(0, 62px, 0) rotateZ(var(--card-rz));
  }

  58% {
    opacity: var(--card-opacity);
  }

  100% {
    opacity: var(--card-opacity);
    transform:
      translate3d(0, var(--float-y), 0) rotateZ(var(--card-rz));
  }
}

@keyframes reveal-panel {
  from {
    opacity: 0;
    transform: translateX(-50%) translate3d(0, 48px, -90px) rotateX(8deg) scale(0.965);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@keyframes reveal-divider {
  from {
    opacity: 0;
    transform: scaleY(0.36);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes visual-float-left {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes visual-float-right {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes mobile-art-float-a {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--mobile-art-rotate)) scale(1);
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(calc(var(--mobile-art-rotate) + 1.2deg)) scale(1.012);
  }
}

@keyframes mobile-art-float-b {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--mobile-art-rotate)) scale(1);
  }

  50% {
    transform: translate3d(0, 8px, 0) rotate(calc(var(--mobile-art-rotate) - 1.1deg)) scale(1.01);
  }
}

@keyframes mobile-art-float-c {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--mobile-art-rotate)) scale(1);
  }

  50% {
    transform: translate3d(0, -6px, 0) rotate(calc(var(--mobile-art-rotate) + 0.8deg)) scale(1.008);
  }
}

@keyframes card-float-a {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0) rotateZ(var(--card-rz));
  }

  50% {
    transform:
      translate3d(0, -11px, 0) rotateZ(var(--card-rz));
  }
}

@keyframes card-float-b {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0) rotateZ(var(--card-rz));
  }

  50% {
    transform:
      translate3d(0, -10px, 0) rotateZ(var(--card-rz));
  }
}

@keyframes card-float-c {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0) rotateZ(var(--card-rz));
  }

  50% {
    transform:
      translate3d(0, -12px, 0) rotateZ(var(--card-rz));
  }
}

@keyframes techIntroBoardReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, calc(var(--tech-content-y) + 56px), -90px) rotateX(7deg) scale(0.965);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, calc(var(--tech-content-y) - 3px), 0) rotateX(0) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, var(--tech-content-y), 0) rotateX(0) scale(1);
  }
}

@keyframes techIntroMapReveal {
  0% {
    opacity: 0;
    transform: translate3d(-26px, 18px, -60px) scale(0.975);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techIntroGridReveal {
  0% {
    opacity: 0;
    transform: translate(var(--team-bg-origin-x), var(--team-bg-origin-y)) scale(0.94);
  }

  100% {
    opacity: 0.92;
    transform: translate(var(--team-bg-origin-x), var(--team-bg-origin-y)) scale(1);
  }
}

@keyframes techIntroCenterReveal {
  0% {
    opacity: 0;
    transform: translate(var(--team-center-origin-x), var(--team-center-origin-y)) scale(0.66);
  }

  58% {
    opacity: 1;
    transform: translate(var(--team-center-origin-x), var(--team-center-origin-y)) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translate(var(--team-center-origin-x), var(--team-center-origin-y)) scale(1);
  }
}

@keyframes techIntroWireDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 1.015;
    filter:
      drop-shadow(0 0 2px rgba(var(--wire-glow), 0.12)) drop-shadow(0 0 6px rgba(var(--wire-glow), 0.08));
  }

  18% {
    opacity: 0.64;
  }

  100% {
    opacity: 0.64;
    stroke-dashoffset: 0;
    filter:
      drop-shadow(0 0 7px rgba(var(--wire-glow), 0.30)) drop-shadow(0 0 18px rgba(var(--wire-glow), 0.16));
  }
}

@keyframes techIntroNodeReveal {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  62% {
    opacity: 0.88;
    transform: scale(0.92);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes techGuideCursorMove {
  0% {
    opacity: 0;
    transform: translate3d(var(--team-guide-start-x), var(--team-guide-start-y), 0) scale(0.86) rotate(-8deg);
  }

  14% {
    opacity: 1;
  }

  45% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(1) rotate(-2deg);
  }

  50% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(0.84) rotate(-2deg);
  }

  62%,
  88% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(1) rotate(-2deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(1.04) rotate(-2deg);
  }
}

@keyframes techGuideCursorClick {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.28);
  }

  35% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.72);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

@keyframes techGuideCursorMobile {
  0% {
    opacity: 0;
    transform: translate3d(var(--team-guide-start-x), var(--team-guide-start-y), 0) scale(0.82) rotate(-8deg);
  }

  16% {
    opacity: 1;
  }

  58% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(0.98) rotate(-2deg);
  }

  72% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(0.84) rotate(-2deg);
  }

  86% {
    opacity: 1;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(0.98) rotate(-2deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--team-guide-target-x), var(--team-guide-target-y), 0) scale(1) rotate(-2deg);
  }
}

@keyframes techActiveOrbSpawn {
  0% {
    opacity: 0;
    transform:
      translate3d(calc(var(--active-node-x) - var(--team-active-orb-half)),
        calc(var(--active-node-y) - var(--team-active-orb-lift) - 62px),
        0) scale(0.16);
  }

  58% {
    opacity: 1;
    transform:
      translate3d(calc(var(--active-node-x) - var(--team-active-orb-half)),
        calc(var(--active-node-y) - var(--team-active-orb-lift) - var(--team-active-orb-half)),
        0) scale(1.12);
  }

  100% {
    opacity: 1;
    transform:
      translate3d(calc(var(--active-node-x) - var(--team-active-orb-half)),
        calc(var(--active-node-y) - var(--team-active-orb-lift) - var(--team-active-orb-half)),
        0) scale(1);
  }
}

@keyframes techActiveOrbGlow {

  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }

  50% {
    transform: scale(1.08);
    filter: saturate(1.18);
  }
}

@keyframes techWireDraw {
  0% {
    opacity: 0.64;
    stroke-width: var(--team-wire-width);
    stroke-dashoffset: 1.015;
  }

  78% {
    opacity: 1;
    stroke-width: 2.4;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 1;
    stroke-width: var(--team-wire-active-width);
    stroke-dashoffset: 0;
  }
}

@keyframes techOuterStrokeSweep {
  0% {
    opacity: 0.44;
    stroke-width: 1.375px;
    stroke-dashoffset: 1.015;
  }

  78% {
    opacity: 1;
    stroke-width: 1.375px;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 1;
    stroke-width: var(--team-node-active-stroke-width);
    stroke-dashoffset: 0;
  }
}

@keyframes techInfoPanelReveal {
  0% {
    border-color: rgba(var(--active-node-rgb), 0.20);
    transform: translate3d(0, 22px, -58px) rotateX(5deg) scale(0.982);
  }

  55% {
    transform: translate3d(0, -2px, 0) rotateX(0) scale(1.005);
  }

  100% {
    border-color: rgba(45, 49, 67, 0.70);
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@keyframes techInfoLineReveal {
  0% {
    opacity: 0.58;
    transform: scaleY(0.014);
    box-shadow:
      0 0 9px rgba(var(--active-node-rgb), 0.62),
      0 0 20px rgba(var(--active-node-rgb), 0.24);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
    box-shadow:
      0 0 18px rgba(var(--active-node-rgb), 0.46),
      0 0 42px rgba(var(--active-node-rgb), 0.18);
  }
}

@keyframes techInfoMobileSwitch {
  0% {
    opacity: 0.72;
    border-color: rgba(var(--active-node-rgb), 0.24);
    transform: translate3d(0, 10px, 0) scale(0.992);
  }

  100% {
    opacity: 1;
    border-color: rgba(45, 49, 67, 0.70);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoMobileLine {
  0% {
    opacity: 0.46;
    transform: scaleY(0.72);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes techInfoMobileItem {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.992);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoMobileBadge {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoRevealTitleWave {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 28px, -58px) rotateX(8deg) scale(0.955);
  }

  44% {
    opacity: 0.72;
    transform: translate3d(10px, -2px, -14px) rotateX(1deg) scale(1.014);
  }

  74% {
    opacity: 1;
    transform: translate3d(0, 1px, 0) rotateX(0) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@keyframes techInfoRevealTextWave {
  0% {
    opacity: 0;
    transform: translate3d(22px, 12px, -42px) scale(0.965);
  }

  34% {
    opacity: 0.55;
    transform: translate3d(-8px, -1px, -14px) scale(1.008);
  }

  70% {
    opacity: 1;
    transform: translate3d(2px, 1px, 0) scale(1.004);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoRevealFromTop {
  0% {
    opacity: 0;
    transform: translate3d(0, -22px, -34px) scale(0.965);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, 2px, 0) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoRevealFromLeft {
  0% {
    opacity: 0;
    transform: translate3d(-28px, 6px, -34px) scale(0.965);
  }

  66% {
    opacity: 1;
    transform: translate3d(3px, -1px, 0) scale(1.008);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoRevealFromRight {
  0% {
    opacity: 0;
    transform: translate3d(30px, 12px, -34px) scale(0.965);
  }

  66% {
    opacity: 1;
    transform: translate3d(-2px, -1px, 0) scale(1.008);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes techInfoBadgePop {
  0% {
    opacity: 0;
    transform: translate3d(var(--badge-x), 12px, -22px) scale(0.92);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.035);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.reveal-ready:not(.is-loaded) .header,
  body.reveal-ready:not(.is-loaded) .hero__light,
  body.reveal-ready:not(.is-loaded) .hero__fx,
  body.reveal-ready:not(.is-loaded) .hero__badge,
  body.reveal-ready:not(.is-loaded) .hero__title,
  body.reveal-ready:not(.is-loaded) .hero__description,
  body.reveal-ready:not(.is-loaded) .hero__button,
  body.reveal-ready:not(.is-loaded) .hero__visual,
  body.reveal-ready:not(.is-loaded) .hero-mobile-art,
  body.reveal-ready:not(.is-loaded) .hero-card,
  body.reveal-ready:not(.is-loaded) .hero__features,
  body.reveal-ready:not(.is-loaded) .hero__features>svg {
    opacity: 1;
    filter: none;
  }

  body.reveal-ready:not(.is-loaded) .hero__light {
    opacity: var(--hero-light-opacity);
  }

  body.is-loaded .header,
  body.is-loaded .hero__light,
  body.is-loaded .hero__fx,
  body.is-loaded .hero__badge,
  body.is-loaded .hero__title,
  body.is-loaded .hero__description,
  body.is-loaded .hero__button,
  body.is-loaded .hero__visual,
  body.is-loaded .hero-mobile-art,
  body.is-loaded .hero-card,
  body.is-loaded .hero__features,
  body.is-loaded .hero__features>svg {
    animation: none;
    filter: none;
  }

  .tech-map__wire-svg.is-animating .tech-map__wire-active,
  .tech-node.is-animating .tech-node__outer-stroke-active,
  .tech-map.is-active-orb-spawning .tech-map__active-orb,
  .tech-map__active-orb::before,
  .tech-section.is-tech-intro-running .tech-board,
  .tech-section.is-tech-intro-running .tech-board__side--map,
  .tech-section.is-tech-intro-running .tech-map__grid,
  .tech-section.is-tech-intro-running .tech-map__center,
  .tech-section.is-tech-intro-running .tech-map__wire-svg .tech-map__wire,
  .tech-section.is-tech-intro-running .tech-node,
  .tech-section.is-tech-intro-running .tech-guide-cursor,
  .tech-section.is-tech-guide-clicking .tech-guide-cursor::after,
  .tech-info.is-tech-info-revealing,
  .tech-info.is-tech-info-revealing::before,
  .tech-info.is-tech-info-revealing .tech-info__role,
  .tech-info.is-tech-info-revealing .tech-info__title,
  .tech-info.is-tech-info-revealing .tech-info__text,
  .tech-info.is-tech-info-revealing .tech-info__tags,
  .tech-info.is-tech-info-revealing .tech-info__tags span,
  .tech-info.is-tech-info-revealing .tech-info__best {
    animation: none;
    filter: none;
    transform: none;
  }

  .tech-section__light {
    animation: none;
    opacity: var(--tech-light-opacity);
    filter: none;
    transform: translateX(-50%) scale(var(--tech-light-scale));
  }

  .projects-section .projects-section__badge,
  .projects-section .projects-section__title,
  .projects-section .projects-section__subtitle,
  .projects-section .projects-board,
  .projects-section .project-card,
  .projects-section .project-card__visual,
  .projects-section .project-card__info,
  .projects-section .project-card__type,
  .projects-section .project-card__year {
    opacity: 1;
    animation: none;
    filter: none;
  }

  .projects-section .project-card,
  .projects-section .project-card__info,
  .projects-section .projects-board,
  .projects-section .projects-section__badge,
  .projects-section .projects-section__title,
  .projects-section .projects-section__subtitle {
    transform: none;
  }

  .projects-section .project-card__visual {
    transform: translateX(calc(-50% + var(--project-mobile-visual-x, 18px))) scale(var(--project-mobile-visual-scale, 0.576));
  }

  .projects-section .project-card__type,
  .projects-section .project-card__year {
    transform: scale(1.1);
  }

  .projects-section .project-card__floater {
    animation: none;
    transform: scale(var(--project-mobile-floater-scale, 1.074));
    will-change: auto;
  }

  .projects-section .project-card__floater--asset img {
    filter:
      drop-shadow(0 24px 20px rgba(0, 0, 0, 0.46))
      drop-shadow(0 10px 18px rgba(var(--project-rgb), 0.18));
  }

  .stack-section .stack-section__badge,
  .stack-section .stack-section__title,
  .stack-section .stack-section__subtitle,
  .stack-section .stack-showcase__bg,
  .stack-section .stack-showcase__tick,
  .stack-section .stack-card,
  .stack-section .stack-card__icons,
  .stack-section .stack-card__single-icon,
  .stack-section .stack-card__title,
  .stack-section .stack-card__text,
  .stack-section .stack-card img,
  .stack-section .stack-card__divider,
  .stack-section .stack-guide-cursor,
  .stack-section .stack-guide-cursor::after {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .stack-section .stack-guide-cursor {
    display: none;
  }

  .stack-section .stack-info {
    animation: none;
    filter: none;
  }

  .globe-section.is-globe-revealed .globe-section__badge,
  .globe-section.is-globe-revealed .globe-section__title,
  .globe-section.is-globe-revealed .globe-section__subtitle,
  .globe-section.is-globe-revealed .globe-contacts,
  .globe-section.is-globe-revealed .globe-stage__canvas,
  .globe-section.is-globe-revealed .globe-stage__static,
  .globe-section.is-globe-revealed .globe-stage__fallback,
  .reviews-section.is-reviews-visible .reviews-section__heart,
  .reviews-section.is-reviews-visible .reviews-section__badge,
  .reviews-section.is-reviews-visible .reviews-section__title,
  .reviews-section.is-reviews-visible .reviews-section__subtitle,
  .reviews-section.is-reviews-visible .reviews-marquee,
  .academy-section.is-academy-visible .academy-section__badge,
  .academy-section.is-academy-visible .academy-section__title,
  .academy-section.is-academy-visible .academy-section__subtitle,
  .academy-section.is-academy-visible .academy-section__button,
  .academy-section.is-academy-visible .academy-board,
  .academy-section.is-academy-visible .academy-controls,
  .site-footer.is-footer-visible .site-footer__brand,
  .site-footer.is-footer-visible .site-footer__nav,
  .site-footer.is-footer-visible .site-footer__subscribe,
  .site-footer.is-footer-visible .site-footer__bottom {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .stack-section.has-stack-info .stack-info {
    opacity: 1;
    transform: scale(var(--stack-info-scale));
  }

  .stack-showcase__bg::before,
  .stack-showcase__bg::after,
  .stack-showcase__core,
  .stack-showcase__core::after,
  .stack-showcase__logo {
    animation: none;
  }

  .stack-showcase__core,
  .stack-showcase__logo {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%);
  }

  .stack-showcase__tick {
    transform: translateX(-50%);
  }

  .globe-section .globe-section__badge,
  .globe-section .globe-section__title,
  .globe-section .globe-section__subtitle,
  .globe-section .globe-contacts {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .globe-section .globe-stage__canvas,
  .globe-section .globe-stage__fallback,
  .globe-section .globe-section__particles {
    opacity: 1;
    animation: none;
    filter: none;
  }

  .globe-section .globe-section__satellites {
    display: none;
  }

  .globe-section .globe-stage__canvas,
  .globe-section .globe-stage__fallback {
    transform: translateX(-50%);
  }

  .globe-section.is-globe-mobile-static .globe-stage__canvas,
  .globe-section.is-globe-mobile-static .globe-stage__fallback,
  .globe-section.is-globe-mobile-static .globe-section__particles,
  .globe-section.is-globe-mobile-static .globe-section__satellites {
    display: none;
  }

  .globe-section.is-globe-mobile-static .globe-stage__static {
    display: block;
    opacity: 1;
    animation: none;
    filter: none;
    transform: translateX(-50%);
  }

  .reviews-section .reviews-section__heart,
  .reviews-section .reviews-section__badge,
  .reviews-section .reviews-section__title,
  .reviews-section .reviews-section__subtitle,
  .reviews-section .reviews-marquee {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .reviews-section .reviews-section__heart {
    transform: translateX(-50%);
  }

  .academy-section .academy-section__badge,
  .academy-section .academy-section__title,
  .academy-section .academy-section__subtitle,
  .academy-section .academy-section__button,
  .academy-section .academy-board,
  .academy-section .academy-controls {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

}




@media (max-width: 1500px) {
  .header {
    height: 72px;
    padding: 0 96px;
  }

  .header__logo-text {
    font-size: 20px;
  }

  .header__nav {
    width: 300px;
    padding: 12px 20px;
  }

  .header__nav-item {
    font-size: 10px;
  }

  .header__button {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero {
    height: 720px;
  }

  .hero__light {
    top: -24px;
    width: 780px;
  }

  .hero__content {
    width: 820px;
    margin-top: 70px;
  }

  .hero__badge {
    height: 40px;
    font-size: 14px;
  }

  .hero__title {
    font-size: 62px;
  }

  .hero__description {
    width: 600px;
    font-size: 17px;
  }

  .hero__button {
    width: 236px;
    height: 54px;
    font-size: 14px;
  }

  .hero__button:hover {
    width: 260px;
  }

  .hero__button-icon {
    width: 40px;
    height: 40px;
  }

  .hero__visual--left {
    top: 102px;
    left: 240px;

  }

  .hero__visual--right {
    top: 62px;
    right: 235px;

  }

  .hero-card {
    width: 222px;
    min-height: 122px;
    padding: 18px 20px;
    border-radius: 20px;
  }

  .hero-card h2 {
    font-size: 12px;
  }

  .hero-card p {
    font-size: 10px;
  }

  .hero-card--left {
    top: 258px;
    left: 90px;
  }

  .hero-card--right {
    top: 132px;
    right: 80px;
  }

  .hero-card--back {
    top: 430px;
    right: 55px;
    width: 190px;
    min-height: 106px;
  }

  .hero-card--bottom {
    top: 390px;
    right: 185px;
    width: 224px;
    min-height: 128px;
  }

  .hero__features {
    bottom: 54px;
    width: 920px;
    padding: 28px 30px;
  }

  .hero-feature h2 {
    font-size: 18px;
  }

  .hero-feature p {
    width: 300px;
    font-size: 10px;
  }

  .projects-section {
    padding: 104px 96px 112px;
  }

  .projects-board {
    width: min(100%, calc(100vw - 96px));
    margin-top: 58px;
  }

  .project-card {
    height: 530px;
    padding: 18px 16px 18px;
  }

  .project-card__info {
    min-height: 164px;
    padding: 22px 21px 19px;
  }

  .project-card__title {
    font-size: 19px;
  }

  .stack-section {
    padding: 92px 96px 110px;
  }

  .stack-showcase {
    --stack-frontend-top: 95px;
    --stack-frontend-left: 101px;
    --stack-backend-top: 95px;
    --stack-backend-right: 101px;
    --stack-design-top: 365px;
    --stack-design-left: 104px;
    --stack-seo-top: 365px;
    --stack-seo-right: 82px;
    width: min(960px, calc(100vw - 96px));
    height: 593px;
  }

  .globe-section {
    min-height: 890px;
    padding: 92px 96px 110px;
  }

  .globe-stage__canvas,
  .globe-stage__fallback {
    bottom: -1022px;
    width: min(1087px, 97vw);
    height: min(1087px, 97vw);
  }

  .reviews-section {
    min-height: 690px;
    padding: 92px 0 104px;
  }

  .reviews-section__heart {
    top: 77px;
    width: 500px;
  }

  .reviews-marquee {
    margin-top: 50px;
  }

  .review-card {
    width: 512px;
    height: 242px;
  }

  .academy-section {
    min-height: 930px;
    padding: 96px 48px 78px;
  }

  .academy-board {
    --academy-cell: 36px;
    width: min(890px, calc(100vw - 96px));
    height: 680px;
    margin-top: 28px;
  }

  .page-section {
    min-height: 620px;
    padding: 120px 96px;
  }

  .page-section__title {
    font-size: 52px;
  }

  .site-footer {
    padding-inline: 0;
  }

  .site-footer__shell {
    padding: 84px 42px 36px;
  }

  .site-footer__top {
    grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.3fr) minmax(260px, 0.9fr);
    gap: 46px;
  }

  .site-footer__nav {
    gap: 58px;
  }

}

@media (max-width: 999px) {
  .section-subtitle {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto;
  }

  .header {
    grid-template-columns: 1fr auto;
    height: 64px;
    padding: 0 24px;
  }

  .header__nav {
    display: none;
  }

  .header__logo-text {
    font-size: 15px;
  }

  .header__button {
    padding: 11px 18px;
    font-size: 10px;
  }

  .hero {
    height: 805px;
  }

  .hero__content {
    width: min(100% - 28px, 556px);
    margin-top: 56px;
  }

  .hero__badge {
    height: 34px;
    gap: 8px;
    padding: 0 14px;
    font-size: 10px;
  }

  .hero__badge svg {
    width: 16px;
    height: 16px;
  }

  .hero__title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero__description {
    width: 420px;
    font-size: 12px;
  }

  .hero__button {
    width: 178px;
    height: 40px;
    gap: 16px;
    padding: 0 7px 0 18px;
    font-size: 10px;
  }

  .hero__button:hover {
    width: 196px;
  }

  .hero__button-icon {
    width: 30px;
    height: 30px;
  }

  .hero__light {
    top: 110px;
    width: 560px;
  }

  .hero__visual--left {
    top: 250px;
    left: 40px;
    opacity: 0.82;
  }

  .hero__visual--right {
    top: 238px;
    right: 40px;
    opacity: 0.82;
  }

  .hero-card {
    width: 145px;
    min-height: 86px;
    padding: 12px;
    border-radius: 14px;
  }

  .hero-card h2 {
    font-size: 8px;
  }

  .hero-card p {
    margin-top: 9px;
    font-size: 7px;
  }

  .hero-card--left {
    top: 328px;
    left: 12px;
  }

  .hero-card--right {
    top: 320px;
    right: 10px;
  }

  .hero-card--back {
    display: none;
  }

  .hero-card--bottom {
    top: 420px;
    right: 34px;
    width: 150px;
    min-height: 90px;
  }

  .hero__features {
    bottom: 28px;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 24px;
  }

  .hero-feature {
    width: 100%;
    min-height: 112px;
    padding: 18px 24px;
  }

  .hero-feature:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(116, 130, 176, 0.18), transparent);
  }

  .hero-feature h2 {
    font-size: 16px;
  }

  .hero-feature p {
    width: 260px;
    font-size: 10px;
  }

  .projects-section {
    padding: 84px 24px 96px;
  }

  .projects-section__head {
    width: min(640px, 100%);
  }

  .projects-section__badge {
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .projects-section__all {
    position: static;
    margin-top: 22px;
  }

  .projects-board {
    width: min(560px, 100%);
    margin-top: 44px;
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 530px;
    padding: 16px 14px 16px;
  }

  .project-card__info {
    min-height: 0;
    padding: 20px 18px 18px;
  }

  .project-card__title {
    font-size: 18px;
  }

  .project-card__subtitle {
    font-size: 12px;
  }

  .project-card__info {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "title title"
      "subtitle subtitle"
      "tags tags"
      "stack-icon stack-text"
      "link link";
  }

  .project-card__link {
    justify-self: start;
  }

  .stack-section {
    padding: 84px 24px 96px;
  }

  .stack-section__badge {
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .stack-showcase {
    display: grid;
    width: min(560px, 100%);
    height: auto;
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-showcase__bg {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 760px;
    height: 470px;
    opacity: 0.52;
    transform: translate(-50%, -50%);
  }

  .stack-showcase__core {
    width: 150px;
    height: 150px;
  }

  .stack-showcase__core::after {
    inset: 32px;
  }

  .stack-showcase__logo {
    width: 91px;
  }

  .stack-card,
  .stack-card--frontend,
  .stack-card--backend,
  .stack-card--design,
  .stack-card--seo {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 168px;
    justify-content: center;
    padding: 22px 18px;
    border: 0.887px solid rgba(230, 238, 255, 0.08);
    border-radius: 18px;
    background: rgba(13, 15, 27, 0.54);
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
  }

  .stack-card__title {
    margin-top: 18px;
  }

  .stack-card__text {
    margin-top: 11px;
  }

  .globe-section {
    min-height: 720px;
    padding: 84px 24px 96px;
  }

  .globe-section__badge {
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .globe-contacts {
    width: min(230px, calc(100% - 32px));
    max-width: calc(100% - 32px);
    margin-top: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    flex-direction: row;
    gap: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .globe-contacts::-webkit-scrollbar {
    display: none;
  }

  .globe-contact {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    height: 68px;
    border-radius: 19px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .globe-contact-dots {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 8px;
    border: 1px solid rgba(126, 170, 255, 0.16);
    border-radius: 999px;
    background: rgba(9, 15, 30, 0.48);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 10px 26px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px) saturate(1.12);
    -webkit-backdrop-filter: blur(10px) saturate(1.12);
  }

  .globe-contact-dots__item {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(126, 170, 255, 0.32);
    transition:
      width 340ms var(--ease-premium),
      background 340ms var(--ease-premium),
      box-shadow 340ms var(--ease-premium),
      opacity 340ms var(--ease-premium);
  }

  .globe-contact-dots__item.is-active {
    width: 20px;
    background: linear-gradient(90deg, #7EAAFF, #4A7DFF);
    box-shadow:
      0 0 12px rgba(73, 125, 213, 0.42),
      0 0 24px rgba(73, 125, 213, 0.18);
  }

  .globe-contact img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .globe-contact__label {
    font-size: 14px;
  }

  .globe-contact__text {
    font-size: 11px;
  }

  .globe-stage__canvas,
  .globe-stage__fallback,
  .globe-stage__static {
    bottom: -30px;
    width: min(900px, 238vw);
    height: auto;
  }

  .globe-stage__canvas,
  .globe-stage__fallback {
    display: none;
  }

  .globe-stage__static {
    display: block;
    opacity: 1;
    object-fit: contain;
  }

  .stack-section__title {
    width: min(390px, calc(100vw - 32px));
    font-size: clamp(29px, 7vw, 32px);
  }

  .reviews-section {
    min-height: 620px;
    padding: 80px 0 88px;
  }

  .reviews-section__heart {
    top: 91px;
    width: 420px;
  }

  .reviews-section__badge {
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .reviews-section__title {
    width: min(100% - 32px, 560px);
  }

  .reviews-section__subtitle {
    margin-top: 14px;
  }

  .reviews-marquee {
    margin-top: 42px;
    gap: 14px;
  }

  .review-card {
    width: min(330px, calc(100vw - 48px));
    height: 178px;
    padding: 17px 18px 16px;
  }

  .review-card__text {
    font-size: 12.5px;
    -webkit-line-clamp: 3;
  }

  .academy-section {
    min-height: 760px;
    padding: 78px 24px 74px;
  }

  .academy-section__badge {
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .academy-section__subtitle {
    width: min(420px, 100%);
    margin-top: 16px;
  }

  .academy-section__button {
    height: 42px;
    margin-top: 24px;
    padding: 0 7px 0 18px;
    border-radius: 14px;
    font-size: 12px;
  }

  .academy-section__button-arrow {
    width: 28px;
    height: 28px;
  }

  .academy-board {
    --academy-cell: 28px;
    --academy-glow-inset: min(92px, 18vw);
    width: calc(100vw - 32px);
    height: 540px;
    margin-top: 66px;
    border-radius: 0 0 30px 30px;
  }

  .academy-board__shine {
    height: 300px;
  }

  .academy-board__bottom-glow {
    height: 148px;
  }

  .page-section {
    min-height: 540px;
    padding: 88px 24px;
  }

  .page-section__title {
    font-size: 38px;
  }

  .site-footer {
    padding: 0;
  }

  .site-footer__shell {
    padding: 64px 22px 30px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__brand {
    max-width: 420px;
  }

  .site-footer__description {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.55;
  }

  .site-footer__socials {
    margin-top: 15px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 28px 64px;
  }

  .site-footer__subscribe {
    grid-template-columns: 1fr;
    row-gap: 12px;
    max-width: 360px;
    transform: none;
  }

  .site-footer__heading {
    margin-bottom: 17px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  .site-footer__column a {
    font-size: 12px;
  }

  .site-footer__column a:not(:first-of-type) {
    margin-top: 10px;
  }

  .site-footer__bottom {
    margin-top: 44px;
    padding-top: 17px;
    justify-content: flex-start;
  }

  .site-footer__copyright {
    text-align: left;
  }

}

@media (max-width: 999px) {
  .section-title {
    width: calc(100% - 32px);
    max-width: 560px;
    font-size: clamp(23px, 7.3vw, 32px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .header__logo-text {
    display: none;
  }

  .hero__visual--left {
    left: 8px;
  }

  .hero__visual--right {
    right: 8px;
  }

  .hero-card--bottom {
    right: 12px;
  }

  .academy-section {
    min-height: 690px;
  }

  .academy-board {
    --academy-cell: 24px;
    height: 488px;
  }

  .site-footer__nav {
    gap: 30px 42px;
  }

  .site-footer__column {
    flex: 0 0 calc(50% - 12px);
  }

  .site-footer__field input {
    width: 100%;
  }

  .site-footer__subscribe-button {
    margin-top: 0;
  }
}

.hero__badge,
.tech-section__badge,
.projects-section__badge,
.stack-section__badge,
.globe-section__badge,
.reviews-section__badge,
.academy-section__badge {
  display: inline-flex;
  width: fit-content;
  min-width: 136px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(126, 170, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(28, 34, 61, 0.74) 0%, rgba(9, 13, 29, 0.76) 100%),
    rgba(5, 8, 19, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(126, 170, 255, 0.07),
    0 0 0 1px rgba(47, 107, 255, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(73, 125, 213, 0.08);
  color: #DCE8FF;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(10px) saturate(1.08) brightness(0.92);
  -webkit-backdrop-filter: blur(10px) saturate(1.08) brightness(0.92);
}

.hero__badge svg,
.tech-section__badge svg,
.projects-section__badge svg,
.stack-section__badge svg,
.globe-section__badge svg,
.reviews-section__badge svg,
.academy-section__badge svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #82ACFF;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero__badge svg[hidden],
.tech-section__badge svg[hidden] {
  display: none;
}

.hero__badge .badge-icon,
.tech-section__badge .badge-icon,
.projects-section__badge .badge-icon,
.stack-section__badge .badge-icon,
.globe-section__badge .badge-icon,
.reviews-section__badge .badge-icon,
.academy-section__badge .badge-icon {
  display: block;
}

@media (max-width: 999px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    height: 72px;
    max-width: none;
    padding: 0 18px 0 21px;
    border-color: transparent;
    background:
      linear-gradient(rgba(73, 125, 213, 0.026) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.024) 1px, transparent 1px),
      radial-gradient(ellipse at 50% 118%, rgba(47, 107, 255, 0.105), transparent 58%),
      radial-gradient(ellipse at 18% 0%, rgba(126, 170, 255, 0.065), transparent 42%),
      linear-gradient(180deg, rgb(10, 16, 30), rgb(3, 7, 17));
    background-size: 40px 40px, 40px 40px, auto, auto, auto;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -1px 0 rgba(126, 170, 255, 0.035),
      0 10px 34px rgba(0, 0, 0, 0.055);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    contain: paint;
  }

  .header::after {
    inset: auto 0 0;
    height: 1px;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(126, 170, 255, 0.14) 0%,
        rgba(126, 170, 255, 0.07) 36%,
        rgba(126, 170, 255, 0.025) 58%,
        rgba(126, 170, 255, 0) 82%);
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
  }

  .header__logo {
    min-height: 44px;
    gap: 8px;
  }

  .header__logo img {
    width: 64px;
  }

  .header__logo-text {
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0;
  }

  .header__logo-extra {
    display: none;
  }

  .header__button {
    width: 95px;
    height: 40px;
    padding: 0;
    justify-self: end;
    border-radius: 999px;
    font-size: 0;
    box-shadow:
      0 8px 22px rgba(47, 107, 255, 0.32),
      0 0 30px rgba(73, 125, 213, 0.24);


  }

  .header__button::before {
    content: attr(data-mobile-label);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }

  .header__menu {
    display: inline-flex;
    width: 24px;
    height: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
  }

  .header__menu span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 14px rgba(126, 170, 255, 0.20);
    transition:
      transform 300ms var(--ease-premium),
      opacity 260ms var(--ease-premium);
  }

  body.is-mobile-sidebar-open .header__menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.is-mobile-sidebar-open .header__menu span:nth-child(2) {
    opacity: 0;
  }

  body.is-mobile-sidebar-open .header__menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-sidebar {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: block;
    width: 100%;
    max-width: 100vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    contain: layout paint;
    transition:
      opacity 420ms var(--ease-premium),
      visibility 0s linear 760ms;
  }

  .mobile-sidebar[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.is-mobile-sidebar-open {
    overflow: hidden;
  }

  body.is-mobile-sidebar-open .mobile-sidebar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 420ms var(--ease-premium),
      visibility 0s linear 0s;
  }

  .mobile-sidebar__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(1, 4, 12, 0.46);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-sidebar__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(308px, 100vw);
    padding: 22px 18px 18px;
    flex-direction: column;
    border: 1px solid rgba(126, 170, 255, 0.20);
    border-radius: 0;
    background:
      radial-gradient(ellipse at 70% 0%, rgba(126, 170, 255, 0.070), transparent 44%),
      radial-gradient(ellipse at 0% 92%, rgba(47, 107, 255, 0.055), transparent 48%),
      linear-gradient(180deg, rgba(12, 18, 34, 0.88), rgba(5, 9, 20, 0.95));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -1px 0 rgba(126, 170, 255, 0.08),
      -22px 0 64px rgba(0, 0, 0, 0.34),
      0 0 30px rgba(47, 107, 255, 0.06);
    backdrop-filter: blur(24px) saturate(1.18);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
    transform: translate3d(104%, 0, 0);
    transition:
      transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 860ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    will-change: transform;
  }

  .mobile-sidebar__panel::before {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(73, 125, 213, 0.017) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 62%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 62%, transparent 100%);
    content: "";
    pointer-events: none;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__panel {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .mobile-sidebar__top,
  .mobile-sidebar__link,
  .mobile-sidebar__contact {
    opacity: 0;
    transform: translate3d(22px, 0, 0);
    transition:
      opacity 520ms var(--ease-premium),
      transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.is-mobile-sidebar-open .mobile-sidebar__top,
  body.is-mobile-sidebar-open .mobile-sidebar__link,
  body.is-mobile-sidebar-open .mobile-sidebar__contact {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.is-mobile-sidebar-open .mobile-sidebar__top {
    transition-delay: 120ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__link:nth-child(1) {
    transition-delay: 170ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__link:nth-child(2) {
    transition-delay: 220ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__link:nth-child(3) {
    transition-delay: 270ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__link:nth-child(4) {
    transition-delay: 320ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__contact:nth-child(1) {
    transition-delay: 380ms;
  }

  body.is-mobile-sidebar-open .mobile-sidebar__contact:nth-child(2) {
    transition-delay: 430ms;
  }

  .mobile-sidebar__top,
  .mobile-sidebar__nav,
  .mobile-sidebar__actions,
  .mobile-sidebar__contact {
    position: relative;
    z-index: 1;
  }

  .mobile-sidebar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(230, 238, 255, 0.09);
  }

  .mobile-sidebar__logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-sidebar__logo img {
    width: 64px;
    height: auto;
  }

  .mobile-sidebar__nav {
    display: flex;
    margin-top: 18px;
    flex-direction: column;
  }

  .mobile-sidebar__link {
    display: grid;
    width: calc(100% + 36px);
    margin: 0 -18px;
    padding: 0 18px;
    min-height: 60px;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    border-bottom: 1px solid rgba(230, 238, 255, 0.085);
    color: rgba(255, 255, 255, 0.90);
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition:
      color 260ms var(--ease-premium),
      transform 260ms var(--ease-premium);
  }

  .mobile-sidebar__link span {
    transform: translateX(4px);
    color: rgba(126, 170, 255, 0.72);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-sidebar__link:active {
    transform: translateX(3px);
  }

  .mobile-sidebar__actions {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: auto;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-sidebar__contact {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    border: 1px solid rgba(126, 170, 255, 0.30);
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 18% 50%, rgba(73, 125, 213, 0.20), transparent 42%),
      linear-gradient(180deg, rgba(17, 27, 52, 0.82), rgba(8, 14, 28, 0.88));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 12px 28px rgba(0, 0, 0, 0.22),
      0 0 24px rgba(47, 107, 255, 0.08);
    color: #fff;
    font-family: "Satoshi", "Inter", sans-serif;
    transition:
      border-color 260ms var(--ease-premium),
      transform 260ms var(--ease-premium),
      box-shadow 260ms var(--ease-premium);
  }

  .mobile-sidebar__contact img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .mobile-sidebar__contact span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
  }

  .mobile-sidebar__contact strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.08;
  }

  .mobile-sidebar__contact em {
    overflow: hidden;
    color: rgba(198, 211, 238, 0.62);
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sidebar__contact:active {
    transform: translateY(1px) scale(0.992);
  }

  .mobile-sidebar__contact--telegram {
    background:
      radial-gradient(ellipse at 18% 50%, rgba(88, 148, 255, 0.22), transparent 42%),
      linear-gradient(180deg, rgba(17, 27, 52, 0.82), rgba(8, 14, 28, 0.88));
  }

  .hero {
    /* EDIT MOBILE HERO BIG PHOTO: x/y/width/height/opacity */
    --mobile-light-x: 50%;
    --mobile-light-y: 205px;
    --mobile-light-w: clamp(535px, calc(107px + 115.676vw), 685.378px);
    --mobile-light-h: clamp(430px, calc(86px + 92.973vw), 550.865px);
    --mobile-light-opacity: 0.42;
    --hero-light-opacity: var(--mobile-light-opacity);
    /* EDIT MOBILE HERO PHOTOS: x/y/size/rotate */
    --mobile-code-left-x: 35px;
    --mobile-code-left-y: 82px;
    --mobile-code-left-size: 115px;
    --mobile-code-left-rotate: 0deg;
    --mobile-code-right-x: 265px;
    --mobile-code-right-right: 0px;
    --mobile-code-right-y: 127px;
    --mobile-code-right-size: 120px;
    --mobile-code-right-rotate: 0deg;
    --mobile-design-x: 0px;
    --mobile-design-y: clamp(432px, calc(273.429px + 42.857vw), 462px);
    --mobile-design-size: 150px;
    --mobile-design-rotate: -2deg;
    height: 842px;
    max-width: none;
    overflow: hidden;
    background:
      linear-gradient(rgba(73, 125, 213, 0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.018) 1px, transparent 1px),
      #02060f;
    background-size: 40px 40px, 40px 40px, auto;
  }

  .tech-section,
  .projects-section,
  .stack-section,
  .globe-section,
  .reviews-section,
  .academy-section,
  .site-footer {
    background: #02060f;
  }

  .hero::before {
    top: -34px;
    bottom: auto;
    left: 50%;
    right: auto;
    width: min(780px, 176vw);
    height: 560px;
    opacity: 0.34;
    background:
      linear-gradient(112deg, transparent 0 37%, rgba(96, 153, 255, 0.055) 39%, rgba(96, 153, 255, 0.020) 41%, transparent 44%),
      linear-gradient(248deg, transparent 0 45%, rgba(170, 204, 255, 0.045) 47%, rgba(73, 132, 255, 0.018) 49%, transparent 52%),
      linear-gradient(94deg, transparent 0 49%, rgba(50, 112, 255, 0.026) 50%, transparent 51%),
      radial-gradient(circle at 18% 16%, rgba(248, 252, 255, 0.050) 0 1.2%, rgba(46, 111, 255, 0.022) 5%, transparent 12%),
      radial-gradient(circle at 82% 22%, rgba(63, 124, 255, 0.052) 0 1.4%, rgba(25, 79, 230, 0.020) 6%, transparent 14%);
    filter: blur(6px);
    transform: translateX(-50%);
    mix-blend-mode: screen;
  }

  .hero::after {
    top: 24px;
    bottom: auto;
    left: 50%;
    right: auto;
    width: min(720px, 162vw);
    height: 520px;
    opacity: 0.28;
    background:
      linear-gradient(68deg, transparent 0 36%, rgba(83, 145, 255, 0.042) 38%, rgba(83, 145, 255, 0.014) 40%, transparent 43%),
      linear-gradient(126deg, transparent 0 54%, rgba(226, 239, 255, 0.030) 55%, rgba(62, 124, 255, 0.014) 57%, transparent 60%),
      radial-gradient(circle at 13% 36%, rgba(45, 105, 255, 0.035) 0 1.1%, transparent 10%),
      radial-gradient(circle at 88% 34%, rgba(245, 250, 255, 0.030) 0 1%, rgba(64, 126, 255, 0.014) 5%, transparent 12%);
    filter: blur(8px);
    transform: translateX(-50%);
    mix-blend-mode: screen;
  }

  .hero__fx {
    z-index: 1;
    opacity: 0;
  }

  .hero__light {
    top: var(--mobile-light-y);
    left: var(--mobile-light-x);
    z-index: 0;
    width: var(--mobile-light-w);
    height: var(--mobile-light-h);
    opacity: var(--hero-light-opacity);
    object-fit: cover;
    filter: none;
    mix-blend-mode: normal;
  }

  .hero__content {
    position: relative;
    width: 100%;
    margin-top: 164px;
    padding: 0 clamp(16px, calc(3.2px + 3.459vw), 20.497px);
  }

  .hero__content::before {
    content: none;
  }

  .hero__content>* {
    position: relative;
    z-index: 1;
  }

  .hero__badge {
    min-width: 0;
    height: clamp(37px, calc(7.4px + 8vw), 47.4px);
    padding: 0 clamp(17px, calc(3.4px + 3.676vw), 21.779px);
    gap: clamp(8px, calc(1.6px + 1.73vw), 10.249px);
    border-radius: 999px;
    font-size: clamp(13px, calc(2.6px + 2.811vw), 16.654px);
    white-space: nowrap;
  }

  .hero__badge svg {
    width: clamp(18px, calc(3.6px + 3.892vw), 23.059px);
    height: clamp(18px, calc(3.6px + 3.892vw), 23.059px);
    flex: 0 0 clamp(18px, calc(3.6px + 3.892vw), 23.059px);
  }

  .tech-section__badge,
  .projects-section__badge,
  .stack-section__badge,
  .globe-section__badge,
  .reviews-section__badge,
  .academy-section__badge {
    min-width: 0;
    height: 37px;
    padding: 0 17px;
    gap: 8px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }

  .tech-section__badge svg,
  .projects-section__badge svg,
  .stack-section__badge svg,
  .globe-section__badge svg,
  .reviews-section__badge svg,
  .academy-section__badge svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .hero__title {
    margin-top: clamp(18px, calc(3.6px + 3.892vw), 23.059px);
    font-size: clamp(41px, calc(8.2px + 8.865vw), 52.524px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero__mobile-break {
    display: block;
  }

  .hero__desktop-break {
    display: none;
  }

  .hero__title .hero__accent {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0;
    text-decoration-thickness: 4%;
    text-underline-offset: -2px;
  }

  .hero__product-word {
    margin-left: clamp(7px, calc(1.4px + 1.514vw), 8.968px);
  }

  .hero__title-tail {
    display: none;
  }

  .hero__description {
    width: 100%;
    max-width: clamp(329px, calc(65.8px + 71.135vw), 421.475px);
    align-self: stretch;
    margin: clamp(16px, calc(3.2px + 3.459vw), 20.497px) auto 0;
    color: rgba(255, 255, 255, 0.47);
    text-align: center;
    font-family: Inter;
    font-size: clamp(14px, calc(2.8px + 3.027vw), 17.935px);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(20px, calc(4px + 4.324vw), 25.622px);
    letter-spacing: clamp(0.28px, calc(0.056px + 0.061vw), 0.359px);
  }

  .hero__button {
    width: clamp(232px, calc(46.4px + 50.162vw), 297.211px);
    height: clamp(55px, calc(11px + 11.892vw), 70.459px);
    margin-top: clamp(29px, calc(5.8px + 6.27vw), 37.151px);
    gap: clamp(16px, calc(3.2px + 3.459vw), 20.497px);
    padding: 0 clamp(9px, calc(1.8px + 1.946vw), 11.53px) 0 clamp(23px, calc(4.6px + 4.973vw), 29.465px);
    font-size: clamp(14px, calc(2px + 3.243vw), 18.216px);
  }

  .hero__button:hover {
    width: clamp(242px, calc(48.4px + 52.324vw), 310.022px);
  }

  .hero__button-icon {
    width: clamp(41px, calc(8.2px + 8.865vw), 52.524px);
    height: clamp(41px, calc(8.2px + 8.865vw), 52.524px);
  }

  .hero__button-icon svg {
    width: clamp(27px, calc(5.4px + 5.838vw), 34.589px);
    height: clamp(27px, calc(5.4px + 5.838vw), 34.589px);
  }

  .hero-card {
    display: none;
  }

  .hero__visual {
    display: none;
  }

  .hero-mobile-art {
    position: absolute;
    z-index: 2;
    display: block;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    filter:
      saturate(1.12) contrast(1.05) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 18px rgba(73, 125, 213, 0.28));
    will-change: transform;
  }

  .hero-mobile-art--code-left {
    --mobile-art-rotate: var(--mobile-code-left-rotate);
    top: var(--mobile-code-left-y);
    left: var(--mobile-code-left-x);
    width: var(--mobile-code-left-size);
    transform: rotate(var(--mobile-art-rotate));
  }

  .hero-mobile-art--code-right {
    --mobile-art-rotate: var(--mobile-code-right-rotate);
    top: var(--mobile-code-right-y);
    right: var(--mobile-code-right-right);
    left: auto;
    width: var(--mobile-code-right-size);
    transform: rotate(var(--mobile-art-rotate));
  }

  .hero-mobile-art--design {
    --mobile-art-rotate: var(--mobile-design-rotate);
    top: var(--mobile-design-y);
    left: var(--mobile-design-x);
    z-index: 3;
    width: var(--mobile-design-size);
    transform: rotate(var(--mobile-art-rotate));
  }

  .hero__features {
    bottom: clamp(76px, calc(264.571px - 42.857vw), 106px);
    width: calc(100% - 40px);
    max-width: 360px;
    height: 176px;
    display: flex;
    padding: 24px 29.638px 25px 29.638px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22.039px;
    border-radius: 25.079px;
    border: 0.76px solid rgba(230, 238, 255, 0.10);
    background: rgba(15, 17, 30, 0.59);
    box-shadow: 0 3.04px 11.399px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(13px);
    overflow: hidden;
    touch-action: pan-y;
  }

  .hero__features::after {
    position: absolute;
    right: 19px;
    bottom: 17px;
    width: 28px;
    height: 7px;
    background:
      radial-gradient(circle at 3.5px 3.5px, #4f86ff 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 14px 3.5px, rgba(255, 255, 255, 0.32) 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 24.5px 3.5px, rgba(255, 255, 255, 0.24) 0 3.2px, transparent 3.35px);
    filter: drop-shadow(0 0 7px rgba(79, 134, 255, 0.22));
    content: "";
  }

  .hero__features[data-active="1"]::after {
    background:
      radial-gradient(circle at 3.5px 3.5px, rgba(255, 255, 255, 0.30) 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 14px 3.5px, #4f86ff 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 24.5px 3.5px, rgba(255, 255, 255, 0.24) 0 3.2px, transparent 3.35px);
  }

  .hero__features[data-active="2"]::after {
    background:
      radial-gradient(circle at 3.5px 3.5px, rgba(255, 255, 255, 0.30) 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 14px 3.5px, rgba(255, 255, 255, 0.30) 0 3.2px, transparent 3.35px),
      radial-gradient(circle at 24.5px 3.5px, #4f86ff 0 3.2px, transparent 3.35px);
  }

  .hero__features>svg {
    display: none;
  }

  .hero-feature {
    position: absolute;
    inset: 24px 29px 25px;
    display: flex;
    width: auto;
    min-height: 0;
    padding: 0;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translate3d(18px, 0, 0) scale(0.985);
    transition:
      opacity 780ms var(--ease-cinematic),
      transform 780ms var(--ease-cinematic);
    pointer-events: none;
  }

  .hero-feature.is-active,
  .hero__features:not([data-active]) .hero-feature:first-of-type {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
  }

  .hero-feature h2 {
    margin-top: 2px;
    font-size: 20px;
    font-weight: 700;
  }

  .hero-feature p {
    width: min(258px, 100%);
    max-width: 258px;
    font-size: 12.2px;
    line-height: 1.45;
  }
}

@media (min-width: 501px) and (max-width: 999px) {
  .hero-mobile-art,
  .hero__visual,
  .hero-card {
    display: none;
  }

  .hero__content {
    width: min(500px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .hero__badge,
  .hero__title,
  .hero__description,
  .hero__button {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__description {
    width: min(360px, calc(100% - 48px));
  }
}

@media (min-width: 1000px) and (max-width: 1400px) {
  .hero-mobile-art,
  .hero__visual,
  .hero-card {
    display: none;
  }
}

@media (max-width: 999px) {
  .hero__fx,
  .tech-section__fx,
  .projects-section__fx,
  .globe-section__particles,
  .globe-section__satellites {
    display: none;
  }

  .tech-map__active-orb {
    display: none;
  }

  .stack-showcase__core::after {
    animation: none;
    will-change: auto;
  }

  .stack-section.is-stack-revealed .stack-showcase__core {
    animation: stackRevealCenter 980ms var(--ease-cinematic) 720ms both;
    will-change: auto;
  }

  .stack-section.is-stack-revealed .stack-showcase__logo {
    animation: stackRevealLogo 900ms var(--ease-cinematic) 900ms both;
    will-change: auto;
  }

  .tech-section.is-tech-intro-running .tech-guide-cursor {
    animation: techGuideCursorMobile 1700ms var(--ease-apple-out) 4650ms both;
  }

  .tech-section.is-tech-guide-clicking .tech-guide-cursor::after {
    animation: techGuideCursorClick 420ms var(--ease-cinematic) both;
  }

  .tech-map__wire-svg.is-animating .tech-map__wire-active,
  .tech-node.is-animating .tech-node__outer-stroke-active {
    animation: none;
  }

  .tech-map__wire-active,
  .tech-node__outer-stroke-active {
    filter: none;
  }

  .tech-info {
    will-change: auto;
    contain: paint;
  }

  .tech-section::before,
  .tech-section::after,
  .tech-board,
  .tech-map__grid::after,
  .tech-info,
  .tech-info::before,
  .tech-info__role,
  .tech-info__tags span,
  .tech-info__tags span::before,
  .tech-info__best,
  .tech-info__best-icon {
    transition: none;
  }

  .tech-map__grid::after {
    opacity: 0;
  }

  .tech-info::before {
    background: rgba(var(--active-node-rgb), 0.62);
    box-shadow: none;
  }

  .tech-info.is-tech-info-revealing {
    animation: techInfoMobileSwitch 420ms var(--ease-cinematic) both;
  }

  .tech-info.is-tech-info-revealing::before {
    box-shadow: none;
    animation: techInfoMobileLine 420ms var(--ease-cinematic) both;
  }

  .tech-info.is-tech-info-revealing .tech-info__role,
  .tech-info.is-tech-info-revealing .tech-info__title,
  .tech-info.is-tech-info-revealing .tech-info__text,
  .tech-info.is-tech-info-revealing .tech-info__best,
  .tech-info.is-tech-info-revealing .tech-info__tags,
  .tech-info.is-tech-info-revealing .tech-info__tags span {
    filter: none;
  }

  .tech-info.is-tech-info-revealing .tech-info__role {
    animation: techInfoMobileItem 360ms var(--ease-cinematic) 20ms both;
  }

  .tech-info.is-tech-info-revealing .tech-info__title {
    animation: techInfoMobileItem 390ms var(--ease-cinematic) 70ms both;
  }

  .tech-info.is-tech-info-revealing .tech-info__text {
    animation: techInfoMobileItem 400ms var(--ease-cinematic) 120ms both;
  }

  .tech-info.is-tech-info-revealing .tech-info__best {
    animation: techInfoMobileItem 380ms var(--ease-cinematic) 180ms both;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags {
    animation: techInfoMobileItem 340ms var(--ease-cinematic) 150ms both;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags span {
    animation: techInfoMobileBadge 320ms var(--ease-cinematic) both;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(1) {
    animation-delay: 210ms;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(2) {
    animation-delay: 250ms;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(3) {
    animation-delay: 290ms;
  }

  .tech-info.is-tech-info-revealing .tech-info__tags span:nth-child(4) {
    animation-delay: 330ms;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }

  body.is-loaded:not(.is-reveal-complete) .hero__features {
    animation: reveal-panel 0.92s var(--ease-cinematic) 1.38s both;
  }

  .tech-section::before,
  .projects-section::before,
  .stack-section::before,
  .globe-section::after,
  .reviews-section::before,
  .academy-section::before,
  .site-footer::before {
    background:
      radial-gradient(circle, rgba(173, 204, 255, 0.075) 0 1px, transparent 1.45px),
      linear-gradient(rgba(73, 125, 213, 0.030) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.030) 1px, transparent 1px),
      linear-gradient(rgba(73, 125, 213, 0.010) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.010) 1px, transparent 1px);
    background-position: 24px 18px, center top, center top, center top, center top;
    background-size: 132px 132px, 96px 96px, 96px 96px, 24px 24px, 24px 24px;
    z-index: 0;
    opacity: 0.68;
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%),
      radial-gradient(ellipse 88% 68% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.82) 60%, transparent 86%);
    mask-composite: intersect;
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%),
      radial-gradient(ellipse 88% 68% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.82) 60%, transparent 86%);
    -webkit-mask-composite: source-in;
  }

  .tech-section::after,
  .projects-section::after,
  .stack-section::after,
  .globe-section::before {
    background:
      linear-gradient(112deg, transparent 0 35%, rgba(73, 135, 255, 0.040) 37%, rgba(73, 135, 255, 0.012) 39%, transparent 42%),
      linear-gradient(248deg, transparent 0 47%, rgba(172, 205, 255, 0.028) 49%, rgba(64, 126, 255, 0.012) 51%, transparent 54%),
      linear-gradient(91deg, transparent 0 49.35%, rgba(45, 115, 255, 0.018) 50%, transparent 50.7%),
      radial-gradient(circle at 84% 30%, rgba(45, 115, 255, 0.036) 0 1.2%, transparent 9%),
      radial-gradient(circle at 16% 72%, rgba(35, 82, 206, 0.030) 0 1.2%, transparent 10%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.22));
    filter: none;
    mix-blend-mode: screen;
    opacity: 0.35;
  }

  .site-footer {
    background:
      radial-gradient(ellipse 82% 42% at 50% 0%, rgba(74, 126, 255, 0.105), transparent 62%),
      radial-gradient(ellipse 62% 38% at 8% 92%, rgba(52, 102, 215, 0.10), transparent 64%),
      radial-gradient(ellipse 62% 38% at 96% 78%, rgba(126, 170, 255, 0.075), transparent 66%),
      linear-gradient(180deg, rgba(5, 10, 21, 0.99), rgba(2, 6, 14, 1));
    box-shadow:
      inset 0 1px 0 rgba(126, 170, 255, 0.09),
      inset 0 64px 140px rgba(47, 107, 255, 0.045),
      inset 0 -90px 170px rgba(47, 107, 255, 0.055);
  }

  .site-footer::before {
    background:
      radial-gradient(ellipse 74% 34% at 50% 8%, rgba(128, 174, 255, 0.13), rgba(47, 107, 255, 0.045) 40%, transparent 72%),
      radial-gradient(ellipse 46% 30% at 0% 66%, rgba(47, 107, 255, 0.12), transparent 70%),
      radial-gradient(ellipse 54% 30% at 100% 82%, rgba(111, 155, 255, 0.10), transparent 72%),
      radial-gradient(ellipse 86% 24% at 50% 100%, rgba(73, 125, 213, 0.13), transparent 72%),
      linear-gradient(rgba(73, 125, 213, 0.032) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 125, 213, 0.028) 1px, transparent 1px);
    background-position: center, center, center, center, center top, center top;
    background-size: auto, auto, auto, auto, 72px 72px, 72px 72px;
    opacity: 0.92;
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 5%, #000 100%),
      radial-gradient(ellipse 96% 84% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.88) 62%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 5%, #000 100%),
      radial-gradient(ellipse 96% 84% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.88) 62%, transparent 100%);
    -webkit-mask-composite: source-in;
  }

  .site-footer::after {
    background: radial-gradient(ellipse at 50% 50%,
        rgba(150, 190, 255, 0.24) 0%,
        rgba(126, 170, 255, 0.12) 38%,
        rgba(126, 170, 255, 0.03) 68%,
        rgba(126, 170, 255, 0) 100%);
  }

  .tech-section::after {
    background:
      linear-gradient(112deg, transparent 0 36%, rgba(96, 153, 255, 0.034) 38%, transparent 41%),
      linear-gradient(248deg, transparent 0 48%, rgba(165, 197, 255, 0.024) 50%, transparent 53%),
      radial-gradient(circle at 18% 58%, rgba(var(--active-node-rgb), 0.025) 0 1.4%, transparent 11%),
      radial-gradient(circle at 82% 62%, rgba(45, 115, 255, 0.026) 0 1.4%, transparent 12%);
    opacity: 0.32;
  }

  .projects-section::after {
    opacity: 0.33;
  }

  .academy-section::after {
    background:
      linear-gradient(116deg, transparent 0 38%, rgba(86, 148, 255, 0.030) 40%, transparent 43%),
      linear-gradient(244deg, transparent 0 52%, rgba(200, 222, 255, 0.020) 54%, transparent 57%),
      radial-gradient(circle at 18% 16%, rgba(250, 253, 255, 0.018) 0 1%, rgba(50, 112, 255, 0.010) 5%, transparent 11%),
      radial-gradient(circle at 82% 24%, rgba(44, 104, 255, 0.020) 0 1.2%, rgba(31, 87, 235, 0.010) 5%, transparent 12%),
      linear-gradient(180deg, #030711 0%, transparent 18%, transparent 80%, rgba(3, 7, 17, 0.16) 100%),
      linear-gradient(90deg, #030711 0%, transparent 12%, transparent 88%, #030711 100%);
  }

  .hero {
    --mobile-light-opacity: 0.42;
    --hero-light-opacity: var(--mobile-light-opacity);
  }

  .hero__light {
    display: block;
    opacity: var(--hero-light-opacity);
  }

  .hero::before,
  .hero::after,
  .tech-section::after,
  .projects-section::after,
  .stack-section::after,
  .globe-section::before,
  .academy-section::after {
    display: block;
    pointer-events: none;
    filter: none;
    mix-blend-mode: screen;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%);
  }

  .hero::before {
    top: -120px;
    height: 780px;
    opacity: 0.72;
    background:
      radial-gradient(ellipse 96% 50% at 50% -18%, rgba(37, 112, 255, 0.32) 0%, rgba(37, 112, 255, 0.144) 38%, transparent 74%),
      radial-gradient(ellipse 58% 42% at 3% 34%, rgba(25, 86, 235, 0.256) 0%, rgba(25, 86, 235, 0.088) 46%, transparent 82%),
      radial-gradient(ellipse 60% 42% at 97% 34%, rgba(75, 139, 255, 0.272) 0%, rgba(75, 139, 255, 0.088) 44%, transparent 82%);
  }

  .hero::after {
    top: 170px;
    height: 720px;
    opacity: 0.70;
    background:
      radial-gradient(ellipse 62% 34% at 50% 52%, rgba(48, 118, 255, 0.24) 0%, rgba(48, 118, 255, 0.084) 48%, transparent 82%),
      radial-gradient(ellipse 48% 30% at 20% 74%, rgba(18, 73, 210, 0.208) 0%, rgba(18, 73, 210, 0.066) 46%, transparent 80%),
      radial-gradient(ellipse 48% 30% at 80% 74%, rgba(96, 156, 255, 0.176) 0%, rgba(96, 156, 255, 0.056) 46%, transparent 80%),
      radial-gradient(ellipse 76% 28% at 50% 116%, rgba(55, 124, 255, 0.176) 0%, rgba(55, 124, 255, 0.064) 45%, transparent 82%);
  }

  .tech-section::after,
  .projects-section::after,
  .stack-section::after,
  .globe-section::before {
    opacity: 0.66;
    background:
      radial-gradient(ellipse 108% 44% at 50% -2%, rgba(38, 112, 255, 0.224) 0%, rgba(38, 112, 255, 0.072) 50%, transparent 88%),
      radial-gradient(ellipse 72% 48% at -14% 50%, rgba(19, 72, 210, 0.208) 0%, rgba(19, 72, 210, 0.062) 52%, transparent 90%),
      radial-gradient(ellipse 72% 48% at 114% 56%, rgba(82, 145, 255, 0.192) 0%, rgba(82, 145, 255, 0.056) 50%, transparent 90%),
      radial-gradient(ellipse 76% 34% at 50% 104%, rgba(28, 93, 235, 0.16) 0%, rgba(28, 93, 235, 0.044) 50%, transparent 88%);
  }

  .tech-section::after {
    opacity: 0.58;
    background:
      radial-gradient(ellipse 86% 36% at 50% 0%, rgba(42, 116, 255, 0.192) 0%, rgba(42, 116, 255, 0.062) 50%, transparent 86%),
      radial-gradient(ellipse 58% 42% at -8% 56%, rgba(var(--active-node-rgb), 0.136) 0%, rgba(var(--active-node-rgb), 0.044) 50%, transparent 88%),
      radial-gradient(ellipse 58% 42% at 108% 58%, rgba(57, 124, 255, 0.16) 0%, rgba(57, 124, 255, 0.052) 50%, transparent 88%);
  }

  .academy-section::after {
    opacity: 0.61;
    background:
      radial-gradient(ellipse 110% 44% at 50% -2%, rgba(42, 116, 255, 0.208) 0%, rgba(42, 116, 255, 0.062) 50%, transparent 90%),
      radial-gradient(ellipse 70% 48% at -14% 48%, rgba(20, 74, 215, 0.192) 0%, rgba(20, 74, 215, 0.052) 50%, transparent 90%),
      radial-gradient(ellipse 70% 48% at 114% 54%, rgba(98, 158, 255, 0.16) 0%, rgba(98, 158, 255, 0.048) 50%, transparent 90%);
  }

  .reviews-section::before,
  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-section__heart::after {
    display: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-section__heart,
  .reviews-section__heart::before,
  .reviews-section__heart img,
  .reviews-marquee {
    animation: none;
    filter: none;
    transform: none;
  }

  .reviews-section__heart::before {
    display: none;
  }

  .reviews-section__heart {
    opacity: 0.34;
    transform: translateX(-50%);
  }

  .reviews-marquee__row {
    animation-play-state: running;
    will-change: transform;
  }

  .reviews-marquee__row--left {
    animation-duration: 96s;
  }

  .reviews-marquee__row--right {
    animation-duration: 108s;
  }

  .reviews-marquee::after {
    display: none;
    content: none;
  }

  .review-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-mobile-art,
  .review-card,
  .academy-board {
    contain: paint;
  }

  .hero-mobile-art,
  .project-card__floater,
  .reviews-section__heart,
  .stack-showcase__logo {
    will-change: auto;
  }

  .project-card__floater {
    animation: none;
    transform: scale(var(--project-floater-scale));
  }

  .reviews-marquee__row {
    will-change: transform;
  }

  .reviews-marquee__track[hidden] {
    display: none;
  }

  .academy-game__cell {
    transition: none;
  }

  .academy-game__cell.is-filled,
  .academy-game__cell.is-active,
  .academy-game__cell.is-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@keyframes globeFallbackDotsDrift {
  0% {
    background-position: center 10%;
  }

  100% {
    background-position: calc(50% + 52px) 10%;
  }
}

@keyframes globeFallbackLatitudeDrift {
  0% {
    opacity: 0.36;
    transform: perspective(760px) rotateX(61deg) translateY(-5%) translateX(0);
  }

  50% {
    opacity: 0.48;
  }

  100% {
    opacity: 0.36;
    transform: perspective(760px) rotateX(61deg) translateY(-5%) translateX(34px);
  }
}

@media (max-width: 500px) {
  :root {
    --mobile-grid-margin: 16px;
    --mobile-grid-gutter: 10px;
  }

  .header {
    padding-right: var(--mobile-grid-margin);
    padding-left: var(--mobile-grid-margin);
  }

  .tech-section {
    padding-right: 0;
    padding-left: 0;
  }

  .tech-board {
    --tech-board-info-width: 100%;
    width: calc(100% - (var(--mobile-grid-margin) * 2));
    max-width: 396px;
    margin-top: 40px;
    padding: 15px;
    flex-direction: column;
    gap: 15px;
    border-radius: 24px;
  }

  .tech-board__side--map,
  .tech-board__side--info {
    width: 100%;
    flex: 0 0 auto;
  }

  .tech-board__side--info {
    margin-top: -46px;
  }

  .tech-board__side--map {
    min-height: 335px;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .tech-map {
    min-height: 335px;
    --team-stage-width: 548px;
    --team-stage-height: 330px;
    --team-stage-scale: 0.796;
    --team-stage-y: -32px;
    --team-label-scale: 1;
    --team-bg-width: 548px;
    --team-bg-height: 355px;
    --team-frontend-x: 55px;
    --team-frontend-y: 60px;
    --team-backend-x: 315px;
    --team-backend-y: 30px;
    --team-seo-x: 70px;
    --team-seo-y: 210px;
    --team-designer-x: 330px;
    --team-designer-y: 200px;
  }

  .tech-info {
    width: 100%;
    margin: 0;
    padding: 21px 22px 20px;
    border-radius: 22px;
  }

  .tech-info::before {
    top: 46px;
    bottom: 38px;
  }

  .tech-info__content {
    gap: 18px;
  }

  .tech-info__main {
    gap: 13px;
  }

  .tech-info__role {
    height: 32px;
    padding: 8px 14px;
  }

  .tech-info__role-span {
    font-size: 10px;
  }

  .tech-info__title,
  .tech-info__title span,
  .tech-info__title em,
  .tech-info__title strong {
    font-size: 31px;
    letter-spacing: -0.62px;
  }

  .tech-info__text {
    font-size: 12px;
    line-height: 1.48;
  }

  .tech-info__tags {
    gap: 7px;
  }

  .tech-info__tags span {
    height: 28px;
    padding: 0 11px;
    font-size: 10px;
  }

  .tech-info__tags span::before {
    width: 5px;
    height: 5px;
  }

  .tech-info__best {
    padding: 11px 12px;
    gap: 9px;
    border-radius: 12px;
  }

  .tech-section__head,
  .tech-board,
  .projects-section__head,
  .projects-board,
  .stack-section__head,
  .stack-showcase,
  .globe-section__head,
  .globe-contacts,
  .reviews-section__head,
  .reviews-marquee,
  .academy-section__head,
  .academy-board,
  .academy-controls,
  .site-footer__shell {
    margin-right: auto;
    margin-left: auto;
  }

  .tech-section__head,
  .projects-section__head,
  .stack-section__head,
  .globe-section__head,
  .reviews-section__head,
  .academy-section__head {
    max-width: none;
  }

  .site-footer__shell {
    width: 100%;
    padding: 58px var(--mobile-grid-margin) 28px;
  }

  .site-footer__top {
    gap: 30px;
  }

  .site-footer__logo {
    min-height: 30px;
    gap: 7px;
    font-size: 16px;
  }

  .site-footer__logo-image {
    width: 62px;
  }

  .site-footer__description {
    max-width: 330px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .site-footer__socials {
    gap: 14px;
  }

  .site-footer__social {
    gap: 7px;
    font-size: 12px;
  }

  .site-footer__social img {
    width: 32px;
    height: 32px;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
    width: 100%;
  }

  .site-footer__column {
    flex: none;
    min-width: 0;
  }

  .site-footer__heading {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .site-footer__column a {
    font-size: 12px;
    line-height: 1.15;
  }

  .site-footer__column a:not(:first-of-type) {
    margin-top: 12px;
  }

  .site-footer__subscribe {
    width: 100%;
    max-width: 100%;
  }

  .site-footer__subscribe-text {
    max-width: 310px;
    margin: -6px 0 6px;
    font-size: 12px;
    line-height: 1.5;
  }

  .site-footer__field input {
    height: 50px;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 13px;
  }

  .site-footer__subscribe-button {
    width: fit-content;
    height: 46px;
    padding: 0 7px 0 20px;
    font-size: 12px;
  }

  .site-footer__button-icon {
    width: 31px;
    height: 31px;
  }

  .site-footer__bottom {
    margin-top: 34px;
    padding-top: 18px;
  }

  .site-footer__copyright {
    font-size: 11px;
    line-height: 1.45;
  }

  .projects-section {
    padding: 82px 0 84px;
  }

  .projects-section__head {
    width: calc(100% - (var(--mobile-grid-margin) * 2));
  }

  .projects-section__title {
    margin-top: 18px;
  }

  .projects-section__subtitle {
    margin-top: 16px;
  }

  .projects-board {
    display: flex;
    width: 100%;
    max-width: none;
    margin-top: 34px;
    padding: 0 var(--mobile-grid-margin);
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    grid-template-columns: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    touch-action: pan-y;
    user-select: none;
    scroll-padding-inline: var(--mobile-grid-margin);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-board.is-dragging,
  .projects-board.is-snapping {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .projects-board::-webkit-scrollbar {
    display: none;
  }

  .projects-slider-dots {
    position: relative;
    z-index: 3;
    display: flex;
    width: fit-content;
    height: 24px;
    margin: 7px auto 0;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid rgba(126, 170, 255, 0.18);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(20, 28, 51, 0.72), rgba(6, 10, 23, 0.78)),
      rgba(7, 11, 22, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 28px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
  }

  .projects-slider-dots__item {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(126, 170, 255, 0.34);
    box-shadow: 0 0 0 rgba(73, 125, 213, 0);
    transition:
      width 360ms var(--ease-premium),
      background 360ms var(--ease-premium),
      box-shadow 360ms var(--ease-premium),
      opacity 360ms var(--ease-premium);
  }

  .projects-slider-dots__item.is-active {
    width: 22px;
    background: linear-gradient(90deg, #7EAAFF, #4A7DFF);
    box-shadow:
      0 0 12px rgba(73, 125, 213, 0.46),
      0 0 26px rgba(73, 125, 213, 0.22);
  }

  .project-card {
    flex: 0 0 calc(100vw - (var(--mobile-grid-margin) * 2));
    width: calc(100vw - (var(--mobile-grid-margin) * 2));
    max-width: 468px;
    height: fit-content;
    min-height: 0;
    padding: var(--project-mobile-card-pad, 16px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .project-card--purple,
  .project-card--green,
  .project-card--blue,
  .project-card--silver {
    box-shadow: none;
  }

  .project-card__top {
    align-items: flex-start;
  }

  .project-card__type,
  .project-card__year {
    height: var(--project-mobile-type-height, 30px);
    font-size: var(--project-mobile-type-font, 10px);
    transform: none;
  }

  .project-card__type {
    gap: 7px;
    padding: 0 var(--project-mobile-type-pad, 13px);
  }

  .project-card__type span {
    width: 5px;
    height: 5px;
  }

  .project-card__year {
    min-width: var(--project-mobile-year-width, 57px);
    padding: 0 var(--project-mobile-year-pad, 14px);
    font-size: var(--project-mobile-year-font, 12px);
  }

  .project-card__visual {
    --project-mobile-visual-x: 18px;
    top: 80px;
    width: 560px;
    height: 238px;
    transform: translateX(calc(-50% + var(--project-mobile-visual-x))) scale(var(--project-mobile-visual-scale, 0.576));
    transform-origin: 50% 0;
  }

  .projects-section:not(.is-projects-revealed) .project-card__visual {
    transform: translateX(calc(-50% + var(--project-mobile-visual-x))) translateY(30px) scale(var(--project-mobile-visual-start-scale, 0.550));
  }

  .projects-section.is-projects-revealed .project-card__visual {
    animation: none;
    opacity: 1;
    transform: translateX(calc(-50% + var(--project-mobile-visual-x))) translateY(0) scale(var(--project-mobile-visual-scale, 0.576));
  }

  .project-card__screen {
    transform: translate(-50%, 24px);
  }

  .project-card__floater {
    --project-floater-scale: var(--project-mobile-floater-scale, 1.074);
  }

  .project-card__floater--left {
    top: 48px;
    left: -14px;
  }

  .project-card__floater--right {
    top: -8px;
    right: 14px;
  }

  .project-card--blue .project-card__floater--left,
  .project-card--silver .project-card__floater--left {
    top: 44px;
    left: -24px;
  }

  .project-card--silver .project-card__floater--right {
    top: -10px;
    right: 10px;
  }

  .project-card__info {
    min-height: 0;
    margin-top: var(--project-mobile-info-margin, 152px);
    padding: var(--project-mobile-info-pad-y, 21px) var(--project-mobile-info-pad-x, 22px) 20px;
    row-gap: 10px;
    border-radius: 21px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "title title"
      "subtitle subtitle"
      "stack-icon stack-text";
  }

  .project-card__title {
    overflow: hidden;
    font-size: var(--project-mobile-title-font, 20px);
    line-height: 1.2;
    letter-spacing: -0.2px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .project-card__subtitle {
    max-width: none;
    font-size: var(--project-mobile-subtitle-font, 11.5px);
    line-height: 1.45;
  }

  .project-card__subtitle strong {
    font-size: var(--project-mobile-subtitle-font, 11.5px);
    line-height: 1.45;
  }

  .project-card__tags {
    display: none;
  }

  .project-card__stack-text {
    min-width: 0;
    gap: 8px;
    font-size: var(--project-mobile-stack-font, 10px);
    line-height: 1.35;
  }

  .project-card__stack-text strong {
    font-size: var(--project-mobile-stack-strong-font, 12px);
    line-height: 1.35;
  }

  .project-card__stack-text span {
    white-space: normal;
  }

  .project-card__link {
    display: none;
  }

  .projects-section.is-projects-revealed .project-card,
  .projects-section.is-projects-revealed .project-card__visual,
  .projects-section.is-projects-revealed .project-card__info,
  .projects-section.is-projects-revealed .project-card__type,
  .projects-section.is-projects-revealed .project-card__year {
    animation: none;
  }

  .project-card__info {
    backdrop-filter: blur(8px) saturate(1.08);
    -webkit-backdrop-filter: blur(8px) saturate(1.08);
  }

  @keyframes projectVisualRevealMobile {
    0% {
      opacity: 0;
      transform: translateX(calc(-50% + var(--project-mobile-visual-x))) translateY(30px) scale(var(--project-mobile-visual-start-scale, 0.550));
    }

    100% {
      opacity: 1;
      transform: translateX(calc(-50% + var(--project-mobile-visual-x))) translateY(0) scale(var(--project-mobile-visual-scale, 0.576));
    }
  }
}

@media (max-width: 500px) {
  .stack-section {
    padding: 76px 0 58px;
    overflow-x: clip;
  }

  .stack-showcase {
    display: block;
    width: min(calc(398px * var(--stack-mobile-scale)), calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    height: calc(464px * var(--stack-mobile-scale));
    margin-top: 30px;
    gap: 0;
    contain: none;
    overflow: visible;
  }

  .stack-showcase__bg {
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 0.66;
    transform: none;
  }

  .stack-showcase__tick--top {
    top: calc(50% - (174px * var(--stack-mobile-scale)));
  }

  .stack-showcase__tick--bottom {
    top: calc(50% + (168px * var(--stack-mobile-scale)));
  }

  .stack-showcase__core {
    width: calc(138px * var(--stack-mobile-scale));
    height: calc(138px * var(--stack-mobile-scale));
  }

  .stack-showcase__core::after {
    inset: calc(28px * var(--stack-mobile-scale));
  }

  .stack-showcase__logo {
    width: calc(82px * var(--stack-mobile-scale));
  }

  .stack-card,
  .stack-card--frontend,
  .stack-card--backend,
  .stack-card--design,
  .stack-card--seo {
    position: absolute;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .stack-card--frontend {
    top: calc(65px * var(--stack-mobile-scale));
    left: calc(-7px * var(--stack-mobile-scale));
    transform-origin: top left;
  }

  .stack-card--backend {
    top: calc(65px * var(--stack-mobile-scale));
    right: calc(-7px * var(--stack-mobile-scale));
    transform-origin: top right;
  }

  .stack-card--design {
    top: calc(292px * var(--stack-mobile-scale));
    left: calc(36px * var(--stack-mobile-scale));
    transform-origin: top left;
  }

  .stack-card--seo {
    top: calc(292px * var(--stack-mobile-scale));
    right: calc(36px * var(--stack-mobile-scale));
    transform-origin: top right;
  }

  .stack-card__icons,
  .stack-card__single-icon {
    min-height: calc(49px * var(--stack-mobile-scale));
    border-radius: calc(14px * var(--stack-mobile-scale));
  }

  .stack-card__icons {
    box-sizing: border-box;
    gap: calc(10px * var(--stack-mobile-scale));
    padding: calc(7px * var(--stack-mobile-scale)) calc(12px * var(--stack-mobile-scale));
  }

  .stack-card__icons:not(.stack-card__icons--small) {
    width: calc(188px * var(--stack-mobile-scale));
  }

  .stack-card__single-icon {
    padding: calc(9px * var(--stack-mobile-scale));
  }

  .stack-card__divider {
    height: calc(25px * var(--stack-mobile-scale));
  }

  .stack-card__title {
    margin-top: calc(17px * var(--stack-mobile-scale));
    font-size: calc(14px * var(--stack-mobile-scale));
    line-height: 1.15;
    white-space: nowrap;
  }

  .stack-card__text {
    display: none;
  }
}

@media (min-width: 360px) and (max-width: 500px) {
  .tech-map {
    --team-label-scale: 1.10;
    --team-dot-scale: 1.10;
    --team-dot-active-scale: 1.265;
    --team-center-scale: 1.10;
  }
}

@media (max-width: 999px) {
  html.mobile-lean-runtime {
    scroll-behavior: auto;
  }

  .mobile-lean-runtime .hero__fx,
  .mobile-lean-runtime .tech-section__fx,
  .mobile-lean-runtime .projects-section__fx,
  .mobile-lean-runtime .globe-section__particles,
  .mobile-lean-runtime .globe-section__satellites,
  .mobile-lean-runtime .globe-stage__canvas,
  .mobile-lean-runtime .globe-stage__fallback {
    display: none;
  }

  .mobile-lean-runtime .hero-mobile-art,
  .mobile-lean-runtime .project-card__floater,
  .mobile-lean-runtime .cases-hero__sphere,
  .mobile-lean-runtime .stack-showcase__logo,
  .mobile-lean-runtime .tech-map__active-orb {
    animation: none;
    will-change: auto;
  }

  .mobile-lean-runtime .hero-mobile-art {
    filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.38));
  }

  .mobile-lean-runtime .project-card__floater--asset img {
    filter:
      drop-shadow(0 22px 18px rgba(0, 0, 0, 0.42))
      drop-shadow(0 8px 14px rgba(var(--project-rgb), 0.16));
  }

  .mobile-lean-runtime .stack-section.is-stack-revealed .stack-section__badge,
  .mobile-lean-runtime .stack-section.is-stack-revealed .section-title,
  .mobile-lean-runtime .stack-section.is-stack-revealed .section-subtitle,
  .mobile-lean-runtime .stack-section.is-stack-revealed .stack-showcase {
    animation: none;
    opacity: 1;
    filter: none;
  }

  .mobile-lean-runtime .reviews-section::before,
  .mobile-lean-runtime .reviews-section::after,
  .mobile-lean-runtime .reviews-marquee,
  .mobile-lean-runtime .reviews-marquee::after {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .mobile-lean-runtime .reviews-section__heart,
  .mobile-lean-runtime .reviews-section__heart::before,
  .mobile-lean-runtime .reviews-section__heart::after {
    animation: none;
    filter: none;
  }

  .mobile-lean-runtime .reviews-section__heart::before,
  .mobile-lean-runtime .reviews-section__heart::after {
    display: none;
  }

  .mobile-lean-runtime .reviews-marquee__row {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .mobile-lean-runtime .reviews-marquee__row--left {
    animation: reviewsMarqueeLeft 138s linear infinite;
  }

  .mobile-lean-runtime .reviews-marquee__row--right {
    animation: reviewsMarqueeRight 152s linear infinite;
  }

  .mobile-lean-runtime .review-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 0 1px 0 rgba(154, 190, 255, 0.055), 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .mobile-lean-runtime .globe-section:not(.is-globe-revealed),
  .mobile-lean-runtime .reviews-section:not(.is-reviews-visible),
  .mobile-lean-runtime .academy-section:not(.is-academy-visible),
  .mobile-lean-runtime .site-footer:not(.is-footer-visible) {
    opacity: 1;
    transform: none;
  }

  .mobile-lean-runtime .site-footer:not(.is-footer-visible) .site-footer__brand,
  .mobile-lean-runtime .site-footer:not(.is-footer-visible) .site-footer__nav,
  .mobile-lean-runtime .site-footer:not(.is-footer-visible) .site-footer__subscribe,
  .mobile-lean-runtime .site-footer:not(.is-footer-visible) .site-footer__bottom {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.985);
  }

  .mobile-lean-runtime .globe-section:not(.is-globe-revealed) .globe-section__badge,
  .mobile-lean-runtime .globe-section:not(.is-globe-revealed) .globe-section__title,
  .mobile-lean-runtime .globe-section:not(.is-globe-revealed) .globe-section__subtitle,
  .mobile-lean-runtime .globe-section:not(.is-globe-revealed) .globe-contacts {
    transform: translate3d(0, 40px, 0) scale(0.985);
  }

  .mobile-lean-runtime .globe-section:not(.is-globe-revealed) .globe-stage__static {
    transform: translate3d(-50%, 54px, 0) scale(0.972);
  }

  .mobile-lean-runtime .globe-section.is-globe-revealed .globe-section__badge,
  .mobile-lean-runtime .reviews-section.is-reviews-visible .reviews-section__badge,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__brand {
    animation: stackRevealSoft 760ms var(--ease-cinematic) 80ms both;
  }

  .mobile-lean-runtime .globe-section.is-globe-revealed .globe-section__title,
  .mobile-lean-runtime .reviews-section.is-reviews-visible .reviews-section__title,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__nav {
    animation: stackRevealSoft 940ms var(--ease-cinematic) 180ms both;
  }

  .mobile-lean-runtime .globe-section.is-globe-revealed .globe-section__subtitle,
  .mobile-lean-runtime .reviews-section.is-reviews-visible .reviews-section__subtitle,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__subscribe {
    animation: stackRevealSoft 820ms var(--ease-cinematic) 340ms both;
  }

  .mobile-lean-runtime .globe-section.is-globe-revealed .globe-contacts,
  .mobile-lean-runtime .reviews-section.is-reviews-visible .reviews-marquee {
    animation: academyBoardReveal 1280ms var(--ease-cinematic) 660ms both;
  }

  .mobile-lean-runtime .globe-section.is-globe-revealed .globe-stage__static {
    animation: globeStageReveal 1280ms var(--ease-cinematic) 660ms both;
  }

  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__bottom {
    animation: stackRevealSoft 780ms var(--ease-cinematic) 980ms both;
  }

  .mobile-lean-runtime .reviews-section.is-reviews-visible .reviews-section__heart {
    animation: reviewsHeartReveal 1200ms var(--ease-cinematic) 80ms both;
  }

  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__brand,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__nav,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__subscribe,
  .mobile-lean-runtime .site-footer.is-footer-visible .site-footer__bottom {
    opacity: 1;
  }

  .mobile-lean-runtime .tech-info,
  .mobile-lean-runtime .project-card__info,
  .mobile-lean-runtime .globe-contact,
  .mobile-lean-runtime .mobile-sidebar__panel {
    backdrop-filter: blur(6px) saturate(1.04);
    -webkit-backdrop-filter: blur(6px) saturate(1.04);
  }

  .mobile-lean-runtime .academy-game__cell {
    transition: none;
  }

  .mobile-lean-runtime .academy-game__cell.is-filled,
  .mobile-lean-runtime .academy-game__cell.is-active,
  .mobile-lean-runtime .academy-game__cell.is-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .tech-section,
  .tech-board,
  .tech-map,
  .projects-section,
  .projects-board,
  .project-card,
  .stack-section,
  .globe-section,
  .reviews-section,
  .academy-section,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .projects-board {
    overflow-x: auto;
    overflow-y: visible;
    touch-action: pan-y;
    user-select: none;
  }

  .stack-showcase {
    overflow: visible;
  }
}
