@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f5f4f1;
  --paper-soft: #ecebe7;
  --white: #fff;
  --mist: #e8e7e3;
  --silver: #a8acaf;
  --steel: #6f7478;
  --gunmetal: #232527;
  --gunmetal-deep: #181a1c;
  --crimson: #c8102e;
  --crimson-dark: #921025;
  --ember: #e36f3d;
  --ember-ink: #a94723;
  --line: #d6d5d1;
  --display: "Sora", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --page: clamp(22px, 4.2vw, 72px);
  --section-space: clamp(88px, 10vw, 152px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 72px; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--gunmetal);
  font-family: var(--body);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--crimson); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--gunmetal);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 8px var(--page);
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 241, .88);
  backdrop-filter: blur(12px);
  transition: min-height .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line);
  background: rgba(245, 244, 241, .96);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--ember));
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  width: fit-content;
  color: var(--gunmetal);
  text-decoration: none;
}

.brand img { width: 38px; height: 38px; object-fit: contain; transform: scale(1.2); pointer-events: none; }
.brand-word { font: 700 25px/1 var(--display); letter-spacing: -.055em; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #4d5053;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  min-height: 44px;
  padding: 0 16px;
  background: var(--gunmetal);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease;
}

.header-cta:hover { background: var(--crimson); }
.header-cta span { transition: transform .2s ease; }
.header-cta:hover span { transform: translate(2px, -2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 72px var(--page) 0;
  overflow: hidden;
  border-bottom: 1px solid #393c3e;
  background: var(--gunmetal-deep);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  min-height: calc(100svh - 72px);
  padding: clamp(64px, 9vh, 112px) 0;
}

.hero-copy-inner { width: 100%; max-width: 850px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font: 600 16px/1.4 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow-red { color: var(--crimson); }
.section .eyebrow-red { width: fit-content; padding-left: 12px; border-left: 4px solid currentColor; }
.section-muted .eyebrow-red { color: var(--ember-ink); }
.hero .eyebrow { width: fit-content; margin-bottom: 34px; padding: 8px 12px; background: var(--ember); color: var(--white); font-size: clamp(15px, 1.1vw, 17px); font-weight: 600; text-shadow: none; }

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  max-width: 780px;
  margin: 0;
  font: 700 clamp(48px, 5.1vw, 82px)/.98 var(--display);
  letter-spacing: -.06em;
}

h1 em { color: var(--ember); font-style: normal; }

.hero h1,
.hero-intro,
.hero .text-link {
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
}

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(23px, 1.65vw, 27px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero .text-link { color: var(--white); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--crimson); color: var(--white); }
.button-primary:hover { background: var(--ember); }
.button-light { background: var(--paper); color: var(--gunmetal); }
.button-light:hover { background: var(--ember); color: var(--white); }

.text-link, .arrow-link {
  font-size: 16px;
  font-weight: 800;
  text-underline-offset: 6px;
}

.text-link span, .arrow-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.arrow-link:hover span { transform: translateX(4px); }

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--gunmetal-deep);
}

.hero-visual > .hero-poster,
.hero-visual > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual > .hero-poster { z-index: 0; }

.hero-visual > video {
  z-index: 1;
  opacity: 1;
  transition: opacity .25s ease;
}

.hero-visual.is-video-unavailable > video { opacity: 0; }

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,17,19,.74) 0%, rgba(15,17,19,.63) 42%, rgba(15,17,19,.38) 74%, rgba(15,17,19,.46) 100%),
    linear-gradient(180deg, rgba(15,17,19,.08), rgba(15,17,19,.25));
  pointer-events: none;
}

.section { padding: var(--section-space) var(--page); }
.section-muted { background: var(--paper-soft); }

.section-intro { display: grid; grid-template-columns: minmax(260px, 5fr) 7fr; column-gap: clamp(40px, 8vw, 130px); row-gap: 30px; align-items: end; margin-bottom: clamp(64px, 7vw, 106px); }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.section-intro h2 { grid-column: 1; }
.section-intro > p:last-child { grid-column: 2; max-width: 700px; margin: 0; color: var(--steel); font-size: 26px; line-height: 1.6; }
.section-intro.compact { display: block; max-width: 900px; }
.section-intro.compact .eyebrow { margin-bottom: 30px; }

.section-intro h2, .team-heading h2, .contact h2 {
  margin: 0;
  font: 700 clamp(42px, 5.2vw, 76px)/1 var(--display);
  letter-spacing: -.055em;
}

.section-intro h2 span, .team-heading h2 span { color: var(--steel); }
.section-intro h2 .warm-accent, .team-heading h2 .warm-accent { color: var(--ember-ink); }
.section-dark .team-heading h2 .warm-accent { color: var(--ember); }

.problem {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.problem::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: var(--page);
  left: var(--page);
  height: 4px;
  background: linear-gradient(90deg, var(--gunmetal) 0 22%, var(--silver) 22% 49%, var(--crimson) 49% 72%, var(--mist) 72%);
  pointer-events: none;
}

.problem::before {
  content: "";
  position: absolute;
  top: clamp(70px, 8vw, 120px);
  right: max(calc(var(--page) * -1), -72px);
  width: clamp(240px, 26vw, 460px);
  aspect-ratio: 1.45;
  border: 1px solid rgba(111,116,120,.1);
  border-radius: 48% 52% 67% 33% / 52% 37% 63% 48%;
  transform: rotate(-9deg);
  pointer-events: none;
}

.evidence-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(520px, 7fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: stretch;
}

.evidence-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(16px, 2vw, 30px) 0 clamp(20px, 3vw, 44px);
}

.evidence-intro .eyebrow { margin-bottom: clamp(34px, 4vw, 58px); }
.evidence-intro h2 {
  max-width: 680px;
  margin: 0;
  font: 700 clamp(44px, 4.6vw, 70px)/1.01 var(--display);
  letter-spacing: -.057em;
}
.evidence-intro h2 span { color: var(--crimson); }
.evidence-summary {
  max-width: 600px;
  margin: auto 0 0;
  padding-top: clamp(40px, 5vw, 78px);
  color: #5f6366;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.62;
}

