/* #region Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --footer-reveal-height: clamp(340px, 46vh, 500px);
  --page-gutter: 8vw;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #171617;
  color: #f4f1ea;
  overflow-x: hidden;
  overflow-y: scroll;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

::selection {
  background: #ffffff;
  color: #0b1020;
  text-shadow: none;
}

::-moz-selection {
  background: #ffffff;
  color: #0b1020;
  text-shadow: none;
}

.site-footer ::selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

.site-footer ::-moz-selection {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
}

/* #region Selection Controls */
img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

#projects .project-card,
#projects .project-card *,
.projects-mobile-rotator-card,
.projects-mobile-rotator-card *,
.insight-card,
.insight-card *,
#solutions .solutions-v2-pill,
#solutions .solutions-v2-pill *,
#solutions .solutions-v2-pagination,
#solutions .solutions-v2-pagination *,
.projects-mobile-rotator-dots,
.projects-mobile-rotator-dots * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.anchor-section .section-content > h2,
.anchor-section .section-content > p,
#about .about-description,
#about .about-description *,
#solutions .solutions-v2-description,
#solutions .solutions-v2-panel,
#solutions .solutions-v2-panel *,
#solutions .solutions-v2-page p {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
/* #endregion Selection Controls */

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(96px, 16vh, 170px);
  pointer-events: none;
  z-index: 12;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 18, 0.72) 0%,
    rgba(8, 11, 18, 0.5) 44%,
    rgba(8, 11, 18, 0.22) 74%,
    rgba(8, 11, 18, 0) 100%
  );
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 260ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.nav-backpanel-visible::before {
  opacity: 1;
  transform: translateY(0);
}

body.is-mobile-safari::before {
  display: none;
}

.global-grid-overlay {
  --grid-top: 0px;
  --grid-mouse-x: 50%;
  --grid-mouse-y: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--grid-top);
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.global-grid-overlay::before,
.global-grid-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.global-grid-overlay::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.0625) 1.1px, transparent 1.3px);
  background-size: 22px 22px;
  background-repeat: repeat;
  background-position: calc(50% - 1px) calc(50% - 1px);
}

.global-grid-overlay::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.115) 1.25px, transparent 1.5px);
  background-size: 22px 22px;
  background-repeat: repeat;
  background-position: calc(50% - 1px) calc(50% - 1px);
  opacity: 1;
  -webkit-mask-image: radial-gradient(
    230px circle at var(--grid-mouse-x) var(--grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.94) 36%,
    rgba(0, 0, 0, 0) 74%
  );
  mask-image: radial-gradient(
    230px circle at var(--grid-mouse-x) var(--grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.94) 36%,
    rgba(0, 0, 0, 0) 74%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
}
/* #endregion Base */

