:root {
  --ink: #0b1020;
  --blue: #1264ff;
  --blue-bright: #2878ff;
  --off: #f7f8fa;
  --white: #ffffff;
  --muted: #6d7482;
  --line: rgba(11, 16, 32, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shell: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--off); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--off);
  font-family: "Inter Tight", "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--blue); color: var(--white); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(96px, 10vw, 156px) 0; }
.eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-inverse { color: rgba(255,255,255,.65); }

h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { letter-spacing: -.045em; }
h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: .94;
  font-weight: 650;
}

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; padding: 10px 14px; background: var(--ink); color: var(--white); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .11em;
}
.logo-mark { width: 24px; height: 24px; fill: currentColor; }
.logo:hover .logo-mark { color: var(--blue); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.button span { transition: transform .25s var(--ease); }
.button:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 12px 30px rgba(18,100,255,.18); }
.button:hover span { transform: translateX(4px); }
.button:active { transform: translateY(1px); }
.button-small { min-height: 44px; padding-inline: 18px; gap: 16px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 4px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateY(3px); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: color-mix(in srgb, var(--off) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,16,32,.08);
}
.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 1px;
  background: var(--blue);
  transition: right .25s var(--ease);
}
.desktop-nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; }
.mobile-menu { display: none; }

.journey-arrow {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  overflow: visible;
}
.journey-track,
.journey-active-halo,
.journey-active {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.journey-track {
  stroke: rgba(40,120,255,.11);
  stroke-width: 1px;
}
.journey-active-halo {
  stroke: rgba(255,255,255,.42);
  stroke-width: 5px;
  opacity: .56;
}
.journey-active {
  stroke: var(--blue-bright);
  stroke-width: 2.2px;
  filter: url(#journey-glow);
}
.journey-head {
  opacity: .98;
  filter: drop-shadow(0 0 7px rgba(18,100,255,.28));
}

.hero {
  --mx: 0px;
  --my: 0px;
  --hero-scroll-shift: 0px;
  --hero-scroll-fade: 1;
  position: relative;
  min-height: 100svh;
  padding-top: 74px;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfc 0%, #f7f8fa 100%);
}
.hero-particles {
  position: absolute;
  inset: 74px 0 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: var(--size, 6px);
  height: var(--size, 6px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(40,120,255,.55) 55%, rgba(40,120,255,0) 72%);
  opacity: var(--opacity, .32);
  filter: blur(.2px);
  animation: particle-drift var(--duration, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-particles span:nth-child(1) { left: 8%; top: 18%; --size: 5px; --duration: 15s; }
.hero-particles span:nth-child(2) { left: 16%; top: 58%; --size: 7px; --duration: 18s; --delay: -4s; }
.hero-particles span:nth-child(3) { left: 24%; top: 30%; --size: 4px; --duration: 13s; --delay: -2s; }
.hero-particles span:nth-child(4) { left: 34%; top: 72%; --size: 6px; --duration: 16s; --delay: -6s; }
.hero-particles span:nth-child(5) { left: 48%; top: 22%; --size: 8px; --duration: 18s; --opacity: .28; }
.hero-particles span:nth-child(6) { left: 56%; top: 64%; --size: 4px; --duration: 12s; --delay: -3s; }
.hero-particles span:nth-child(7) { left: 66%; top: 12%; --size: 7px; --duration: 17s; --delay: -7s; }
.hero-particles span:nth-child(8) { left: 72%; top: 48%; --size: 5px; --duration: 14s; --delay: -1s; }
.hero-particles span:nth-child(9) { left: 80%; top: 76%; --size: 6px; --duration: 19s; --delay: -5s; }
.hero-particles span:nth-child(10) { left: 88%; top: 26%; --size: 4px; --duration: 11s; --delay: -8s; }
.hero-particles span:nth-child(11) { left: 92%; top: 60%; --size: 7px; --duration: 16s; --delay: -2.5s; }
.hero-particles span:nth-child(12) { left: 12%; top: 84%; --size: 5px; --duration: 20s; --delay: -9s; }
@keyframes particle-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: var(--opacity, .32); }
  25% { transform: translate3d(14px, -18px, 0) scale(1.08); opacity: calc(var(--opacity, .32) + .08); }
  50% { transform: translate3d(-10px, -34px, 0) scale(.94); opacity: calc(var(--opacity, .32) + .02); }
  75% { transform: translate3d(18px, -14px, 0) scale(1.05); opacity: calc(var(--opacity, .32) + .06); }
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 74px 0 0;
  opacity: .42;
  background-image:
    linear-gradient(to right, rgba(11,16,32,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,16,32,.045) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 82%);
  transform: perspective(900px) rotateX(64deg) scale(1.55) translateY(2%);
  transform-origin: top center;
}
.hero-aura {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: .42;
}
.hero-aura-a { width: 38vw; height: 38vw; min-width: 360px; min-height: 360px; right: -10vw; top: 8vh; background: rgba(18,100,255,.18); }
.hero-aura-b { width: 30vw; height: 30vw; min-width: 260px; min-height: 260px; left: 18vw; bottom: -12vw; background: rgba(18,100,255,.08); }
.hero-motion {
  position: absolute;
  z-index: -1;
  left: -2%;
  top: 33%;
  width: 104%;
  height: 44%;
  overflow: visible;
  transform: translate(var(--mx), calc(var(--my) + var(--hero-scroll-shift)));
  opacity: var(--hero-scroll-fade);
  transition: transform .22s ease-out, opacity .22s ease-out;
}
.hero-motion-track,
.hero-motion-line,
.hero-motion-head,
.final-cta-graphic .cta-track,
.final-cta-graphic .cta-line,
.final-cta-graphic .cta-head { fill: none; vector-effect: non-scaling-stroke; }
.hero-motion-track { stroke: rgba(18,100,255,.10); stroke-width: 1.5px; }
.hero-motion-line { stroke: var(--blue); stroke-width: 2px; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw-line 1.65s .55s var(--ease) forwards; }
.hero-motion-head { stroke: var(--blue); stroke-width: 2px; opacity: 0; animation: head-in .45s 1.85s var(--ease) forwards; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes head-in { to { opacity: 1; } }

.hero-inner {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: clamp(56px, 8vh, 108px);
  padding-bottom: 28px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}
.hero-copy { align-self: center; max-width: 1180px; }
.hero-title {
  max-width: 810px;
  margin: 28px 0 34px;
  font-size: clamp(78px, 8.8vw, 144px);
  line-height: .84;
  font-weight: 660;
  letter-spacing: -.067em;
}
.hero-title em { color: var(--blue); font-weight: 620; font-style: italic; }
.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 570px);
  align-items: end;
  gap: 32px;
}
.hero-intro {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  letter-spacing: -.02em;
  max-width: 620px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-stage { position: relative; }
.hero-stage-shell {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  transform: translate(calc(var(--mx) * .55), calc(var(--my) * .55));
  transition: transform .22s ease-out;
}
.hero-stage-system {
  min-height: 690px;
  padding: 16px 0 18px;
}
.hero-system-line {
  position: absolute;
  left: 82px;
  top: 106px;
  width: 390px;
  height: 410px;
  border: 2px solid rgba(18,100,255,.86);
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 180px 0;
  opacity: .92;
  filter: drop-shadow(0 0 12px rgba(18,100,255,.18));
}
.hero-system-line::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(18,100,255,.86);
  border-bottom: 2px solid rgba(18,100,255,.86);
  transform: rotate(-45deg) translate(2px, 2px);
  transform-origin: center;
}
.hero-system-card {
  position: absolute;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,16,32,.10);
  box-shadow: 0 20px 44px rgba(11,16,32,.10);
  backdrop-filter: blur(10px);
}
.hero-system-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(11,16,32,.08);
}
.hero-system-top span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-system-top b {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero-system-card-web {
  top: 0;
  left: 0;
  width: 310px;
}
.hero-system-card-creative {
  top: 154px;
  right: 0;
  width: 362px;
  background: var(--ink);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}
.hero-system-card-creative .hero-system-top { border-bottom-color: rgba(255,255,255,.10); }
.hero-system-card-creative .hero-system-top span { color: rgba(255,255,255,.50); }
.hero-system-card-presence {
  left: 78px;
  bottom: 0;
  width: 330px;
}
.hero-browser {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(11,16,32,.08);
}
.hero-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(11,16,32,.18);
}
.hero-wireframe {
  padding: 18px 16px 16px;
}
.wf-bar {
  height: 10px;
  background: rgba(11,16,32,.10);
}
.wf-bar-lg { width: 64%; height: 12px; margin-bottom: 16px; background: rgba(18,100,255,.20); }
.wf-bar-sm { width: 88%; }
.wf-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 12px;
}
.wf-box {
  min-height: 116px;
  background: linear-gradient(135deg, rgba(18,100,255,.20), rgba(18,100,255,.06));
  border: 1px solid rgba(18,100,255,.16);
}
.wf-stack {
  display: grid;
  align-content: start;
  gap: 10px;
}
.hero-creative-poster {
  position: relative;
  min-height: 254px;
  padding: 18px;
  overflow: hidden;
}
.hero-creative-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .45;
}
.hero-creative-poster p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 52px;
  line-height: .92;
  font-weight: 650;
  letter-spacing: -.06em;
}
.poster-mark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(40,120,255,.98), rgba(18,100,255,.32));
  clip-path: polygon(0 82%, 58% 82%, 58% 58%, 100% 58%, 100% 100%, 0 100%);
}
.poster-lines {
  position: absolute;
  left: 18px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}