.evidence-primary {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 54px);
  border: 1px solid #4a4e51;
  border-top: 6px solid var(--crimson);
  border-radius: 8px;
  background: var(--gunmetal);
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(168,172,175,.22);
}

.evidence-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -42px;
  bottom: -30px;
  width: min(70%, 520px);
  aspect-ratio: 1.5;
  background: url("assets/images/card-swirl-warm.svg") right bottom / contain no-repeat;
  opacity: .34;
  pointer-events: none;
}
.evidence-primary::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -12%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 61% 39% 45% 55% / 41% 56% 44% 59%;
  box-shadow: 0 0 0 36px rgba(255,255,255,.018);
  transform: rotate(18deg);
  pointer-events: none;
}
.evidence-primary > * { position: relative; z-index: 1; }

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.64);
  font: 600 12px/1.4 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.stat-primary-body { margin: auto 0; }
.stat-primary-panel {
  display: grid;
  grid-template-columns: minmax(170px, .72fr) minmax(260px, 1.28fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid #5a5e61;
  border-radius: 8px;
  background: rgba(24,26,28,.7);
}
.stat-number { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.075em; }
.stat-number-visual { display: inline-flex; align-items: flex-start; }
.stat-number sup { margin: .16em 0 0 .06em; font-size: .34em; line-height: 1; letter-spacing: -.03em; }
.stat-number-primary { color: var(--white); font-size: clamp(88px, 9vw, 142px); line-height: .82; }
.stat-primary-panel h3 { margin: 0; color: var(--silver); font: 600 clamp(16px, 1.2vw, 20px)/1.5 var(--mono); letter-spacing: .035em; text-transform: uppercase; }
.stat-primary-panel h3 span { color: var(--ember); }
.stat-brand-progress {
  height: 11px;
  margin-top: clamp(28px, 3vw, 42px);
  background: linear-gradient(90deg, var(--crimson) 0 46%, var(--ember) 46% 72%, var(--steel) 72%);
  border-radius: 70% 30% 62% 38% / 45% 62% 38% 55%;
  clip-path: polygon(0 16%,20% 5%,38% 32%,58% 8%,78% 30%,100% 10%,100% 85%,80% 72%,59% 94%,38% 68%,19% 92%,0 76%);
}
.stat-brand-key { margin: 14px 0 0; color: var(--silver); font: 500 10px/1.5 var(--mono); letter-spacing: .055em; text-transform: uppercase; }

.evidence-secondary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(28px, 3vw, 46px);
}

.evidence-secondary-item {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(34px, 3.5vw, 54px);
  border: 2px solid var(--gunmetal);
  border-top: 6px solid var(--crimson);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--mist);
}
.evidence-secondary-item:nth-child(2) { border-top-color: var(--gunmetal); }
.evidence-secondary-item::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12px;
  bottom: -10px;
  width: min(42%, 230px);
  aspect-ratio: 1.5;
  background: url("assets/images/card-swirl-warm.svg") right bottom / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}
.evidence-secondary-item > * { position: relative; z-index: 1; }
.secondary-stat-content { display: grid; grid-template-columns: minmax(155px, .65fr) minmax(260px, 1.35fr); gap: clamp(26px, 3.5vw, 56px); align-items: center; height: 100%; }
.stat-number-secondary { color: var(--gunmetal); font-size: clamp(58px, 5.8vw, 92px); line-height: .9; }
.evidence-secondary-item h3 { margin: 0; color: #5f6366; font: 600 clamp(15px, 1.15vw, 19px)/1.48 var(--mono); letter-spacing: .025em; text-transform: uppercase; }
.evidence-secondary-item h3 span { color: var(--ember-ink); }

.evidence-transition {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 7fr) minmax(240px, 5fr);
  gap: 40px;
  align-items: end;
  margin-top: clamp(62px, 7vw, 104px);
  padding: clamp(34px, 4vw, 58px) clamp(30px, 4.8vw, 76px);
  border-left: 8px solid var(--ember);
  border-radius: 0 42px 12px 0;
  background: var(--mist);
}
.evidence-transition-copy > span { display: block; margin-bottom: 20px; color: var(--ember-ink); font: 600 11px/1.4 var(--mono); letter-spacing: .075em; text-transform: uppercase; }
.evidence-transition p { max-width: 880px; margin: 0; font: 600 clamp(27px, 2.55vw, 40px)/1.3 var(--display); letter-spacing: -.035em; }
.evidence-transition .arrow-link { justify-self: end; color: var(--ember-ink); }

.service-number, .client-item > span { color: var(--crimson); font: 600 15px var(--mono); }
.client-item:nth-child(even) > span { color: var(--ember-ink); }

.continuous {
  isolation: isolate;
  border-top: 1px solid #3a3e41;
  border-bottom: 1px solid #3a3e41;
  background-color: var(--gunmetal);
  background-image:
    linear-gradient(rgba(18,20,22,.7), rgba(18,20,22,.7)),
    url("assets/images/Gemini_Generated_Image_ga6i3sga6i3sga6i.jpeg");
  background-position: center;
  background-size: cover;
}

.continuous::before { display: none; }

.continuous-layout { position: relative; z-index: 1; width: 100%; }
.continuous .eyebrow-red { margin-bottom: clamp(62px, 7vw, 100px); color: var(--ember); }

.continuous-composition {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(340px, 7fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.continuous-heading { position: relative; z-index: 2; }
.continuous-heading h2 {
  margin: 0;
  color: var(--paper);
  font: 700 clamp(45px, 4.7vw, 72px)/.98 var(--display);
  letter-spacing: -.058em;
}
.continuous-heading h2 .warm-accent { color: var(--ember); }

.continuous-copy {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 100%;
  max-width: 700px;
}
.continuous-copy::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: clamp(-28px, -2vw, -18px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168,172,175,.48) 20%, rgba(227,111,61,.7) 70%, transparent);
  transform: scaleY(1);
  transform-origin: center top;
}
.continuous-copy p { margin: 0; color: #d5d7d8; font-size: clamp(19px, 1.55vw, 24px); line-height: 1.65; }

.security-steps { padding-bottom: clamp(54px, 5vw, 80px); }
.work-intro { margin-bottom: clamp(58px, 7vw, 98px); }
.work-intro > .eyebrow { margin-bottom: clamp(34px, 4vw, 54px); }
.work-intro-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(44px, 8vw, 130px); align-items: end; }
.work-intro h2 { margin: 0; font: 700 clamp(44px, 5.2vw, 76px)/1 var(--display); letter-spacing: -.055em; }
.work-intro .eyebrow,
.work-intro h2 span { transition: color .45s ease, border-color .45s ease; }
.security-steps.is-systems .work-intro .eyebrow,
.security-steps.is-systems .work-intro h2 span { color: var(--ember); }
.security-steps.is-people .work-intro .eyebrow,
.security-steps.is-people .work-intro h2 span { color: var(--crimson); }
.work-intro-grid > p { max-width: 720px; margin: 0; color: var(--steel); font-size: clamp(22px, 1.8vw, 27px); line-height: 1.58; }

