:root {
  --bg: #0A1628;
  --bg-2: #0E1E36;
  --bg-3: #122847;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #FFFFFF;
  --muted: #8FA0B8;
  --muted-2: #B6C4D6;
  --orange: #F39019;
  --orange-2: #FFA94B;
  --orange-shadow: rgba(243,144,25,0.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--orange); color: var(--bg); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(40px, 6.2vw, 84px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.06; letter-spacing: -0.02em; }
h3 { font-size: 22px; line-height: 1.25; }
p { margin: 0; color: var(--muted-2); }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mw-560 { max-width: 560px; }
.mw-720 { max-width: 720px; }
.spacer-120 { margin-top: 120px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,22,40,0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-full { height: 48px; width: auto; }
.logo-full.small { height: 40px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange);
}
.nav-meta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 12px;
}
.nav-meta .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243,144,25,0.18);
}

/* language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: transparent;
  color: var(--muted);
  border: 0;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-switch button + button { border-left: 1px solid var(--line); }
.lang-switch button.active { background: var(--orange); color: #0a1628; }
.lang-switch button:not(.active):hover { color: var(--ink); }
@media (max-width: 960px) {
  .nav-meta { display: none; }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--orange); color: var(--bg);
  box-shadow: 0 6px 22px -8px var(--orange-shadow);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* hero */