/* #region Navigation */
nav {
  pointer-events: none;
  position: fixed;
  width: calc(100% - (var(--page-gutter) * 2));
  margin: 15px auto;
  padding: 10px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

body.nav-hidden nav.site-nav {
  transform: translateY(calc(-100% - 20px));
  opacity: 0;
  pointer-events: none;
}

.logo {
  pointer-events: all;
}

.logo,
.logo a,
.logo-mark,
.logo-letter,
.logo-glyph,
.nav-links a,
.nav-contact-btn,
.mobile-nav-links a,
.lang-switch button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

.logo a {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.logo-mark {
  --logo-glyph-h: 49.6px;
  --logo-unit: calc(var(--logo-glyph-h) / 119);
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  color: #ffffff;
  transition: color 0.28s ease;
}

.logo-letter {
  --letter-w: calc(48 * var(--logo-unit));
  --letter-gap: 0px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  max-width: var(--letter-w);
  margin-right: var(--letter-gap);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.letter-g {
  --letter-w: calc(60 * var(--logo-unit));
  --letter-gap: calc(11 * var(--logo-unit));
}

.letter-r {
  --letter-w: calc(55 * var(--logo-unit));
  --letter-gap: calc(6 * var(--logo-unit));
}

.letter-o {
  --letter-w: calc(68 * var(--logo-unit));
  --letter-gap: calc(8 * var(--logo-unit));
}

.logo-core {
  --letter-w: calc(117 * var(--logo-unit));
  --letter-gap: calc(-17 * var(--logo-unit));
}

.letter-p {
  --letter-w: calc(54 * var(--logo-unit));
  --letter-gap: calc(9 * var(--logo-unit));
}

.letter-i {
  --letter-w: calc(15 * var(--logo-unit));
  --letter-gap: calc(11 * var(--logo-unit));
}

.letter-l {
  --letter-w: calc(46 * var(--logo-unit));
  --letter-gap: calc(9 * var(--logo-unit));
}

.letter-e {
  --letter-w: calc(48 * var(--logo-unit));
  --letter-gap: 0px;
}

.logo-glyph {
  display: block;
  height: var(--logo-glyph-h);
  width: auto;
  flex: 0 0 auto;
}

.logo.logo-compact .logo-mark {
  gap: 0;
}

.logo.logo-compact .logo-letter {
  margin-right: 0;
}

.logo.logo-compact .logo-letter:not(.logo-core) {
  max-width: 0;
  opacity: 0;
  transform: scale(0.88);
}

.logo.logo-compact .logo-core {
  max-width: var(--letter-w);
  transform: translateY(0) scale(1);
}

.nav-menu {
  pointer-events: all;
  position: relative;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid #ffffff42;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 15px -4px rgba(0, 0, 0, 0.1),
    inset 0 0 5px -1px rgba(255, 255, 255, 0.15),
    inset 0 -10px 20px -4px rgba(0, 0, 0, 0.25),
    inset 0 10px 2px -9px rgba(255, 255, 255, 0.1);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: left 0.6s ease;
}

.nav-menu:hover::before {
  left: 120%;
}

.nav-menu:hover {
  background-color: rgba(255, 255, 255, 0.225);
  border-color: rgba(255, 255, 255, 0.38);
}

.nav-active-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--nav-glow-w, 0px);
  height: 100%;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.06) 62%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      90deg,
      rgba(158, 213, 255, 0) 0%,
      rgba(158, 213, 255, 0.18) 24%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(158, 213, 255, 0.18) 76%,
      rgba(158, 213, 255, 0) 100%
    );
  filter: blur(7px);
  transform: translateX(var(--nav-glow-x, 0px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

.nav-active-glow::after {
  content: "";
  position: absolute;
  inset: 1px 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
}

.nav-menu.has-active-glow .nav-active-glow {
  opacity: 0.5;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  list-style: none;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.nav-right {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.lang-panel {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 2px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid #ffffff42;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 15px -4px rgba(0, 0, 0, 0.1),
    inset 0 0 5px -1px rgba(255, 255, 255, 0.15),
    inset 0 -10px 20px -4px rgba(0, 0, 0, 0.25),
    inset 0 10px 2px -9px rgba(255, 255, 255, 0.1);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.lang-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: left 0.6s ease;
}

.lang-panel:hover::before {
  left: 120%;
}

.lang-panel:hover {
  background-color: rgba(255, 255, 255, 0.225);
  border-color: rgba(255, 255, 255, 0.38);
}

.lang-switch {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: stretch;
  height: 100%;
  gap: 6px;
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: var(--pill-w, 32px);
  height: calc(100% - 4px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(var(--pill-x, 0px));
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease;
}

.lang-switch button {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  height: 100%;
  border: none;
  background: transparent;
  color: rgba(244, 241, 234, 0.7);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 10px;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lang-switch button.active {
  color: #0b0b10;
}

.nav-links a {
  color: rgba(244, 241, 234, 0.75);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

.glass-button.nav-contact-btn {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 1.2rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-button.nav-contact-btn:hover {
  transform: none;
}

.menu-toggle {
  display: none;
  pointer-events: all;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 12px;
  pointer-events: all;
}

#nav-icon3 {
  width: 25px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  left: 0;
  transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 9px;
}

#nav-icon3 span:nth-child(4) {
  top: 18px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}

.mobile-nav-back {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-back.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  margin: 90px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 20;
  opacity: 0;
  transition: 0.3s;
}

.mobile-nav.active {
  opacity: 1;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  padding: 8px 10px;
}

.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-lang-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.mobile-nav-lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease;
}

.mobile-nav-lang-btn.active {
  color: #ffffff;
}

.mobile-nav-lang-separator {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.95rem;
  line-height: 1;
}
/* #endregion Navigation */

/* #region Page Layout */
main {
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin-bottom: var(--footer-reveal-height);
  background: #171617;
}

.hero,
.anchor-section {
  position: relative;
  z-index: 1;
  padding: 22vh var(--page-gutter) 10vh;
  display: grid;
  align-content: center;
  gap: 1rem;
  scroll-margin-top: 130px;
}
/* #endregion Page Layout */

/* #region Hero */
.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  padding: 14vh var(--page-gutter) 10vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #0a0e27;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-gradient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  --gradient-color-1: #3ebbb1;
  --gradient-color-2: #000000;
  --gradient-color-3: #98b3d4;
  --gradient-color-4: #214c8b;
}

.hero-noise-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: soft-light;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23m)' opacity='0.65'/%3E%3C/svg%3E");
  background-size: 180px 180px, 96px 96px;
  will-change: background-position;
  animation: heroNoiseDrift 0.9s steps(3, end) infinite;
}

@keyframes heroNoiseDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 48px -24px, -36px 24px;
  }
  100% {
    background-position: 0 0, 0 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 860px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.07rem, 6.48vw, 5.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-title > span {
  display: block;
}

.hero-title > span:not(.hero-title-line) {
  white-space: nowrap;
  color: rgba(244, 241, 234, 0.72);
}

.hero-title-line {
  height: 2.2em;
  min-height: 2.2em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
  overflow: visible;
  margin-bottom: 0;
}

body:not(.lang-bg-page) .hero-title-line {
  height: 1.87em;
  min-height: 1.87em;
}

body.lang-bg-page .hero-title-line {
  height: 1.87em;
  min-height: 1.87em;
}

.hero-verb {
  display: inline-block;
  font-size: 1.5em;
  min-width: 0;
  line-height: 1.18;
  padding-bottom: 0.08em;
  white-space: nowrap;
  color: #f4f1ea;
  will-change: transform, opacity, filter;
  overflow: visible;
}

.hero-verb--designing {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
}

.hero-verb--developing {
  font-family: "Space Mono", monospace;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-verb--building {
  font-family: "Neuton", serif;
  font-style: normal;
  font-weight: 700;
}

.hero-verb--organizing {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-verb--measuring {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.hero-verb-char {
  display: inline-block;
}

.hero-verb--building .hero-verb-char {
  opacity: 0;
  transform: translateY(var(--build-y, 72%));
}

.hero-verb--building .hero-verb-char.hero-verb-char--in {
  animation: heroBuildLetterIn 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-verb--building .hero-verb-char--from-top {
  --build-y: -72%;
}

.hero-verb--building .hero-verb-char--from-bottom {
  --build-y: 72%;
}

@keyframes heroBuildLetterIn {
  from {
    opacity: 0;
    transform: translateY(var(--build-y, 72%));
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-fill-char {
  display: inline-block;
  line-height: 1.18;
  padding-bottom: 0.1em;
  opacity: 0;
  color: transparent;
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.98) calc(var(--fill-level, 0) * 100%),
    rgba(255, 255, 255, 0.24) calc(var(--fill-level, 0) * 100%),
    rgba(255, 255, 255, 0.24) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  margin: 0;
  max-width: 60ch;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(0.9375rem, 1.14375vw, 1.06875rem);
  line-height: 1.65;
  mix-blend-mode: difference;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-explore {
  text-decoration: none;
  margin-top: 0.3rem;
  font-size: 1.425rem;
  padding: 1.2rem 2.025rem;
}

.hero-marquee-label {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: calc(2.2rem + 32px + 0.85rem);
  z-index: 2;
  margin: 0;
  text-align: center;
  color: rgba(244, 241, 234, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}

.hero-logo-marquee {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: 2.2rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.hero-logo-track {
  --hero-logo-loop-width: 50%;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: heroLogoMarquee 23s linear infinite;
}

.hero-logo-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.4rem, 2.4vw, 2.4rem);
  padding-right: clamp(1.4rem, 2.4vw, 2.4rem);
}

.hero-logo-item {
  height: 32px;
  width: auto;
  opacity: 0.72;
  filter: grayscale(1) brightness(1.35);
}
/* #endregion Hero */

@keyframes heroLogoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--hero-logo-loop-width, 50%)), 0, 0);
  }
}

/* #region Content Sections */
.anchor-section {
  min-height: auto;
  border-top: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding-top: 14vh;
}

.section-content {
  width: min(100%, 78ch);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.section-content h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title-reveal-mask {
  display: block;
  overflow: hidden;
  background: transparent;
  line-height: 1;
}

.section-title-reveal-mask--block {
  width: 100%;
}

.section-title-reveal.is-reveal-init {
  display: inline-block;
  transform: translateY(112%);
  opacity: 0.001;
  will-change: transform, opacity;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s ease;
}

.section-title-reveal.section-title-reveal--container.is-reveal-init {
  display: block;
}

.section-title-reveal.is-reveal-init.is-in-view {
  transform: translateY(0);
  opacity: 1;
}

.section-content p:not(.stat-value) {
  margin: 0;
  max-width: 85ch;
  color: rgba(244, 241, 234, 0.8);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

#about .section-content p:not(.stat-value) {
  max-width: 64ch;
}
/* #endregion Content Sections */

/* #region Projects */
#projects .section-content {
  width: 100%;
  max-width: none;
}

#projects .projects-description {
  margin: 0;
  width: min(100%, 85ch);
  color: rgba(244, 241, 234, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

#projects .projects-mobile-rotator {
  display: none;
}

#projects .projects-grid {
  width: 100%;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: clamp(0.66rem, 1.05vw, 1rem);
}

#projects .project-card {
  --project-grid-size: 16px;
  --project-grid-base: rgba(11, 16, 32, 0.055);
  --project-grid-glow: rgba(11, 16, 32, 0.15);
  --project-grid-mouse-x: 50%;
  --project-grid-mouse-y: 50%;
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  box-shadow:
    0 14px 28px rgba(6, 10, 20, 0.14),
    0 2px 8px rgba(6, 10, 20, 0.1),
    inset 0 -4px 9px rgba(17, 19, 24, 0.08);
  text-decoration: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, white);
  opacity: 0;
  transform: translateY(24px) scale(0.965);
  filter: blur(2px);
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
  transition-delay: var(--project-reveal-delay, 0ms);
}