.security-steps > .workflow-slider {
  width: calc(100% + (var(--page) * 2));
  margin-right: calc(var(--page) * -1);
  margin-left: calc(var(--page) * -1);
  border-right: 0;
  border-left: 0;
}

.workflow-panel {
  --metal-shift: 14%;
  --metal-opacity: .09;
  --dimension-accent: var(--ember);
  --dimension-accent-ink: var(--ember-ink);
  --dimension-glow: rgba(227,111,61,.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(36px, 4.5vw, 68px) var(--page) clamp(50px, 5.5vw, 84px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--dimension-accent);
  background: var(--white);
  color: var(--gunmetal);
  transition: border-top-color .5s ease;
}

.workflow-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(52%, 820px);
  height: 48%;
  background: radial-gradient(circle at 82% 38%, rgba(111,116,120,.12), transparent 63%);
  opacity: .8;
  pointer-events: none;
  transition: background .8s ease, opacity .8s ease;
}

.workflow-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(50%, 780px);
  height: 58%;
  background: url("assets/images/workflow-metal-contours-warm.svg") right center / cover no-repeat;
  opacity: var(--metal-opacity);
  filter: saturate(1.15) contrast(1.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.26) 24%, #000 58%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.26) 24%, #000 58%);
  transform: translate3d(var(--metal-shift), var(--scroll-shift, 0px), 0) scale(1.08);
  transform-origin: right center;
  pointer-events: none;
  will-change: transform;
  transition: transform 1.25s cubic-bezier(.2,.72,.2,1), opacity 1s ease, filter 1s ease;
}

.workflow-panel > * { position: relative; z-index: 1; }
.workflow-panel.is-systems { --dimension-accent: var(--ember); --dimension-accent-ink: var(--ember-ink); --dimension-glow: rgba(227,111,61,.18); }
.workflow-panel.is-people { --dimension-accent: var(--crimson); --dimension-accent-ink: var(--crimson-dark); --dimension-glow: rgba(200,16,46,.17); }
.workflow-panel[data-active-step="1"] { --metal-shift: 8%; --metal-opacity: .13; }
.workflow-panel[data-active-step="2"] { --metal-shift: 4%; --metal-opacity: .16; }
.workflow-panel[data-active-step="3"] { --metal-shift: 0%; --metal-opacity: .19; }
.workflow-panel.is-systems::before { background: radial-gradient(circle at 82% 38%, rgba(227,111,61,.14), transparent 63%); }
.workflow-panel.is-people::before { background: radial-gradient(circle at 82% 38%, rgba(200,16,46,.14), transparent 63%); }

.dimension-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 340px));
  width: fit-content;
  margin-bottom: clamp(58px, 6vw, 88px);
  border: 1px solid var(--line);
  background: rgba(245,244,241,.78);
}

.dimension-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: var(--steel);
  text-align: left;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}
.dimension-tab + .dimension-tab { border-left: 1px solid var(--line); }
.dimension-tab::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 4px; transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.72,.2,1); }
.dimension-tab:first-child::after { background: var(--ember); }
.dimension-tab:last-child::after { background: var(--crimson); }
.dimension-tab span { color: var(--silver); font: 600 12px/1 var(--mono); }
.dimension-tab strong { font: 700 17px/1 var(--display); letter-spacing: -.015em; text-transform: uppercase; }
.dimension-tab:first-child { color: var(--ember-ink); }
.dimension-tab:last-child { color: var(--crimson-dark); }
.dimension-tab:hover { background: var(--white); }
.dimension-tab:first-child.is-active { background: var(--ember); color: var(--white); }
.dimension-tab:last-child.is-active { background: var(--crimson); color: var(--white); }
.dimension-tab.is-active span { color: var(--white); }
.dimension-tab.is-active::after { transform: scaleX(1); }

.workflow-slides {
  display: grid;
  grid-template-rows: auto auto;
}
.workflow-slide {
  display: grid;
  grid-template-rows: subgrid;
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(32px);
  pointer-events: none;
  transition: opacity .38s ease, transform .5s cubic-bezier(.2,.75,.2,1), visibility 0s linear .5s;
}
.workflow-slider.is-people .workflow-slide:first-child { transform: translateX(-32px); }
.workflow-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; transition-delay: .06s, 0s, 0s; }
.workflow-slide > .workflow-heading { grid-row: 1; }
.workflow-slide > .workflow { grid-row: 2; }

