:root {
  --paper: #f2f3f5;
  --paper-blue: #edf2fd;
  --white: #ffffff;
  --ink: #11151d;
  --muted: #626976;
  --line: #d8dce4;
  --line-strong: #c8cdd7;
  --blue: #145df5;
  --blue-deep: #0043ce;
  --blue-light: #dce8ff;
  --blue-bright: #4c7eff;
  --dark: #0b1220;
  --dark-panel: #101a2d;
  --green: #52d39a;
  --max: 1600px;
  --pad: clamp(20px, 3.5vw, 60px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:has(.main-nav.is-open) { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3 { margin-top: 0; }
section[id] { scroll-margin-top: 76px; }

:where(a, button):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.system-section :where(a, button):focus-visible,
.contact-section :where(a, button):focus-visible,
footer :where(a, button):focus-visible { outline-color: #a9c2ff; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.035);
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand strong { color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.main-nav a {
  position: relative;
  color: #515866;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 180ms ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transition: right 160ms ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active { color: var(--ink); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.header-cta:hover { background: var(--ink); color: white; }
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(580px, 1.04fr);
  padding-top: 64px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 6.5vw, 104px) var(--pad) clamp(46px, 5.7vw, 78px);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(20, 93, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 93, 245, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 21px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: currentColor; }
.hero h1 {
  max-width: 820px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5.1vw, 86px);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 0.94;
}
.hero h1 span { display: block; color: var(--blue); }
.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #525a68;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.66;
}
.hero-actions { display: flex; align-items: center; gap: 21px; margin-bottom: 36px; }
.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: var(--blue-deep); }
.text-link { font-size: 11px; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 8px; color: var(--blue); transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-note { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #737a86; font-size: 9px; font-weight: 700; letter-spacing: 0.02em; }
.hero-note i { width: 3px; height: 3px; background: var(--blue); }
.hero-visual { min-width: 0; min-height: calc(100svh - 64px); padding: 15px 15px 15px 0; background: var(--paper); }

.system-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(20, 93, 245, 0.19), transparent 26%),
    linear-gradient(rgba(96, 130, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 130, 224, 0.055) 1px, transparent 1px),
    var(--dark);
  background-size: auto, 34px 34px, 34px 34px, auto;
  color: white;
}
.system-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, transparent 52%, rgba(20, 93, 245, 0.06));
}
.system-map canvas { position: absolute; inset: 0; z-index: 1; }
.map-status {
  position: absolute;
  inset: 22px 23px auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.map-status strong { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.65); font-weight: inherit; }