#projects .project-card.is-project-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

#projects .project-card--vertical {
  grid-column: span 2;
  aspect-ratio: 9 / 16;
}

#projects .project-card--horizontal {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

#projects .project-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      var(--project-grid-base) 0,
      var(--project-grid-base) 1px,
      transparent 1px,
      transparent var(--project-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--project-grid-base) 0,
      var(--project-grid-base) 1px,
      transparent 1px,
      transparent var(--project-grid-size)
    ),
    linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  transform: translateY(calc(100% + 1px));
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 140ms ease;
  pointer-events: none;
}

#projects .project-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--project-grid-glow) 0,
      var(--project-grid-glow) 1px,
      transparent 1px,
      transparent var(--project-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--project-grid-glow) 0,
      var(--project-grid-glow) 1px,
      transparent 1px,
      transparent var(--project-grid-size)
    );
  opacity: 0;
  transition: opacity 220ms ease;
  -webkit-mask-image: radial-gradient(
    170px circle at var(--project-grid-mouse-x) var(--project-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 24%,
    rgba(0, 0, 0, 0.46) 54%,
    transparent 80%
  );
  mask-image: radial-gradient(
    170px circle at var(--project-grid-mouse-x) var(--project-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 24%,
    rgba(0, 0, 0, 0.46) 54%,
    transparent 80%
  );
}

#projects .project-card:is(.is-project-grid-hover-active, .is-project-grid-hover-intro-active)::after {
  opacity: 0.58;
}

#projects .project-card.is-project-grid-hover-intro-instant::before,
#projects .project-card.is-project-grid-hover-intro-instant::after,
#projects .project-card.is-project-grid-hover-intro-instant .project-card-context,
#projects .project-card.is-project-grid-hover-intro-instant .project-card-hover-logo {
  transition: none;
}

#projects .project-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1.05);
  transform-origin: center;
  backface-visibility: hidden;
}

#projects .project-card-context {
  position: absolute;
  left: clamp(0.78rem, 1.2vw, 1.2rem);
  bottom: clamp(0.78rem, 1.2vw, 1.2rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  max-width: calc(100% - clamp(1.6rem, 2.4vw, 2.4rem));
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

#projects .project-card-context-title,
#projects .project-card-context-subtitle {
  margin: 0;
  color: rgba(10, 14, 30, 0.95);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

#projects .project-card-context-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.58rem, 0.8vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
}

#projects .project-card-context-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.5rem, 0.7vw, 0.66rem);
  font-weight: 500;
  opacity: 0.8;
  display: none;
}

#projects .project-card-hover-logo {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: var(--project-card-logo-width, clamp(84px, 22%, 140px));
  height: auto;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  filter: brightness(0) saturate(100%) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
  transition:
    opacity 300ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

#projects .project-card-hover-logo[data-project-logo-darken="false"] {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

@media (hover: hover) and (pointer: fine) {
  #projects .project-card:hover::before {
    transform: translateY(0);
    opacity: 1;
  }

  #projects .project-card:hover .project-card-context {
    opacity: 1;
    transform: translateY(0);
  }

  #projects .project-card:hover .project-card-hover-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#projects .project-card:is(.is-project-grid-hover-active, .is-project-grid-hover-intro-active)::before {
  transform: translateY(0);
  opacity: 1;
}

#projects .project-card:is(.is-project-grid-hover-active, .is-project-grid-hover-intro-active) .project-card-hover-logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#projects .project-card:is(.is-project-grid-hover-active, .is-project-grid-hover-intro-active) .project-card-context {
  opacity: 1;
  transform: translateY(0);
}
/* #endregion Projects */

/* #region About */
#about .section-content {
  width: 100%;
  max-width: none;
  container-type: inline-size;
}

.about-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.35rem, 3.8vw, 3rem);
}

.about-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.about-metrics-column {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stats-panel {
  margin-top: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#about .about-stats-panel .statistic-grid {
  margin-top: 0;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
}

#about .about-stats-panel .statistic-main {
  width: 100%;
  margin-right: 0;
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.97);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
  transition-delay: var(--about-stat-reveal-delay, 0ms);
}

#about .about-stats-panel .statistic-main.is-about-stat-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#about .about-stats-panel .width-constant-1,
#about .about-stats-panel .width-constant-2 {
  width: 100%;
}

#about .about-stats-panel .stat-value {
  line-height: 0.9;
  color: #ffffff;
}

#about .about-stats-panel .stat-title {
  color: rgba(255, 255, 255, 0.8);
}

#about .about-stats-panel .vertical-separator {
  width: 100%;
  height: 2px;
  margin-right: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left center;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease;
  transition-delay: var(--about-stat-separator-reveal-delay, 0ms);
}

#about .about-stats-panel .vertical-separator.is-about-stat-separator-in-view {
  opacity: 1;
  transform: scaleX(1);
}

.about-avatars-inline {
  width: 100%;
  margin-top: clamp(0.8rem, 1.6vw, 1.2rem);
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-avatars-stage {
  --avatar-pointer-x: 0;
  --avatar-pointer-y: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.85rem, 1.6vw, 1.35rem);
  width: 100%;
  min-height: clamp(180px, 18vw, 220px);
}

.about-avatars-stage::before {
  content: none;
}

.about-avatar {
  --about-avatar-grid-size: 10px;
  --about-avatar-grid-base: rgba(12, 18, 34, 0.1);
  --about-avatar-grid-x: calc(50% + (var(--avatar-pointer-x, 0) * 34%));
  --about-avatar-grid-y: calc(50% + (var(--avatar-pointer-y, 0) * 34%));
  position: relative;
  width: clamp(99px, calc(11.25vw + 10px), 148px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 30px rgba(6, 10, 20, 0.26),
    0 4px 10px rgba(6, 10, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -5px 12px rgba(17, 19, 24, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  will-change: transform;
  opacity: 0;
  transform: translate3d(
    calc(var(--about-avatar-reveal-x, 0px)),
    calc(var(--about-avatar-reveal-y, 24px)),
    0
  ) scale(var(--about-avatar-reveal-scale, 0.86));
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
  transition-delay: var(--about-avatar-reveal-delay, 0ms);
}

.about-avatar::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 9%;
  right: 9%;
  top: 7%;
  height: 43%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.16) 100%
  );
  pointer-events: none;
}