.poster-lines i { display: block; height: 1px; background: rgba(255,255,255,.22); }
.poster-lines i:nth-child(1) { width: 96px; }
.poster-lines i:nth-child(2) { width: 148px; }
.poster-lines i:nth-child(3) { width: 68px; }
.hero-presence {
  padding: 16px 18px 18px;
  display: grid;
  gap: 12px;
}
.presence-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
}
.presence-row strong {
  font-size: 13px;
  font-weight: 700;
}
.presence-row em {
  position: relative;
  display: block;
  height: 16px;
  background: rgba(11,16,32,.06);
  overflow: hidden;
}
.presence-row em::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 75%);
  background: linear-gradient(90deg, rgba(18,100,255,.18), rgba(18,100,255,.56));
}
.presence-row:nth-child(1) em { --fill: 86%; }
.presence-row:nth-child(2) em { --fill: 71%; }
.presence-row:nth-child(3) em { --fill: 58%; }
.presence-row:nth-child(4) em { --fill: 92%; }
.hero-chip {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,16,32,.12);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  box-shadow: 0 12px 32px rgba(11,16,32,.08);
}
.hero-chip span {
  margin-right: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-chip-a { left: -18px; top: 24px; }
.hero-chip-b { right: -18px; top: 286px; }
.hero-chip-c { left: 132px; bottom: -12px; }
.hero-meta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-meta i { width: 28px; height: 1px; background: rgba(11,16,32,.25); }
.hero-enter { opacity: 0; transform: translateY(22px); animation: hero-in .8s var(--ease) forwards; }
.hero-enter-1 { animation-delay: .08s; }
.hero-enter-2 { animation-delay: .18s; }
.hero-enter-3 { animation-delay: .34s; }
.hero-enter-4 { animation-delay: .48s; }
.hero-enter-5 { animation-delay: .58s; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

.split-head {
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 48px;
  padding-bottom: clamp(72px, 8vw, 112px);
}
.split-head > div { max-width: 860px; }
.split-head h2 { margin-bottom: 36px; }
.split-head > div > p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.capability-list { border-top: 1px solid var(--line); }
.capability-row {
  position: relative;
  display: grid;
  grid-template-columns: 82px 124px minmax(240px, 1fr) minmax(320px, .88fr) 44px;
  align-items: center;
  gap: 24px;
  min-height: 182px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.capability-row::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, rgba(18,100,255,.96), rgba(40,120,255,.92));
  transition: right .42s var(--ease);
  z-index: -1;
}
.capability-row:hover::before { right: 0; }
.capability-row:hover { color: var(--white); }
.cap-number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
}
.capability-row:hover .cap-number { color: rgba(255,255,255,.65); }
.cap-graphic {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.55);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.cap-graphic svg { width: 76px; height: 76px; overflow: visible; }
.cap-graphic svg * { fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s var(--ease), opacity .3s var(--ease), transform .35s var(--ease); }
.capability-row:hover .cap-graphic { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); transform: translateX(6px); }
.capability-row:hover .cap-graphic svg * { stroke: rgba(255,255,255,.92); }
.capability-row h3 { margin: 0; font-size: clamp(28px, 3vw, 43px); line-height: 1; font-weight: 620; }
.capability-row p { margin: 0; max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.capability-row:hover p { color: rgba(255,255,255,.82); }
.cap-arrow { font-size: 28px; transition: transform .3s var(--ease); }
.capability-row:hover .cap-arrow { transform: translate(5px,-5px); }

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 184px) 0 clamp(90px, 10vw, 144px);
  background: var(--ink);
  color: var(--white);
}
.manifesto::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: -10vw;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(18,100,255,.13);
  filter: blur(100px);
  pointer-events: none;
}
.manifesto-lines { position: absolute; inset: 0; pointer-events: none; }
.manifesto-lines i {
  position: absolute;
  left: -12%;
  width: 128%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40,120,255,.23) 25%, rgba(40,120,255,.5) 58%, transparent);
  transform: rotate(-6deg);
}
.manifesto-lines i:nth-child(1) { top: 30%; }
.manifesto-lines i:nth-child(2) { top: 47%; opacity: .6; }
.manifesto-lines i:nth-child(3) { top: 64%; opacity: .3; }
.manifesto-inner { position: relative; z-index: 2; }
.manifesto-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .82fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.manifesto-copy { max-width: 920px; }
.manifesto-copy h2 { margin: 30px 0 52px; font-size: clamp(60px, 8vw, 126px); }
.manifesto-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.74);
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.5;
}
.manifesto-display svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.28));
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(90px, 10vw, 146px);
  border-top: 1px solid var(--line-dark);
}
.principle { min-height: 220px; padding: 28px 32px 0 0; border-right: 1px solid var(--line-dark); }
.principle + .principle { padding-left: 32px; }
.principle:last-child { border-right: 0; }
.principle span { color: #6f7a9b; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.principle h3 { margin: 50px 0 13px; color: var(--blue-bright); font-size: 14px; letter-spacing: .16em; }
.principle p { max-width: 310px; margin: 0; color: rgba(255,255,255,.82); font-size: 18px; }

.process { background: var(--white); position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 16%, rgba(18,100,255,.08), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(18,100,255,.02) 100%);
  pointer-events: none;
}
.process-head { display: grid; grid-template-columns: minmax(180px,.6fr) 1.4fr; gap: 48px; }
.process-head h2 { margin-bottom: 82px; }
.process-track { position: relative; }
.process-line { position: absolute; top: 31px; left: 0; right: 0; height: 1px; background: var(--line); overflow: hidden; }
.process-line span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transform: scaleX(0); transform-origin: left; transition: transform 1.1s .2s var(--ease); }
.process-track.is-visible .process-line span { transform: scaleX(1); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.process-step { position: relative; padding-top: 0; }
.process-index { height: 63px; display: flex; align-items: flex-start; justify-content: space-between; }
.process-index b { display: inline-grid; place-items: center; width: 62px; height: 62px; background: var(--white); border: 1px solid var(--ink); box-shadow: 0 8px 20px rgba(11,16,32,.04); font-size: 12px; letter-spacing: .08em; }
.process-index i { margin-top: 31px; width: 14px; height: 1px; background: var(--blue); }
.process-step h3 { margin: 28px 0 14px; font-size: clamp(24px, 2.1vw, 31px); line-height: 1.05; font-weight: 620; }
.process-step p { max-width: 280px; margin: 0; color: var(--muted); }

.final-cta {
  position: relative;
  background: linear-gradient(180deg, #0f57de 0%, #1264ff 54%, #0f57de 100%);
  color: var(--white);
  padding: clamp(90px, 9vw, 138px) 0;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: .17;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 90%);
  pointer-events: none;
}
.final-cta-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
}
.final-cta-graphic .cta-track { stroke: rgba(255,255,255,.18); stroke-width: 1.5px; }
.final-cta-graphic .cta-line { stroke: rgba(255,255,255,.78); stroke-width: 2.5px; }
.final-cta-graphic .cta-head { stroke: rgba(255,255,255,.78); stroke-width: 2.5px; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta-line { display: flex; align-items: center; margin-bottom: 74px; }
.final-cta-line span { flex: 1; height: 1px; background: rgba(255,255,255,.42); transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease); }
.final-cta-inner.is-visible .final-cta-line span { transform: scaleX(1); }
.final-cta-line i { font-size: 34px; line-height: 1; font-style: normal; transform: translateX(-8px); opacity: 0; transition: transform .5s .75s var(--ease), opacity .5s .75s var(--ease); }
.final-cta-inner.is-visible .final-cta-line i { transform: translateX(0); opacity: 1; }
.final-cta h2 { margin: 34px 0 66px; font-size: clamp(60px, 8.4vw, 128px); }
.final-cta h2 em { font-weight: 570; font-style: italic; }
.final-cta-bottom { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.final-cta-bottom p { max-width: 630px; margin: 0; font-size: clamp(18px, 1.65vw, 22px); color: rgba(255,255,255,.82); }
.final-cta .button { background: var(--white); color: var(--ink); border-color: var(--white); }
.final-cta .button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: 0 16px 36px rgba(0,0,0,.18); }