.workflow-heading {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(42px, 7vw, 116px);
  min-height: clamp(280px, 25vw, 360px);
  align-items: start;
  margin-bottom: clamp(64px, 7vw, 100px);
}
.workflow-slide:first-child .workflow-heading {
  min-height: clamp(420px, 36vw, 560px);
  align-items: center;
  padding: clamp(40px, 5vw, 76px);
  background-color: var(--gunmetal);
  background-image:
    linear-gradient(rgba(12,14,16,.5), rgba(12,14,16,.5)),
    url("assets/images/picture3.jpeg");
  background-position: center;
  background-size: cover;
}
.workflow-heading-people {
  min-height: clamp(420px, 36vw, 560px);
  align-items: center;
  padding: clamp(40px, 5vw, 76px);
  background-color: var(--gunmetal);
  background-image:
    linear-gradient(rgba(12,14,16,.5), rgba(12,14,16,.5)),
    url("assets/images/phishing.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.workflow-heading-copy { max-width: 860px; }
.workflow-kicker { margin: 0 0 24px; font: 700 clamp(15px, 1.05vw, 18px)/1.45 var(--mono); letter-spacing: .055em; text-transform: uppercase; }
.workflow-heading h3 { margin: 0; color: var(--gunmetal); font: 700 clamp(42px, 4.7vw, 70px)/1 var(--display); letter-spacing: -.055em; }
.workflow-slide:first-child .workflow-kicker,
.workflow-slide:first-child .workflow-heading h3 span { color: var(--ember); }
.workflow-slide:first-child .workflow-heading h3 { color: var(--paper); }
.workflow-slide:first-child .workflow-heading-copy > p:last-child { color: rgba(255,255,255,.86); }
.workflow-slide:last-child .workflow-kicker,
.workflow-slide:last-child .workflow-heading h3 span { color: var(--crimson); }
.workflow-slide:last-child .workflow-heading h3 { color: var(--paper); }
.workflow-slide:last-child .workflow-heading-copy > p:last-child { color: rgba(255,255,255,.86); }
.workflow-heading-copy > p:last-child { max-width: 780px; margin: 28px 0 0; color: var(--steel); font-size: clamp(20px, 1.55vw, 24px); line-height: 1.62; }

.people-stat {
  align-self: end;
  justify-self: end;
  width: min(100%, 420px);
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid var(--crimson);
  background: rgba(12,14,16,.88);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.workflow-slide:last-child .people-stat-copy { color: rgba(255,255,255,.96); }
.workflow-slide:last-child .people-stat-meter { background: rgba(255,255,255,.26); }
.people-stat-value { margin: 0; color: var(--crimson); font: 700 clamp(62px, 6vw, 92px)/.85 var(--display); letter-spacing: -.07em; }
.people-stat-value > span:last-child { display: inline-flex; align-items: flex-start; }
.people-stat-value sup { margin: .08em 0 0 .06em; font-size: .32em; letter-spacing: 0; }
.people-stat-meter { height: 7px; margin: 28px 0 18px; overflow: hidden; background: var(--mist); }
.people-stat-meter span { display: block; width: 42%; height: 100%; background: var(--crimson); transform: scaleX(0); transform-origin: left; transition: transform .8s cubic-bezier(.2,.72,.2,1) .2s; }
.workflow-slider.is-people .workflow-slide.is-active .people-stat-meter span { transform: scaleX(1); }
.people-stat-copy { margin: 0; color: var(--crimson-dark); font: 700 clamp(17px, 1.25vw, 20px)/1.55 var(--display); letter-spacing: -.01em; }

.workflow {
  --workflow-scale: 0;
  --workflow-position: 0%;
  --workflow-active-accent: var(--dimension-accent);
  --workflow-active-glow: var(--dimension-glow);
  position: relative;
}
.workflow-stage { position: relative; }
.workflow-rail { position: absolute; z-index: 0; top: 28px; right: 12.5%; left: 12.5%; height: 2px; opacity: 0; transition: opacity .35s ease; }
.workflow-track,
.workflow-progress { position: absolute; inset: 0; display: block; transform: scaleX(0); transform-origin: left center; }
.workflow-track { background: var(--gunmetal); opacity: .24; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.workflow-progress { background: var(--dimension-accent); transform: scaleX(var(--workflow-scale)); transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.workflow-marker { position: absolute; top: 50%; left: var(--workflow-position); display: block; width: 12px; height: 12px; border: 2px solid var(--paper); border-radius: 50%; background: var(--workflow-active-accent); box-shadow: 0 0 0 6px var(--workflow-active-glow); opacity: 0; transform: translate(-50%, -50%) scale(.75); transition: left .55s cubic-bezier(.2,.75,.2,1), background .35s ease, box-shadow .35s ease, opacity .25s ease, transform .25s ease; }
.workflow.is-started .workflow-rail,
.workflow.is-started .workflow-marker { opacity: 1; }
.workflow.is-started .workflow-track { transform: scaleX(1); }
.workflow.is-started .workflow-marker { transform: translate(-50%, -50%) scale(1); }

.workflow-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.workflow-step { --step-accent: var(--dimension-accent); --step-glow: var(--dimension-glow); }
.workflow-trigger { position: relative; isolation: isolate; display: flex; align-items: center; flex-direction: column; width: 100%; min-height: 310px; padding: 0 clamp(12px, 1.5vw, 24px) 30px; border: 0; background: transparent; color: var(--gunmetal); text-align: center; cursor: pointer; transition: transform .3s cubic-bezier(.2,.75,.2,1); }
.workflow-trigger::before { content: ""; position: absolute; z-index: 0; top: 76px; right: 5px; bottom: 0; left: 5px; border-top: 1px solid transparent; background: transparent; pointer-events: none; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.workflow-node { position: relative; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 58px; border: 1px solid var(--gunmetal); border-radius: 50%; background: var(--paper); color: var(--gunmetal); font: 600 12px/1 var(--mono); transition: color .45s ease, background .45s ease, border-color .45s ease, box-shadow .45s ease, transform .45s ease; }
.workflow-copy { position: relative; z-index: 1; display: block; }
.workflow-copy strong { display: block; margin-top: 34px; color: var(--gunmetal); font: 700 clamp(22px, 1.8vw, 29px)/1.12 var(--display); letter-spacing: -.035em; transition: color .45s ease; }
.workflow-copy small { display: block; max-width: 270px; margin: 14px auto 0; color: var(--steel); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.52; }
.workflow-step.is-complete .workflow-node { border-color: var(--step-accent); background: var(--step-accent); color: var(--white); }
.workflow-step.is-complete .workflow-copy strong { color: var(--step-accent); }
.workflow-step.is-active .workflow-trigger { transform: translateY(-5px); }
.workflow-step.is-active .workflow-trigger::before { border-color: var(--step-accent); background: rgba(245,244,241,.68); box-shadow: 0 18px 40px rgba(35,37,39,.08); }
.workflow-step.is-active .workflow-node { border-color: var(--step-accent); background: var(--step-accent); color: var(--white); box-shadow: 0 0 0 7px var(--step-glow); transform: scale(1.05); }
.workflow-step.is-active .workflow-copy strong { color: var(--step-accent); }
.workflow-step:not(.is-active) .workflow-trigger:hover,
.workflow-step:not(.is-active) .workflow-trigger:focus-visible { transform: translateY(-3px); }
.workflow-step:not(.is-active) .workflow-trigger:hover::before,
.workflow-step:not(.is-active) .workflow-trigger:focus-visible::before { border-color: var(--line); background: rgba(245,244,241,.42); }

.services, .clients { position: relative; overflow: hidden; isolation: isolate; }
.services::before, .clients::before { content: ""; position: absolute; z-index: 0; width: 430px; height: 290px; background: url("assets/images/card-swirl-warm.svg") right top / contain no-repeat; pointer-events: none; }
.services::before { top: 45px; right: -55px; opacity: .2; }
.clients::before { right: -90px; bottom: -80px; opacity: .13; transform: rotate(180deg); }
.services > *, .clients > * { position: relative; z-index: 1; }

.service-list { border-top: 3px solid var(--gunmetal); }

.service-row {
  display: grid;
  grid-template-columns: 50px 72px minmax(210px, 2.2fr) minmax(0, 4fr);
  gap: clamp(18px, 3vw, 50px);
  align-items: start;
  padding: 33px 0;
  border-bottom: 1px solid #c8c7c3;
  transition: padding .25s ease, background .25s ease;
}

.service-row:hover { padding-right: 18px; padding-left: 18px; background: var(--paper); }
.service-row h3 { margin: 0; font: 700 clamp(24px, 2.5vw, 37px)/1.08 var(--display); letter-spacing: -.045em; }
.service-row > p { max-width: 600px; margin: 2px 0 0; color: var(--steel); font-size: 24px; line-height: 1.58; }
.tech-label { font: 600 16px/1.6 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.services > .arrow-link { display: inline-block; margin-top: 42px; }

.service-icon, .client-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #c7c6c2;
  background: rgba(245,244,241,.68);
  color: var(--gunmetal);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.service-icon svg, .client-icon svg { width: 42px; height: 42px; overflow: visible; }
.service-icon svg *, .client-icon svg * { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: square; stroke-linejoin: miter; vector-effect: non-scaling-stroke; }
.service-icon .icon-dot, .client-icon .icon-dot { fill: var(--crimson); stroke: none; }
.service-row:nth-child(even) .icon-dot, .client-item:nth-child(even) .icon-dot { fill: var(--ember); }
.service-row:hover .service-icon, .client-item:hover .client-icon { border-color: var(--ember); background: var(--white); transform: translateY(-2px); }

.section-dark { position: relative; overflow: hidden; background-color: var(--gunmetal); color: var(--paper); }
.section-dark::before { content: ""; position: absolute; top: 0; right: 0; width: 440px; height: 310px; background: url("assets/images/card-swirl-warm.svg") right top / contain no-repeat; opacity: .3; transform: translate3d(0, var(--scroll-shift, 0px), 0) scaleY(-1); pointer-events: none; will-change: transform; }
.section-dark > * { position: relative; z-index: 1; }

.team { min-width: 0; padding-top: clamp(48px, 5vw, 72px); }
.team::before {
  top: 0;
  right: 0;
  width: clamp(250px, 25vw, 380px);
  height: clamp(180px, 18vw, 270px);
  opacity: .42;
}
.team > * { min-width: 0; }
.team-composition {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: end;
}
.team-heading { grid-column: 1 / span 8; translate: 0 -18px; }
.team-heading .eyebrow { margin-bottom: clamp(20px, 2vw, 28px); }
.team-heading h2 { font-size: clamp(46px, 4.75vw, 72px); }
.team-title-line { display: block; width: fit-content; white-space: nowrap; }
.team-heading h2 .team-title-line:not(.warm-accent) { color: var(--paper); }
.team-intro {
  position: relative;
  grid-column: 9 / -1;
  max-width: 560px;
  margin: 0;
  padding: clamp(22px, 2vw, 30px) 0 2px;
  color: #c0c3c5;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.68;
  translate: clamp(-96px, -6vw, -56px) 0;
}
.team-intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(64px, 6vw, 96px);
  left: 0;
  height: 1px;
  background: rgba(168,172,175,.34);
}
.team-experience { min-width: 0; max-width: 100%; margin-top: clamp(54px, 6vw, 82px); }
.team-subtitle {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0 0 26px;
  color: var(--paper);
  font: 700 clamp(22px, 2.1vw, 30px)/1.2 var(--display);
  letter-spacing: -.035em;
}
.team-subtitle::after { content: ""; flex: 1; height: 1px; background: rgba(168,172,175,.22); }
.team-marquee {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.team-logo-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-logo-item {
  min-width: 0;
}
.team-logo-trigger {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(140px, 13vw, 178px);
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(168,172,175,.24);
  border-radius: 2px;
  background: rgba(15,17,19,.22);
  color: inherit;
  cursor: pointer;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2,.72,.2,1);
}
.team-logo-trigger::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(168,172,175,.54);
  border-right: 1px solid rgba(168,172,175,.54);
  opacity: .68;
  transition: border-color .28s ease, opacity .28s ease, transform .28s ease;
}
.team-logo-trigger img {
  width: auto;
  height: clamp(48px, 4.6vw, 66px);
  max-width: 72%;
  object-fit: contain;
  filter: grayscale(1) contrast(.94);
  opacity: .68;
  transition: filter .28s ease, opacity .28s ease, transform .28s ease;
}
.team-logo-aica img { filter: grayscale(1) brightness(0) invert(1); }
.team-logo-ekoparty img { border-radius: 50%; }
.team-logo-trigger:hover,
.team-logo-trigger:focus-visible,
.team-logo-trigger[aria-expanded="true"] {
  border-color: rgba(227,111,61,.82);
  background: rgba(255,255,255,.045);
  box-shadow: 0 14px 34px rgba(10,12,14,.24), 0 0 24px rgba(227,111,61,.07), inset 0 1px rgba(255,255,255,.04);
  transform: translateY(-4px);
}
.team-logo-trigger:hover::after,
.team-logo-trigger:focus-visible::after,
.team-logo-trigger[aria-expanded="true"]::after { border-color: var(--ember); opacity: 1; transform: translate(2px, -2px); }
.team-logo-trigger:hover img,
.team-logo-trigger:focus-visible img,
.team-logo-trigger[aria-expanded="true"] img { filter: none; opacity: 1; transform: scale(1.04); }
.team-logo-aica .team-logo-trigger:hover img,
.team-logo-aica .team-logo-trigger:focus-visible img,
.team-logo-aica .team-logo-trigger[aria-expanded="true"] img { filter: brightness(0) invert(1); }
.team-logo-trigger:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
.team-logo-popup {
  --popup-arrow-left: 50%;
  position: fixed;
  z-index: 90;
  width: min(400px, calc(100vw - 24px));
  padding: 16px 18px 17px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ember);
  background: var(--paper);
  color: var(--gunmetal);
  box-shadow: 0 18px 46px rgba(10,12,14,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px) scale(.97);
  transform-origin: var(--popup-arrow-left) bottom;
  transition: opacity .18s ease, transform .18s cubic-bezier(.2,.75,.2,1);
}
.team-logo-popup.is-below { transform: translateY(-7px) scale(.97); transform-origin: var(--popup-arrow-left) top; }
.team-logo-popup.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.team-logo-popup::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: var(--popup-arrow-left);
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transform: translateX(-50%) rotate(45deg);
}
.team-logo-popup.is-below::after { top: -7px; bottom: auto; border: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.team-logo-popup strong { display: block; margin-bottom: 6px; color: var(--ember-ink); font: 700 16px/1.25 var(--display); letter-spacing: -.02em; }
.team-logo-popup span { display: block; color: #4d5053; font-size: 15px; line-height: 1.5; }

.plans .section-intro { margin-bottom: clamp(48px, 6vw, 78px); }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.plan-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--gunmetal);
  background: var(--paper);
}

.plan-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 180px;
  height: 120px;
  background: url("assets/images/card-swirl-warm.svg") right bottom / contain no-repeat;
  opacity: .12;
  pointer-events: none;
}

.plan-card > * { position: relative; z-index: 1; }
.plan-premium { border-top-color: var(--ember); background: linear-gradient(180deg, rgba(227,111,61,.06), var(--paper) 42%); }
.plan-label { margin: 0; color: var(--gunmetal); font: 600 12px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.plan-premium .plan-label { color: var(--ember-ink); }
.plan-card h3 { margin: 30px 0 18px; font: 700 clamp(31px, 3vw, 44px)/1 var(--display); letter-spacing: -.045em; }
.plan-card > p:last-child { max-width: 660px; margin: 0; color: var(--steel); font-size: 21px; line-height: 1.62; }

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: #c7c6c2; border: 1px solid #c7c6c2; }
.team-card { min-width: 0; background: var(--paper); }
.team-portrait { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(145deg,#1f2123,#515558); }
.team-portrait::before, .team-portrait::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.team-portrait::before { width: 36%; aspect-ratio: 1; top: 18%; }
.team-portrait::after { width: 62%; height: 54%; bottom: -28%; border-radius: 50% 50% 0 0; }
.team-portrait.alternate { background: linear-gradient(145deg,#a8acaf,#464a4d); }
.team-portrait.warm { background: linear-gradient(145deg,#5c1d24,#d46336); }
.team-portrait.cool { background: linear-gradient(145deg,#313437,#7b8083); }
.team-copy { padding: 25px; }
.team-copy .tech-label { margin: 0; color: var(--crimson); }

.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 3px solid var(--gunmetal); }
.client-item { display: grid; grid-template-columns: 40px 64px 1fr; gap: 18px; min-height: 270px; padding: 32px 34px 32px 0; border-bottom: 1px solid #c7c6c2; transition: background .25s ease, padding .25s ease; }
.client-item:nth-child(even) { padding-left: 34px; border-left: 1px solid #c7c6c2; }
.client-item:hover { background: rgba(245,244,241,.78); }
.client-item h3 { margin: 0; font: 700 clamp(24px, 2.5vw, 35px)/1.12 var(--display); letter-spacing: -.045em; }
.client-item p { grid-column: 3; max-width: 560px; margin: 8px 0 0; color: var(--steel); font-size: 22px; line-height: 1.58; }

.contact { position: relative; display: grid; grid-template-columns: 7fr 5fr; min-height: 700px; overflow: hidden; background: var(--gunmetal); color: var(--paper); }
.contact-art { position: relative; overflow: hidden; }
.contact-art img { width: 100%; height: 100%; object-fit: cover; object-position: 75% center; transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1.06); will-change: transform; }
.contact-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--gunmetal), transparent 60%); }
.contact-copy { align-self: center; max-width: 910px; padding: 80px var(--page) 80px clamp(30px, 5vw, 80px); }
.contact-copy .eyebrow { color: var(--silver); }
.contact h2 .warm-accent { color: var(--ember); }
.contact-copy > p:not(.eyebrow) { max-width: 720px; margin: 28px 0 36px; color: #bdc0c2; font-size: 26px; line-height: 1.6; }

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 3vw, 44px) var(--page) 18px;
  background: var(--gunmetal);
  color: #d7d8d8;
}
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -54px;
  right: -34px;
  width: 280px;
  height: 186px;
  background: url("assets/images/card-swirl-warm.svg") right top / contain no-repeat;
  opacity: .09;
  transform: scaleY(-1);
  pointer-events: none;
}
.footer-main,
.footer-bottom { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(420px, 1.65fr) minmax(150px, .55fr) minmax(180px, .55fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}
.brand-footer { color: var(--paper); }
.footer-descriptor {
  margin: 14px 0 0;
  color: var(--silver);
  font: 600 12px/1.4 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-label {
  margin: 0 0 17px;
  color: var(--silver);
  font: 600 11px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-nav a { color: #c8cbcc; font-size: 15px; line-height: 1.45; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--ember); transform: translateX(3px); }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 16px;
  font-weight: 700;
  text-underline-offset: 6px;
}
.footer-contact a span { color: var(--ember); transition: transform .2s ease; }
.footer-contact a:hover span { transform: translate(3px, -3px); }
#contacto-footer { scroll-margin-top: 92px; }
.footer-phone { white-space: nowrap; }
.footer-phone [data-whatsapp-phone-label] { color: var(--paper); transform: none; }
.footer-phone:hover [data-whatsapp-phone-label] { color: var(--ember); transform: none; }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  margin-top: clamp(20px, 2vw, 28px);
  padding-top: 14px;
  border-top: 1px solid #4a4e51;
  color: var(--steel);
  font: 500 12px/1.4 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer-bottom p { margin: 0; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease var(--reveal-delay, 0ms), transform .72s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms);
}

.js .evidence-primary.reveal,
.js .plan-card.reveal { transform: translateY(32px) scale(.975); }
.js .workflow-panel.reveal { transform: translateY(38px) scale(.985); }
.js .team-heading.reveal { transform: translateX(-28px); }
.js .team-intro.reveal { transform: translateX(28px); }
.js .section-intro.reveal { opacity: 1; transform: none; }
.js .section-intro.reveal > * {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .7s ease, translate .7s cubic-bezier(.2,.72,.2,1);
}
.js .section-intro.reveal > .eyebrow { transition-delay: 0ms; }
.js .section-intro.reveal > h2 { transition-delay: 90ms; }
.js .section-intro.reveal > p:last-child { transition-delay: 180ms; }

.js .reveal.is-visible { opacity: 1; transform: translate(0) scale(1); }
.js .section-intro.reveal.is-visible > * { opacity: 1; translate: 0 0; }
@media (max-width: 1220px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .header-cta { margin-right: 58px; }
  .menu-toggle { position: absolute; right: var(--page); display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 17px; height: 1px; background: var(--gunmetal); transition: transform .2s ease, top .2s ease; }
  .menu-toggle span:nth-child(2) { top: 18px; }
  .menu-toggle span:nth-child(3) { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .site-nav.is-open { position: fixed; top: 64px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 42px var(--page); background: var(--paper); }
  .site-nav.is-open a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font: 700 clamp(26px, 5vw, 42px)/1.2 var(--display); letter-spacing: -.04em; }
  .hero-copy { padding-right: 0; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .continuous-heading h2 { font-size: clamp(43px, 5.2vw, 61px); }
  .footer-main { grid-template-columns: minmax(340px, 1.35fr) minmax(130px, .5fr) minmax(150px, .55fr); gap: 32px; }
}

@media (max-width: 1050px) {
  .evidence-layout { grid-template-columns: 1fr; }
  .evidence-intro { max-width: 820px; padding-bottom: 0; }
  .evidence-summary { margin-top: 0; }
  .evidence-primary { min-height: 520px; }
  .team-heading { grid-column: 1 / -1; max-width: 900px; translate: 0 -10px; }
  .team-intro { grid-column: 7 / -1; margin-top: 12px; translate: none; }
  .team-logo-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  :root { --section-space: 88px; }
  .services::before, .clients::before { display: none; }
  .site-header { min-height: 64px; }
  .header-cta { display: none; }
  .hero { min-height: 100svh; padding: 64px var(--page) 0; }
  .hero-copy { min-height: calc(100svh - 64px); padding: 64px 0 46px; }
  h1 { font-size: clamp(40px, 9.8vw, 64px); line-height: 1.02; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .section-intro { display: block; }
  .section-intro .eyebrow { margin-bottom: 28px; }
  .section-intro > p:last-child { margin-top: 28px; }
  .plan-grid, .team-grid { grid-template-columns: 1fr; }
  .evidence-secondary { grid-template-columns: 1fr; }
  .evidence-secondary-item { min-height: 240px; }
  .evidence-transition { grid-template-columns: 1fr; align-items: start; }
  .evidence-transition .arrow-link { justify-self: start; }
  .continuous { min-height: 0; }
  .continuous .eyebrow-red { margin-bottom: 52px; }
  .continuous-composition { grid-template-columns: 1fr; gap: 40px; }
  .continuous-heading { max-width: 650px; }
  .continuous-heading h2 { font-size: clamp(43px, 10vw, 66px); }
  .continuous-copy { justify-self: start; max-width: 650px; }
  .continuous-copy::before { display: none; }
  .continuous-copy p { font-size: clamp(19px, 3.1vw, 23px); }
  .work-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .work-intro-grid > p { max-width: 650px; }
  .workflow-panel { padding: 34px var(--page) 54px; }
  .workflow-panel::before { width: 86%; height: 30%; }
  .workflow-panel::after { width: 78%; height: 31%; opacity: calc(var(--metal-opacity) * .75); }
  .dimension-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; margin-bottom: 56px; }
  .dimension-tab { min-height: 64px; padding: 0 18px; }
  .workflow-slide,
  .workflow-slider.is-people .workflow-slide:first-child { transform: translateY(14px); }
  .workflow-slide.is-active { transform: translateY(0); }
  .workflow-heading { display: block; min-height: 0; margin-bottom: 62px; }
  .workflow-slide:first-child .workflow-heading { min-height: 520px; padding: 38px 28px; background-position: 58% center; }
  .workflow-heading-people { min-height: 520px; padding: 38px 28px; background-position: 62% center; }
  .workflow-heading-copy { max-width: 680px; }
  .people-stat { justify-self: start; max-width: 360px; margin-top: 48px; }
  .workflow-rail { top: 29px; right: auto; bottom: 211px; left: 28px; width: 2px; height: auto; }
  .workflow-track, .workflow-progress { transform: scaleY(0); transform-origin: center top; }
  .workflow-progress { transform: scaleY(var(--workflow-scale)); }
  .workflow-marker { top: var(--workflow-position); left: 50%; transition: top .55s cubic-bezier(.2,.75,.2,1), opacity .25s ease, transform .25s ease; }
  .workflow.is-started .workflow-track { transform: scaleY(1); }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-step { height: 240px; }
  .workflow-trigger { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start; height: 240px; min-height: 240px; padding: 0 12px 28px 0; text-align: left; }
  .workflow-trigger::before { top: -9px; right: 0; bottom: 18px; left: 78px; }
  .workflow-copy strong { margin-top: 5px; }
  .workflow-copy small { max-width: 520px; margin: 9px 0 0; }
  .workflow-step.is-active .workflow-trigger { transform: translateX(0); }
  .workflow-step:not(.is-active) .workflow-trigger:hover,
  .workflow-step:not(.is-active) .workflow-trigger:focus-visible { transform: translateX(3px); }
  .plan-card { min-height: 0; }
  .service-row { grid-template-columns: 44px 58px 1fr; }
  .service-row > p { grid-column: 1 / -1; margin-top: 18px; text-align: left; }
  .service-icon { width: 54px; height: 54px; }
  .service-icon svg { width: 36px; height: 36px; }
  .team::before { top: 0; right: -8px; width: 220px; height: 158px; opacity: .3; }
  .team-composition { display: block; }
  .team-heading { max-width: 720px; translate: none; }
  .team-intro { max-width: 650px; margin-top: 38px; padding-top: 24px; }
  .team-experience { margin-top: 56px; }
  .team-logo-trigger { min-height: 142px; }
  .team-card { display: grid; grid-template-columns: 1fr 1fr; }
  .team-portrait { aspect-ratio: auto; min-height: 340px; }
  .client-grid { grid-template-columns: 1fr; }
  .client-item, .client-item:nth-child(even) { grid-template-columns: 38px 58px 1fr; padding-right: 0; padding-left: 0; border-left: 0; }
  .client-item p { grid-column: 2 / -1; }
  .client-icon { width: 54px; height: 54px; }
  .client-icon svg { width: 36px; height: 36px; }
  .contact { grid-template-columns: 1fr; }
  .contact-art { min-height: 420px; }
  .contact-art::after { background: linear-gradient(180deg, var(--gunmetal), transparent 55%); }
  .contact-copy { margin-top: 0; padding-top: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --page: 20px; }
  .brand img { width: 34px; height: 34px; }
  .brand-word { font-size: 21px; }
  .hero-copy { padding-top: 54px; }
  .hero-intro { margin-top: 24px; font-size: 20px; line-height: 1.55; }
  .button { width: 100%; min-height: 54px; }
  .hero-visual > .hero-poster,
  .hero-visual > video { object-position: 58% center; }
  .section-intro h2, .team-heading h2, .contact h2 { font-size: clamp(39px, 11vw, 56px); }
  .team-heading h2 { font-size: clamp(38px, 11.5vw, 45px); }
  .team-title-line { white-space: normal; }
  .team-logo-list { grid-template-columns: 1fr; gap: 10px; }
  .team-logo-trigger { min-height: 124px; }
  .continuous .eyebrow-red { margin-bottom: 42px; }
  .continuous-heading h2 { font-size: clamp(40px, 11vw, 56px); }
  .continuous-copy p { font-size: 19px; line-height: 1.62; }
  .work-intro h2 { font-size: clamp(39px, 11vw, 54px); }
  .work-intro-grid > p { font-size: 19px; }
  .dimension-tab { gap: 10px; padding: 0 12px; }
  .dimension-tab strong { font-size: 14px; }
  .workflow-heading h3 { font-size: clamp(38px, 10.5vw, 52px); }
  .workflow-heading-copy > p:last-child { margin-top: 24px; font-size: 18px; }
  .workflow-kicker { max-width: 330px; font-size: 14px; }
  .people-stat { margin-top: 42px; }
  .people-stat-value { font-size: 68px; }
  .workflow-trigger { grid-template-columns: 54px 1fr; gap: 18px; }
  .workflow-trigger::before { left: 70px; }
  .workflow-node { width: 54px; height: 54px; flex-basis: 54px; }
  .workflow-copy strong { font-size: 22px; }
  .workflow-copy small { font-size: 16px; }
  .workflow-rail { top: 27px; bottom: 213px; left: 26px; }
  .problem::before { display: none; }
  .evidence-intro h2 { font-size: clamp(39px, 11vw, 54px); }
  .evidence-summary { padding-top: 34px; font-size: 19px; }
  .evidence-primary { min-height: 500px; padding: 26px 22px 28px; }
  .stat-header { align-items: flex-start; gap: 16px; font-size: 10px; }
  .stat-header span:first-child { max-width: 190px; }
  .stat-primary-panel { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .stat-number-primary { font-size: clamp(82px, 27vw, 118px); }
  .secondary-stat-content { grid-template-columns: 1fr; gap: 24px; }
  .stat-number-secondary { font-size: 68px; }
  .evidence-secondary-item { min-height: 0; padding: 30px 26px; }
  .evidence-secondary-item h3 { font-size: 16px; }
  .evidence-transition { gap: 28px; margin-top: 58px; padding: 34px 24px; }
  .evidence-transition p { font-size: 27px; }
  .service-row { padding: 27px 0; }
  .service-row:hover { padding-right: 0; padding-left: 0; }
  .team-card { grid-template-columns: 1fr; }
  .team-portrait { min-height: 310px; }
  .client-item, .client-item:nth-child(even) { grid-template-columns: 34px 52px 1fr; padding-right: 0; }
  .contact-art { min-height: 360px; }
  .contact-copy { margin-top: 0; }
  .site-footer { padding-top: 28px; }
  .site-footer::before { width: 210px; height: 140px; opacity: .07; }
  .footer-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 26px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav { justify-self: start; }
  .footer-contact { padding-top: 2px; }
  .footer-bottom { gap: 16px; margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .site-header::after { display: none; }
  .section-dark::before { transform: scaleY(-1); }
  .workflow-panel::after, .contact-art img { transform: none; }
  .js .reveal { opacity: 1; transform: none; transition-delay: 0ms !important; }
  .js .section-intro.reveal > * { opacity: 1; translate: 0 0; transition-delay: 0ms !important; }
}

/* Scroll companion blob */
.galio-blob {
  --galio-blob-size: 244px;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--galio-blob-size);
  height: var(--galio-blob-size);
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: transform;
  z-index: 40;
}

.galio-blob.is-ready { opacity: 1; }
.galio-blob[data-depth="under"] { z-index: -1; }

.galio-blob-path {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

@media (max-width: 640px) {
  .galio-blob { --galio-blob-size: 168px; }
}