.about-avatar::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--about-avatar-grid-base) 0,
      var(--about-avatar-grid-base) 1px,
      transparent 1px,
      transparent var(--about-avatar-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--about-avatar-grid-base) 0,
      var(--about-avatar-grid-base) 1px,
      transparent 1px,
      transparent var(--about-avatar-grid-size)
    );
  opacity: 0.52;
  -webkit-mask-image: radial-gradient(
    84px circle at var(--about-avatar-grid-x) var(--about-avatar-grid-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.86) 30%,
    rgba(0, 0, 0, 0.3) 58%,
    transparent 82%
  );
  mask-image: radial-gradient(
    84px circle at var(--about-avatar-grid-x) var(--about-avatar-grid-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.86) 30%,
    rgba(0, 0, 0, 0.3) 58%,
    transparent 82%
  );
}

.about-avatar.is-about-avatar-in-view {
  opacity: 1;
  --about-avatar-reveal-x: 0px;
  --about-avatar-reveal-y: 0px;
  --about-avatar-reveal-scale: 1;
}

.about-avatar-media {
  position: relative;
  z-index: 2;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  overflow: hidden;
  background: #101526;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.about-avatar-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-avatar--one {
  --avatar-shift-x: 11px;
  --avatar-shift-y: 11px;
  z-index: 1;
}

.about-avatar--two {
  --avatar-shift-x: 14px;
  --avatar-shift-y: 14px;
  z-index: 2;
}

.about-avatar--three {
  --avatar-shift-x: 11px;
  --avatar-shift-y: 11px;
  z-index: 1;
}

.about-avatar-overlay {
  position: absolute;
  left: 50%;
  bottom: -6px;
  z-index: 4;
  transform: translateX(-50%);
  width: calc(100% - 18px);
  max-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.3rem 0.35rem 0.34rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #eff4fc 100%);
  color: #0b1020;
  text-align: center;
  text-shadow: none;
  box-shadow:
    0 6px 14px rgba(6, 10, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  pointer-events: none;
}

.about-avatar-overlay-name {
  font-size: clamp(0.54rem, 0.82vw, 0.69rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.about-avatar-overlay-role {
  font-size: clamp(0.48rem, 0.68vw, 0.58rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0b1020;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .about-avatar-overlay {
    width: calc(100% - 14px);
    bottom: -5px;
    padding: 0.24rem 0.28rem 0.28rem;
    gap: 0.04rem;
  }

  .about-avatar-overlay-name {
    font-size: 0.625rem;
  }

  .about-avatar-overlay-role {
    font-size: 0.55rem;
  }
}

/* #endregion About */

/* #region Insights */
#insights .section-content {
  width: 100%;
  max-width: none;
}

.insights-grid-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.insight-card.is-insight-hidden {
  display: none;
}

.insights-grid-wrap.is-collapsed .insights-more-overlay {
  opacity: 1;
  max-height: 110px;
  margin-top: 1.1rem;
  pointer-events: auto;
}

.insights-grid-wrap.is-expanded .insights-more-overlay {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.insights-more-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.28s ease, margin-top 0.28s ease;
}

.insights-more-button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.insights-grid-wrap.is-collapsed .insights-more-button {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.insights-grid-wrap.is-expanded .insights-more-button {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.insights-grid {
  margin-top: 1.25rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.insight-card {
  --card-grid-size: 16px;
  --card-grid-base: rgba(11, 16, 32, 0.055);
  --card-grid-glow: rgba(11, 16, 32, 0.18);
  --card-grid-mouse-x: 50%;
  --card-grid-mouse-y: 50%;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  text-decoration: none;
  color: #0d1018;
  border-radius: 16px;
  border: none;
  background:
    repeating-linear-gradient(
      0deg,
      var(--card-grid-base) 0,
      var(--card-grid-base) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--card-grid-base) 0,
      var(--card-grid-base) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    ),
    linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  box-shadow:
    0 12px 26px rgba(6, 10, 20, 0.14),
    0 2px 6px rgba(6, 10, 20, 0.1),
    inset 0 -3px 8px rgba(17, 19, 24, 0.08);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, white);
  opacity: 0;
  transform: translateY(24px) scale(0.965);
  filter: blur(2px);
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  transition-delay: var(--article-reveal-delay, 0ms);
}

.insight-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 6%;
  right: 6%;
  top: 6%;
  height: 46%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.72;
  pointer-events: none;
}

.insight-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--card-grid-glow) 0,
      var(--card-grid-glow) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--card-grid-glow) 0,
      var(--card-grid-glow) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    );
  opacity: 0;
  transition: opacity 220ms ease;
  -webkit-mask-image: radial-gradient(
    180px circle at var(--card-grid-mouse-x) var(--card-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 24%,
    rgba(0, 0, 0, 0.42) 52%,
    transparent 78%
  );
  mask-image: radial-gradient(
    180px circle at var(--card-grid-mouse-x) var(--card-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 24%,
    rgba(0, 0, 0, 0.42) 52%,
    transparent 78%
  );
}

.insight-card.is-card-grid-hover-active::after {
  opacity: 0.52;
}

.insight-card > * {
  position: relative;
  z-index: 2;
}

.insight-card.is-article-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.insight-card.is-article-in-view:hover {
  background:
    repeating-linear-gradient(
      0deg,
      var(--card-grid-base) 0,
      var(--card-grid-base) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--card-grid-base) 0,
      var(--card-grid-base) 1px,
      transparent 1px,
      transparent var(--card-grid-size)
    ),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.insight-card-cta {
  transition: transform 180ms ease;
}

.insight-card.is-article-in-view:hover .insight-card-cta {
  transform: translateY(-2px);
}

.insight-card-cover {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  align-self: stretch;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.insight-card-body {
  padding: 0.62rem 0.76rem 0.64rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
  height: 100%;
}

.insight-card-kicker {
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(13, 16, 24, 0.58);
}

#insights .insight-card-body h3 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(0.94rem, 1.08vw, 1.1rem);
  color: #0b1020;
  text-transform: none;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#insights .insight-card-body p {
  margin: 0;
  max-width: none;
  color: rgba(13, 16, 24, 0.74);
  font-size: 0.72rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-cta {
  margin-top: auto;
  margin-left: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  min-height: 28px;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #161f35 0%, #070b17 100%);
  color: #f4f1ea;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 6px rgba(0, 0, 0, 0.46);
}

.insight-card-cta-icon {
  width: 0.56rem;
  height: 0.56rem;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}
/* #endregion Insights */

/* #region Privacy Policy */
body.privacy-policy-page {
  background: #171617;
  color: #f4f1ea;
}

.privacy-policy-page .mobile-nav-back,
.privacy-policy-page .site-nav {
  display: none;
}

.privacy-policy-page main {
  margin-bottom: 0;
  background: transparent;
}

.privacy-main {
  width: 100%;
  margin: 0;
  padding: 1rem var(--page-gutter) 2.2rem;
}

.privacy-cover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 clamp(1rem, 2vw, 1.3rem);
}

.privacy-cover h1 {
  margin: 0;
  line-height: 0.97;
  font-size: clamp(1.95rem, 5vw, 3.45rem);
  letter-spacing: -0.02em;
  color: #ffffff;
}

.privacy-cover p {
  margin: 0.88rem 0 0;
  max-width: 72ch;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
}

.privacy-body {
  margin-top: clamp(0.95rem, 1.8vw, 1.25rem);
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.privacy-toc-title {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.72);
  font-weight: 700;
}

.privacy-toc ol {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.56rem;
}

.privacy-toc li {
  font-size: 0.9rem;
  line-height: 1.46;
  color: rgba(244, 241, 234, 0.62);
}

.privacy-toc a {
  color: rgba(244, 241, 234, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-toc a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-content {
  border: 0;
  background: transparent;
  padding: 0;
}

.privacy-content a,
.privacy-content a:visited {
  color: rgba(244, 241, 234, 0.9);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-content a:hover {
  color: #ffffff;
}

.privacy-section {
  scroll-margin-top: 1rem;
  padding-top: 0.2rem;
}

.privacy-section + .privacy-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-section h2 {
  margin: 0 0 0.58rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.privacy-section p,
.privacy-section ul {
  color: rgba(244, 241, 234, 0.84);
  font-size: clamp(0.9rem, 1.12vw, 0.97rem);
  line-height: 1.62;
}

.privacy-section p {
  margin: 0 0 0.64rem;
}

.privacy-section ul {
  margin: 0 0 0.64rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.privacy-note {
  margin-top: 0.9rem;
  border: 1px solid rgba(255, 165, 72, 0.72);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 165, 72, 0.2) 0%,
    rgba(255, 123, 36, 0.12) 100%
  );
  color: #ffd8b3;
  padding: 0.72rem 0.9rem;
}

.privacy-footnote {
  margin-top: 0.82rem;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.84rem;
}

.privacy-policy-page .site-footer {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  height: auto;
  min-height: 0;
  overflow: visible;
}
/* #endregion Privacy Policy */

/* #region Solutions */
#solutions.solutions-v2-section {
  --solutions-v2-pill-height: clamp(74px, 8.6vh, 96px);
  --solutions-v2-panel-overlap: var(--solutions-v2-pill-height);
  --solutions-v2-panel-padding-inline: clamp(1.05rem, 1.8vw, 1.4rem);
  --solutions-v2-panel-padding-block: clamp(0.8rem, 1.2vw, 1rem);
  --solutions-v2-gap: clamp(0.75rem, 1.3vw, 1rem);
  border-top: none;
  padding-top: 14vh;
}

#solutions .section-content {
  width: 100%;
  max-width: none;
}

#solutions .section-content > h2 {
  width: min(100%, 78ch);
}

#solutions .solutions-v2-description {
  margin: 0;
  width: min(100%, 85ch);
  color: rgba(244, 241, 234, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  letter-spacing: 0.005em;
  opacity: 1;
  display: block;
}

#solutions .solutions-v2-list {
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--solutions-v2-gap);
}

