:root {
  --bg: #05070b;
  --bg-elevated: #0a0d13;
  --bg-soft: #0d1118;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.065);
  --text: #f6f7fb;
  --muted: #99a2b1;
  --muted-2: #727d8d;
  --blue: #2385ff;
  --blue-bright: #22a6ff;
  --indigo: #5347ff;
  --cyan: #2cd8ff;
  --green: #4ed7a5;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 4%, rgba(26, 110, 255, 0.11), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(35, 133, 255, .32); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 11, .78);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; position: relative; z-index: 60; }
.brand img { width: 146px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: 14px;
  font-weight: 540;
  color: #aeb6c3;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav .nav-cta {
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}
.site-nav .nav-cta:hover { background: rgba(255, 255, 255, .10); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  z-index: 60;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 154px 0 64px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 86%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 86%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35,133,255,.19), rgba(83,71,255,.08) 36%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
  gap: 68px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8da0ba;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 640;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo));
  box-shadow: 0 0 0 5px rgba(35,133,255,.09);
}
.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(64px, 8vw, 116px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 650;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #c7d0dc 0%, #76879c 48%, #e9eef5 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  margin: 34px 0 0;
  max-width: 700px;
  color: #aeb6c3;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  letter-spacing: -.015em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid #5cb0ff;
  outline-offset: 4px;
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1888ff 0%, #175cff 58%, #493aff 100%);
  box-shadow: 0 14px 34px rgba(25, 101, 255, .22);
}
.button-primary:hover { box-shadow: 0 18px 42px rgba(25, 101, 255, .32); }
.button-ghost {
  color: #dbe1ea;
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.12);
}
.button-ghost:hover { background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.20); }
.button-large { min-height: 58px; padding-inline: 26px; font-size: 15px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.hero-trust span {
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #7f8998;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .035em;
}
.hero-mark-wrap {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.hero-mark-wrap::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.09), rgba(35,133,255,.04) 40%, transparent 66%);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 0 80px rgba(24, 91, 255, .06), 0 0 90px rgba(25, 93, 255, .08);
}
.hero-mark {
  position: relative;
  z-index: 2;
  width: 58%;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .5));
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
}
.orbit-one { inset: 5%; }
.orbit-two { inset: 25%; border-style: dashed; opacity: .55; }
.hero-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(8, 12, 20, .72);
  color: #bac4d2;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.chip-one { left: 1%; top: 24%; }
.chip-two { right: -1%; top: 35%; }
.chip-three { left: 4%; bottom: 19%; }
.chip-four { right: 4%; bottom: 13%; }
.hero-rule { position: absolute; z-index: 2; bottom: 0; left: 50%; transform: translateX(-50%); border-bottom: 1px solid var(--line-soft); }

.section { padding: 118px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading.compact { margin-bottom: 36px; }
.section-heading h2, .brand-copy h2, .engagement-intro h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 610;
}
.section-heading > p, .brand-copy > p, .engagement-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -.01em;
}

.services { background: linear-gradient(to bottom, rgba(255,255,255,.012), transparent); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.014);
}
.service-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background .25s ease;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { background: rgba(255,255,255,.032); }
.service-number {
  position: absolute;
  right: 28px;
  top: 28px;
  color: #596374;
  font-size: 12px;
  font-weight: 680;
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(35,133,255,.12), rgba(83,71,255,.04));
  border: 1px solid rgba(69,145,255,.16);
}
.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #4da1ff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin: 72px 0 12px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.service-card p { margin: 0; color: #929cab; font-size: 15px; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.service-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: #747f8f;
  font-size: 11px;
  font-weight: 600;
}

