:root {
  --ink: #08111f;
  --ink-soft: #243248;
  --muted: #536176;
  --paper: #f5f7fa;
  --white: #ffffff;
  --night: #07111f;
  --night-soft: #0d1a2c;
  --line: rgba(8, 17, 31, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue: #246bfe;
  --blue-bright: #56a8ff;
  --cyan: #72e9f3;
  --lime: #c8ff5c;
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.12);
  --font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-en: "Manrope", "Noto Sans SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

ul {
  list-style: none;
}

::selection {
  color: var(--night);
  background: var(--lime);
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.ambient-scene {
  --robot-x: 0px;
  --robot-y: 0px;
  --flame-strength: 0;
  --flame-scale: 0.4;
  --fluid-x: 0px;
  --fluid-y: 0px;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1200px;
}

.ambient-scene::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(114, 233, 243, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 233, 243, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at 78% 44%, #000, transparent 62%);
  mask-image: radial-gradient(circle at 78% 44%, #000, transparent 62%);
  content: "";
  transform: translate3d(calc(0px - var(--fluid-x)), calc(0px - var(--fluid-y)), 0);
  transition: opacity 0.6s ease;
}

.fluid-blob {
  position: absolute;
  display: block;
  border-radius: 42% 58% 63% 37% / 48% 36% 64% 52%;
  filter: blur(72px);
  mix-blend-mode: screen;
  will-change: transform, border-radius;
  animation: fluidMorph 11s ease-in-out infinite alternate;
  transition: opacity 0.7s ease, filter 0.7s ease;
}

.fluid-blob--one {
  top: -14vh;
  right: -9vw;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  opacity: 0.32;
  background: radial-gradient(circle at 35% 35%, #72e9f3, #246bfe 48%, transparent 74%);
  transform: translate3d(var(--fluid-x), var(--fluid-y), 0) rotate(18deg);
}

.fluid-blob--two {
  right: 16vw;
  bottom: -35vh;
  width: min(48vw, 690px);
  aspect-ratio: 1.12;
  opacity: 0.2;
  background: radial-gradient(circle at 52% 45%, #246bfe, #1447bd 44%, transparent 72%);
  transform: translate3d(calc(0px - var(--fluid-x)), var(--fluid-y), 0) rotate(-25deg);
  animation-delay: -5s;
}

.fluid-blob--three {
  top: 44vh;
  left: -20vw;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  opacity: 0.12;
  background: radial-gradient(circle, #c8ff5c, #246bfe 48%, transparent 72%);
  transform: translate3d(var(--fluid-x), calc(0px - var(--fluid-y)), 0) rotate(42deg);
  animation-delay: -8s;
}

.fluid-ribbon {
  position: absolute;
  top: 7vh;
  right: -23vw;
  width: min(69vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(114, 233, 243, 0.2);
  border-radius: 46% 54% 42% 58% / 57% 38% 62% 43%;
  box-shadow:
    inset 0 0 80px rgba(36, 107, 254, 0.05),
    0 0 72px rgba(114, 233, 243, 0.05),
    0 0 0 38px rgba(114, 233, 243, 0.018),
    0 0 0 110px rgba(36, 107, 254, 0.012);
  opacity: 0.64;
  transform: translate3d(calc(0px - var(--fluid-x)), var(--fluid-y), -80px) rotate(22deg);
  transition: opacity 0.7s ease, border-color 0.7s ease;
}

.robot-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(620px, 66vw, 980px);
  height: 100vh;
  opacity: 0.86;
  transform: translate3d(calc(-50% + var(--robot-x)), calc(-50% + var(--robot-y)), 0);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  transition: opacity 0.65s ease, filter 0.65s ease;
}

.robot-sequence {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(0.76)
    contrast(1.12)
    saturate(0.82)
    drop-shadow(0 0 30px rgba(86, 168, 255, 0.24))
    drop-shadow(0 28px 64px rgba(0, 0, 0, 0.46));
  will-change: filter;
  -webkit-user-drag: none;
  user-select: none;
}

.robot-orbit,
.robot-scan {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.robot-flame {
  position: absolute;
  top: 36%;
  left: calc(50% + 24vh);
  z-index: 4;
  display: block;
  width: clamp(70px, 8vw, 116px);
  aspect-ratio: 0.78;
  opacity: var(--flame-strength);
  filter:
    drop-shadow(0 0 16px rgba(114, 233, 243, 0.8))
    drop-shadow(0 0 42px rgba(36, 107, 254, 0.58));
  mix-blend-mode: screen;
  transform: translate(-50%, -72%) scale(var(--flame-scale));
  transform-origin: 50% 100%;
  will-change: opacity, transform;
}

.robot-flame::before,
.robot-flame::after,
.robot-flame i {
  position: absolute;
  display: block;
  content: "";
}

.robot-flame::before {
  inset: 0;
  border-radius: 58% 42% 64% 36% / 72% 44% 56% 28%;
  background:
    radial-gradient(circle at 50% 78%, #fff 0 8%, #c8ff5c 15%, #72e9f3 34%, #246bfe 57%, transparent 74%);
  transform: rotate(5deg);
  animation: flameDance 1.4s ease-in-out infinite alternate;
}

.robot-flame::after {
  right: -22%;
  bottom: -13%;
  left: -22%;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 233, 243, 0.46);
  border-radius: 50%;
  box-shadow:
    0 0 0 9px rgba(114, 233, 243, 0.06),
    0 0 32px rgba(36, 107, 254, 0.42);
  transform: rotateX(72deg);
}

.robot-flame i {
  right: 31%;
  bottom: 16%;
  left: 31%;
  height: 46%;
  border-radius: 50% 50% 42% 58%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #72e9f3 60%, transparent);
  transform: rotate(-8deg);
  animation: flameCore 0.9s ease-in-out infinite alternate;
}

@keyframes flameDance {
  0% { border-radius: 58% 42% 64% 36% / 72% 44% 56% 28%; transform: rotate(5deg) scale(0.96, 1.04); }
  100% { border-radius: 42% 58% 38% 62% / 58% 70% 30% 42%; transform: rotate(-5deg) scale(1.05, 0.96); }
}

@keyframes flameCore {
  0% { transform: translateY(2px) rotate(-8deg) scale(0.92, 1.05); }
  100% { transform: translateY(-3px) rotate(7deg) scale(1.06, 0.94); }
}

.robot-orbit {
  top: 48%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 233, 243, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(36, 107, 254, 0.1);
  transform: translate(-50%, -50%) rotateX(72deg);
  animation: orbitPulse 4.8s ease-in-out infinite;
}

.robot-orbit::before,
.robot-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.robot-orbit::before {
  inset: 9%;
  border: 1px dashed rgba(200, 255, 92, 0.24);
}

.robot-orbit::after {
  top: 7%;
  left: 22%;
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 17px rgba(200, 255, 92, 0.85);
}

.robot-scan {
  top: 12%;
  right: 22%;
  width: 1px;
  height: 68%;
  opacity: 0.46;
  background: linear-gradient(transparent, rgba(114, 233, 243, 0.8), transparent);
  box-shadow: 0 0 16px rgba(114, 233, 243, 0.3);
}

.scene-light .robot-stage {
  opacity: 0.3;
  filter: none;
}

.scene-light .robot-sequence {
  filter:
    brightness(0.68)
    contrast(1.14)
    saturate(0.74)
    drop-shadow(0 0 24px rgba(36, 107, 254, 0.12));
}

.scene-light .fluid-blob {
  opacity: 0.055;
  filter: blur(96px) saturate(0.8);
  mix-blend-mode: multiply;
}

.scene-light .fluid-ribbon,
.scene-light .ambient-scene::before {
  opacity: 0.11;
}

main > section > .container,
.footer > .container {
  position: relative;
  z-index: 2;
}

.results,
.services,
.cases,
.about {
  position: relative;
}

.results::after,
.services::after,
.cases::after,
.about::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.results::after,
.cases::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 32%, rgba(255, 255, 255, 0.78) 52%, rgba(255, 255, 255, 0.12) 78%, transparent);
}

.services::after,
.about::after {
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0 32%, rgba(245, 247, 250, 0.78) 52%, rgba(245, 247, 250, 0.12) 78%, transparent);
}

@keyframes fluidMorph {
  0% { border-radius: 42% 58% 63% 37% / 48% 36% 64% 52%; }
  50% { border-radius: 58% 42% 38% 62% / 38% 61% 39% 62%; }
  100% { border-radius: 34% 66% 52% 48% / 61% 42% 58% 39%; }
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.38; transform: translate(-50%, -50%) rotateX(72deg) scale(0.96); }
  50% { opacity: 0.76; transform: translate(-50%, -50%) rotateX(72deg) scale(1.04); }
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.navbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
  transition: background-color 0.3s ease;
}

.navbar.scrolled,
.navbar.menu-active {
  background: rgba(7, 17, 31, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.navbar.scrolled::after,
.navbar.menu-active::after {
  background: var(--line-dark);
}

.navbar__inner {
  display: flex;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar__inner {
  height: 72px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__cta {
  display: inline-flex;
  min-width: 154px;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.navbar__cta:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.navbar__cta .arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  transition: transform 0.25s ease;
}

.navbar__cta:hover .arrow {
  transform: rotate(4deg);
}

.ui-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: currentColor;
}

.ui-icon--north-east::before,
.ui-icon--north-east::after,
.ui-icon--south::before,
.ui-icon--south::after,
.ui-icon--north::before,
.ui-icon--north::after,
.ui-icon--trend::before,
.ui-icon--trend::after {
  position: absolute;
  display: block;
  content: "";
}

.ui-icon--north-east::before {
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.ui-icon--north-east::after {
  top: 7px;
  left: 3px;
  width: 10px;
  height: 1.6px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.ui-icon--south::before,
.ui-icon--north::before {
  top: 2px;
  left: 7px;
  width: 1.6px;
  height: 11px;
  border-radius: 99px;
  background: currentColor;
}

.ui-icon--south::after,
.ui-icon--north::after {
  bottom: 3px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.ui-icon--north {
  transform: rotate(180deg);
}

.ui-icon--trend {
  width: 11px;
  height: 11px;
}

.ui-icon--trend::before {
  top: 1px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
}

.ui-icon--trend::after {
  top: 5px;
  left: 1px;
  width: 8px;
  height: 1.4px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-45deg);
}

.navbar__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.3s ease;
}

.navbar__toggle.open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.navbar__toggle.open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 174px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 28%, rgba(36, 107, 254, 0.18), transparent 28%),
    linear-gradient(140deg, #06101d 0%, #0a1627 54%, #0b1d30 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0 28%, rgba(7, 17, 31, 0.88) 43%, rgba(7, 17, 31, 0.42) 60%, rgba(7, 17, 31, 0.06) 82%, transparent);
  content: "";
}

.hero__aura {
  position: absolute;
  top: -240px;
  right: -150px;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 117, 255, 0.26), rgba(51, 203, 228, 0.07) 42%, transparent 70%);
  filter: blur(12px);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  gap: 78px;
}

.hero__content {
  grid-column: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72), 0 18px 52px rgba(0, 0, 0, 0.44);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.eyebrow__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(200, 255, 92, 0.78);
}

.eyebrow__dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(200, 255, 92, 0.36);
  border-radius: 50%;
  content: "";
  animation: pulse 2.3s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 1; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}

.hero__title {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.2vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.06;
}

.text-accent {
  color: var(--lime);
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 46px;
}

.btn {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button-icon,
.link-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.button-icon {
  background: rgba(8, 17, 31, 0.07);
}

.btn--line .button-icon {
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover .button-icon,
.form-submit:hover .button-icon {
  transform: translate(2px, -2px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--light {
  color: var(--night);
  background: var(--white);
}

.btn--light:hover {
  background: var(--lime);
}

.btn--line {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.03);
}

.btn--line:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero__proof span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.hero__visual {
  position: relative;
  min-height: 480px;
}

.visual__glow {
  position: absolute;
  inset: 14% 8%;
  border-radius: 50%;
  background: rgba(46, 117, 255, 0.34);
  filter: blur(90px);
}

.dashboard {
  position: absolute;
  top: 20px;
  right: 4px;
  width: min(100%, 454px);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(20, 39, 64, 0.88), rgba(8, 22, 38, 0.84));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.dashboard::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 35%);
  pointer-events: none;
  content: "";
}

.dashboard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard__top > div {
  display: flex;
  flex-direction: column;
}

.dashboard__label {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.dashboard__top strong {
  font-size: 15px;
  font-weight: 600;
}

.live {
  display: inline-flex;
  height: 25px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(200, 255, 92, 0.16);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(200, 255, 92, 0.06);
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.metric--primary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 12px;
}

.metric--primary > span {
  width: 100%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.metric--primary strong {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.metric--primary small {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.metric--primary b {
  color: var(--lime);
}

.chart {
  display: grid;
  height: 164px;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  margin: 15px 0 23px;
}

.chart__labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-en);
  font-size: 8px;
}

.chart__plot {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 50%;
}

.chart__plot::after {
  position: absolute;
  inset: 22% 0 0;
  background: linear-gradient(180deg, rgba(77, 139, 255, 0.24), transparent);
  clip-path: polygon(0 83%, 17% 72%, 34% 75%, 52% 50%, 68% 56%, 84% 23%, 100% 4%, 100% 100%, 0 100%);
  content: "";
}

.chart__line {
  position: absolute;
  inset: 18% 0 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, #447cf6, #71e8f3);
  clip-path: polygon(0 80%, 16% 67%, 33% 72%, 51% 44%, 67% 51%, 84% 17%, 100% 0, 100% 15%, 84% 32%, 68% 65%, 52% 58%, 34% 86%, 17% 81%, 0 95%);
  transform: scaleY(44);
  transform-origin: top;
  filter: drop-shadow(0 0 5px rgba(95, 190, 255, 0.85));
}

.chart__point {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border: 2px solid #8deff5;
  border-radius: 50%;
  background: #18314c;
  box-shadow: 0 0 10px rgba(114, 233, 243, 0.65);
}

.chart__point--1 { bottom: 12%; left: 0; }
.chart__point--2 { bottom: 25%; left: 17%; }
.chart__point--3 { bottom: 21%; left: 34%; }
.chart__point--4 { bottom: 45%; left: 52%; }
.chart__point--5 { bottom: 39%; left: 68%; }
.chart__point--6 { top: 4%; right: 0; }

.dashboard__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-metric {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.mini-metric > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.mini-metric strong {
  font-family: var(--font-en);
  font-size: 19px;
  line-height: 1.35;
}

.mini-metric strong span {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.trend {
  padding-bottom: 3px;
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 8px;
  font-style: normal;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 33, 54, 0.83);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-card--top {
  top: 0;
  right: -55px;
  display: flex;
  flex-direction: column;
  width: 126px;
  padding: 14px 16px;
  border-radius: 15px;
  animation: float 5s ease-in-out infinite;
}

.floating-card--top span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.floating-card--top strong {
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 18px;
}

.floating-card--bottom {
  bottom: 25px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: 999px;
  animation: float 5s 1s ease-in-out infinite;
}

.floating-card--bottom > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 255, 92, 0.1);
}

.floating-card--bottom > span {
  display: flex;
  flex-direction: column;
}

.floating-card--bottom small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.floating-card--bottom strong {
  font-size: 11px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero__footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 65px;
  border-top: 1px solid var(--line-dark);
}

.hero__footer-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.platforms {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 600;
}

.platforms i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.results {
  background: var(--white);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.result {
  position: relative;
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.result:not(:last-child)::after {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 40px;
  width: 1px;
  background: var(--line);
  content: "";
}

.result__number {
  font-family: var(--font-en);
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.result__number b {
  font-weight: inherit;
}

.result__label {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.section-kicker--dark {
  color: var(--lime);
}

.section-heading h2,
.method__intro h2,
.about__statement h2,
.contact__content h2 {
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.section-heading > p {
  max-width: 460px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.services {
  background: var(--paper);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 366px;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: var(--night);
  content: "";
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  color: var(--white);
  border-color: var(--night);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.service-card__top,
.service-card__content {
  position: relative;
  z-index: 1;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__index {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--blue);
  background: rgba(36, 107, 254, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-icon {
  border-color: rgba(200, 255, 92, 0.42);
  color: var(--lime);
  background: rgba(200, 255, 92, 0.08);
  transform: translateY(-2px);
}

.service-icon::before,
.service-icon::after,
.service-icon i,
.service-icon i::before,
.service-icon i::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
}

.service-icon--target::before {
  inset: 11px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.service-icon--target::after {
  top: 19px;
  left: 19px;
  width: 6px;
  height: 6px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.service-icon--target i::before {
  top: 6px;
  left: 22px;
  width: 1.5px;
  height: 9px;
  background: currentColor;
  box-shadow: 0 25px 0 currentColor;
}

.service-icon--target i::after {
  top: 22px;
  left: 6px;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 25px 0 0 currentColor;
}

.service-icon--performance::before {
  bottom: 11px;
  left: 11px;
  width: 4px;
  height: 9px;
  border-radius: 2px 2px 1px 1px;
  background: currentColor;
  box-shadow: 8px -5px 0 currentColor, 16px -12px 0 currentColor;
}

.service-icon--performance::after {
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}

.service-icon--performance i {
  top: 20px;
  left: 14px;
  width: 22px;
  height: 1.6px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-35deg);
}

.service-icon--content::before {
  top: 12px;
  left: 10px;
  width: 25px;
  height: 19px;
  border: 1.6px solid currentColor;
  border-radius: 7px;
}

.service-icon--content::after {
  top: 27px;
  left: 17px;
  width: 8px;
  height: 8px;
  border-bottom: 1.6px solid currentColor;
  border-left: 1.6px solid currentColor;
  transform: skewY(-33deg);
}

.service-icon--content i {
  top: 21px;
  left: 17px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor;
}

.service-icon--commerce::before {
  top: 15px;
  left: 11px;
  width: 24px;
  height: 21px;
  border: 1.6px solid currentColor;
  border-radius: 4px 4px 7px 7px;
}

.service-icon--commerce::after {
  top: 9px;
  left: 17px;
  width: 12px;
  height: 11px;
  border: 1.6px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.service-icon--commerce i {
  top: 19px;
  left: 22px;
  width: 2px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
}

.service-icon--creative::before,
.service-icon--creative::after {
  background: currentColor;
}

.service-icon--creative::before {
  top: 10px;
  left: 21px;
  width: 3px;
  height: 26px;
  border-radius: 100%;
}

.service-icon--creative::after {
  top: 21px;
  left: 10px;
  width: 26px;
  height: 3px;
  border-radius: 100%;
}

.service-icon--creative i {
  top: 14px;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.service-icon--creative i::after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.service-card:hover .service-icon--creative i::after {
  background: var(--night);
}

.service-card__en {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card:hover .service-card__en {
  color: var(--lime);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.35s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-card li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.service-card:hover li {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
}

.service-card--featured {
  border-color: var(--night);
  color: var(--white);
  background: var(--night);
}

.service-card--featured::after {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(36, 107, 254, 0.35);
  filter: blur(65px);
  content: "";
}

.service-card--featured .service-card__index,
.service-card--featured p {
  color: rgba(255, 255, 255, 0.56);
}

.service-card--featured .service-card__en {
  color: var(--lime);
}

.service-card--featured .service-icon,
.service-card--featured li {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--lime);
}

.service-card--featured .service-icon {
  background: rgba(200, 255, 92, 0.08);
  box-shadow: none;
}

.service-card--cta {
  justify-content: center;
  color: var(--white);
  border-color: var(--blue);
  background:
    radial-gradient(circle at 100% 0, rgba(114, 233, 243, 0.38), transparent 38%),
    var(--blue);
}

.service-card--cta::before {
  background: #1854d9;
}

.service-card--cta .service-card__en {
  color: rgba(255, 255, 255, 0.58);
}

.service-card--cta h3 {
  margin-bottom: 35px;
  font-size: 28px;
  line-height: 1.45;
}

.service-card--cta a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-weight: 600;
}

.service-card--cta .link-icon,
.text-link .link-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.09);
}

.service-card--cta a:hover .link-icon,
.text-link:hover .link-icon {
  transform: translate(2px, -2px);
}

.method {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.method::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.method::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.78) 0 31%, rgba(7, 17, 31, 0.42) 48%, rgba(7, 17, 31, 0.56) 72%, rgba(7, 17, 31, 0.28)),
    rgba(7, 17, 31, 0.24);
  content: "";
}

.method__orb {
  position: absolute;
  top: 8%;
  left: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(36, 107, 254, 0.18);
  filter: blur(100px);
}

.method__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.method__intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.method__intro h2 {
  margin-bottom: 28px;
}

.method__intro p {
  max-width: 420px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.95;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.method__steps {
  border-top: 1px solid var(--line-dark);
}

.method-step {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 25px;
  padding: 37px 12px 37px 0;
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.42), rgba(7, 17, 31, 0.14));
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
  transition: padding-left 0.3s ease, background-color 0.3s ease;
}

.method-step:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent);
}

.method-step > span {
  padding-top: 6px;
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-step h3 {
  margin-bottom: 7px;
  font-size: 25px;
  font-weight: 650;
}

.method-step p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.cases {
  background: var(--white);
}

.cases__list {
  display: grid;
  gap: 22px;
}

.case-card {
  display: grid;
  min-height: 454px;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.case-card--reverse .case-card__visual {
  grid-column: 2;
  grid-row: 1;
}

.case-card--reverse .case-card__content {
  grid-column: 1;
  grid-row: 1;
}

.case-card__visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.case-card__visual--beauty {
  background:
    radial-gradient(circle at 77% 25%, rgba(239, 196, 255, 0.9), transparent 30%),
    linear-gradient(135deg, #25102e 0%, #74325f 50%, #df817d 100%);
}

.case-card__visual--retail {
  background:
    radial-gradient(circle at 20% 20%, rgba(101, 191, 255, 0.78), transparent 25%),
    linear-gradient(140deg, #052a42, #095c73 52%, #27b6a0);
}

.case-card__visual--local {
  background:
    radial-gradient(circle at 75% 25%, rgba(200, 255, 92, 0.55), transparent 28%),
    linear-gradient(145deg, #173215, #3d7122 48%, #bdc641);
}

.case-card__industry {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
}

.case-art {
  position: absolute;
  inset: 0;
}

.case-art__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 44px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.12);
}

.case-art__bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 108px;
  height: 230px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 52px 52px 24px 24px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 60px rgba(31, 7, 23, 0.3);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: translate(-50%, -43%) rotate(8deg);
}

.case-art__bottle::before {
  position: absolute;
  top: -32px;
  width: 47px;
  height: 42px;
  border-radius: 7px 7px 3px 3px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.case-art__sphere {
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff7df, #f09c8e 56%, #75385e);
  box-shadow: 0 25px 40px rgba(44, 5, 30, 0.27);
}

.retail-art {
  position: absolute;
  inset: 0;
  perspective: 900px;
}

.retail-art__disc {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.05) 0 10px, rgba(255, 255, 255, 0.02) 11px 20px);
  transform: translate(-50%, -50%) rotateX(65deg);
}

.retail-art__cube {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 185px;
  height: 185px;
  place-items: center;
  color: #0a483f;
  background: linear-gradient(135deg, #ebffd7, #8cf4df);
  box-shadow: 25px 30px 0 rgba(5, 39, 52, 0.22), 0 38px 70px rgba(0, 20, 26, 0.32);
  font-family: var(--font-en);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  transform: translate(-50%, -42%) rotate(-8deg) skewY(2deg);
}

.retail-art__line {
  position: absolute;
  right: 4%;
  bottom: 18%;
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  transform: rotate(-28deg);
}

.local-art {
  position: absolute;
  inset: 0;
}

.local-art__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.local-art__halo::before,
.local-art__halo::after {
  position: absolute;
  inset: 18%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.local-art__halo::after {
  inset: 36%;
}

.local-art__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 30px 70px rgba(27, 55, 10, 0.32);
  font-family: var(--font-en);
  font-size: 54px;
  font-weight: 800;
  transform: translate(-50%, -55%);
}

.local-art__pin small {
  font-size: 22px;
}

.local-art__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 38px 38px;
}

.case-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
}

.case-card__meta {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.case-card__content h3 {
  margin-bottom: 19px;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.38;
}

.case-card__content > p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.case-card__metrics span {
  display: flex;
  flex-direction: column;
}

.case-card__metrics strong {
  font-family: var(--font-en);
  font-size: 23px;
  letter-spacing: -0.03em;
}

.case-card__metrics small {
  color: var(--muted);
  font-size: 10px;
}

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line);
}

.about__statement h2 span {
  color: var(--blue);
}

.about__copy {
  padding-top: 52px;
}

.about__copy > p {
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.principles {
  display: grid;
  gap: 15px;
}

.principles > div {
  display: grid;
  grid-template-columns: 35px 95px 1fr;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
}

.principles strong {
  font-size: 14px;
}

.principles small {
  color: var(--muted);
  font-size: 12px;
}

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr 235px;
  align-items: end;
  gap: 40px;
  padding-top: 84px;
}

.testimonial__mark {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 0.55;
}

.testimonial blockquote {
  max-width: 650px;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial__avatar {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--night);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
}

.testimonial__author > span:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial__author strong {
  font-size: 13px;
}

.testimonial__author small {
  color: var(--muted);
  font-size: 10px;
}

.contact {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(36, 107, 254, 0.24), transparent 30%),
    var(--night);
}

.contact::before {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.contact::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.9) 0 30%, rgba(7, 17, 31, 0.54) 52%, rgba(7, 17, 31, 0.32));
  content: "";
}

.contact__aura {
  position: absolute;
  top: -230px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(36, 107, 254, 0.2);
  filter: blur(110px);
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.contact__content h2 {
  margin-bottom: 27px;
}

.contact__content > p {
  max-width: 460px;
  margin-bottom: 53px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.95;
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.contact__details a {
  display: flex;
  flex-direction: column;
}

.contact__details small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.contact__details strong {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(6, 16, 30, 0.7);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.form-heading {
  display: flex;
  grid-column: 1 / -1;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-heading span {
  color: var(--lime);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.form-heading strong {
  margin-top: 3px;
  font-size: 23px;
  font-weight: 650;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  transition: border-color 0.25s ease;
}

.field input,
.field select {
  height: 46px;
}

.field textarea {
  min-height: 68px;
  padding: 10px 0;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.27);
}

.field select {
  color: rgba(255, 255, 255, 0.72);
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
}

.form-submit {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 19px 0 23px;
  border-radius: 999px;
  color: var(--night);
  background: var(--lime);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.form-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.form-submit .button-icon {
  background: rgba(8, 17, 31, 0.08);
}

.form-tip {
  min-height: 20px;
  margin-top: -5px;
  font-size: 11px;
  text-align: center;
}

.form-tip.success {
  color: var(--lime);
}

.form-tip.error {
  color: #ff9c9c;
}

.footer {
  color: rgba(255, 255, 255, 0.54);
  background: #030a13;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 55px 0;
}

.footer__top > p {
  max-width: 400px;
  font-size: 12px;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.back-top .ui-icon {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}

.back-top:hover .ui-icon {
  transform: rotate(180deg) translateY(2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.services__grid .reveal:nth-child(2),
.method__steps .reveal:nth-child(2) {
  transition-delay: 0.07s;
}

.services__grid .reveal:nth-child(3),
.method__steps .reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.services__grid .reveal:nth-child(5) {
  transition-delay: 0.07s;
}

.services__grid .reveal:nth-child(6) {
  transition-delay: 0.14s;
}

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 40px;
  }

  .floating-card--top {
    right: -12px;
  }

  .floating-card--bottom {
    left: -4px;
  }
}

@media (max-width: 1024px) {
  .navbar__links {
    gap: 20px;
  }

  .navbar__cta {
    min-width: 142px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.86fr;
  }

  .hero__title {
    font-size: clamp(53px, 7vw, 72px);
  }

  .dashboard {
    padding: 20px;
  }

  .floating-card {
    display: none;
  }

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

  .method__inner {
    gap: 65px;
  }

  .case-card__content {
    padding: 40px;
  }

  .about__grid,
  .contact__inner {
    gap: 60px;
  }

  .testimonial {
    grid-template-columns: 75px 1fr;
  }

  .testimonial__author {
    grid-column: 2;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(100% - 36px, 700px);
  }

  .navbar__inner,
  .navbar.scrolled .navbar__inner {
    height: 70px;
  }

  .navbar__links {
    position: fixed;
    inset: 69px 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7, 17, 31, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: max-height 0.4s ease, border-color 0.3s ease;
  }

  .navbar__links.open {
    max-height: 430px;
    border-color: var(--line-dark);
  }

  .nav-link {
    padding: 17px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link::after {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 82px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero__content {
    max-width: 690px;
  }

  .robot-stage {
    right: auto;
    width: 92vw;
    height: 94vh;
    opacity: 0.76;
  }

  .scene-light .robot-stage {
    opacity: 0.28;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0 42%, rgba(7, 17, 31, 0.76) 68%, rgba(7, 17, 31, 0.38));
  }

  .fluid-ribbon {
    right: -46vw;
    width: 112vw;
  }

  .hero__title {
    font-size: clamp(52px, 12vw, 76px);
  }

  .hero__lead {
    max-width: 620px;
  }

  .hero__visual {
    min-height: 445px;
  }

  .dashboard {
    right: auto;
    left: 50%;
    width: min(100%, 530px);
    transform: translateX(-50%);
  }

  .hero__footer {
    margin-top: 35px;
  }

  .platforms {
    gap: 10px;
    font-size: 11px;
  }

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

  .result:nth-child(2)::after {
    display: none;
  }

  .result:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .method__inner {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .method__intro {
    position: static;
  }

  .case-card,
  .case-card--reverse {
    grid-template-columns: 1fr;
  }

  .case-card--reverse .case-card__visual,
  .case-card--reverse .case-card__content {
    grid-column: auto;
    grid-row: auto;
  }

  .case-card__visual {
    min-height: 370px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about__copy {
    padding-top: 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact__content > p {
    margin-bottom: 35px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 30px);
  }

  .brand-logo {
    height: 31px;
  }

  .hero {
    min-height: 760px;
    padding: 112px 0 76px;
  }

  .ambient-scene::before {
    background-size: 48px 48px;
  }

  .robot-stage {
    top: 50%;
    right: auto;
    width: 128vw;
    height: 88vh;
    opacity: 0.62;
  }

  .hero::after {
    background: rgba(7, 17, 31, 0.7);
  }

  .robot-orbit {
    width: 76%;
  }

  .robot-flame {
    left: calc(50% + 19vh);
    width: 68px;
  }

  .fluid-blob--one {
    right: -38vw;
    width: 115vw;
  }

  .fluid-blob--three {
    left: -50vw;
    width: 92vw;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero__title {
    margin-bottom: 22px;
    font-size: clamp(47px, 15.5vw, 64px);
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    justify-content: space-between;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .hero__proof span::after {
    display: none;
  }

  .hero__visual {
    min-height: 380px;
  }

  .dashboard {
    padding: 17px;
    border-radius: 19px;
  }

  .dashboard__top {
    margin-bottom: 17px;
  }

  .metric--primary strong {
    font-size: 31px;
  }

  .chart {
    height: 128px;
    margin-bottom: 17px;
  }

  .mini-metric {
    padding: 11px;
  }

  .mini-metric strong {
    font-size: 16px;
  }

  .hero__footer {
    min-height: 94px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .platforms {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 10px;
  }

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

  .result {
    min-height: 130px;
    padding: 22px 14px;
  }

  .result:not(:last-child)::after {
    top: 24px;
    bottom: 24px;
  }

  .result__number {
    font-size: 30px;
  }

  .result__label {
    font-size: 11px;
  }

  .section {
    padding: 78px 0;
  }

  .section-kicker {
    margin-bottom: 15px;
  }

  .section-heading h2,
  .method__intro h2,
  .about__statement h2,
  .contact__content h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.2;
  }

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

  .service-card {
    min-height: 326px;
  }

  .method__inner {
    gap: 50px;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 27px 0;
  }

  .method-step:hover {
    padding-left: 0;
  }

  .cases__list {
    gap: 16px;
  }

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

  .case-card__visual {
    min-height: 300px;
  }

  .case-art__ring {
    width: 250px;
    height: 250px;
  }

  .case-art__bottle {
    width: 88px;
    height: 188px;
  }

  .retail-art__cube {
    width: 145px;
    height: 145px;
    font-size: 18px;
  }

  .local-art__halo {
    width: 245px;
    height: 245px;
  }

  .local-art__pin {
    width: 116px;
    height: 116px;
    font-size: 42px;
  }

  .case-card__content {
    padding: 31px 24px 34px;
  }

  .case-card__content h3 {
    font-size: 27px;
  }

  .case-card__metrics {
    gap: 6px;
  }

  .case-card__metrics strong {
    font-size: 18px;
  }

  .case-card__metrics small {
    font-size: 9px;
  }

  .about__grid {
    padding-bottom: 58px;
  }

  .about__copy > p {
    font-size: 15px;
  }

  .principles > div {
    grid-template-columns: 30px 82px 1fr;
  }

  .principles small {
    font-size: 10px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 58px;
  }

  .testimonial__mark {
    font-size: 80px;
  }

  .testimonial blockquote {
    font-size: 24px;
  }

  .testimonial__author {
    grid-column: auto;
  }

  .contact {
    padding: 82px 0;
  }

  .contact__details {
    gap: 20px 35px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 27px 22px;
    border-radius: 22px;
  }

  .form-heading,
  .field--full {
    grid-column: auto;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
    gap: 22px;
    padding: 40px 0;
  }

  .footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .robot-stage {
    transform: translate3d(-50%, -50%, 0);
  }
}

/* Taste design system */
:root {
  --font-en: "Outfit", "Noto Sans SC", system-ui, sans-serif;
  --paper: #f3f6fa;
  --night: #06111f;
  --night-soft: #0a1b30;
  --blue: #1267ff;
  --blue-bright: #45a9ff;
  --cyan: #50e4ee;
  --lime: #bfff4f;
  --line: rgba(6, 17, 31, 0.13);
}

html,
body,
.site-shell,
main {
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  background: var(--paper);
}

.site-shell,
main {
  overflow-x: clip;
}

.container {
  width: min(1360px, calc(100% - 72px));
}

.navbar {
  inset: 14px 0 auto;
  padding-inline: 18px;
  background: transparent;
}

.navbar::after,
.navbar.scrolled::after,
.navbar.menu-active::after {
  display: none;
}

.navbar.scrolled,
.navbar.menu-active {
  background: transparent;
  backdrop-filter: none;
}

.navbar__inner,
.navbar.scrolled .navbar__inner {
  width: min(1320px, 100%);
  height: 66px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.66);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}

.navbar.scrolled .navbar__inner {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(6, 17, 31, 0.84);
}

.brand-logo {
  height: 30px;
}

.navbar__links {
  gap: clamp(18px, 2.25vw, 36px);
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.navbar__cta {
  min-width: 168px;
  height: 44px;
  color: #06111f;
  background: #ffffff;
}

.navbar__cta:hover {
  border-color: var(--lime);
  background: var(--lime);
}

.hero {
  min-height: 920px;
  padding: 168px 0 0;
  background:
    radial-gradient(circle at 76% 34%, rgba(18, 103, 255, 0.24), transparent 28%),
    radial-gradient(circle at 8% 20%, rgba(80, 228, 238, 0.1), transparent 26%),
    linear-gradient(132deg, #050d18 0%, #071628 55%, #0a2340 100%);
}

.hero::after {
  background: linear-gradient(90deg, rgba(6, 17, 31, 0.99) 0 29%, rgba(6, 17, 31, 0.9) 44%, rgba(6, 17, 31, 0.44) 62%, rgba(6, 17, 31, 0.08) 82%, transparent);
}

.hero__inner {
  min-height: 625px;
  grid-template-columns: minmax(0, 860px) 1fr;
  gap: 40px;
}

.hero__content {
  max-width: 860px;
}

.eyebrow {
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero__title,
.section-heading h2,
.method__intro h2,
.about__statement h2,
.contact__content h2,
.service-card h3,
.case-card__content h3 {
  font-family: var(--font-en);
}

.hero__title,
.hero__title.max-w-6xl {
  max-width: 72rem;
  margin-bottom: 34px;
  font-size: clamp(72px, 7.7vw, 124px);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.88;
}

.hero__proof {
  font-size: 13px;
}

.btn {
  min-height: 56px;
  border-radius: 16px;
  font-size: 15px;
}

.hero__footer {
  min-height: 104px;
  margin-top: 22px;
}

.hero__footer-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.platforms {
  width: min(760px, 70%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.platforms__track {
  display: flex;
  width: max-content;
  animation: platformMarquee 24s linear infinite;
}

.platforms__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.platforms__group i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

@keyframes platformMarquee {
  to { transform: translateX(-50%); }
}

.results {
  border-bottom: 1px solid var(--line);
}

.result {
  min-height: 190px;
}

.result__number {
  font-size: clamp(38px, 3.2vw, 54px);
}

.result__label {
  margin-top: 4px;
  font-size: 14px;
}

.section {
  padding: clamp(150px, 13vw, 210px) 0;
}

.section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.55fr);
  gap: 100px;
  margin-bottom: 86px;
}

.section-heading h2,
.method__intro h2,
.about__statement h2,
.contact__content h2 {
  font-size: clamp(52px, 5.25vw, 78px);
  font-weight: 700;
  line-height: 1.08;
}

.section-heading > p,
.method__intro p,
.contact__content > p {
  font-size: 17px;
}

.heading-media {
  position: relative;
  display: inline-grid;
  width: clamp(82px, 9vw, 132px);
  height: 0.7em;
  margin: 0 0.14em;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(6, 17, 31, 0.12);
  border-radius: 999px;
  vertical-align: 0.03em;
  background: #0a1b30;
  box-shadow: inset 0 0 24px rgba(80, 228, 238, 0.12);
}

.heading-media img {
  width: 100%;
  height: 260%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(0.82) contrast(1.08);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.service-card,
.service-card--featured {
  min-height: 0;
  padding: 30px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.service-card {
  grid-column: span 3;
  grid-row: span 1;
}

.service-card--featured {
  grid-column: span 6;
  grid-row: span 2;
  padding: clamp(36px, 4.2vw, 64px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 8%, rgba(80, 228, 238, 0.17), transparent 32%),
    linear-gradient(145deg, #071525, #0b2441);
}

.service-card::before {
  width: 100%;
  opacity: 0;
  background: linear-gradient(150deg, #071525, #0e2c50);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.service-card:hover::before {
  width: 100%;
  opacity: 1;
}

.service-card__top {
  justify-content: flex-end;
}

.service-card__en {
  font-size: 12px;
}

.service-card h3 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.service-card--featured h3 {
  max-width: 520px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
}

.service-card li {
  font-size: 13px;
}

.method {
  min-height: 980px;
}

.method__inner {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(80px, 10vw, 160px);
}

.method__intro {
  position: relative;
  top: auto;
}

.method__intro p {
  max-width: 500px;
}

.text-link {
  font-size: 15px;
}

.method__steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.method-step {
  display: block;
  min-height: 190px;
  padding: 44px 24px 44px 0;
  background: transparent;
}

.method-step:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(80, 228, 238, 0.08), transparent 70%);
}

.method-step h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 44px);
}

.method-step p {
  max-width: 570px;
  font-size: 16px;
  line-height: 1.8;
}

.cases__accordion {
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.cases__accordion .case-card,
.cases__accordion .case-card--reverse {
  display: flex;
  min-width: 0;
  min-height: 710px;
  flex: 1 1 0;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  transition: flex-grow 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
}

.cases__accordion .case-card:hover,
.cases__accordion .case-card:focus-visible {
  flex-grow: 1.75;
  background: #f8faff;
}

.cases__accordion .case-card:focus-visible {
  box-shadow: inset 0 0 0 2px var(--blue);
}

.cases__accordion .case-card__visual,
.cases__accordion .case-card--reverse .case-card__visual {
  width: 100%;
  min-height: 330px;
  flex: 0 0 47%;
  grid-column: auto;
  grid-row: auto;
  transform-origin: 50% 50%;
}

.cases__accordion .case-card__content,
.cases__accordion .case-card--reverse .case-card__content {
  min-width: 0;
  flex: 1;
  grid-column: auto;
  grid-row: auto;
  justify-content: flex-start;
  padding: 34px 30px 38px;
}

.case-card__industry,
.case-card__meta {
  font-size: 12px;
}

.case-card__content h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.28;
}

.case-card__content > p {
  margin-bottom: 26px;
  font-size: 15px;
}

.case-card__metrics {
  margin-top: auto;
}

.case-card__metrics small {
  font-size: 11px;
}

.about__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 10vw, 150px);
}

.principles > div {
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.principles strong {
  font-size: 16px;
}

.principles small {
  font-size: 14px;
}

.testimonial {
  padding-top: 108px;
}

.testimonial__author strong {
  font-size: 14px;
}

.testimonial__author small {
  font-size: 12px;
}

.contact {
  padding: clamp(150px, 13vw, 200px) 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(80, 228, 238, 0.13), transparent 26%),
    radial-gradient(circle at 0 100%, rgba(18, 103, 255, 0.3), transparent 34%),
    var(--night);
}

.contact__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(80px, 9vw, 140px);
}

.contact-form {
  border-radius: 26px;
  background: rgba(4, 14, 27, 0.82);
}

.form-heading strong {
  margin-top: 0;
  font-size: 26px;
}

.field label,
.form-tip,
.contact__details small {
  font-size: 12px;
}

.contact__details strong {
  font-size: 16px;
}

.footer__bottom {
  font-size: 11px;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 1060px);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 720px) 1fr;
  }

  .hero__title,
  .hero__title.max-w-6xl {
    font-size: clamp(68px, 8.4vw, 96px);
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card--featured {
    grid-column: span 6;
  }

  .cases__accordion .case-card__metrics {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cases__accordion .case-card__metrics span {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 128px 0;
  }

  .section-heading,
  .about__grid,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .services__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .service-card,
  .service-card--featured {
    grid-row: auto;
  }

  .service-card {
    min-height: 340px;
    grid-column: span 3;
  }

  .service-card--featured {
    min-height: 520px;
    grid-column: span 6;
  }

  .method__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .method__intro {
    max-width: 660px;
  }

  .cases__accordion {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cases__accordion .case-card,
  .cases__accordion .case-card--reverse {
    display: grid;
    min-height: 0;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cases__accordion .case-card__visual,
  .cases__accordion .case-card--reverse .case-card__visual {
    min-height: 410px;
  }

  .cases__accordion .case-card__content,
  .cases__accordion .case-card--reverse .case-card__content {
    padding: 42px;
  }
}

@media (max-width: 840px) {
  .navbar {
    inset: 10px 0 auto;
    padding-inline: 12px;
  }

  .navbar__inner,
  .navbar.scrolled .navbar__inner {
    height: 62px;
  }

  .navbar__links {
    inset: 82px 12px auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
  }

  .hero {
    min-height: 840px;
    padding-top: 142px;
  }

  .hero__inner {
    display: block;
    min-height: 580px;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__title,
  .hero__title.max-w-6xl {
    font-size: clamp(61px, 12vw, 88px);
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(6, 17, 31, 0.94), rgba(6, 17, 31, 0.58));
  }

  .platforms {
    width: 75%;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 30px);
  }

  .hero {
    min-height: 780px;
    padding: 126px 0 68px;
  }

  .hero__inner {
    min-height: 540px;
  }

  .hero__title,
  .hero__title.max-w-6xl {
    font-size: clamp(50px, 15.2vw, 72px);
    line-height: 0.98;
  }

  .hero__lead {
    max-width: 95%;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero__footer {
    align-items: flex-start;
  }

  .platforms {
    width: 100%;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading h2,
  .method__intro h2,
  .about__statement h2,
  .contact__content h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .heading-media {
    width: 74px;
  }

  .services__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .service-card,
  .service-card--featured {
    min-height: 330px;
    grid-column: auto;
  }

  .service-card--featured {
    min-height: 440px;
  }

  .method-step {
    min-height: 0;
    padding: 32px 0;
  }

  .cases__accordion {
    border-radius: 22px;
  }

  .cases__accordion .case-card,
  .cases__accordion .case-card--reverse {
    display: flex;
    flex-direction: column;
  }

  .cases__accordion .case-card__visual,
  .cases__accordion .case-card--reverse .case-card__visual {
    min-height: 310px;
  }

  .cases__accordion .case-card__content,
  .cases__accordion .case-card--reverse .case-card__content {
    padding: 30px 24px 36px;
  }

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

  .cases__accordion .case-card__metrics span {
    align-items: flex-start;
    flex-direction: column;
  }

  .principles > div {
    grid-template-columns: 96px 1fr;
  }

  .contact {
    padding: 100px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platforms__track {
    animation: none;
  }

  [data-gsap-image],
  .heading-media img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