#solutions .solutions-v2-item {
  position: relative;
  width: 100%;
  min-height: var(--solutions-v2-pill-height);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(26px) scale(0.94);
  filter: blur(2px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
  transition-delay: var(--pill-reveal-delay, 0ms);
}

#solutions .solutions-v2-item.is-pill-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

#solutions .solutions-v2-item.is-expanded .solutions-v2-pill {
  box-shadow: 0 16px 34px rgba(7, 10, 18, 0.16);
}

#solutions .solutions-v2-pill {
  --pill-grid-size: 16px;
  --pill-grid-base: rgba(11, 16, 32, 0.045);
  --pill-grid-glow: rgba(11, 16, 32, 0.14);
  --pill-grid-mouse-x: 50%;
  --pill-grid-mouse-y: 50%;
  position: relative;
  isolation: isolate;
  z-index: 3;
  width: 100%;
  min-height: var(--solutions-v2-pill-height);
  height: var(--solutions-v2-pill-height);
  border-radius: 999px;
  border: 1px solid rgba(11, 16, 32, 0.14);
  background:
    repeating-linear-gradient(
      0deg,
      var(--pill-grid-base) 0,
      var(--pill-grid-base) 1px,
      transparent 1px,
      transparent var(--pill-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--pill-grid-base) 0,
      var(--pill-grid-base) 1px,
      transparent 1px,
      transparent var(--pill-grid-size)
    ),
    linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  box-shadow:
    0 12px 28px rgba(7, 10, 18, 0.12),
    0 2px 6px rgba(7, 10, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -4px 9px rgba(17, 19, 24, 0.08);
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  padding: 0 1.1rem;
  overflow: hidden;
  cursor: pointer;
  color: #0b1020;
  text-align: left;
  transition:
    box-shadow 260ms ease,
    border-radius 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    transform 220ms ease;
}

#solutions .solutions-v2-pill::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 6%;
  right: 6%;
  top: 7%;
  height: 52%;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  opacity: 0.72;
  pointer-events: none;
}

#solutions .solutions-v2-pill::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--pill-grid-glow) 0,
      var(--pill-grid-glow) 1px,
      transparent 1px,
      transparent var(--pill-grid-size)
    ),
    repeating-linear-gradient(
      90deg,
      var(--pill-grid-glow) 0,
      var(--pill-grid-glow) 1px,
      transparent 1px,
      transparent var(--pill-grid-size)
    );
  opacity: 0;
  transition: opacity 220ms ease;
  -webkit-mask-image: radial-gradient(
    140px circle at var(--pill-grid-mouse-x) var(--pill-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 22%,
    rgba(0, 0, 0, 0.48) 50%,
    transparent 76%
  );
  mask-image: radial-gradient(
    140px circle at var(--pill-grid-mouse-x) var(--pill-grid-mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 22%,
    rgba(0, 0, 0, 0.48) 50%,
    transparent 76%
  );
}

#solutions .solutions-v2-pill.is-grid-hover-active::after {
  opacity: 0.576;
}

#solutions .solutions-v2-pill-icon {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #141c31 0%, #070b17 100%);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.24),
    0 2px 5px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 6px rgba(0, 0, 0, 0.45);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  #solutions .solutions-v2-pill:hover {
    transform: none;
    border-color: rgba(11, 16, 32, 0.28);
    background:
      repeating-linear-gradient(
        0deg,
        var(--pill-grid-base) 0,
        var(--pill-grid-base) 1px,
        transparent 1px,
        transparent var(--pill-grid-size)
      ),
      repeating-linear-gradient(
        90deg,
        var(--pill-grid-base) 0,
        var(--pill-grid-base) 1px,
        transparent 1px,
        transparent var(--pill-grid-size)
      ),
      linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    box-shadow:
      0 15px 32px rgba(7, 10, 18, 0.16),
      0 3px 8px rgba(7, 10, 18, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -4px 10px rgba(17, 19, 24, 0.1);
  }

  #solutions .solutions-v2-pill:hover::before {
    opacity: 0.86;
  }

  #solutions .solutions-v2-pill:hover .solutions-v2-pill-icon,
  #solutions .solutions-v2-pill.is-grid-hover-active .solutions-v2-pill-icon,
  #solutions .solutions-v2-pill-icon:hover {
    transform: translateY(-1px) scale(1.12);
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, #19233d 0%, #080d1a 100%);
    box-shadow:
      0 8px 16px rgba(0, 0, 0, 0.28),
      0 3px 6px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -4px 8px rgba(0, 0, 0, 0.48);
  }
}