.hero {
  position: relative; overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 80% 30%, rgba(243,144,25,0.10), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(243,144,25,0.05), transparent 60%);
  pointer-events: none;
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(243,144,25,0.18);
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .slash {
  display: inline-block;
  width: 0.5em; height: 0.85em;
  background: var(--orange);
  transform: skewX(-14deg);
  margin: 0 0.06em -0.04em 0.04em;
  vertical-align: -0.04em;
}
.hero-lede {
  margin-top: 28px;
  max-width: 720px;
  font-size: 19px;
  color: var(--muted-2);
}
.hero-cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.hero-meta .stat .k { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.hero-meta .stat .k .accent { color: var(--orange); }
.hero-meta .stat .v { font-size: 13px; color: var(--muted); margin-top: 4px; }

.ribbon-row { display: flex; gap: 6px; margin-top: 40px; }
.ribbon-row .bar {
  width: 64px; height: 12px; background: var(--orange);
  transform: skewX(-22deg);
  transform-origin: bottom left;
  opacity: 0.95;
}
.ribbon-row .bar:nth-child(2) { opacity: 0.7; }
.ribbon-row .bar:nth-child(3) { opacity: 0.45; }
.ribbon-row .bar:nth-child(4) { opacity: 0.22; }

/* section */
section { position: relative; }
.section { padding: 120px 0; border-top: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head p { max-width: 580px; }

/* services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px 36px;
  overflow: hidden;
  transition: transform .25s, border-color .25s, background .25s;
}
.service::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 0; height: 4px; background: var(--orange);
  transition: width .3s ease;
}
.service:hover { background: var(--bg-3); border-color: var(--line-2); transform: translateY(-4px); }
.service:hover::before { width: 64px; }
.service-num {
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 28px;
}
.service-icon { width: 56px; height: 56px; margin-bottom: 24px; position: relative; }
.service h3 { margin-bottom: 14px; }
.service p { font-size: 15px; color: var(--muted-2); }
.service-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  color: var(--muted-2);
  text-transform: uppercase;
}

/* clients */
.clients-section { padding: 80px 0; border-top: 1px solid var(--line); }
.clients-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}
.client {
  height: 64px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 0.06em;
  color: var(--muted);
  font-size: 14px;
  transition: color .2s, border-color .2s;
}
.client:hover { color: var(--ink); border-color: var(--line-2); }

/* feature row */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse { grid-template-columns: 1fr 1.1fr; }
.feature.reverse .feature-art { order: -1; }
.feature h2 { margin-bottom: 0; }
.feature p + p { margin-top: 16px; }
.feature-list { margin-top: 32px; padding: 0; display: grid; gap: 16px; }
.feature-list li {
  list-style: none; padding-left: 32px; position: relative;
  font-size: 15px; color: var(--muted-2);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 4px; background: var(--orange);
  transform: skewX(-22deg);
}
.feature-art {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.art-tile {
  position: relative;
  background: linear-gradient(135deg, #0E1E36, #0A1628);
}
.art-tile svg { width: 100%; height: 100%; display: block; }

.art-process {
  background: linear-gradient(160deg, #0E1E36, #0A1628);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center;
}
.art-process .step-card {
  border: 1px solid var(--line);
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px; align-items: center;
}
.art-process .step-card .n { font-size: 11px; color: var(--orange); letter-spacing: 0.2em; }
.art-process .step-card .t { font-size: 14px; font-weight: 600; }
.art-process .step-card .pct { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.art-process .step-card.active { border-color: var(--orange); background: rgba(243,144,25,0.06); }
.art-process .step-card.active .pct { color: var(--orange); }

/* process / how we work */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  border-top: 2px solid var(--line);
  padding: 28px 0 0;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-size: 12px; letter-spacing: 0.2em; color: var(--orange);
  margin-bottom: 16px; font-weight: 600;
}
.step::after {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 64px; height: 2px; background: var(--orange);
}
.step h3 { font-size: 26px; margin-bottom: 14px; letter-spacing: -0.01em; }
.step p { font-size: 15px; }
.step-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px; }

/* FAQ — pure CSS using <details> */
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  font-size: 20px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  letter-spacing: -0.01em;
  transition: color .2s;
  color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  flex: 0 0 32px; width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
  position: relative;
}
.faq-q:hover .faq-toggle { border-color: var(--orange); }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute;
  background: var(--ink);
}
.faq-toggle::before { width: 14px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 14px; transition: transform .2s; }
.faq-item[open] .faq-toggle { background: var(--orange); border-color: var(--orange); }
.faq-item[open] .faq-toggle::before, .faq-item[open] .faq-toggle::after { background: var(--bg); }
.faq-item[open] .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  padding: 0 0 28px;
  max-width: 760px;
  color: var(--muted-2);
  font-size: 16px;
  animation: faqIn .25s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* insights */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px;
  transition: border-color .2s, background .2s, transform .2s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.insight:hover { border-color: var(--orange); transform: translateY(-3px); }
.insight .when {
  font-size: 12px; color: var(--orange);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.insight h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.01em; }
.insight p { font-size: 14px; flex: 1; }
.insight .read {
  margin-top: 24px;
  font-size: 13px; color: var(--orange); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}

/* CTA strip */
.cta-strip {
  margin: 120px 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ""; position: absolute;
  right: -120px; top: 50%; transform: translateY(-50%) skewX(-22deg);
  width: 480px; height: 220px;
  background: linear-gradient(90deg, transparent, rgba(243,144,25,0.18));
  pointer-events: none;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* footer */
footer.foot {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.foot-grid h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 20px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-grid a { color: var(--muted-2); font-size: 14px; transition: color .2s; }
.foot-grid a:hover { color: var(--orange); }
.foot-blurb p { font-size: 14px; max-width: 320px; margin-top: 16px; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.foot-bottom .fb-links { display: flex; gap: 24px; }

/* contact card */
.contact {
  border: 1px solid var(--line);
  padding: 24px;
  background: rgba(255,255,255,0.015);
  margin-top: 12px;
}
.contact .name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.contact .role { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.contact a { display: block; font-size: 13px; }
.contact a + a { margin-top: 4px; }

/* assignments page */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.page-hero .lede { max-width: 720px; margin-top: 24px; font-size: 18px; }

/* master/detail layout — pure CSS via :target */
.assign-app {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.assign-list {
  display: flex; flex-direction: column;
  gap: 8px;
  position: sticky; top: 96px; align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 4px;
}
.assign-list h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 8px;
}
.assign-row {
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 20px;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
}
.assign-row:hover { border-color: var(--line-2); transform: translateX(2px); }
.assign-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--orange);
  transition: width .2s;
}
.assign-row .row-meta {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.assign-row .row-meta .sep { color: var(--line-2); margin: 0 6px; }
.assign-row .row-title {
  font-size: 15px; font-weight: 600; line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.assign-row .row-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
}
.assign-row .row-tag {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid var(--orange); color: var(--orange);
}
.assign-row .row-tag.closed { color: var(--muted); border-color: var(--line-2); }
.assign-row .row-rate { font-size: 12px; color: var(--muted-2); font-weight: 600; }

/* detail stage — show only the targeted detail */
.assign-detail-stage { position: relative; min-height: 600px; }
.assign-detail {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 40px 44px;
  display: none;
}
.assign-detail:target,
.assign-detail.default {
  display: block;
  animation: detailIn .3s ease;
}
/* when ANY detail is targeted, hide the default fallback */
.assign-app:has(.assign-detail:target) .assign-detail.default { display: none; }
@keyframes detailIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
/* highlight the active row in the list when its detail is targeted */
.assign-row.active::before { width: 4px; }
.assign-row.active { border-color: var(--line-2); }

.assign-detail .d-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
}
.assign-detail h2 {
  font-size: clamp(28px, 3vw, 40px); margin-top: 12px; margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.assign-detail .d-lede { font-size: 17px; color: var(--muted-2); max-width: 720px; }
.assign-detail .d-grid {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-right: 0; border-bottom: 0;
}
.assign-detail .d-grid .cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}
.assign-detail .d-grid .lbl {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.assign-detail .d-grid .val { font-size: 15px; font-weight: 600; }
.assign-detail .d-grid .val .accent { color: var(--orange); }

.assign-detail h3 {
  font-size: 18px; letter-spacing: -0.01em;
  margin-top: 36px; margin-bottom: 14px;
}
.assign-detail .d-section p { font-size: 15px; color: var(--muted-2); }
.assign-detail .d-section p + p { margin-top: 12px; }
.assign-detail ul.bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.assign-detail ul.bullets li {
  padding-left: 28px; position: relative;
  font-size: 15px; color: var(--muted-2);
}
.assign-detail ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 4px; background: var(--orange);
  transform: skewX(-22deg);
}
.assign-detail .d-stack {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}

.assign-actions {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.assign-actions .meta-side {
  margin-left: auto;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em;
}

/* default empty-state card */
.assign-empty {
  text-align: left;
}
.assign-empty .ghost-grid {
  margin-top: 24px;
  display: grid; gap: 8px;
}
.assign-empty .ghost-grid .ghost {
  height: 14px; background: rgba(255,255,255,0.04); width: 100%;
}
.assign-empty .ghost-grid .ghost:nth-child(2) { width: 80%; }
.assign-empty .ghost-grid .ghost:nth-child(3) { width: 60%; }
.assign-empty .ghost-grid .ghost:nth-child(4) { width: 40%; }

@media (max-width: 960px) {
  .assign-app { grid-template-columns: 1fr; }
  .assign-list { position: static; max-height: none; overflow: visible; }
  .assign-detail { padding: 28px 24px; }
  .assign-detail .d-grid { grid-template-columns: repeat(2, 1fr); }
}

.assign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.assign {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.assign:hover { border-color: var(--line-2); transform: translateY(-3px); }
.assign-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.assign-meta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.assign-meta .sep { color: var(--line-2); margin: 0 8px; }
.assign-status {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.assign-status.closed { color: var(--muted); border-color: var(--line-2); }
.assign h3 { font-size: 26px; letter-spacing: -0.01em; margin-bottom: 12px; }
.assign p { font-size: 15px; color: var(--muted-2); }
.assign-spec {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.assign-spec .lbl { font-size: 10px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.assign-spec .val { font-size: 14px; font-weight: 600; }
.assign .more {
  margin-top: 24px;
  font-size: 13px; color: var(--orange); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}

.cases-rail {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.case {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.case::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 4px; height: 100%; background: var(--orange);
}
.case .industry {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.case h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.case p { font-size: 14px; color: var(--muted-2); }
.case-stats {
  margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.case-stats .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.case-stats .v .accent { color: var(--orange); }
.case-stats .l { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* DUAL TRACK SPLIT */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.dual-grid::before {
  content: "";
  position: absolute;
  left: 50%; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.4;
  transform: translateX(-50%);
  pointer-events: none;
}
.dual-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column;
  transition: border-color .25s, background .25s, transform .25s;
  overflow: hidden;
}
.dual-card::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.dual-card:hover { border-color: var(--line-2); background: var(--bg-3); transform: translateY(-3px); }
.dual-card:hover::after { transform: scaleX(1); }
.dual-card.alt::after { transform-origin: right; }
.dual-tag {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  color: var(--orange);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.dual-tag::before {
  content: ""; width: 24px; height: 2px; background: var(--orange);
}
.dual-card h3 {
  font-size: 26px; line-height: 1.2; letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 460px;
}
.dual-card > p { font-size: 15px; color: var(--muted-2); max-width: 460px; }
.dual-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.dual-list li {
  position: relative; padding-left: 28px;
  font-size: 14px; color: var(--muted-2);
}
.dual-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 4px; background: var(--orange);
  transform: skewX(-22deg);
}
.dual-cta {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
}
.dual-card:hover .dual-cta .arr { transform: translateX(4px); }

/* TRACK BANNER */
.track-banner {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 0;
}
.track-mark {
  font-size: 11px; letter-spacing: 0.24em; font-weight: 700;
  color: var(--bg);
  background: var(--orange);
  padding: 6px 12px;
}
.track-banner.alt .track-mark {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.track-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--orange), transparent);
  opacity: 0.6;
}
.track-counter {
  font-size: 11px; letter-spacing: 0.22em; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* EXPERTISE GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 24px;
}
@media (min-width: 681px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid .expertise.lead,
  .expertise-grid .expertise:not(.lead) { grid-column: span 1; }
}
@media (min-width: 961px) {
  .expertise-grid { grid-template-columns: repeat(4, 1fr); }
  .expertise-grid .expertise.lead { grid-column: span 2; }
  .expertise-grid .expertise:not(.lead) { grid-column: span 1; }
}
.expertise {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px 32px;
  display: flex; flex-direction: column;
  transition: border-color .25s, background .25s, transform .25s;
}
.expertise:hover { background: var(--bg-3); border-color: var(--line-2); transform: translateY(-3px); }
.expertise.lead {
  padding: 40px 36px 40px;
  background: linear-gradient(150deg, var(--bg-3), var(--bg-2));
  border-color: var(--line-2);
}
.expertise.lead::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--orange);
}
.expertise-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 28px;
}
.expertise-num {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  color: var(--orange);
  margin-bottom: 22px;
}
.expertise.lead .expertise-num { margin-bottom: 0; }
.expertise-mark {
  font-size: 12px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--bg);
  background: var(--orange);
  padding: 6px 12px;
}
.expertise h3 {
  font-size: 22px; line-height: 1.22; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.expertise.lead h3 { font-size: 28px; }
.expertise > p { font-size: 15px; color: var(--muted-2); }
.expertise-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 12px;
}
.expertise-list li {
  position: relative; padding-left: 28px;
  font-size: 14px; color: var(--muted-2);
}
.expertise-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 4px; background: var(--orange);
  transform: skewX(-22deg);
}

/* CONSULTANTS — benefit grid */
.consultants { background:
  linear-gradient(to bottom, transparent 0, transparent 80px, rgba(243,144,25,0.025) 80px, rgba(243,144,25,0.025) 100%); }
.consultant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--bg);
  padding: 36px 32px 40px;
  position: relative;
  transition: background .25s;
}
.benefit:hover { background: var(--bg-2); }
.benefit-num {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.benefit-num::after {
  content: ""; width: 32px; height: 1px; background: var(--orange); opacity: 0.5;
}
.benefit h3 {
  font-size: 20px; line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.benefit p { font-size: 14px; color: var(--muted-2); }

/* WHO STRIP */
.who-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-card {
  border: 1px solid var(--line);
  padding: 32px 32px 36px;
  background: var(--bg-2);
}
.who-tag {
  font-size: 11px; letter-spacing: 0.22em; color: var(--orange);
  font-weight: 600; margin-bottom: 24px;
}
.who-list, .who-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.who-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--muted-2);
}
.who-dot {
  flex: 0 0 6px; width: 6px; height: 6px;
  background: var(--orange); margin-top: 9px;
}
.who-steps li {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 16px; align-items: flex-start;
  font-size: 14px; color: var(--muted-2);
}
.who-steps li strong { color: var(--ink); font-weight: 600; }
.who-step-n {
  width: 28px; height: 28px;
  border: 1px solid var(--orange);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
  color: var(--orange);
}

/* CONSULTANT CTA */
.consultant-cta {
  margin-top: 56px;
  padding: 40px 44px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.consultant-cta::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle at center, rgba(243,144,25,0.18), transparent 70%);
  pointer-events: none;
}
.consultant-cta .c-cta-h { font-size: 28px; letter-spacing: -0.015em; line-height: 1.2; }
.consultant-cta .c-cta-p { font-size: 15px; max-width: 540px; }

/* DUAL CTA STRIP */
.dual-cta-strip { padding: 80px 0; }
.dual-cta-strip::after { display: none; }
.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: start;
}
.dual-cta-divider {
  background: linear-gradient(to bottom, transparent, var(--line-2), transparent);
  height: 100%;
  min-height: 200px;
}
.dual-cta-col h2 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.15; }
.dual-cta-col p { font-size: 15px; }
.dual-cta-col .cta-actions { flex-direction: row; flex-wrap: wrap; }

/* responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .services, .insights, .process, .cases-rail, .assign-grid { grid-template-columns: 1fr; }
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-art { order: 0; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .clients-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 100px; }
  .logo-full { height: 36px; }
  .nav-inner { height: 72px; }

  .dual-grid { grid-template-columns: 1fr; }
  .dual-grid::before { display: none; }
  .consultant-grid { grid-template-columns: 1fr; }
  .who-strip { grid-template-columns: 1fr; }
  .consultant-cta { grid-template-columns: 1fr; padding: 32px 24px; }
  .dual-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .dual-cta-divider { display: none; }
  .track-banner { margin-bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


/* highlight the list row whose href matches the targeted detail */
.assign-app:has(#a-platform-engineer:target) .assign-row[href="#a-platform-engineer"],
.assign-app:has(#a-delivery-lead:target) .assign-row[href="#a-delivery-lead"],
.assign-app:has(#a-cloud-architect:target) .assign-row[href="#a-cloud-architect"],
.assign-app:has(#a-operating-model:target) .assign-row[href="#a-operating-model"],
.assign-app:has(#a-data-engineer:target) .assign-row[href="#a-data-engineer"],
.assign-app:has(#a-security-lead:target) .assign-row[href="#a-security-lead"],
.assign-app:has(#a-tech-lead:target) .assign-row[href="#a-tech-lead"],
.assign-app:has(#a-retail-engineer:target) .assign-row[href="#a-retail-engineer"] {
  border-color: var(--orange);
  background: var(--bg-3);
}
.assign-app:has(#a-platform-engineer:target) .assign-row[href="#a-platform-engineer"]::before,
.assign-app:has(#a-delivery-lead:target) .assign-row[href="#a-delivery-lead"]::before,
.assign-app:has(#a-cloud-architect:target) .assign-row[href="#a-cloud-architect"]::before,
.assign-app:has(#a-operating-model:target) .assign-row[href="#a-operating-model"]::before,
.assign-app:has(#a-data-engineer:target) .assign-row[href="#a-data-engineer"]::before,
.assign-app:has(#a-security-lead:target) .assign-row[href="#a-security-lead"]::before,
.assign-app:has(#a-tech-lead:target) .assign-row[href="#a-tech-lead"]::before,
.assign-app:has(#a-retail-engineer:target) .assign-row[href="#a-retail-engineer"]::before {
  width: 4px;
}

/* ============================================================
   SHARED ANIMATED SITE BACKGROUND
   Drop <div class="site-bg" aria-hidden="true"> … </div> as the
   first child of <body> and load assets/bg-network.js. Fixed,
   full-viewport, sits behind all content (z-index:-1) and shows
   through transparent section padding the way the homepage hero does.
   ============================================================ */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.site-bg #bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.site-bg .bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 540px at 50% 8%, rgba(243,144,25,0.10), transparent 60%),
    radial-gradient(1100px 760px at 50% 100%, rgba(28,80,160,0.20), transparent 60%),
    radial-gradient(720px 520px at 12% 26%, rgba(80,150,255,0.07), transparent 60%);
}
.site-bg .bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 92% 82% at 50% 30%, #000 28%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 30%, #000 28%, transparent 86%);
}
@media (prefers-reduced-motion: reduce) {
  .site-bg #bg-canvas { display: none; }
}