.map-status i { width: 6px; height: 6px; background: var(--green); box-shadow: 0 0 12px rgba(82, 211, 154, 0.8); }
.source-node {
  position: absolute;
  z-index: 3;
  min-width: 104px;
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  padding: 10px 13px 11px 12px;
  border: 1px solid rgba(123, 158, 242, 0.2);
  background:
    linear-gradient(105deg, rgba(76, 126, 255, 0.1), transparent 56%),
    rgba(7, 17, 32, 0.8);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.16), inset 2px 0 0 rgba(76, 126, 255, 0.84);
  backdrop-filter: blur(10px);
}
.source-node::before {
  content: "";
  grid-row: 1 / 3;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px rgba(76, 126, 255, 0.88);
  animation: sourceSignal 4.6s ease-in-out infinite;
}
.source-node span { grid-column: 2; display: block; margin-bottom: 3px; color: rgba(157, 184, 255, 0.48); font-size: 6px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.source-node strong { grid-column: 2; font-size: 10px; letter-spacing: 0.01em; }
.source-crm { top: 15%; left: 4%; }
.source-erp { top: 11%; left: 50%; transform: translateX(-50%); }
.source-marketing { top: 15%; right: 4%; }
.source-pos { top: 46%; right: 3%; }
.source-sheets { bottom: 18%; right: 5%; }
.source-product { bottom: 18%; left: 5%; }
.system-hub {
  position: absolute;
  top: 48%;
  left: 47%;
  z-index: 3;
  width: clamp(156px, 15vw, 218px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}
.hub-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(76, 126, 255, 0.52); }
.hub-orbit-one { inset: 0; box-shadow: 0 0 58px rgba(20, 93, 245, 0.17); animation: orbitPulse 5.2s ease-in-out infinite; }
.hub-orbit-two { inset: 13%; border-color: var(--blue-bright); animation: orbitSpin 33s linear infinite; }
.hub-orbit-two::before,
.hub-orbit-two::after { content: ""; position: absolute; top: 50%; width: 7px; height: 7px; background: var(--blue-bright); box-shadow: 0 0 13px rgba(76, 126, 255, 0.9); transform: translateY(-50%); }
.hub-orbit-two::before { left: -4px; }
.hub-orbit-two::after { right: -4px; }
.hub-core {
  position: relative;
  width: 63%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(133, 167, 255, 0.35);
  border-radius: 50%;
  background: #07101e;
  box-shadow: inset 0 0 34px rgba(20, 93, 245, 0.08);
}
.hub-core span { color: rgba(145, 175, 255, 0.58); font-size: 8px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.hub-core strong { margin: 2px 0 4px; font-size: clamp(36px, 3.3vw, 53px); line-height: 1; letter-spacing: -0.06em; }
.hub-core small { color: rgba(255, 255, 255, 0.35); font-size: 7px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.output-rail {
  position: absolute;
  right: 6%;
  bottom: 7.5%;
  left: 6%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(76, 126, 255, 0.3);
}
.output-node { position: relative; min-width: 0; overflow: hidden; padding: 11px 12px; background: rgba(7, 16, 30, 0.94); transition: background 420ms ease; }
.output-node::after { content: ""; position: absolute; right: 12px; bottom: 0; left: 12px; height: 2px; background: linear-gradient(90deg, var(--blue-bright), rgba(169, 194, 255, 0.9)); opacity: 0; transform: scaleX(0.08); transform-origin: left; transition: opacity 240ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1); }
.output-node span { display: block; margin-bottom: 4px; color: var(--blue-bright); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; transition: color 300ms ease, text-shadow 300ms ease; }
.output-node strong { color: rgba(255, 255, 255, 0.55); font-size: 9px; font-weight: 600; transition: color 300ms ease; }
.output-node.is-receiving { background: rgba(11, 26, 49, 0.96); }
.output-node.is-receiving::after { opacity: 0.86; transform: scaleX(1); }
.output-node.is-receiving span { color: #86a9ff; text-shadow: 0 0 14px rgba(76, 126, 255, 0.48); }
.output-node.is-receiving strong { color: rgba(255, 255, 255, 0.72); }
.map-caption { position: absolute; bottom: 2.2%; left: 0; z-index: 3; width: 100%; margin: 0; color: rgba(255, 255, 255, 0.19); font-size: 7px; font-weight: 800; letter-spacing: 0.22em; text-align: center; text-transform: uppercase; }

@keyframes orbitPulse { 0%, 100% { transform: scale(0.99); opacity: 0.68; } 50% { transform: scale(1.02); opacity: 0.94; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes sourceSignal { 0%, 100% { opacity: 0.5; transform: scale(0.82); } 50% { opacity: 1; transform: scale(1); } }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: white; }
.proof-strip > div { position: relative; min-height: 164px; display: flex; flex-direction: column; padding: 25px var(--pad) 27px; overflow: hidden; border-right: 1px solid rgba(255, 255, 255, 0.12); transition: background-color 280ms ease; }
.proof-strip > div::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--blue-bright); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1); }
.proof-strip > div:last-child { border-right: 0; }
.proof-kicker { margin: 0; color: rgba(255, 255, 255, 0.38); font-size: 8px; font-weight: 800; letter-spacing: 0.17em; line-height: 1.2; text-transform: uppercase; transition: color 280ms ease; }
.proof-strip strong { margin-top: auto; color: var(--blue-bright); font-size: clamp(26px, 2.35vw, 41px); line-height: 1; letter-spacing: -0.055em; }
.proof-strip span { max-width: 360px; margin-top: 8px; color: rgba(255, 255, 255, 0.54); font-size: 11px; line-height: 1.5; transition: color 280ms ease; }
@media (hover: hover) and (pointer: fine) {
  .proof-strip > div:hover { background: rgba(31, 98, 255, 0.09); }
  .proof-strip > div:hover::after { transform: scaleX(1); }
  .proof-strip > div:hover .proof-kicker { color: rgba(126, 163, 255, 0.82); }
  .proof-strip > div:hover span { color: rgba(255, 255, 255, 0.72); }
}

.section { padding: clamp(76px, 8.2vw, 136px) var(--pad); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); align-items: end; column-gap: clamp(44px, 7.3vw, 120px); margin-bottom: clamp(42px, 5vw, 72px); }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.3vw, 68px); font-weight: 800; letter-spacing: -0.058em; line-height: 1; }
.section-heading > p:last-child { margin: 0 0 3px; color: var(--muted); font-size: 14px; line-height: 1.75; }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 550ms ease, transform 550ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.problem-grid > [data-reveal]:nth-child(2),
.outcome-list > [data-reveal]:nth-child(2),
.system-grid > [data-reveal]:nth-child(2),
.work-secondary > [data-reveal]:nth-child(2),
.team-grid > [data-reveal]:nth-child(2) { transition-delay: 60ms; }
.problem-grid > [data-reveal]:nth-child(3),
.outcome-list > [data-reveal]:nth-child(3),
.system-grid > [data-reveal]:nth-child(3),
.work-secondary > [data-reveal]:nth-child(3) { transition-delay: 120ms; }
.problem-grid > [data-reveal]:nth-child(4),
.outcome-list > [data-reveal]:nth-child(4),
.system-grid > [data-reveal]:nth-child(4) { transition-delay: 180ms; }