#solutions .solutions-v2-pill:focus-visible {
  outline: 2px solid rgba(11, 16, 32, 0.24);
  outline-offset: 2px;
}

#solutions .solutions-v2-pill:active {
  transform: translateY(0);
}

#solutions .solutions-v2-pill:active .solutions-v2-pill-icon {
  transform: scale(0.98);
}

#solutions .solutions-v2-pill-icon::before,
#solutions .solutions-v2-pill-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  margin-top: -1px;
  border-radius: 2px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

#solutions .solutions-v2-pill-icon::after {
  width: 2px;
  height: 14px;
  margin-left: -1px;
  margin-top: -7px;
}

#solutions .solutions-v2-item.is-expanded .solutions-v2-pill-icon::before,
#solutions .solutions-v2-item.is-expanded .solutions-v2-pill-icon::after {
  transform: rotate(45deg);
}

#solutions .solutions-v2-pill-title {
  position: relative;
  z-index: 3;
  font-size: clamp(1.35rem, 1.68vw, 1.62rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#solutions .solutions-v2-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: calc(var(--solutions-v2-panel-overlap) * -1);
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

#solutions .solutions-v2-item.is-expanded .solutions-v2-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

#solutions .solutions-v2-panel-inner {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  border-radius: calc(var(--solutions-v2-pill-height) / 2) calc(var(--solutions-v2-pill-height) / 2) 26px 26px;
  border: 1px solid #171617;
  background: #090e18;
  padding: 0 var(--solutions-v2-panel-padding-inline) 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

#solutions .solutions-v2-panel-inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    96deg,
    rgba(7, 11, 20, 0.92) 0%,
    rgba(7, 11, 20, 0.84) 44%,
    rgba(7, 11, 20, 0.58) 68%,
    rgba(7, 11, 20, 0.38) 84%,
    rgba(7, 11, 20, 0.3) 100%
  );
}

#solutions .solutions-v2-panel-inner::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8px;
  border-radius: inherit;
  pointer-events: none;
  background-image: url("assets/projects/headhunters_mirror.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(12px) saturate(0.92) brightness(0.92);
  transform: scale(1.05);
  transform-origin: center;
}

#solutions .solutions-v2-item.is-expanded .solutions-v2-panel-inner {
  border-color: #171617;
  padding:
    calc(var(--solutions-v2-panel-overlap) + var(--solutions-v2-panel-padding-block))
    var(--solutions-v2-panel-padding-inline)
    clamp(1rem, 1.6vw, 1.3rem);
  box-shadow:
    0 20px 42px rgba(4, 8, 18, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#solutions .solutions-v2-panel-inner > * {
  position: relative;
  z-index: 2;
}

#solutions .solutions-v2-pages {
  position: static;
  flex: 0 0 auto;
  min-height: 0;
}

#solutions .solutions-v2-page {
  position: static;
  display: none;
  opacity: 1;
  pointer-events: auto;
  transition: none;
  overflow: visible;
}

#solutions .solutions-v2-page.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
  align-items: start;
  gap: clamp(0.8rem, 1.8vw, 1.6rem);
}

#solutions .solutions-v2-item.is-panel-scroll-ready .solutions-v2-page.is-active {
  overflow: visible;
}

#solutions .solutions-v2-page p {
  margin: 0;
  max-width: none;
  color: rgba(244, 241, 234, 0.92);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.62;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.32);
}

#solutions .solutions-v2-page::after {
  content: none;
}

#solutions .solutions-v2-media-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 12px 26px rgba(4, 8, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#solutions .solutions-v2-media-gallery.is-click-nav-enabled {
  cursor: pointer;
}

#solutions .solutions-v2-media-gallery-track {
  position: absolute;
  inset: 0;
}

#solutions .solutions-v2-media-gallery--portrait-stack {
  --solutions-lens-stack-gap: clamp(0.32rem, 0.8vw, 0.52rem);
  padding: 0;
  border: none;
  box-shadow: none;
}

#solutions .solutions-v2-lens-stack {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

#solutions .solutions-v2-lens-stack-card {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-width: calc((100% - (var(--solutions-lens-stack-gap) * 2)) / 3);
  border-radius: clamp(10px, 1vw, 14px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 20, 0.92);
}

#solutions .solutions-v2-lens-stack-image,
#solutions .solutions-v2-lens-stack-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#solutions .solutions-v2-lens-stack-video {
  background: #060a14;
}

#solutions .solutions-v2-media-gallery-image,
#solutions .solutions-v2-media-gallery-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 260ms ease,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

#solutions .solutions-v2-media-gallery-video {
  background: #060a14;
}

#solutions .solutions-v2-media-gallery-image.is-active,
#solutions .solutions-v2-media-gallery-video.is-active {
  opacity: 1;
  transform: scale(1);
}

#solutions .solutions-v2-media-gallery-image.is-instant,
#solutions .solutions-v2-media-gallery-video.is-instant {
  transition: none;
}

#solutions .solutions-v2-media-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 34px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 16, 32, 0.12);
  box-shadow: 0 10px 20px rgba(7, 10, 18, 0.14);
}

#solutions .solutions-v2-media-gallery.is-single-slide .solutions-v2-media-gallery-dots {
  display: none;
}

#solutions .solutions-v2-media-gallery-dot {
  appearance: none;
  border: 1px solid rgba(11, 16, 32, 0.22);
  background: rgba(11, 16, 32, 0.24);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

#solutions .solutions-v2-media-gallery-dot.is-active {
  transform: scale(1.12);
  background: rgba(11, 16, 32, 0.92);
}

#solutions .solutions-v2-media-gallery-dot:focus-visible {
  outline: 2px solid rgba(11, 16, 32, 0.34);
  outline-offset: 2px;
}

#solutions .solutions-v2-pagination {
  display: none;
  --selector-highlight-x: 0px;
  --selector-highlight-width: 0px;
  --selector-padding: 0;
  --selector-highlight-pad-x: 0.58rem;
  position: relative;
  margin-top: 1rem;
  align-self: center;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: var(--selector-padding);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 16, 32, 0.12);
  box-shadow: 0 10px 20px rgba(7, 10, 18, 0.14);
  overflow: hidden;
}

#solutions .solutions-v2-pagination-highlight {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(var(--selector-highlight-width) + (var(--selector-highlight-pad-x) * 2));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #141c31 0%, #070b17 100%);
  transform: translateX(calc(var(--selector-highlight-x) - var(--selector-highlight-pad-x)));
  pointer-events: none;
  z-index: 0;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.24),
    0 2px 5px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 6px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition:
    transform 220ms ease,
    width 220ms ease,
    opacity 180ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