.work { border-top: 1px solid var(--line-soft); }
.work-heading { margin-bottom: 30px; }
.work-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 870px;
  margin-bottom: 46px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.026);
  border: 1px solid var(--line-soft);
}
.note-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: #4f9eff; }
.work-note p { margin: 0; color: #8490a1; font-size: 13px; line-height: 1.6; }
.work-note strong { color: #c8d0dc; font-weight: 630; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.work-card {
  grid-column: span 6;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.work-card-wide { grid-column: span 12; }
.work-card-tall { grid-column: span 5; }
.work-card-tall + .work-card { grid-column: span 7; }
.work-card:nth-last-child(2) { grid-column: span 7; }
.work-card:nth-last-child(1) { grid-column: span 5; }
.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 24px 26px 0;
  color: #8290a3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.status { padding: 6px 9px; border-radius: 999px; letter-spacing: .04em; }
.status.product { color: #8fe8c2; background: rgba(78,215,165,.08); border: 1px solid rgba(78,215,165,.18); }
.status.concept { color: #86bfff; background: rgba(35,133,255,.08); border: 1px solid rgba(35,133,255,.18); }
.work-copy { padding: 18px 26px 24px; }
.work-copy h3 { margin: 0 0 8px; font-size: 32px; letter-spacing: -.045em; }
.work-copy p { margin: 0; max-width: 720px; color: #929cab; font-size: 15px; line-height: 1.65; }
.work-media { overflow: hidden; border-top: 1px solid var(--line-soft); background: #030509; }
.work-media img { width: 100%; height: auto; transition: transform .55s cubic-bezier(.2,.65,.2,1), filter .3s ease; }
.work-card:hover .work-media img { transform: scale(1.018); filter: brightness(1.04); }

.engagements { background: #080b10; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.engagement-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.engagement-intro { position: sticky; top: 130px; }
.engagement-intro > p:last-child { margin-top: 24px; }
.engagement-list { border-top: 1px solid var(--line); }
.engagement-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.engagement-item > span { color: #5e6b7e; font-size: 12px; font-weight: 680; padding-top: 5px; }
.engagement-item h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
.engagement-item p { margin: 0; color: #8d98a8; font-size: 15px; line-height: 1.7; }

.stack-board {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.015);
}
.stack-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 92px;
  align-items: center;
  gap: 30px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line-soft);
}
.stack-row:last-child { border-bottom: 0; }
.stack-label { color: #8d98a8; font-size: 13px; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
.stack-items { display: flex; flex-wrap: wrap; gap: 10px; }
.stack-items span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #d9dfe8;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line-soft);
  font-size: 14px;
  font-weight: 580;
}

.brand-story { padding-top: 90px; }
.brand-story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.delivery-system {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(35,133,255,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    #05080d;
  box-shadow: var(--shadow);
}
.delivery-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}
.delivery-system > * { position: relative; z-index: 1; }
.delivery-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); }
.delivery-title { display: flex; align-items: center; gap: 12px; min-width: 0; }
.delivery-title img { width: 31px; height: 31px; flex: 0 0 31px; }
.delivery-title strong, .delivery-title span { display: block; }
.delivery-title strong { font-size: 14px; letter-spacing: -.015em; }
.delivery-title span { margin-top: 3px; color: #737f90; font-size: 11px; }
.delivery-live { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; padding: 7px 10px; border: 1px solid var(--line-soft); border-radius: 999px; color: #96a2b2; background: rgba(255,255,255,.025); font-size: 10px; font-weight: 650; letter-spacing: .04em; }
.delivery-live i { width: 6px; height: 6px; border-radius: 50%; background: #42d89f; box-shadow: 0 0 0 4px rgba(66,216,159,.08); }
.delivery-input, .delivery-output { border: 1px solid var(--line-soft); border-radius: 16px; background: rgba(255,255,255,.025); }
.delivery-input { margin-top: 20px; padding: 15px 17px; }
.delivery-input span, .delivery-output span:not(.delivery-arrow) { display: block; margin-bottom: 5px; color: #5f6e82; font-size: 9px; font-weight: 760; letter-spacing: .14em; }
.delivery-input strong, .delivery-output strong { display: block; color: #dfe5ee; font-size: 13px; font-weight: 600; line-height: 1.4; }
.delivery-steps { position: relative; list-style: none; padding: 8px 0; margin: 12px 0; }
.delivery-steps::before { content: ""; position: absolute; left: 59px; top: 31px; bottom: 31px; width: 1px; background: linear-gradient(to bottom, rgba(35,133,255,.10), rgba(35,133,255,.58) 45%, rgba(83,71,255,.16)); }
.delivery-steps li { position: relative; display: grid; grid-template-columns: 34px 28px minmax(0,1fr) auto; gap: 12px; align-items: center; min-height: 78px; padding: 10px 8px; border-radius: 15px; }
.delivery-steps li.is-active { background: linear-gradient(90deg, rgba(35,133,255,.095), rgba(35,133,255,.018)); border: 1px solid rgba(48,137,255,.12); }
.delivery-index { color: #4f5b6d; font-size: 10px; font-weight: 720; letter-spacing: .08em; text-align: center; }
.delivery-node { position: relative; z-index: 2; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #090d14; border: 1px solid rgba(255,255,255,.09); }
.delivery-dot { width: 6px; height: 6px; border-radius: 50%; background: #5f7085; }
.delivery-steps li.is-active .delivery-node { border-color: rgba(66,156,255,.55); box-shadow: 0 0 0 6px rgba(35,133,255,.07), 0 0 28px rgba(35,133,255,.16); }
.delivery-steps li.is-active .delivery-dot { background: linear-gradient(135deg, var(--blue-bright), var(--indigo)); }
.delivery-step-copy strong, .delivery-step-copy span { display: block; }
.delivery-step-copy strong { margin-bottom: 4px; font-size: 14px; letter-spacing: -.015em; }
.delivery-step-copy span { max-width: 360px; color: #788496; font-size: 11px; line-height: 1.55; }
.delivery-tag { justify-self: end; padding: 6px 8px; border-radius: 999px; border: 1px solid var(--line-soft); color: #667486; background: rgba(255,255,255,.02); font-size: 9px; font-weight: 650; white-space: nowrap; }
.delivery-steps li.is-active .delivery-tag { color: #9dc7ff; border-color: rgba(35,133,255,.18); background: rgba(35,133,255,.07); }
.delivery-output { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 17px; border-color: rgba(51,139,255,.18); background: linear-gradient(100deg, rgba(35,133,255,.09), rgba(83,71,255,.035)); }
.delivery-arrow { display: grid !important; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; margin: 0 !important; border-radius: 50%; background: linear-gradient(135deg, #2385ff, #4b42ff); color: #fff !important; font-size: 15px !important; }
.brand-copy > p { margin-top: 26px; }
.brand-principles { list-style: none; padding: 0; margin: 38px 0 0; border-top: 1px solid var(--line); }
.brand-principles li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.brand-principles li > span { color: #5e6b7e; font-size: 11px; font-weight: 700; padding-top: 4px; }
.brand-principles strong { display: block; font-size: 17px; margin-bottom: 4px; }
.brand-principles p { margin: 0; color: #8792a2; font-size: 14px; line-height: 1.6; }

.team-model { border-top: 1px solid var(--line-soft); }
.team-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.team-model-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 6%, rgba(35,133,255,.09), transparent 33%),
    rgba(255,255,255,.018);
}
.team-model-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,151,255,.4), transparent);
  opacity: .55;
}
.team-model-number {
  color: #566376;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .1em;
}
.team-model-icon {
  width: 46px;
  height: 46px;
  margin: 48px 0 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75,151,255,.17);
  border-radius: 14px;
  color: #b9d7ff;
  background: linear-gradient(145deg, rgba(35,133,255,.13), rgba(83,71,255,.04));
  font-size: 20px;
}
.team-model-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.025em; }
.team-model-card p { margin: 0; color: #8994a4; font-size: 14px; line-height: 1.65; }

.contact {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  border-top: 1px solid var(--line-soft);
  background: #020407;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0, transparent 75%);
  mask-image: radial-gradient(circle at center, #000 0, transparent 75%);
}
.contact-glow {
  position: absolute;
  width: 820px;
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(27,105,255,.15), transparent 66%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-mark { width: 72px; margin: 0 auto 24px; }
.contact-inner .eyebrow { justify-content: center; margin-bottom: 16px; }
.contact-inner h2 { margin: 0; font-size: clamp(58px, 8vw, 104px); line-height: .92; letter-spacing: -.065em; }
.contact-inner > p:not(.eyebrow):not(.copy-status) { max-width: 640px; margin: 28px auto 0; color: #9aa5b4; font-size: 18px; line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.copy-status { min-height: 22px; margin: 16px 0 0; color: #7fa8da; font-size: 13px; }

.site-footer { padding: 42px 0 48px; border-top: 1px solid var(--line-soft); background: #020407; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: end; }
.footer-brand img { width: 130px; }
.footer-brand p { margin: 10px 0 0; color: #6f7a89; font-size: 13px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #8c97a7; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-meta { display: grid; gap: 9px; text-align: right; color: #5f6a79; font-size: 12px; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr .65fr; gap: 36px; }
  .hero-mark-wrap { width: 390px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--line-soft); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
  .service-card:nth-last-child(-n+2) { border-bottom: 0; }
  .engagement-grid { gap: 56px; }
  .brand-story-grid { gap: 45px; }
  .delivery-steps li { grid-template-columns: 30px 26px minmax(0,1fr); }
  .delivery-tag { display: none; }
  .delivery-steps::before { left: 54px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100vh;
    height: 100dvh;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #04060a;

    /* Closed means genuinely hidden, not merely translated off-screen.
       This avoids fixed-layer recomposition glitches in mobile browsers
       when their URL/tool bars collapse during scrolling. */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -16px, 0);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
  .site-nav a { padding: 17px 2px; border-bottom: 1px solid var(--line-soft); font-size: 23px; color: #e8ecf2; }
  .site-nav .nav-cta { margin-top: 18px; border: 0; background: var(--blue); text-align: center; }
  .hero { min-height: auto; padding: 142px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 68px; }
  .hero-copy { max-width: 760px; }
  .hero-mark-wrap { width: min(440px, 88vw); margin: 0 auto; }
  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .section-heading > p { max-width: 700px; }
  .work-card, .work-card-wide, .work-card-tall, .work-card-tall + .work-card, .work-card:nth-last-child(2), .work-card:nth-last-child(1) { grid-column: span 12; }
  .engagement-grid { grid-template-columns: 1fr; gap: 38px; }
  .engagement-intro { position: static; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .delivery-system { order: 2; }
  .brand-copy { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 132px; }
  .hero { padding-top: 126px; }
  .hero h1 { font-size: clamp(56px, 17vw, 82px); }
  .hero-lead { font-size: 18px; margin-top: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-mark-wrap { width: 92vw; max-width: 390px; }
  .hero-chip { padding: 7px 9px; font-size: 9px; }
  .service-grid { grid-template-columns: 1fr; border-radius: 24px; }
  .service-card, .service-card:nth-child(3n), .service-card:nth-child(2n), .service-card:nth-last-child(-n+3), .service-card:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .service-card:last-child { border-bottom: 0; }
  .service-card { min-height: 310px; padding: 28px; }
  .service-card h3 { margin-top: 60px; }
  .work-grid { gap: 16px; }
  .work-card { border-radius: 22px; }
  .work-meta { padding: 18px 18px 0; flex-wrap: wrap; }
  .work-copy { padding: 16px 18px 18px; }
  .work-copy h3 { font-size: 27px; }
  .work-note { margin-bottom: 30px; }
  .engagement-item { grid-template-columns: 36px 1fr; gap: 12px; }
  .stack-row { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
  .stack-label { margin-bottom: 2px; }
  .delivery-system { padding: 18px; border-radius: 24px; }
  .delivery-topline { align-items: flex-start; }
  .delivery-live { display: none; }
  .delivery-steps li { grid-template-columns: 26px 24px minmax(0,1fr); gap: 9px; min-height: 86px; padding-inline: 2px; }
  .delivery-steps::before { left: 40px; }
  .delivery-node { width: 24px; height: 24px; }
  .delivery-step-copy span { font-size: 10px; }
  .team-model-grid { grid-template-columns: 1fr; }
  .team-model-card { min-height: 230px; padding: 22px; }
  .team-model-icon { margin-top: 34px; }
  .contact { padding: 100px 0; }
  .contact-inner h2 { font-size: 64px; }
  .contact-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