.problem-section { padding-top: clamp(84px, 6.5vw, 112px); background: var(--white); }
.problem-section .section-heading { grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); column-gap: clamp(38px, 4.8vw, 80px); margin-bottom: clamp(38px, 4vw, 60px); }
.problem-section .section-heading > p:last-child { max-width: 470px; transform: translateY(-24px); }
.problem-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr)); grid-template-rows: repeat(2, minmax(255px, auto)); gap: 1px; padding: 1px; background: var(--line); }
.problem-grid article,
.problem-conclusion { min-height: 255px; padding: clamp(23px, 2.7vw, 40px); background: var(--paper); transition: background-color 240ms ease, box-shadow 240ms ease, opacity 550ms ease, transform 550ms ease; }
.problem-grid article { display: flex; flex-direction: column; }
.problem-grid article:nth-child(2) { grid-column: 2; grid-row: 1; }
.problem-grid article:nth-child(3) { grid-column: 3; grid-row: 1; }
.problem-grid article:nth-child(4) { grid-column: 2; grid-row: 2; }
.problem-grid h3 { max-width: 390px; margin: auto 0 12px; font-size: clamp(19px, 1.65vw, 26px); line-height: 1.17; letter-spacing: -0.038em; }
.problem-grid article > p { max-width: 420px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.module-index { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; transition: color 220ms ease, letter-spacing 220ms ease; }
.problem-featured { grid-column: 1; grid-row: 1 / 3; min-height: 511px !important; background: var(--paper-blue) !important; }
.problem-featured h3 { margin: clamp(68px, 5.5vw, 92px) 0 12px; }
.report-fragment { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(20, 93, 245, 0.17); }
.report-fragment > header { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 8px; color: rgba(17, 21, 29, 0.48); font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.report-fragment > header b { color: var(--blue); font-weight: 800; }
.report-fragment > div { min-height: 38px; display: grid; grid-template-columns: 54px minmax(0, 1fr) 58px; align-items: center; gap: 14px; border-bottom: 1px solid rgba(20, 93, 245, 0.13); }
.report-fragment > div > span { color: rgba(17, 21, 29, 0.56); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.report-fragment i { position: relative; height: 6px; overflow: hidden; background: rgba(20, 93, 245, 0.11); }
.report-fragment i::after { content: ""; position: absolute; inset: 0; background: var(--blue); transform: scaleX(0.84); transform-origin: left; transition: transform 360ms ease, background-color 360ms ease; }
.report-fragment > div:nth-of-type(2) i::after { transform: scaleX(0.71); background: #7ea3fa; }
.report-fragment > div:nth-of-type(3) i::after { transform: scaleX(0.93); background: var(--blue-bright); }
.report-fragment > div > strong { position: relative; min-height: 13px; overflow: hidden; color: var(--ink); font-size: 10px; line-height: 1.3; text-align: right; }
.report-fragment > div > strong span,
.report-fragment > div > strong em { display: block; transition: opacity 300ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1); }
.report-fragment > div > strong em { position: absolute; inset: 0; opacity: 0; font-style: normal; transform: translateY(7px); }
.report-fragment > div:nth-of-type(2) > strong { color: #65728a; }
.report-fragment > div:nth-of-type(3) > strong { color: var(--blue-deep); }
.report-fragment > p { display: flex; justify-content: space-between; gap: 18px; margin: 15px 0 0; color: rgba(17, 21, 29, 0.5); font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.report-fragment > p b { color: var(--blue); font-weight: 800; }
.problem-conclusion { grid-column: 3; grid-row: 2; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: white; }
.problem-conclusion > span { color: var(--blue-bright); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.problem-conclusion strong { max-width: 470px; font-size: clamp(23px, 2.05vw, 34px); line-height: 1.13; letter-spacing: -0.045em; transition: color 240ms ease; }

@media (hover: hover) and (pointer: fine) {
  .problem-grid article:not(.problem-featured):hover { background: #f6f8fc; }
  .problem-grid .problem-featured:hover { background: #e8efff !important; }
  .problem-grid article:hover .module-index { color: var(--blue-deep); letter-spacing: 0.17em; }
  .problem-grid .problem-featured:hover .report-fragment i::after { filter: saturate(1.08); transform: scaleX(0.88); }
  .problem-grid .problem-featured:hover .report-fragment > div:nth-of-type(2) i::after { transform: scaleX(0.75); }
  .problem-grid .problem-featured:hover .report-fragment > div:nth-of-type(3) i::after { transform: scaleX(0.97); }
  .problem-grid .problem-featured:hover .report-fragment > div > strong span { opacity: 0; transform: translateY(-7px); }
  .problem-grid .problem-featured:hover .report-fragment > div > strong em { opacity: 1; transform: translateY(0); }
  .problem-conclusion:hover { background: #151c28; box-shadow: inset 0 -3px 0 var(--blue); }
  .problem-conclusion:hover strong { color: rgba(255, 255, 255, 0.94); }
}

.outcomes-section { background-color: var(--blue); background-image: linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px); background-size: 48px 48px; color: white; }
.outcomes-intro { min-height: 300px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); align-content: center; align-items: end; gap: 0 clamp(54px, 7vw, 118px); padding: clamp(56px, 5.5vw, 82px) var(--pad) clamp(48px, 4.7vw, 70px); }
.outcomes-intro .eyebrow { grid-column: 1 / -1; margin-bottom: clamp(22px, 2.3vw, 34px); }
.outcomes-intro h2 { grid-column: 1; max-width: 960px; margin: 0; font-size: clamp(42px, 4.6vw, 72px); line-height: 0.97; letter-spacing: -0.06em; }
.outcomes-intro h2 span { display: block; }
.outcomes-intro h2 + p { grid-column: 2; align-self: center; max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 14px; line-height: 1.75; }
.outcome-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.18); border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.outcome-item { min-width: 0; min-height: 220px; padding: clamp(36px, 3.7vw, 58px) var(--pad); transition: background-color 260ms ease, opacity 550ms ease, transform 550ms ease; }
.outcome-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.18); }
.outcome-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.outcome-meta { display: flex; align-items: baseline; gap: 18px; color: rgba(255, 255, 255, 0.58); }
.outcome-meta span { color: rgba(255, 255, 255, 0.82); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; }
.outcome-meta small { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.outcome-item h3 { max-width: 680px; margin: clamp(34px, 3.2vw, 48px) 0 14px; font-size: clamp(33px, 3.5vw, 54px); line-height: 0.98; letter-spacing: -0.06em; }
.outcome-item p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; line-height: 1.68; }
@media (hover: hover) and (pointer: fine) {
  .outcome-item:hover { background: rgba(255, 255, 255, 0.045); }
}

.system-section { background: var(--dark); color: white; }
.section-heading-light > p:last-child { color: rgba(255, 255, 255, 0.5); }
.section-heading-light h2 { max-width: 900px; }
.system-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.13); border: 1px solid rgba(255, 255, 255, 0.13); }
.system-stage { position: relative; min-height: 315px; display: flex; flex-direction: column; padding: clamp(22px, 2.3vw, 35px); background: var(--dark-panel); transition: background-color 260ms ease, box-shadow 260ms ease, opacity 550ms ease, transform 550ms ease; }
.system-stage::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--blue-bright); transform: scaleX(0); transform-origin: left; transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1); }
.system-stage > div { display: flex; justify-content: space-between; gap: 14px; }
.system-stage > div span { color: var(--blue-bright); font-size: 10px; font-weight: 800; }
.system-stage > div small { color: rgba(255, 255, 255, 0.28); font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-align: right; text-transform: uppercase; }
.system-stage h3 { margin: auto 0 14px; font-size: clamp(22px, 2vw, 32px); line-height: 1.05; letter-spacing: -0.045em; }
.system-stage p { margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 12px; line-height: 1.72; }
.system-stage-accent { background: var(--blue); }
.system-stage-accent > div span,
.system-stage-accent > div small,
.system-stage-accent p { color: rgba(255, 255, 255, 0.75); }
.system-stage-accent::after { background: rgba(255, 255, 255, 0.88); }
.system-result { position: relative; min-height: 86px; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 15px; overflow: hidden; padding: 18px 0 15px; border: 1px solid rgba(255, 255, 255, 0.13); }
.system-result::before { content: ""; position: absolute; top: 22px; right: 12.5%; left: 12.5%; height: 1px; background: rgba(76, 126, 255, 0.38); }
.system-result::after { content: ""; position: absolute; top: 18px; left: 12.5%; z-index: 3; width: 9px; height: 9px; border-radius: 50%; background: #a9c2ff; box-shadow: 0 0 16px rgba(76, 126, 255, 0.95); opacity: 0; transform: translateX(-50%); animation: chainSignal 8.6s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
.system-flow-node { position: relative; z-index: 2; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 0 12px; color: rgba(255, 255, 255, 0.4); text-align: center; transition: color 260ms ease; }
.system-flow-node::before { content: ""; width: 9px; height: 9px; border: 1px solid rgba(126, 163, 250, 0.72); border-radius: 50%; background: var(--dark); box-shadow: 0 0 0 4px var(--dark); transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease; }
.system-flow-node span { font-size: 8px; font-weight: 800; letter-spacing: 0.08em; line-height: 1.4; text-transform: uppercase; }
.system-flow-node:last-child { color: rgba(255, 255, 255, 0.82); }
.system-flow-node:last-child::before { border-color: var(--blue-bright); background: var(--blue); box-shadow: 0 0 0 4px var(--dark), 0 0 14px rgba(76, 126, 255, 0.5); }

@keyframes chainSignal {
  0%, 8% { left: 12.5%; opacity: 0; }
  15% { opacity: 1; }
  84% { left: 87.5%; opacity: 1; }
  92%, 100% { left: 87.5%; opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .system-stage:not(.system-stage-accent):hover { background: #142038; box-shadow: inset 0 0 0 1px rgba(76, 126, 255, 0.22); }
  .system-stage-accent:hover { background: #1055e8; }
  .system-stage:hover::after { transform: scaleX(1); }
  .system-section:has(.system-stage:nth-child(1):hover) .system-flow-node:nth-child(1),
  .system-section:has(.system-stage:nth-child(2):hover) .system-flow-node:nth-child(2),
  .system-section:has(.system-stage:nth-child(3):hover) .system-flow-node:nth-child(3),
  .system-section:has(.system-stage:nth-child(4):hover) .system-flow-node:nth-child(4) { color: rgba(255, 255, 255, 0.92); }
  .system-section:has(.system-stage:nth-child(1):hover) .system-flow-node:nth-child(1)::before,
  .system-section:has(.system-stage:nth-child(2):hover) .system-flow-node:nth-child(2)::before,
  .system-section:has(.system-stage:nth-child(3):hover) .system-flow-node:nth-child(3)::before,
  .system-section:has(.system-stage:nth-child(4):hover) .system-flow-node:nth-child(4)::before { border-color: #a9c2ff; background: var(--blue); box-shadow: 0 0 0 4px var(--dark), 0 0 16px rgba(76, 126, 255, 0.7); transform: scale(1.12); }
}

.work-section { background: var(--paper-blue); }
.work-section .section-heading { margin-bottom: clamp(36px, 4vw, 58px); }
.work-section .section-heading h2 { max-width: 860px; }
.work-grid { display: grid; gap: 1px; padding: 1px; background: var(--line-strong); }
.work-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--white); transition: background-color 280ms ease, opacity 550ms ease, transform 550ms ease; }
.work-card-featured { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(410px, 0.94fr); }
.work-secondary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.work-media { position: relative; min-height: 220px; overflow: hidden; background: var(--dark); }
.work-card-featured .work-media { min-height: 520px; }
.work-card:not(.work-card-featured) .work-media { min-height: 0; aspect-ratio: 1.86 / 1; }
.work-media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(0.82) contrast(1.04); transform: scale(1.001); transition: filter 600ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.work-card:not(.work-card-featured) .work-media img { position: absolute; inset: 0; }
.work-card-featured .work-media img { object-position: 50% 54%; }
.work-media-product { background: #dce5ff; }
.work-media-product img,
.work-card:not(.work-card-featured) .work-media-product img { inset: 18px 17px 0; width: calc(100% - 34px); height: calc(100% - 18px); margin: 0; object-fit: contain; object-position: 50% 100%; filter: saturate(0.74) contrast(1.02); }
.work-media-product::after { height: 28%; }
.work-media-people { background: #b9d7ff; }
.work-media-people img { object-position: 66% 30%; }
.work-media::after { position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, transparent, rgba(5, 13, 29, 0.68)); pointer-events: none; content: ""; }
.work-media > span { position: absolute; right: 22px; bottom: 18px; left: 22px; z-index: 2; color: rgba(255, 255, 255, 0.82); font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.work-copy { min-width: 0; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 46px); }
.work-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.work-meta strong { color: var(--ink); font-size: 10px; text-align: right; }
.work-company { max-width: 470px; min-height: 34px; margin: 12px 0 0; color: #737b89; font-size: 10px; line-height: 1.55; }
.work-copy h3 { max-width: 610px; margin: clamp(34px, 4vw, 58px) 0 32px; font-size: clamp(32px, 3.25vw, 52px); line-height: 1; letter-spacing: -0.058em; }
.work-card:not(.work-card-featured) .work-copy { min-height: 420px; padding: clamp(24px, 2.35vw, 36px); }
.work-card:not(.work-card-featured) .work-copy h3 { margin: 34px 0 28px; font-size: clamp(25px, 2.05vw, 34px); line-height: 1.04; }
.work-answer { margin-top: auto; border-top: 1px solid var(--line-strong); }
.work-answer p { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 18px; margin: 0; padding: 15px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.work-answer p + p { border-top: 1px solid var(--line); }
.work-answer small { padding-top: 2px; color: #7a8392; font-size: 7px; font-weight: 800; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }
.work-answer .work-decision { color: var(--ink); font-weight: 750; transition: color 280ms ease; }
.work-answer .work-decision small { color: var(--blue); }
.work-answer .work-result { color: var(--blue-deep); font-weight: 750; }
.work-answer .work-result small { color: var(--blue); }
.work-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.work-tags span { padding: 7px 9px; background: var(--blue-light); color: var(--blue-deep); font-size: 7px; font-weight: 800; letter-spacing: 0.03em; }
@media (hover: hover) and (pointer: fine) {
  .work-card:hover .work-media img { filter: saturate(0.96) contrast(1.04); transform: scale(1.018); }
}

.process-section { background: var(--white); }
.process-layout { display: grid; grid-template-columns: minmax(300px, 0.68fr) minmax(610px, 1.32fr); align-items: start; gap: clamp(48px, 7vw, 116px); }
.process-intro { position: sticky; top: 104px; }
.process-intro h2 { max-width: 560px; margin: 34px 0 28px; font-size: clamp(38px, 3.7vw, 58px); font-weight: 800; letter-spacing: -0.06em; line-height: 0.99; }
.process-intro > p:not(.eyebrow) { max-width: 500px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.process-principle { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; max-width: 500px; margin-top: clamp(38px, 4vw, 60px); padding-top: 18px; border-top: 1px solid var(--line-strong); }
.process-principle span { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.process-principle strong { font-size: 13px; line-height: 1.55; }
.process-steps { margin: 0; padding: 0; border-top: 1px solid var(--line-strong); list-style: none; }
.process-step { display: grid; grid-template-columns: minmax(210px, 0.72fr) minmax(300px, 1.28fr); align-items: stretch; gap: clamp(24px, 3vw, 46px); min-height: 262px; padding: 26px 0; border-bottom: 1px solid var(--line-strong); transition: background-color 260ms ease; }
.process-step-copy { min-width: 0; display: flex; flex-direction: column; padding: 4px 0; }
.process-step-meta { display: flex; align-items: center; gap: 15px; color: var(--blue); }
.process-step-meta span { color: #6d91e3; font-size: 7px; font-weight: 800; letter-spacing: 0.04em; transition: color 220ms ease; }
.process-step-meta small { font-size: 7px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.process-step h3 { max-width: 360px; margin: auto 0 17px; font-size: clamp(25px, 2.15vw, 35px); line-height: 1.03; letter-spacing: -0.052em; }
.process-step-copy > p { max-width: 410px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.process-artifact { min-width: 0; min-height: 210px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--paper-blue); }
.process-document { display: grid; padding: 17px 20px 16px; background-color: #fbfcff; background-image: linear-gradient(rgba(20, 93, 245, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 93, 245, 0.035) 1px, transparent 1px); background-size: 24px 24px; transition: border-color 240ms ease, box-shadow 240ms ease; }
.process-document-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 10px; border-bottom: 1px solid #b9c8e8; }
.process-document-head span { color: var(--blue); font-size: 7px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.process-document-head > small { color: #778196; font-size: 7px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.process-document-feature { display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 16px; padding: 11px 0; }
.process-document-feature small,
.process-document-grid small,
.process-document-foot small,
.process-review-fields small { color: #818b9f; font-size: 6px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.process-document-feature strong { font-size: clamp(14px, 1.2vw, 19px); line-height: 1.08; letter-spacing: -0.035em; }
.process-document-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #c7d2e8; border-bottom: 1px solid #c7d2e8; background: rgba(255, 255, 255, 0.78); }
.process-document-grid > div { min-width: 0; padding: 10px 9px; border-right: 1px solid #d6deee; }
.process-document-grid > div:first-child { padding-left: 0; }
.process-document-grid > div:last-child { padding-right: 0; border-right: 0; }
.process-document-grid span { display: block; margin-top: 6px; color: #3e495d; font-size: 7px; font-weight: 750; line-height: 1.4; }
.process-document-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding-top: 11px; }
.process-document-foot strong { color: var(--blue-deep); font-size: 9px; letter-spacing: 0.01em; text-align: right; }
.process-screen { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; background: #242429; }
.process-screen img { width: 100%; height: 166px; object-fit: cover; transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.process-step:nth-child(2) .process-screen img { object-position: 50% 34%; }
.process-step:nth-child(3) .process-screen img { object-position: 50% 40%; }
.process-screen figcaption { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 43px; padding: 12px 15px; background: var(--dark); color: white; }
.process-screen figcaption span { color: var(--blue-bright); font-size: 7px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.process-screen figcaption strong { font-size: 9px; letter-spacing: 0.01em; text-align: right; }
.process-review-document { grid-template-rows: auto 1fr auto; }
.process-document-status { display: inline-flex; align-items: center; gap: 7px; color: #437761 !important; }
.process-document-status i { width: 6px; height: 6px; background: var(--green); box-shadow: 0 0 0 4px rgba(82, 211, 154, 0.12); }
.process-review-steps { display: grid; align-content: center; padding: 7px 0; }
.process-review-steps > div { display: grid; grid-template-columns: 31px minmax(0, 1fr); align-items: center; min-height: 35px; border-bottom: 1px solid #d4ddec; }
.process-review-steps > div:last-child { border-bottom: 0; }
.process-review-steps small { color: var(--blue); font-size: 7px; font-weight: 800; }
.process-review-steps strong { font-size: 10px; letter-spacing: -0.01em; }
.process-review-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #b9c8e8; }
.process-review-fields > div { padding: 10px 9px 0; border-right: 1px solid #d6deee; }
.process-review-fields > div:first-child { padding-left: 0; }
.process-review-fields > div:last-child { padding-right: 0; border-right: 0; }
.process-review-fields span { display: block; margin-top: 5px; color: #3e495d; font-size: 7px; font-weight: 750; }
@media (hover: hover) and (pointer: fine) {
  .process-step:hover { background: #fafcff; }
  .process-step:hover .process-screen img { transform: scale(1.025); }
  .process-step:hover .process-step-meta span { color: var(--blue-deep); }
  .process-step:hover .process-document { border-color: #96b2f2; box-shadow: inset 3px 0 0 var(--blue); }
}

.team-section { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: var(--line-strong); }
.person-card { min-width: 0; display: grid; grid-template-columns: minmax(160px, 0.78fr) 1.22fr; overflow: hidden; background: var(--white); }
.person-photo { min-width: 0; min-height: 325px; aspect-ratio: 0.82; overflow: hidden; background: #d8d9dc; }
.person-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.person-photo-andrei img { transform: scale(1.08); transform-origin: 50% 37%; }
.person-photo-evgeniia img { object-position: 40% 50%; }
.person-card > div { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 2.8vw, 43px); }
.person-card > .person-photo { display: block; padding: 0; }
.person-card span { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.person-card h3 { margin: 16px 0 12px; font-size: clamp(25px, 2.25vw, 36px); line-height: 1.05; letter-spacing: -0.05em; }
.person-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
@media (hover: hover) and (pointer: fine) {
  .person-photo img { transition: filter 500ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1); }
  .person-card:hover .person-photo img { filter: grayscale(82%); }
  .person-card:hover .person-photo-andrei img { transform: scale(1.095); }
  .person-card:hover .person-photo-evgeniia img { transform: scale(1.012); }
}

.contact-section { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); gap: clamp(44px, 6vw, 92px); align-items: center; padding: clamp(74px, 8.2vw, 124px) var(--pad); scroll-margin-top: 88px; background-color: var(--blue); background-image: linear-gradient(135deg, transparent 50%, rgba(9, 19, 43, 0.13) 100%), linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px); background-size: 100% 100%, 40px 40px, 40px 40px; color: white; }
.contact-section > div:first-child { translate: 0 -24px; }
.eyebrow-light { color: rgba(255, 255, 255, 0.66); }
.contact-section h2 { max-width: 760px; margin-bottom: 22px; font-size: clamp(39px, 4.4vw, 70px); line-height: 0.98; letter-spacing: -0.06em; }
.contact-section > div:first-child > p:last-child { max-width: 570px; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 1.75; }
.contact-card { padding: clamp(24px, 3vw, 42px); scroll-margin-top: 96px; background: white; color: var(--ink); }
.contact-card-intro { display: grid; grid-template-columns: minmax(105px, 0.33fr) 1fr; gap: 20px; align-items: start; }
.contact-card-intro > span,
.contact-success > span { padding-top: 3px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.contact-form { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.form-field { min-width: 0; display: grid; gap: 8px; margin: 0; }
.form-field-full { grid-column: 1 / -1; }
.form-field > span,
.form-field legend { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.form-field legend { margin-bottom: 8px; padding: 0; }
.form-field input:not([type="radio"]),
.form-field textarea { width: 100%; min-width: 0; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; outline: 0; padding: 3px 0 11px; background: transparent; color: var(--ink); font: inherit; font-size: 13px; line-height: 1.5; transition: border-color 180ms ease, box-shadow 180ms ease; }
.form-field textarea { min-height: 76px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa1ae; opacity: 1; }
.form-field input:not([type="radio"]):focus,
.form-field textarea:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.contact-method-field { border: 0; padding: 0; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line-strong); }
.contact-methods label { position: relative; min-width: 0; cursor: pointer; }
.contact-methods label + label { border-left: 1px solid var(--line-strong); }
.contact-methods input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-methods span { min-height: 42px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; transition: color 180ms ease, background-color 180ms ease; }
.contact-methods input:checked + span { background: var(--paper-blue); color: var(--blue); }
.contact-methods input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: -3px; }
.contact-consent { display: grid; grid-template-columns: 15px 1fr; gap: 10px; align-items: start; margin-top: 18px; color: var(--muted); font-size: 9px; line-height: 1.5; cursor: pointer; }
.contact-consent input { width: 14px; height: 14px; margin: 0; accent-color: var(--blue); }
.contact-submit { width: 100%; justify-content: space-between; border: 0; cursor: pointer; }
.contact-success { min-height: 340px; display: flex; flex-direction: column; justify-content: center; padding: 34px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); margin-top: 26px; }
.contact-success h3 { max-width: 500px; margin: 18px 0 12px; font-size: clamp(30px, 3vw, 48px); line-height: 1; letter-spacing: -0.055em; }
.contact-form[hidden],
.contact-success[hidden],
[data-contact-field][hidden] { display: none !important; }
.text-button { width: max-content; display: inline-flex; align-items: center; gap: 20px; margin-top: 34px; border: 0; padding: 0; background: transparent; color: var(--ink); font: inherit; font-size: 10px; font-weight: 800; cursor: pointer; }
.text-button span { color: var(--blue); }
.contact-channels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 21px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.contact-channels a { min-width: 0; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 12px; border-right: 1px solid var(--line-strong); color: var(--ink); font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: color 220ms ease, background-color 220ms ease; }
.contact-channels a:first-child { padding-left: 0; }
.contact-channels a:last-child { padding-right: 0; border-right: 0; }
.contact-channels a span { color: var(--blue); font-size: 11px; }
.contact-channels a:hover { color: var(--blue); background: var(--paper-blue); }
.button-dark { margin-top: 17px; background: var(--ink); color: white; }
.button-dark:hover { background: var(--dark); }

.site-footer { min-height: 116px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(28px, 4vw, 72px); padding: 28px var(--pad); border-top: 1px solid rgba(255, 255, 255, 0.08); background-color: var(--ink); background-image: linear-gradient(rgba(76, 126, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 126, 255, 0.035) 1px, transparent 1px); background-size: 32px 32px; color: rgba(255, 255, 255, 0.44); font-size: 9px; }
.footer-brand { color: white; }
.footer-identity,
.footer-meta { display: flex; flex-direction: column; gap: 9px; }
.footer-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.footer-nav a,
.footer-meta a { color: rgba(255, 255, 255, 0.6); font-weight: 700; text-decoration: none; transition: color 180ms ease; }
.footer-nav a:hover,
.footer-meta a:hover { color: white; }
.footer-meta { justify-self: end; align-items: flex-end; }

@media (max-width: 1220px) {
  .hero { grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr); }
  .hero h1 { font-size: clamp(48px, 6vw, 72px); }
  .system-map { min-height: 580px; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .system-stage { min-height: 270px; }
  .person-card { grid-template-columns: 1fr; }
  .person-photo { min-height: 270px; aspect-ratio: 1.4; }
}

@media (max-width: 960px) {
  .site-header { height: 66px; grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-button { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; padding: 0; border: 1px solid var(--line-strong); background: var(--paper); }
  .menu-button span { width: 18px; height: 1px; background: var(--ink); }
  .main-nav { position: fixed; inset: 66px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px var(--pad) 28px; border-bottom: 1px solid var(--line-strong); background: var(--paper); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a::after { right: 0; bottom: 50%; left: auto; width: 7px; height: 7px; margin-bottom: -3px; transform: scale(0); transition: transform 160ms ease; }
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after { right: 0; transform: scale(1); }
  .hero { grid-template-columns: 1fr; padding-top: 66px; }
  .hero-copy { min-height: auto; padding-top: 78px; }
  .hero-visual { min-height: 650px; padding: 0; }
  .system-map { min-height: 650px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 138px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .section-heading { grid-template-columns: 1fr; gap: 27px; }
  .problem-section .section-heading { grid-template-columns: 1fr; gap: 27px; }
  .problem-section .section-heading > p:last-child { transform: none; }
  .problem-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .problem-grid article:nth-child(2),
  .problem-grid article:nth-child(3),
  .problem-grid article:nth-child(4) { grid-column: auto; grid-row: auto; }
  .problem-featured { grid-column: 1 / -1; grid-row: auto; min-height: 380px !important; }
  .problem-conclusion { grid-column: 1 / -1; grid-row: auto; }
  .outcomes-intro { min-height: 0; grid-template-columns: 1fr; }
  .outcomes-intro .eyebrow,
  .outcomes-intro h2,
  .outcomes-intro h2 + p { grid-column: 1; }
  .outcomes-intro h2 + p { max-width: 650px; margin-top: 28px; }
  .system-result { grid-template-columns: repeat(4, 1fr); }
  .work-card-featured { grid-template-columns: 1fr; }
  .work-card-featured .work-media { min-height: 420px; }
  .work-card-featured .work-copy { min-height: 0; }
  .work-secondary { grid-template-columns: 1fr; }
  .work-card:not(.work-card-featured) { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr); }
  .work-card:not(.work-card-featured) .work-media { min-height: 340px; aspect-ratio: auto; }
  .work-card:not(.work-card-featured) .work-copy { min-height: 340px; }
  .work-company { min-height: 0; }
  .process-layout { grid-template-columns: 1fr; gap: 58px; }
  .process-intro { position: static; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr); align-items: end; gap: 28px 52px; }
  .process-intro .eyebrow { grid-column: 1 / -1; }
  .process-intro h2 { margin: 0; }
  .process-intro > p:not(.eyebrow) { margin-bottom: 4px; }
  .process-principle { grid-column: 1 / -1; margin-top: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 0.75fr 1.25fr; }
  .person-photo { min-height: 300px; aspect-ratio: 0.82; }
  .contact-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-nav { display: none; }
}

@media (max-width: 640px) {
  .hero-copy { padding-top: 78px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 58px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .hero-note { max-width: 360px; }
  .hero-visual, .system-map { min-height: 580px; }
  .map-status { inset: 20px 18px auto; }
  .source-node { min-width: 94px; padding: 10px; }
  .source-node strong { font-size: 9px; }
  .source-node span { margin-bottom: 5px; font-size: 6px; }
  .source-crm { top: 14%; left: 3%; }
  .source-erp { top: 11%; }
  .source-marketing { top: 14%; right: 3%; }
  .source-pos { top: 40%; right: 2%; }
  .source-sheets { bottom: 21%; right: 3%; }
  .source-product { bottom: 21%; left: 3%; }
  .system-hub { top: 47%; left: 44%; width: 180px; }
  .hub-core small { display: none; }
  .output-rail { right: 3%; bottom: 8%; left: 3%; }
  .output-node { padding: 10px 8px; }
  .output-node strong { font-size: 7px; }
  .proof-strip > div { min-height: 138px; }
  .section { padding-top: 86px; padding-bottom: 86px; }
  .section-heading h2 { font-size: clamp(35px, 10.5vw, 50px); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article { min-height: 230px; }
  .problem-featured { grid-column: auto; min-height: 360px !important; }
  .problem-featured h3 { margin-top: 52px; }
  .report-fragment { padding-top: 24px; }
  .problem-conclusion { grid-column: auto; min-height: 270px; }
  .outcomes-intro { padding-top: 68px; padding-bottom: 68px; }
  .outcome-list { grid-template-columns: 1fr; }
  .outcome-item { min-height: 0; padding: 44px 20px; }
  .outcome-item:nth-child(odd) { border-right: 0; }
  .outcome-item:nth-child(-n + 3) { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .outcome-item h3 { margin-top: 30px; }
  .system-result { min-height: 0; grid-template-columns: 1fr; gap: 0; padding: 16px 18px; }
  .system-result::before { top: 43px; right: auto; bottom: 43px; left: 22px; width: 1px; height: auto; }
  .system-result::after { top: 39px; left: 22px; animation-name: chainSignalVertical; }
  .system-flow-node { min-height: 54px; flex-direction: row; justify-content: flex-start; gap: 14px; padding: 0; text-align: left; }
  .system-flow-node span { font-size: 9px; }
  .system-grid { grid-template-columns: 1fr; }
  .system-stage { min-height: 260px; }
  .work-card-featured .work-media { min-height: 310px; }
  .work-card-featured .work-copy { min-height: 0; }
  .work-card:not(.work-card-featured) { display: flex; }
  .work-card:not(.work-card-featured) .work-copy { min-height: 0; }
  .work-media { min-height: 220px; }
  .work-card:not(.work-card-featured) .work-media { min-height: 0; aspect-ratio: 1.86 / 1; }
  .work-copy,
  .work-card:not(.work-card-featured) .work-copy { padding: 24px 20px; }
  .work-copy h3,
  .work-card:not(.work-card-featured) .work-copy h3 { margin: 44px 0 28px; font-size: clamp(29px, 8.6vw, 40px); }
  .work-answer p { grid-template-columns: 1fr; gap: 7px; }
  .process-layout { gap: 44px; }
  .process-intro { display: block; }
  .process-intro h2 { margin: 28px 0 22px; font-size: clamp(38px, 11vw, 52px); }
  .process-principle { grid-template-columns: 96px 1fr; margin-top: 38px; }
  .process-step { grid-template-columns: 1fr; gap: 26px; min-height: 0; padding: 28px 0 34px; }
  .process-step h3 { max-width: 480px; margin: 44px 0 15px; font-size: clamp(29px, 8.8vw, 39px); }
  .process-step-copy > p { font-size: 12px; }
  .process-artifact { min-height: 210px; }
  .process-screen img { height: 190px; }
  .process-document-feature { grid-template-columns: 1fr; gap: 5px; }
  .process-document-grid { grid-template-columns: 1fr; }
  .process-document-grid > div { padding: 9px 0; border-right: 0; border-bottom: 1px solid #d6deee; }
  .process-document-grid > div:last-child { border-bottom: 0; }
  .person-card { grid-template-columns: 1fr; }
  .person-photo { min-height: 260px; aspect-ratio: 1.15; }
  .contact-section > div:first-child { translate: none; }
  .contact-section h2 { font-size: clamp(38px, 11.5vw, 54px); }
  .contact-card-intro { grid-template-columns: 1fr; gap: 10px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channels a,
  .contact-channels a:first-child,
  .contact-channels a:last-child { padding: 0 2px; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .contact-channels a:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { justify-self: start; align-items: flex-start; }
}

@keyframes chainSignalVertical {
  0%, 8% { top: 39px; left: 22px; opacity: 0; }
  15% { opacity: 1; }
  84% { top: calc(100% - 48px); left: 22px; opacity: 1; }
  92%, 100% { top: calc(100% - 48px); left: 22px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal] { transition-delay: 0ms !important; }
}