.contact { background: var(--off); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(64px, 9vw, 140px); }
.contact-copy h2 { margin: 30px 0 28px; }
.contact-copy > p:not(.eyebrow) { max-width: 430px; color: var(--muted); font-size: 20px; }
.prefer-email { margin-top: 72px; display: flex; flex-direction: column; gap: 7px; }
.prefer-email span { color: var(--muted); font-size: 13px; }
.prefer-email a { width: fit-content; font-size: clamp(19px, 2vw, 25px); font-weight: 650; border-bottom: 1px solid var(--ink); }
.prefer-email b { display: inline-block; font-weight: 500; transition: transform .25s var(--ease); }
.prefer-email a:hover b { transform: translate(3px,-3px); }
.contact-form {
  position: relative;
  padding: 26px 28px 30px;
  border: 1px solid rgba(11,16,32,.08);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 48px rgba(11,16,32,.05);
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 110px;
  height: 1px;
  background: var(--blue);
}
.contact-form label { display: block; margin-bottom: 30px; }
.contact-form label > span { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 750; letter-spacing: .03em; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-row.two-col label { margin-bottom: 30px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11,16,32,.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 0 14px;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 150px; line-height: 1.5; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.contact-form textarea::placeholder { color: #9298a4; }
.form-actions { display: flex; align-items: center; gap: 26px; margin-top: 42px; }
.form-note { max-width: 350px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.footer { padding: 30px 0 36px; background: var(--ink); color: var(--white); }
.footer-line { display: flex; align-items: center; margin: 4px 0 40px; color: var(--blue-bright); }
.footer-line span { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(40,120,255,.1), var(--blue-bright)); }
.footer-line i { margin-left: -2px; font-size: 24px; font-style: normal; line-height: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; align-items: end; gap: 40px; }
.footer-grid > div p { margin: 13px 0 0; color: rgba(255,255,255,.52); font-size: 14px; }
.footer nav { display: flex; flex-direction: column; gap: 8px; }
.footer nav a { width: fit-content; color: rgba(255,255,255,.7); font-size: 14px; }
.footer nav a:hover { color: var(--white); }
.copyright { justify-self: end; margin: 0; color: rgba(255,255,255,.42); font-size: 12px; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 44px; }
  .hero-title { font-size: clamp(72px, 9.4vw, 126px); }
  .capability-row { grid-template-columns: 64px 104px minmax(220px, .95fr) minmax(260px, 1fr) 38px; gap: 18px; }
  .process-grid { gap: 24px; }
}

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-stage-shell { margin: 8px 0 0; width: min(100%, 620px); }
  .hero-meta { justify-self: start; margin-top: 44px; }
  .manifesto-top { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 74px; }
}

@media (max-width: 899px) {
  :root { --shell: min(100% - 40px, 740px); }
  .desktop-nav { display: none; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease); }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 74px 0 0;
    display: block;
    background: var(--ink);
    color: var(--white);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu-inner { height: calc(100svh - 74px); padding: 34px 0 28px; display: flex; flex-direction: column; }
  .mobile-menu-kicker { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 750; letter-spacing: .16em; }
  .mobile-menu nav { margin-top: 48px; border-top: 1px solid var(--line-dark); }
  .mobile-menu nav a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -.03em;
  }
  .mobile-menu nav span { color: rgba(255,255,255,.38); font-size: 11px; letter-spacing: .12em; }
  .mobile-menu nav b { color: var(--blue-bright); font-size: 18px; font-weight: 500; }
  .mobile-menu-cta { margin-top: auto; background: var(--blue); border-color: var(--blue); }
  .journey-track { stroke-width: .85px; opacity: .64; }
  .journey-active-halo { stroke-width: 4px; opacity: .48; }
  .journey-active { stroke-width: 1.9px; }

  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 58px; }
  .hero-title { max-width: 700px; font-size: clamp(66px, 13vw, 102px); line-height: .86; }
  .hero-intro { max-width: 620px; }
  .hero-motion { top: 37%; height: 38%; width: 150%; left: -25%; opacity: .8; }
  .hero-grid { background-size: 14vw 14vw; }
  .hero-aura-a { right: -20vw; top: 20vh; }
  .hero-system-line { left: 44px; top: 90px; width: 260px; height: 286px; }
  .hero-system-card-web { width: 244px; }
  .hero-system-card-creative { top: 118px; width: 276px; }
  .hero-system-card-presence { left: 44px; width: 248px; }
  .hero-creative-poster { min-height: 214px; }
  .hero-creative-poster p { font-size: 40px; }
  .poster-mark { width: 90px; height: 90px; }
  .hero-chip-b { right: 8px; }
  .hero-stage-shell { transform: none; }

  .split-head,
  .process-head { grid-template-columns: 1fr; gap: 30px; }
  .capability-row {
    grid-template-columns: 42px 72px 1fr 30px;
    grid-template-areas: "num graphic title arrow" ". copy copy copy";
    gap: 14px 18px;
    min-height: 0;
    padding: 30px 0;
  }
  .cap-number { grid-area: num; align-self: start; padding-top: 6px; }
  .cap-graphic { grid-area: graphic; width: 68px; height: 68px; align-self: start; }
  .cap-graphic svg { width: 52px; height: 52px; }
  .capability-row h3 { grid-area: title; align-self: start; }
  .capability-row p { grid-area: copy; max-width: 570px; }
  .cap-arrow { grid-area: arrow; justify-self: end; align-self: start; }
  .capability-row::before { display: none; }
  .capability-row:hover { color: inherit; }
  .capability-row:hover p { color: var(--muted); }
  .capability-row:hover .cap-graphic { background: rgba(255,255,255,.55); border-color: rgba(11,16,32,.10); transform: none; }
  .capability-row:hover .cap-graphic svg * { stroke: var(--ink); }

  .principles { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: 0; padding: 28px 0 36px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 28px; }

  .process-head h2 { margin-bottom: 46px; }
  .process-line { top: 0; left: 30px; right: auto; width: 1px; height: 100%; }
  .process-line span { width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; }
  .process-track.is-visible .process-line span { transform: scaleY(1); }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { min-height: 190px; padding-left: 94px; padding-bottom: 36px; }
  .process-index { position: absolute; left: 0; top: 0; width: 62px; height: 62px; }
  .process-index i { display: none; }
  .process-step h3 { margin-top: 3px; }
  .process-step p { max-width: 520px; }

  .final-cta-bottom { align-items: start; flex-direction: column; }
  .prefer-email { margin-top: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .header-inner { height: 68px; }
  .site-header { backdrop-filter: blur(14px); }
  .mobile-menu { top: 68px; }
  .mobile-menu-inner { height: calc(100svh - 68px); }

  .hero { padding-top: 68px; min-height: 92svh; }
  .hero-inner { min-height: calc(92svh - 68px); display: flex; flex-direction: column; padding-top: 48px; padding-bottom: 20px; }
  .hero-copy { align-self: stretch; }
  .hero-layout { gap: 34px; }
  .hero-title { margin: 24px 0 30px; font-size: clamp(62px, 18vw, 86px); line-height: .84; letter-spacing: -.065em; }
  .hero-title em { display: block; }
  .hero-intro { font-size: 17px; line-height: 1.48; }
  .hero-lower { gap: 25px; }
  .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 14px; }
  .hero-actions .button { min-height: 54px; padding-inline: 17px; gap: 12px; }
  .text-link { font-size: 13px; gap: 8px; }
  .hero-meta { margin-top: auto; padding-top: 34px; font-size: 10px; }
  .hero-meta i { width: 16px; }
  .hero-particles { inset: 68px 0 0; }
  .hero-grid { top: 68px; background-size: 23vw 23vw; opacity: .30; }
  .hero-motion { top: 46%; left: -54%; width: 220%; height: 30%; }
  .hero-stage-shell { width: 100%; }
  .hero-stage-system { min-height: 510px; }
  .hero-chip { padding: 8px 10px; font-size: 12px; }
  .hero-chip span { margin-right: 8px; font-size: 9px; }
  .hero-system-top { padding: 12px 14px 11px; }
  .hero-system-top b { font-size: 12px; }
  .hero-system-card-web { width: 220px; }
  .hero-system-card-creative { top: 110px; width: 250px; }
  .hero-system-card-presence { left: 26px; width: 224px; }
  .hero-system-line { left: 30px; top: 78px; width: 228px; height: 266px; }
  .hero-wireframe { padding: 14px 12px 12px; }
  .wf-grid { gap: 9px; }
  .wf-box { min-height: 94px; }
  .hero-creative-poster { min-height: 188px; padding: 14px; }
  .hero-creative-poster p { font-size: 34px; }
  .poster-mark { right: 14px; bottom: 14px; width: 74px; height: 74px; }
  .hero-presence { padding: 12px 14px 14px; gap: 10px; }
  .hero-chip { padding: 8px 10px; font-size: 12px; }
  .hero-chip span { margin-right: 8px; font-size: 9px; }
  .hero-chip-a { left: 6px; top: 8%; }
  .hero-chip-b { right: 6px; top: 38%; }
  .hero-chip-c { left: 12%; bottom: 8px; }

  .split-head { padding-bottom: 60px; }
  .split-head h2 { font-size: clamp(50px, 14vw, 68px); margin-bottom: 25px; }
  .split-head > div > p { font-size: 18px; }
  .capability-row { grid-template-columns: 38px 60px 1fr 30px; min-height: 0; padding: 28px 0 31px; gap: 14px; }
  .capability-row h3 { font-size: 29px; }
  .capability-row p { font-size: 16px; line-height: 1.52; }

  .manifesto { padding: 95px 0 82px; }
  .manifesto-copy h2 { margin: 26px 0 38px; font-size: clamp(62px, 18vw, 86px); }
  .manifesto-copy > p:not(.eyebrow) { font-size: 18px; line-height: 1.52; }
  .principles { margin-top: 74px; }
  .principle p { font-size: 17px; }

  .process-head h2 { font-size: clamp(52px, 15vw, 72px); }
  .process-step { min-height: 186px; padding-left: 82px; }
  .process-index b { width: 58px; height: 58px; }
  .process-line { left: 28px; }
  .process-step h3 { font-size: 27px; margin-bottom: 12px; }

  .final-cta { padding: 78px 0 84px; }
  .final-cta-line { margin-bottom: 58px; }
  .final-cta h2 { margin: 28px 0 44px; font-size: clamp(56px, 16vw, 78px); line-height: .91; }
  .final-cta h2 br { display: none; }
  .final-cta-bottom p { font-size: 18px; }
  .final-cta .button { width: 100%; }

  .contact-copy h2 { font-size: clamp(58px, 17vw, 78px); }
  .contact-copy > p:not(.eyebrow) { font-size: 18px; }
  .contact-form { padding: 22px 20px 24px; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .form-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .form-actions .button { width: 100%; }
  .form-note { max-width: none; }

  .footer { padding-bottom: 30px; }
  .footer-line { margin-bottom: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .copyright { grid-column: auto; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], .hero-enter { opacity: 1 !important; transform: none !important; }
  .hero-particles span { animation: none; }
  .hero-motion-line { stroke-dashoffset: 0; }
  .hero-motion-head { opacity: 1; }
}