#solutions .solutions-v2-pagination.has-active .solutions-v2-pagination-highlight {
  opacity: 1;
}

#solutions .solutions-v2-pagination-pill {
  appearance: none;
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  transform: scale(1);
  padding: 0.92rem 1.72rem;
  border-radius: 999px;
  color: rgba(11, 16, 32, 0.56);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

#solutions .solutions-v2-pagination-pill.is-active {
  color: #ffffff;
}

#solutions .solutions-v2-pagination-pill:hover,
#solutions .solutions-v2-pagination-pill:focus-visible {
  transform: scale(1.06);
}

#solutions .solutions-v2-pagination-pill:focus-visible {
  outline: none;
}
/* #endregion Solutions */

/* #region Statistics */
.statistic-grid {
  margin-top: 1.75rem;
  width: min(100%, 860px);
  display: flex;
  align-items: stretch;
}

.width-constant-1 {
  width: clamp(130px, 12vw, 180px);
}

.width-constant-2 {
  width: clamp(220px, 24vw, 320px);
}

.vertical-separator {
  width: 2px;
  margin-right: clamp(1rem, 3vw, 3rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.statistic-main {
  margin-right: clamp(1rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stat-text-mobile-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.28rem;
}

.stat-value {
  margin: 0;
  line-height: 0.92;
  font-size: clamp(3rem, 8.2vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.stat-title {
  margin: 0;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  font-weight: 500;
  color: rgba(244, 241, 234, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (min-width: 769px) {
  #about .about-stats-panel .stat-value {
    font-size: clamp(2.25rem, 6.15vw, 4.05rem);
  }

  #about .about-stats-panel .stat-title {
    font-size: clamp(0.6rem, 0.675vw, 0.75rem);
  }
}

.mobile-width-constant-1 {
  width: auto;
}
/* #endregion Statistics */

/* #region Footer */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: var(--footer-reveal-height);
  min-height: var(--footer-reveal-height);
  background: #ffffff;
  color: #111318;
  padding: 0;
  overflow: hidden;
}

.site-footer::before {
  content: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.1rem, 2.4vh, 1.8rem);
  padding: clamp(1.8rem, 4vh, 2.8rem) var(--page-gutter) clamp(1.25rem, 2.4vh, 1.7rem);
}

.footer-top {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.3rem, 2.6vw, 2.6rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 0;
  gap: clamp(0.75rem, 1.5vh, 1rem);
}

.footer-column-title {
  margin: 0;
  color: rgba(17, 19, 24, 0.84);
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo-link {
  display: inline-flex;
  width: clamp(88px, 9.3vw, 129px);
  text-decoration: none;
}

.footer-logo-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0);
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding-top: clamp(0.74rem, 1.4vh, 0.95rem);
}

.footer-bottom-legal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal-line {
  margin: 0;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-legal-left,
.footer-legal-right {
  flex: 1 1 0;
}

.footer-legal-left {
  text-align: left;
}

.footer-legal-right {
  text-align: right;
}

.footer-bottom-policy {
  margin: 0;
  color: rgba(17, 19, 24, 0.72);
  text-decoration: none;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-bottom-policy:hover {
  color: #111318;
}

.footer-solution-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-contact-item,
.footer-social-link,
.footer-legal-link,
.footer-sub-item {
  color: rgba(17, 19, 24, 0.52);
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  font-size: clamp(0.88rem, 0.96vw, 0.98rem);
  line-height: 1.4;
  letter-spacing: 0.012em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link,
.footer-social-link,
.footer-legal-link,
.footer-sub-item {
  cursor: pointer;
}

.footer-contact-link:hover,
.footer-social-link:hover,
.footer-legal-link:hover,
.footer-sub-item:hover {
  color: #111318;
  text-decoration: underline;
  transform: translateX(3px);
}
/* #endregion Footer */

/* #region Buttons */
.glass-button {
  position: relative;
  overflow: hidden;
  width: fit-content;
  padding: 0.8rem 1.35rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  color: #0b0b10;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;

  box-shadow:
    0 7px 18px rgba(6, 10, 20, 0.18),
    0 2px 6px rgba(6, 10, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -4px 9px rgba(17, 19, 24, 0.08);

  transition:
    transform 0.22s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.glass-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 9px 22px rgba(6, 10, 20, 0.2),
    0 3px 7px rgba(6, 10, 20, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -4px 10px rgba(17, 19, 24, 0.1);
}

.glass-button::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 7%;
  height: 52%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.72;
  pointer-events: none;
}

.glass-button:hover::before {
  opacity: 0.88;
}

/* #endregion Buttons */

/* #region Responsive */
@media (max-width: 768px) {
  :root {
    --footer-reveal-height: min(420px, calc(100dvh - 200px));
  }

  a,
  button,
  [role="button"] {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }

  nav {
    pointer-events: all;
    width: 95%;
    margin: 10px auto;
    padding: 12px 20px;
    align-items: flex-end;
  }

  .logo-mark {
    --logo-glyph-h: 37.2px;
  }

  .nav-left .logo {
    transform: translateY(2px);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-controls {
    display: flex;
    align-items: flex-end;
  }

  .nav-menu {
    padding: 0;
    border: none;
    background: none;
    backdrop-filter: none;
  }

  .nav-active-glow {
    display: none;
  }

  .lang-panel {
    display: none;
  }

  .glass-button.nav-contact-btn {
    display: none;
  }

  .site-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  main {
    margin-bottom: 0;
  }

  .footer-shell {
    border-radius: 0;
    padding: var(--page-gutter) var(--page-gutter) calc(var(--page-gutter) + env(safe-area-inset-bottom));
    gap: 0.9rem;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.72rem;
    row-gap: var(--page-gutter);
    align-items: start;
  }

  .footer-contact-column {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-solutions-column {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-social-column {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .footer-legal-column {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-column {
    gap: 0.42rem;
  }

  .footer-column-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .footer-contact-item,
  .footer-sub-item,
  .footer-legal-link,
  .footer-social-link {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .footer-contact-links,
  .footer-social-links,
  .footer-solution-links,
  .footer-legal-links {
    gap: 0.66rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.62rem;
    padding-top: 0.88rem;
  }

  .footer-bottom-legal {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.42rem;
  }

  .footer-legal-left,
  .footer-legal-right {
    flex: 0 0 auto;
    text-align: center;
  }

  .footer-legal-line {
    font-size: 0.82rem;
    line-height: 1.34;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 16vh;
    padding-bottom: 18vh;
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-marquee {
    left: var(--page-gutter);
    right: var(--page-gutter);
    bottom: 1.5rem;
  }

  .hero-marquee-label {
    left: var(--page-gutter);
    right: var(--page-gutter);
    bottom: calc(1.5rem + 26px + 0.72rem);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero-logo-group {
    gap: 1.35rem;
    padding-right: 1.35rem;
  }

  .hero-logo-item {
    height: 26px;
  }

  .hero-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.62rem, 8.55vw, 3.24rem);
  }

  .hero-description {
    font-size: clamp(0.75rem, 2.88vw, 0.86rem);
  }

  .anchor-section {
    padding-top: 12vh;
  }

  #solutions.solutions-v2-section {
    --solutions-v2-pill-height: 68px;
    --solutions-v2-panel-overlap: var(--solutions-v2-pill-height);
    --solutions-v2-panel-padding-inline: 0.86rem;
    --solutions-v2-panel-padding-block: 0.72rem;
  }

  #solutions .solutions-v2-list {
    margin-top: 0.95rem;
  }

  #solutions .solutions-v2-pill {
    padding: 0 0.8rem;
    gap: 0.72rem;
  }

  #solutions .solutions-v2-pill-icon {
    width: 36px;
    height: 36px;
  }

  #solutions .solutions-v2-pill-title {
    font-size: clamp(1.17rem, 4.65vw, 1.35rem);
  }

  #solutions .solutions-v2-panel-inner {
    border-radius: calc(var(--solutions-v2-pill-height) / 2) calc(var(--solutions-v2-pill-height) / 2) 18px 18px;
    padding: 0 var(--solutions-v2-panel-padding-inline) 0;
  }

  #solutions .solutions-v2-panel {
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  #solutions .solutions-v2-item.is-expanded .solutions-v2-panel {
    transform: translateY(0);
  }

  #solutions .solutions-v2-item.is-expanded .solutions-v2-panel-inner {
    padding:
      calc(var(--solutions-v2-panel-overlap) + var(--solutions-v2-panel-padding-block))
      var(--solutions-v2-panel-padding-inline)
      0.95rem;
  }

  #solutions .solutions-v2-panel-inner::after {
    inset: -4px;
    filter: blur(6px) saturate(0.9) brightness(0.82);
    transform: scale(1.02);
  }

  #solutions .solutions-v2-page p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.56;
  }

  #solutions .solutions-v2-page.is-active {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  #solutions .solutions-v2-media-gallery--portrait-stack {
    --solutions-lens-stack-gap: clamp(0.2rem, 1.2vw, 0.32rem);
    padding: 0;
  }

  #solutions .solutions-v2-lens-stack-card {
    border-radius: 10px;
  }

  #projects .projects-grid {
    display: none;
  }

  #projects .projects-mobile-rotator {
    width: 100%;
    margin-top: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #projects .projects-mobile-rotator-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    touch-action: manipulation;
    overflow: hidden;
    border-radius: 18px;
    background: #11141f;
    border: 1px solid rgba(255, 255, 255, 0.16);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, white);
    opacity: 0;
    transform: translateY(24px) scale(0.965);
    filter: blur(2px);
    pointer-events: none;
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 420ms ease;
    transition-delay: var(--project-mobile-reveal-delay, 0ms);
  }

  #projects .projects-mobile-rotator-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    min-height: 0;
    overflow: hidden;
    cursor: pointer;
  }

  #projects .projects-mobile-rotator-card.is-project-mobile-in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
  }

  #projects .projects-mobile-rotator-card.is-switching {
    filter: saturate(1.04) contrast(1.02);
  }

  #projects .projects-mobile-rotator-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.58) saturate(0.9);
    opacity: 0;
    transform: translateZ(0) scale(0.96);
    backface-visibility: hidden;
    will-change: opacity, transform;
    transition:
      opacity 420ms ease,
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 420ms ease;
  }

  #projects .projects-mobile-rotator-image.is-active {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }

  #projects .projects-mobile-rotator-image.is-swapping-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }

  #projects .projects-mobile-rotator-image.is-swapping-out {
    opacity: 0;
    transform: translateZ(0) scale(1.06);
  }

  #projects .projects-mobile-rotator-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: min(58%, 260px);
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
    pointer-events: none;
    will-change: transform, opacity;
    transition:
      opacity 220ms ease,
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  #projects .projects-mobile-rotator-logo.is-swapping-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  #projects .projects-mobile-rotator-logo.is-swapping-in {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.12);
  }

  #projects .projects-mobile-rotator-dots {
    position: absolute;
    left: 50%;
    bottom: 0.6rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 34px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 16, 32, 0.12);
    box-shadow: 0 10px 20px rgba(7, 10, 18, 0.14);
    transform: translateX(-50%);
  }

  #projects .projects-mobile-rotator-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(11, 16, 32, 0.22);
    padding: 0;
    background: rgba(11, 16, 32, 0.24);
    cursor: pointer;
    transition:
      transform 180ms ease,
      background 180ms ease;
  }

  #projects .projects-mobile-rotator-dot.is-active {
    background: rgba(11, 16, 32, 0.92);
    transform: scale(1.12);
  }

  #projects .project-card--mobile-hidden {
    display: none;
  }

  #projects .project-card--horizontal {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  #projects .project-card--vertical {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
  }

  .section-content {
    width: 100%;
  }

  .section-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
  }

  .section-content p:not(.stat-value) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-avatars-inline {
    justify-content: center;
  }

  .about-avatars-stage {
    width: 100%;
    max-width: 100%;
    min-height: clamp(160px, 44vw, 220px);
    justify-content: space-between;
    gap: 0;
  }

  #about .about-stats-panel {
    width: 100%;
    max-width: none;
  }

  .about-metrics-column {
    width: 100%;
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .insights-more-overlay {
    margin-top: 0;
  }

  .insights-grid-wrap.is-collapsed .insights-more-overlay {
    max-height: 94px;
    margin-top: 0.9rem;
  }

  .insight-card-cover {
    height: auto;
    aspect-ratio: auto;
    min-height: 150px;
    max-height: 180px;
  }

  .insight-card-body {
    padding: 0 0.82rem 0.85rem;
  }

  #insights .insight-card-body h3 {
    font-size: 0.9rem;
    line-height: 1.08;
  }

  #insights .insight-card-body p {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .privacy-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .privacy-cover {
    padding: 0 0 0.9rem;
  }

  .privacy-cover h1 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .privacy-cover p {
    margin-top: 0.72rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .privacy-body {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 0.9rem;
  }

  .privacy-toc {
    display: none;
  }

  .privacy-toc-title {
    font-size: 0.78rem;
  }

  .privacy-toc ol {
    gap: 0.46rem;
  }

  .privacy-toc li {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .privacy-content {
    padding: 0;
  }

  .privacy-section h2 {
    font-size: 1.01rem;
    margin-bottom: 0.52rem;
  }

  .privacy-section p,
  .privacy-section ul {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .statistic-grid {
    width: 100%;
    margin-top: 1.4rem;
    flex-direction: column;
    gap: 0.95rem;
  }

  .statistic-main {
    width: 100%;
    margin-right: 0;
  }

  .width-constant-1,
  .width-constant-2 {
    width: 100%;
  }

  .vertical-separator {
    width: 100%;
    height: 2px;
    margin-right: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
  }

  .stat-value {
    font-size: clamp(2.7rem, 11.4vw, 3.9rem);
  }

  .stat-title {
    font-size: 0.84rem;
  }

}
/* #endregion Responsive */
