:root {
  --bg: #0a0b14;
  --surface: #111119;
  --ink: #eceef6;
  --muted: #8b8d9a;
  --dim: #52525b;
  --accent: #7b6cff;
  --accent-2: #3d8bff;
  --accent-3: #e14ec8;
  --border: rgba(236, 238, 246, .08);
  --grad: linear-gradient(90deg, #3d8bff 0%, #7b6cff 52%, #e14ec8 100%);
  --container: 1320px;
  --pad: clamp(20px, 3.2vw, 56px);
  --nav-h: 64px;
  --space: clamp(56px, 6.5vw, 88px);
  --font: "Inter", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overscroll-behavior: none;
}
html, body { margin: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
  overscroll-behavior: none;
  letter-spacing: -.01em;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.container {
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.skip {
  position: absolute; left: 16px; top: 12px; z-index: 50;
  width: 1px; height: 1px; padding: 0; overflow: hidden;
  background: var(--ink); color: var(--bg); border-radius: 4px;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip:focus, .skip:focus-visible {
  width: auto; height: auto; padding: 8px 12px;
  clip-path: none; overflow: visible;
}

.grain {
  position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vig {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse 78% 68% at 26% 46%, transparent 32%, rgba(10,11,20,.82) 100%);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  min-height: 44px; padding: .65em 1.2em;
  border-radius: 999px; font-weight: 600; font-size: 13px; letter-spacing: .01em;
  white-space: nowrap; cursor: pointer; border: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), filter .35s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.btn-grad { background: var(--grad); color: #f4f6ff; }
.btn-grad:hover { filter: brightness(1.08); }
.btn-ghost {
  color: var(--ink);
  background: linear-gradient(rgba(10,11,20,.72), rgba(10,11,20,.72)) padding-box, var(--grad) border-box;
  border: 1px solid transparent;
}
.btn-lg { min-height: 50px; padding: .8em 1.6em; font-size: 15px; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 11, 20, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.logo { display: flex; align-items: center; z-index: 2; }
.logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.footer .logo-img { height: 32px; max-width: 200px; }
.nav-links {
  display: flex; gap: 28px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 13px; font-weight: 500; opacity: .82; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:focus-visible,
.footer a:focus-visible,
.logo:focus-visible {
  opacity: 1; outline: 2px solid #9aa6ff; outline-offset: 3px;
}
.nav-end { display: flex; align-items: center; gap: 12px; z-index: 2; }
.lang-switch {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  min-height: 32px; min-width: 36px; padding: 0 10px;
  background: transparent; border: 0; color: var(--muted);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; cursor: pointer;
}
.lang-btn.is-active { background: rgba(236,238,246,.08); color: var(--ink); }
.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0; color: var(--ink);
  position: relative; cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  transition: transform .3s ease;
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav.is-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 25;
  background: rgba(10,11,20,.96);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px;
  padding-top: var(--nav-h);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-size: 26px; font-weight: 700; }
.mobile-menu .btn { font-size: 14px; margin-top: 8px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media {
  z-index: 0;
  top: -20%;
  height: 140%;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 46%;
}
.hero-poster {
  position: absolute; inset: 0;
  z-index: 1;
  transition: opacity .6s ease;
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 1;
}
.hero.is-video .hero-poster { opacity: 0; }
.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,11,20,.82) 0%, rgba(10,11,20,.38) 46%, transparent 72%),
    linear-gradient(180deg, rgba(10,11,20,.4) 0%, transparent 28%, rgba(10,11,20,.88) 100%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: none;
  text-align: left;
}
.hero-title {
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-wrap: nowrap;
  white-space: nowrap;
  max-width: none;
}
html[data-lang="en"] .hero-title {
  letter-spacing: -.03em;
  line-height: 1.1;
  font-size: clamp(28px, 4.2vw, 56px);
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(14px, 1.25vw, 17px);
  color: rgba(236,238,246,.78);
  max-width: 36em;
  line-height: 1.6;
}
.hero-cta { margin-top: 32px; }

/* Stats attached to hero */
.stats {
  position: relative; z-index: 4;
  margin-top: -1px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 4px 20px 4px 0; }
.stat + .stat { border-left: 1px solid var(--border); padding-left: 28px; }
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(90deg, #3b9eff 0%, #a855f7 48%, #f048c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Services */
.services { padding: var(--space) 0 40px; }
.section-split {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px 48px;
  margin-bottom: 36px;
}
.section-split h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  max-width: none;
  white-space: nowrap;
}
.cases h2,
.feature-copy h2,
.finale h2,
.process h2,
.global-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  max-width: 14ch;
}
html[data-lang="en"] .section-split h2 {
  max-width: none;
  font-size: clamp(24px, 2.8vw, 40px);
}
html[data-lang="en"] .cases h2,
html[data-lang="en"] .feature-copy h2 { max-width: 16ch; }
.section-split p { color: var(--muted); font-size: 15px; max-width: 38em; flex: 1 1 16em; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.svc-card {
  padding-right: 22px;
  border-right: 1px solid var(--border);
}
.svc-card:last-child { padding-right: 0; border-right: 0; }
.svc-card:not(:first-child) { padding-left: 22px; }
.svc-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.svc-meta h3 { font-size: 17px; line-height: 1.25; font-weight: 650; }
.svc-meta p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.svc-visual {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.svc-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.svc-visual::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.svc-card:hover .svc-visual::after,
.svc-card:focus-within .svc-visual::after { transform: scaleX(1); }
.svc-card:hover .svc-visual img { transform: scale(1.05); }

/* Cases */
.cases {
  padding: 40px 0 var(--space);
  border-top: 1px solid var(--border);
}
.cases-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.cases h2 { margin-bottom: 0; max-width: none; }
.case-controls { display: flex; gap: 8px; flex-shrink: 0; }
.case-arrow {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.case-arrow:hover { border-color: rgba(236, 238, 246, .32); background: rgba(236, 238, 246, .04); }
.case-arrow:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.case-viewport {
  overflow: hidden;
  container-type: inline-size;
}
.case-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.case-card {
  overflow: hidden;
  flex: 0 0 calc((100cqw - 32px) / 3);
  min-width: 0;
}
.case-visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0a0b14;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.case-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.case-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .8s cubic-bezier(.16,1,.3,1);
}
.case-visual.is-playing .case-preview { opacity: 1; }
.case-card:hover .case-visual img,
.case-card:hover .case-preview { transform: scale(1.04); }
.case-visual:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.case-body { padding: 14px 0 0; }
.case-cat {
  color: var(--muted);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-body h3 { font-size: 16px; line-height: 1.3; font-weight: 650; }
.case-title {
  display: block;
  width: 100%;
  margin: 0; padding: 0; border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}
.case-title:hover { color: #fff; }
.case-title:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.case-body p:last-child { color: var(--muted); font-size: 13px; margin-top: 6px; line-height: 1.5; }
.case-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.case-meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--dim);
  padding-top: 2px;
}
.case-meta dd {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.case-dot {
  position: relative;
  width: 6px; height: 6px; padding: 0;
  border: 0; border-radius: 999px;
  background: rgba(236, 238, 246, .28);
  cursor: pointer;
  transition: width .35s cubic-bezier(.16,1,.3,1), background .25s ease;
}
.case-dot::before {
  content: "";
  position: absolute;
  inset: -10px -8px;
}
.case-dot:hover { background: rgba(236, 238, 246, .55); }
.case-dot.is-active { width: 18px; background: var(--ink); }
.case-dot:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.case-cta { margin-top: 28px; }

.work-modal {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px var(--pad);
  border: 0;
  background: transparent;
  color: var(--ink);
}
.work-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-modal::backdrop {
  background: rgba(6, 7, 14, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.work-modal-inner {
  width: min(1120px, 100%);
  margin: auto;
}
.work-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.work-modal-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.work-modal-title:empty { display: none; }
.work-modal-bar:has(.work-modal-title:empty) { justify-content: flex-end; }
.work-modal-close {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 11, 20, .4);
  color: var(--ink);
  cursor: pointer;
}
.work-modal-close:hover { border-color: rgba(236, 238, 246, .32); background: rgba(236, 238, 246, .06); }
.work-modal-close:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }
.work-modal-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
}
.work-modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.work-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .38);
  pointer-events: none;
}
.work-loading[hidden] { display: none; }
.work-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(236, 238, 246, .2);
  border-top-color: #eceef6;
  border-radius: 50%;
  animation: workSpin .7s linear infinite;
}
@keyframes workSpin {
  to { transform: rotate(360deg); }
}
.work-clips {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.work-clips[hidden] { display: none; }
.work-clip {
  min-width: 40px; min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  cursor: pointer;
}
.work-clip:hover { color: var(--ink); border-color: rgba(236, 238, 246, .32); }
.work-clip.is-active { color: var(--ink); background: rgba(236, 238, 246, .08); border-color: rgba(236, 238, 246, .28); }
.work-clip:focus-visible { outline: 2px solid #9aa6ff; outline-offset: 3px; }

/* Global */
.global {
  position: relative;
  padding: var(--space) 0 40px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.global-map { position: absolute; inset: 0; z-index: 0; }
.global-map img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%;
  filter: saturate(.6) brightness(.38);
}
.global::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,11,20,.88) 0%, rgba(10,11,20,.35) 44%, rgba(10,11,20,.55) 100%);
}
.global-arcs {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; overflow: visible;
}
.global-layout {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: .4fr .6fr;
  gap: 20px;
  align-items: center;
  min-height: 420px;
}
.global-copy h2 {
  max-width: none;
  white-space: nowrap;
}
.global-copy p { color: var(--muted); max-width: 28em; font-size: 15px; margin-top: 12px; }
.global-metric { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.metric-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}
.metric-amp {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.metric-line .stat-num {
  font-size: clamp(36px, 4.2vw, 56px);
}
.metric-line span:last-child {
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

.talent-stage { position: relative; height: 400px; }
.global-arcs path { fill: none; stroke-linecap: round; }
.arc-glows path {
  stroke: #5b8cff;
  stroke-width: 5;
  opacity: .1;
}
.arc-back path {
  stroke: url(#talentArcGrad);
  stroke-width: .8;
  stroke-dasharray: 2 10;
  opacity: .26;
}
.arc-routes path {
  stroke: url(#talentArcGrad);
  stroke-width: 1.05;
  stroke-dasharray: 5 9;
  opacity: .7;
  animation: arcDrift 22s linear infinite;
}
@keyframes arcDrift {
  to { stroke-dashoffset: -260; }
}
.arc-hub-core { fill: #c5d4ff; }
.arc-hub-ring {
  fill: none;
  stroke: rgba(123, 157, 255, .45);
  stroke-width: 1;
}
.talent {
  position: absolute;
  z-index: 1;
  width: 188px;
  background: #12131c;
  border: 1px solid rgba(236,238,246,.12);
  padding: 8px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  will-change: opacity, transform;
}
.talent img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 10px;
  background: #1a1b24;
}
.talent-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.talent-info strong {
  font-size: 13px; font-weight: 650;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.talent-info span {
  color: var(--muted);
  font-size: 11px;
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.talent-niche { letter-spacing: .02em; }
.t1 { top: 6%; right: 10%; }
.t2 { top: 28%; left: 0; }
.t3 { top: 48%; right: 34%; }
.t4 { bottom: 6%; left: 16%; }
.talent-stage.is-alt .t1 { top: 12%; left: 6%; right: auto; bottom: auto; }
.talent-stage.is-alt .t2 { top: 4%; right: 4%; left: auto; bottom: auto; }
.talent-stage.is-alt .t3 { top: auto; right: auto; bottom: 8%; left: 4%; }
.talent-stage.is-alt .t4 { top: 44%; right: 20%; left: auto; bottom: auto; }

.regions {
  position: relative; z-index: 3;
  display: flex; justify-content: flex-end; gap: 36px;
  margin-top: 12px;
}
.region { text-align: left; color: var(--muted); }
.region b { display: block; color: var(--ink); font-size: 14px; font-weight: 650; }
.region span { font-size: 11px; font-family: var(--font-mono); letter-spacing: .08em; }

/* Feature */
.feature {
  padding: 40px 0 var(--space);
  border-top: 1px solid var(--border);
}
.feature-copy h2 { margin-bottom: 14px; max-width: 12ch; }
.feature-copy > p { color: var(--muted); font-size: 15px; max-width: 36em; }
.feature-head {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin: 8px 0 16px;
}
.feature-reel .case-visual img { object-position: center 18%; }
.feat-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px 16px;
  margin-top: 28px;
}
.feat-idx {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.feat-item h3 { font-size: 15px; font-weight: 650; }
.feat-item p { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* Process */
.process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(90deg, #1aa7ff 0%, #4b5cff 46%, #c13be8 100%);
  color: #f4f6ff;
  padding: 48px 0 52px;
}
.process::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2%;
  width: min(46vw, 560px);
  height: 168%;
  transform: translateY(-50%);
  background: url("../images/gmobi-pencil-watermark-white.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}
.process .container { position: relative; z-index: 1; }
.process h2 { max-width: none; font-size: clamp(26px, 2.8vw, 36px); }
.process-list {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  gap: 0 8px;
  align-items: start;
}
.process-step .svc-num { color: rgba(244,246,255,.7); }
.process-step h3 { font-size: 15px; font-weight: 650; margin-top: 4px; letter-spacing: -.01em; }
.process-step p { margin-top: 6px; font-size: 13px; opacity: .88; }
.process-arrow {
  height: 1px; background: rgba(244,246,255,.45);
  margin-top: 22px;
}

/* Finale */
.finale {
  position: relative;
  min-height: 56dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.finale-media, .finale-scrim { position: absolute; inset: 0; }
.finale-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.finale-scrim {
  background: linear-gradient(180deg, rgba(10,11,20,.5) 0%, rgba(10,11,20,.46) 40%, rgba(10,11,20,.82) 100%);
}
.finale-copy { position: relative; z-index: 2; }
.finale h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.12; max-width: none; margin-inline: auto; text-wrap: unset; }
.finale .btn { margin-top: 24px; }

/* Footer */
.footer {
  background: #09090f;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px 18px;
  padding-bottom: 36px;
}
.footer-brand p { color: var(--muted); margin: 12px 0 0; font-size: 14px; }
.footer h3 {
  font-size: 11px; margin-bottom: 12px; font-weight: 600;
  font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.footer-grid a {
  display: block; color: var(--muted); font-size: 13px; line-height: 1.9;
}
.footer-grid a:hover { color: var(--ink); }
.footer-legal {
  border-top: 1px solid var(--border);
  padding: 14px 0 calc(18px + env(safe-area-inset-bottom, 0px));
  color: var(--dim);
  font-size: 12px;
  font-family: var(--font-mono);
}
.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 28px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: var(--ink); }
.to-top {
  position: fixed;
  right: max(16px, var(--pad));
  bottom: max(16px, calc(16px + env(safe-area-inset-bottom, 0px)));
  z-index: 32;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 238, 246, .16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(12, 13, 22, .72);
  opacity: .42;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .25s ease, border-color .2s ease, background .2s ease;
}
.to-top:focus-visible {
  opacity: 1;
  outline: 2px solid #9aa6ff;
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .to-top:hover {
    opacity: 1;
    border-color: rgba(236, 238, 246, .36);
    background: rgba(12, 13, 22, .9);
  }
}
.to-top:active {
  opacity: 1;
  border-color: rgba(236, 238, 246, .36);
  background: rgba(12, 13, 22, .9);
}

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .case-card { flex-basis: calc((100cqw - 16px) / 2); }
  .svc-card, .svc-card:not(:first-child) { padding: 0 12px 20px; border-right: 0; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .global-layout { grid-template-columns: 1fr; min-height: 0; }
  .talent-stage { height: 360px; }
  .feat-list { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .logo-img { height: 24px; max-width: 148px; }
  .hero { align-items: center; padding: 0; }
  .hero-media img, .hero-media video { object-position: 80% 46%; }
  .hero-copy { max-width: none; }
  .hero-title { font-size: clamp(26px, 7vw, 36px); line-height: 1.2; letter-spacing: 0.08em; }
  html[data-lang="en"] .hero-title { font-size: clamp(20px, 6vw, 30px); letter-spacing: -.02em; }
  .stats { padding: 22px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--border); padding-left: 18px; }
  .section-split { grid-template-columns: 1fr; gap: 14px; }
  .feature-head { flex-wrap: wrap; }
  .feat-list { grid-template-columns: 1fr 1fr; }
  .section-split { flex-direction: column; }
  .section-split p { flex: none; max-width: none; }
  .section-split h2 { font-size: clamp(18px, 5vw, 26px); white-space: normal; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card:not(:first-child) { padding: 0 0 22px; }
  .svc-card:last-child { padding-bottom: 0; border-bottom: 0; }
  .to-top {
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: max(12px, calc(12px + env(safe-area-inset-bottom, 0px)));
    opacity: .28;
  }
  .case-card { flex-basis: 100cqw; }
  .talent-stage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .talent { position: static; width: auto; }
  .global-arcs { display: none; }
  .regions { justify-content: space-between; gap: 8px; margin-top: 20px; }
  .feat-list { grid-template-columns: 1fr 1fr; }
  .process { padding: 36px 0 48px; background: linear-gradient(180deg, #1aa7ff 0%, #4b5cff 48%, #c13be8 100%); }
  .process::after {
    top: auto;
    right: -18%;
    bottom: -10%;
    width: 78vw;
    height: 78vw;
    transform: none;
    opacity: .55;
  }
  .process-step { padding: 14px 0; border-bottom: 1px solid rgba(244,246,255,.18); }
  .finale { min-height: 58dvh; }
  .finale h2 { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .talent-stage { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .regions { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { display: none; }
  .hero-media img, .svc-visual img, .case-visual img { transform: none !important; transition: none; }
  .hero-video { display: none; }
  .btn { transition: none; }
  .arc-routes path { animation: none; }
  .work-spinner { animation: none; opacity: .7; }
}

@media (prefers-reduced-transparency: reduce) {
  .nav.is-scrolled { background: #0c0c16; backdrop-filter: none; }
  .talent { backdrop-filter: none; background: #12121a; }
}
