@font-face {
  font-family: Sora;
  src: url("fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
:root {
  --blue: #2363eb;
  --ink: #0b1220;
  --body: #3d465c;
  --muted: #626c80;
  --line: #dbe1ec;
  --paper: #fff;
  --wash: #f5f7fb;
  --violet: #9f4bf4;
  --pink: #e64092;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--wash);
  scrollbar-width: thin;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--blue);
  color: white;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p {
  margin: 0;
  color: var(--body);
}
h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  line-height: 1.13;
  letter-spacing: -0.04em;
  font-weight: 400;
  text-wrap: balance;
}
h1 strong,
h2 strong {
  font-weight: 600;
}
h2 {
  font-size: clamp(36px, 4.2vw, 60px);
}
h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.025em;
}
strong {
  font-weight: 600;
}
a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
details > summary ~ * {
  animation: detail-in 0.4s var(--ease);
}
[id] {
  scroll-margin-top: 108px;
}
.wrap {
  width: min(100% - 112px, 1360px);
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 64px;
}
.section-heading > p,
.section-heading > div > p {
  max-width: 560px;
}
.lead,
.fz-lead {
  font-size: 21px;
  line-height: 1.6;
}
.fz-body {
  font-size: 18px;
}
.fz-muted {
  color: var(--muted);
}
.fz-tag {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  background: #fff4e5;
  color: #8c4804;
  border-radius: 3px;
  padding: 2px 6px;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  z-index: 100;
  background: var(--blue);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header > .wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}
.brand img {
  width: 100px;
  height: 51px;
}
.brand span {
  border-left: 1px solid var(--line);
  padding-left: 17px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--body);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav a,
.login {
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}
.nav a {
  position: relative;
  padding-block: 12px;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--blue);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current]::after {
  transform: scaleX(1);
}
.nav a[aria-current] {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.login {
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
}
.login svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.3s var(--ease);
}
.hero {
  position: relative;
  overflow: clip;
  background: white;
}
.hero-layout {
  min-height: min(800px, calc(100svh - 100px));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
  padding-top: 86px;
  padding-bottom: 30px;
  align-items: start;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(56px, 6.6vw, 96px);
  font-weight: 400;
  line-height: 1.055;
  letter-spacing: -0.04em;
  max-width: 10em;
  text-wrap: initial;
}
.hero h1 > span {
  display: block;
  font-size: 0.62em;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.hero h1 strong {
  display: block;
  color: var(--blue);
  font-weight: 600;
}
.hero-intro {
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
  margin-top: 30px;
}
.action {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
  font-family: Sora, sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--blue);
}
.action > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.action:hover > span {
  color: white;
  background: var(--blue);
}
.action svg {
  transition: transform 0.45s var(--ease);
}
.action:hover svg {
  transform: rotate(-35deg) scale(0.8);
}
.hero-art {
  position: absolute;
  width: 55%;
  height: 620px;
  right: -6%;
  top: 24px;
  pointer-events: none;
  perspective: 1000px;
}
.bolt-sculpture {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-7deg);
  transform-origin: 50% 50%;
}
.bolt-thread {
  transform-box: view-box;
  transform-origin: 50% 50%;
}
.hero-foot {
  grid-column: 1/-1;
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 42px;
  font-size: 13px;
  line-height: 1.65;
}
.hero-foot strong {
  font-weight: 500;
  color: var(--ink);
}
.scroll-link {
  display: flex;
  gap: 20px;
  align-items: center;
}
.scroll-link svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
}
.motion-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  padding: 10px 0 10px 10px;
  background: none;
  border: 0;
}
.motion-toggle svg {
  width: 16px;
  height: 16px;
}
.clients {
  --client-width: 70.4px;
  --client-gap: 28px;
  padding-block: 30px;
  display: flex;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-caption { flex: 0 0 auto; white-space: nowrap; }
.client-caption h2 { margin: 0; font: 500 13px/1.5 Sora, sans-serif; }
.clients-window { min-width: 0; flex: 1; overflow-x: auto; }
.clients-window:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.clients-track { width: max-content; }
.clients-group {
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: 24px var(--client-gap); margin: 0; padding: 0; list-style: none;
}
.client-logo { flex: 0 0 var(--client-width); width: var(--client-width); height: 25.6px; }
.client-logo img { display: block; width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); }
.clients.is-animated .clients-window { overflow: hidden; }
.clients.is-animated .clients-track {
  display: flex; width: max-content;
  animation: client-marquee var(--client-duration, 77s) linear infinite;
  animation-play-state: paused;
}
.clients.is-animated .clients-group {
  flex: 0 0 auto; flex-wrap: nowrap; gap: var(--client-gap);
  padding-right: var(--client-gap);
}
.clients.is-running .clients-track { animation-play-state: running; will-change: transform; }
@keyframes client-marquee { to { transform: translateX(calc(-1 * var(--client-distance))); } }
@media (prefers-reduced-motion: reduce) {
  .clients.is-animated .clients-track { animation: none; width: max-content; }
  .clients.is-animated .clients-group { flex-wrap: nowrap; padding: 0; }
  .clients-group[aria-hidden="true"] { display: none; }
}
.platform .section-heading {
  margin-bottom: 70px;
}
.connection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 30px 0 70px;
}
.connection {
  position: relative;
  isolation: isolate;
}
.connection.has-flow .connection-line {
  background: transparent;
}
.connection.has-flow .connection-line::after {
  display: none;
}
.connection-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}
.flow-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}
.flow-track-out {
  stroke: #d9c8ee;
}
.connection.has-flow .connection-core {
  background: var(--paper);
}
.connection.has-flow .connection-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--violet);
  border-radius: 50%;
  transform: rotate(-20deg) scale(calc(1 + var(--charge, 0) * 0.035));
  opacity: var(--charge, 0);
  pointer-events: none;
}
.connection-controls {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  margin: -40px 0 24px;
  min-height: 32px;
}
.connection-toggle {
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 6px 0 6px 10px;
  background: none;
  color: var(--muted);
  font-size: 12px;
}
.connection-toggle:not([hidden]) {
  display: inline-flex;
}
.connection-toggle svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .connection-controls {
    margin-top: -18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .connection-toggle {
    display: none !important;
  }
}
.connection-input,
.connection-output {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 16px;
  position: relative;
}
.connection-input {
  min-width: 160px;
}
.connection-output {
  min-width: 260px;
}
.connection-line {
  height: 1px;
  background: var(--line);
  flex: 1;
  position: relative;
  min-width: 30px;
}
.connection-line::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue);
  position: absolute;
  right: 20%;
  top: -3px;
  border-radius: 50%;
}
.connection-core {
  width: 280px;
  flex-shrink: 0;
  text-align: center;
  padding: 26px 28px;
  position: relative;
}
.connection-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.connection-core > img {
  margin: auto;
  width: 130px;
  height: 67px;
}
.connection-core > p {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.65;
}
.service-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.service-lines > div {
  border-top: 1px solid var(--blue);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-lines span {
  font-family: Sora, sans-serif;
  color: var(--blue);
  font-size: 20px;
}
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 44px;
}
.outcomes article h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.outcomes article p {
  font-size: 17px;
  line-height: 1.6;
}
.platform > .outcomes {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.equation {
  margin-top: 55px;
  font-size: 14px;
  line-height: 1.8;
}
.equation strong {
  color: var(--blue);
}
.manifesto {
  background: var(--blue);
  color: white;
}
.manifesto h2 {
  font-size: clamp(38px, 5.7vw, 82px);
  line-height: 1.14;
  max-width: 1050px;
}
.manifesto h2 > span {
  color: #c6d8ff;
}
.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  margin-top: 70px;
}
.manifesto-bottom > p {
  font-size: 22px;
  max-width: 430px;
  color: white;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.problem-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  border-top: 1px solid #6995f2;
  padding-top: 20px;
}
.problem-list h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.problem-list p {
  font-size: 16px;
  line-height: 1.55;
  color: #edf3ff;
}
.program-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.program-paths > article {
  border-top: 1px solid var(--blue);
  padding-top: 30px;
}
.program-paths h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.program-paths > article > p {
  font-size: 18px;
  margin-bottom: 24px;
}
.program-steps {
  margin-bottom: 24px;
}
.program-steps > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.program-steps span {
  font-family: Sora, sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.program-steps p {
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
}
.text-link svg {
  transition: transform 0.3s var(--ease);
}
.text-link:hover svg {
  transform: translateX(5px);
}
.disclosure {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 55px;
}
.disclosure + .disclosure {
  margin-top: 0;
  border-top: 0;
}
.disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Sora, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  padding: 24px 0;
}
.disclosure > summary > svg {
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}
.disclosure[open] > summary > svg {
  transform: rotate(45deg);
}
.disclosure[open] {
  padding-bottom: 30px;
}
.disclosure .outcomes {
  margin: 20px 0 25px;
}
.disclosure > p {
  font-size: 16px;
}
.quickwin {
  background: var(--blue);
  color: white;
}
.quickwin-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 130px;
  align-items: end;
}
.quickwin h2 {
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.1;
}
.quickwin h2 strong {
  font-weight: 600;
}
.quickwin p {
  color: #edf3ff;
}
.quickwin-heading .lead {
  margin-bottom: 22px;
  font-size: 22px;
}
.quickwin-heading > div > p:not(.lead) {
  font-size: 16px;
}
.action-light {
  color: white;
}
.action-light > span {
  border-color: white;
}
.action-light:hover > span {
  background: white;
  color: var(--blue);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
  gap: 0;
  border-top: 1px solid #91b1f7;
}
.timeline article {
  padding-top: 24px;
  padding-right: 36px;
  position: relative;
}
.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
}
.timeline .fz-h3 {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  font-family: Sora, sans-serif;
  font-size: 21px;
  line-height: 1.4;
}
.timeline .fz-muted {
  font-family: "Source Sans 3", sans-serif;
  color: #edf3ff;
  font-size: 14px;
}
.timeline p {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 16px;
}
.quickwin .disclosure {
  border-color: #91b1f7;
}
.quickwin .disclosure svg {
  color: white;
}
.quickwin :focus-visible,
.manifesto :focus-visible {
  outline-color: white;
}
.quickwin .outcomes p {
  color: #edf3ff;
}
.industries {
  background: var(--wash);
}
.industry-explorer {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
}
.industry-explorer + .disclosure {
  margin-top: 24px;
}
.industry {
  border-top: 1px solid var(--line);
}
.industry:last-child {
  border-bottom: 1px solid var(--line);
}
.industry > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 27px 0;
}
.industry h3 {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 400;
}
.industry > summary > svg {
  transition: transform 0.4s var(--ease);
  width: 24px;
  height: 24px;
}
.industry[open] h3 {
  color: var(--blue);
}
.industry[open] > summary > svg {
  transform: rotate(90deg);
  color: var(--blue);
}
.industry-detail {
  padding: 0 46px 28px 0;
}
.industry-detail p {
  font-size: 17px;
}
.industry-detail > img {
  display: none;
}
.industry-client-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}
.industry-client-logos img {
  display: block;
  width: 76px;
  height: 28px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1);
}
.industry-detail a {
  color: var(--blue);
  text-decoration: underline;
}
.industry-stage {
  margin: 0;
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.industry-stage > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition:
    opacity 0.25s ease,
    transform 0.8s var(--ease);
}
.industry-stage.is-changing > img {
  opacity: 0;
  transform: scale(1.035);
}
.industry-stage::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.6));
  pointer-events: none;
}
.industry-stage > figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: white;
  font-size: 15px;
}
.editorial-note {
  font-size: 15px;
  max-width: 380px !important;
}
.case-list {
  border-top: 1px solid var(--line);
}
.case {
  border-bottom: 1px solid var(--line);
}
.case > summary {
  display: grid;
  grid-template-columns: 0.55fr 1fr 24px;
  gap: 60px;
  padding-block: 34px;
  align-items: start;
}
.case-client {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 240px;
}
.case h3 {
  font-size: 25px;
  max-width: 750px;
  font-weight: 400;
}
.case summary > svg {
  margin-top: 4px;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}
.case[open] summary > svg {
  transform: rotate(45deg);
}
.case[open] h3 {
  color: var(--blue);
}
.case-body {
  margin-left: 36%;
  padding: 0 70px 38px 0;
}
.case-body p {
  margin-top: 16px;
  font-size: 18px;
}
.case-body p:last-child {
  font-size: 19px;
  color: var(--ink);
}
.capabilities {
  background: var(--wash);
}
.capabilities > .wrap > .outcomes {
  row-gap: 45px;
}
.capabilities .outcomes article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.comparison > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comparison > div > span {
  color: var(--muted);
}
.comparison-head {
  font-family: Sora, sans-serif;
  font-size: 14px;
}
.comparison .comparison-head > span:last-child {
  color: var(--blue);
}
.team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 70px;
}
.team-list > article {
  padding-top: 25px;
  border-top: 1px solid var(--blue);
}
.team-list h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 2px;
  vertical-align: -3px;
  color: var(--muted);
}
.team-linkedin svg { width: 14px; height: 14px; }
.team-linkedin:hover { color: var(--blue); }
.team-list p {
  font-size: 16px;
  line-height: 1.65;
}
#equipo .disclosure {
  margin-top: 28px;
}
#equipo .disclosure > div > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
#equipo .disclosure > div > div > span {
  font-family: Sora, sans-serif;
  font-size: 16px;
  color: var(--blue);
}
#equipo .disclosure p {
  font-size: 16px;
  margin-top: 8px;
}
.origin-image {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.contact {
  background: var(--wash);
  padding-block: 80px 35px;
}
.contact-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 130px;
  align-items: end;
}
.contact h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
}
.contact-top > div > p {
  max-width: 370px;
  font-size: 19px;
  margin-bottom: 22px;
}
.contact-invitation {
  font-family: Sora, sans-serif;
  font-size: clamp(70px, 12.5vw, 180px);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1.15;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 50px 40px;
  border-bottom: 1px solid var(--blue);
}
.contact-invitation span {
  width: 16%;
  transition: transform 0.6s var(--ease);
}
.contact-invitation svg {
  width: 100%;
  height: auto;
  stroke-width: 1;
  transform: rotate(-35deg) scale(0.8);
}
.contact-invitation:hover span {
  transform: rotate(35deg);
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
}
.contact-bottom p {
  font-size: 14px;
}
.footer {
  padding-block: 35px;
}
.footer > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.footer p {
  font-size: 12px;
  line-height: 1.65;
  margin-right: auto;
}
.footer nav {
  display: flex;
  gap: 25px;
  font-size: 13px;
}
.footer a:hover {
  color: var(--blue);
}
@keyframes detail-in {
  from {
    opacity: 0.5;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1550px) {
  .hero-art {
    right: -1%;
    width: 51%;
    top: 20px;
  }
  .hero-layout {
    padding-top: 94px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .header > .wrap {
    gap: 25px;
  }
  .brand span {
    display: none;
  }
  .nav {
    gap: 18px;
  }
  .hero-layout {
    padding-top: 65px;
    min-height: 740px;
  }
  .hero-art {
    right: -8%;
    top: 55px;
    width: 58%;
    height: 540px;
  }
  .hero h1 {
    font-size: clamp(56px, 6.9vw, 84px);
  }
  .hero-intro {
    max-width: 470px;
    font-size: 18px;
  }
  .section-heading {
    gap: 55px;
  }
  .manifesto-bottom {
    gap: 75px;
  }
  .quickwin-heading {
    gap: 65px;
  }
  .industry-explorer {
    gap: 50px;
  }
  .connection-input {
    min-width: 120px;
  }
  .connection-output {
    min-width: 225px;
    font-size: 15px;
  }
  .connection-core {
    width: 245px;
  }
  .case > summary {
    gap: 35px;
  }
  .program-paths {
    gap: 50px;
  }
  .contact-top {
    gap: 70px;
  }
  .contact-invitation {
    font-size: 12vw;
  }
}
@media (max-width: 1000px) {
  .nav {
    gap: 14px;
  }
  .nav a,
  .login {
    font-size: 12px;
  }
  .brand img {
    width: 85px;
    height: auto;
  }
  .header > .wrap {
    gap: 24px;
  }
  .hero-art {
    width: 56%;
    right: -8%;
    top: 60px;
  }
  .hero-layout {
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 700px;
  }
  .hero-intro {
    max-width: 420px;
  }
  .section {
    padding-block: 85px;
  }
  .section-heading {
    gap: 40px;
  }
  .program-steps > div {
    grid-template-columns: 110px 1fr;
    gap: 15px;
  }
  .manifesto-bottom {
    gap: 45px;
  }
  .problem-list article {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }
  .industry-explorer {
    gap: 40px;
  }
  .industry h3 {
    font-size: 22px;
  }
  .team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .contact-top {
    gap: 40px;
  }
  .footer > .wrap {
    flex-wrap: wrap;
  }
  .footer nav {
    margin-left: 122px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header > .wrap {
    height: 78px;
  }
  .brand img {
    width: 85px;
    height: 44px;
  }
  .brand span {
    display: block;
    font-size: 10px;
    padding-left: 12px;
  }
  .brand {
    gap: 12px;
  }
  .login {
    font-size: 12px;
    gap: 8px;
  }
  .header-actions {
    gap: 15px;
  }
  .menu-toggle {
    display: block;
  }
  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100svh - 78px);
    overflow: auto;
  }
  .header.is-open .nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav a {
    font-family: Sora, sans-serif;
    font-size: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .header.is-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .header.is-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  [id] {
    scroll-margin-top: 94px;
  }
  .hero-layout {
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 24px;
    display: block;
  }
  .hero h1 {
    font-size: clamp(49px, 8.5vw, 68px);
    line-height: 1.07;
    max-width: 11em;
  }
  .hero-intro {
    font-size: 18px;
    max-width: 500px;
    margin-top: 24px;
  }
  .hero-art {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 510px);
    height: 310px;
    margin: -8px 0 -12px auto;
  }
  .hero .action {
    margin-top: 22px;
    gap: 25px;
  }
  .action > span {
    width: 48px;
    height: 48px;
  }
  .hero-foot {
    padding-top: 15px;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-foot p {
    font-size: 12px;
  }
  .scroll-link {
    font-size: 12px;
    gap: 10px;
  }
  .motion-toggle {
    font-size: 11px;
  }
  .clients {
    gap: 20px;
    align-items: center;
    padding-block: 24px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: clamp(35px, 6vw, 48px);
  }
  .lead,
  .fz-lead {
    font-size: 19px;
  }
  .connection {
    padding: 10px 0 42px;
  }
  .connection-input {
    min-width: 80px;
    font-size: 13px;
  }
  .connection-output {
    min-width: 180px;
    font-size: 12px;
  }
  .connection-core {
    width: 180px;
    padding: 24px 12px;
  }
  .connection-core > img {
    width: 100px;
    height: auto;
  }
  .connection-core > p {
    font-size: 11px;
  }
  .connection-line {
    min-width: 15px;
  }
  .service-lines {
    gap: 22px;
  }
  .service-lines p {
    font-size: 16px;
  }
  .service-lines span {
    font-size: 18px;
  }
  .outcomes {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .outcomes article h3 {
    font-size: 18px;
  }
  .outcomes article p {
    font-size: 16px;
  }
  .manifesto h2 {
    font-size: clamp(35px, 6.5vw, 50px);
  }
  .manifesto-bottom {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 35px;
  }
  .manifesto-bottom > p {
    font-size: 20px;
    max-width: 500px;
  }
  .problem-list article {
    grid-template-columns: 130px 1fr;
  }
  .program-paths {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .program-paths h3 {
    font-size: 24px;
  }
  .program-steps > div {
    grid-template-columns: 125px 1fr;
  }
  .program-paths > article > p {
    font-size: 17px;
  }
  .disclosure {
    margin-top: 38px;
  }
  .disclosure > summary {
    font-size: 17px;
    padding-block: 22px;
  }
  .quickwin-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quickwin h2 {
    font-size: clamp(48px, 9vw, 70px);
  }
  .quickwin-heading .lead {
    font-size: 20px;
    max-width: 530px;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
    border-top: 0;
    margin-top: 55px;
  }
  .timeline article {
    border-top: 1px solid #91b1f7;
    padding-right: 10px;
    padding-top: 18px;
  }
  .timeline .fz-h3 {
    font-size: 20px;
  }
  .timeline p {
    font-size: 16px;
  }
  .industry-explorer {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .industry-stage {
    display: none;
  }
  .industry-detail {
    padding: 0 0 24px;
  }
  .industry-detail > img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-top: 22px;
  }
  .industry > summary {
    padding: 22px 0;
  }
  .industry h3 {
    font-size: 22px;
  }
  .industry-detail p {
    max-width: 500px;
  }
  .case > summary {
    grid-template-columns: 1fr 24px;
    gap: 14px 24px;
    padding-block: 26px;
  }
  .case-client {
    grid-column: 1;
    max-width: 100%;
    font-size: 13px;
  }
  .case h3 {
    grid-column: 1;
    font-size: 23px;
  }
  .case summary > svg {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .case-body {
    margin: 0;
    padding: 0 0 30px;
  }
  .case-body p {
    font-size: 17px;
  }
  .team-list {
    margin-top: 40px;
    gap: 34px 25px;
  }
  .team-list h3 {
    font-size: 18px;
  }
  .contact {
    padding-top: 55px;
  }
  .contact-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact h2 {
    font-size: clamp(25px, 4vw, 34px);
  }
  .contact-top > div > p {
    font-size: 17px;
    max-width: 440px;
  }
  .contact-invitation {
    font-size: 12.2vw;
    padding-block: 40px 30px;
    gap: 15px;
  }
  .contact-bottom {
    flex-direction: column;
    gap: 18px;
  }
  .contact-bottom p {
    font-size: 13px;
  }
  .footer > .wrap {
    gap: 25px;
    align-items: flex-start;
  }
  .footer p {
    max-width: calc(100% - 115px);
    font-size: 11px;
  }
  .footer nav {
    margin-left: 0;
    gap: 24px;
  }
  .equation {
    font-size: 13px;
    margin-top: 35px;
  }
}
@media (max-width: 480px) {
  .brand span {
    display: none;
  }
  .header-actions {
    gap: 12px;
  }
  .hero-layout {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: clamp(40px, 11.9vw, 54px);
  }
  .hero-intro {
    font-size: 17px;
    line-height: 1.55;
    max-width: 350px;
  }
  .hero-art {
    height: 255px;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    transform: translateX(10px);
  }
  .hero-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
  }
  .hero-foot > p {
    grid-row: 1/3;
    align-self: center;
  }
  .motion-toggle {
    grid-column: 2;
    padding: 0;
    min-height: 30px;
    justify-content: flex-end;
    font-size: 10px;
  }
  .scroll-link {
    justify-content: flex-end;
    font-size: 11px;
  }
  .clients { gap: 16px; }
  .client-caption h2 { font-size: 12px; }
    .clients { --client-width: 57.6px; --client-gap: 24px; }
  .section {
    padding-block: 58px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .connection {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 38px;
  }
  .connection-input {
    flex-direction: row;
    gap: 18px;
    font-size: 13px;
  }
  .connection-output {
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  .connection-line {
    height: 35px;
    min-width: 1px;
    width: 1px;
    flex: none;
  }
  .connection-line::after {
    width: 5px;
    height: 5px;
    left: -2px;
    top: 14px;
  }
  .connection-core {
    width: 235px;
    margin-block: 10px;
  }
  .connection-core > img {
    width: 115px;
  }
  .connection-core > p {
    font-size: 12px;
  }
  .service-lines {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .service-lines > div {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 18px;
    padding-top: 18px;
  }
  .service-lines span {
    font-size: 16px;
  }
  .outcomes {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .platform > .outcomes {
    margin-top: 32px;
    padding-top: 30px;
  }
  .manifesto h2 {
    font-size: clamp(28px, 7.75vw, 37px);
  }
  .manifesto-bottom > p {
    font-size: 19px;
  }
  .problem-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 18px;
  }
  .problem-list h3 {
    font-size: 18px;
  }
  .program-steps > div {
    grid-template-columns: 103px 1fr;
    gap: 14px;
  }
  .program-paths h3 {
    font-size: 22px;
  }
  .program-steps p {
    font-size: 16px;
  }
  .quickwin h2 {
    font-size: 52px;
  }
  .quickwin-heading .lead {
    font-size: 19px;
  }
  .timeline {
    gap: 26px 20px;
  }
  .timeline .fz-h3 {
    font-size: 18px;
  }
  .industry h3 {
    font-size: 20px;
  }
  .industry-detail > img {
    height: 240px;
  }
  .case h3 {
    font-size: 21px;
  }
  .team-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .team-list > article {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }
  .team-list h3 {
    font-size: 17px;
  }
  .team-list p {
    font-size: 15px;
  }
  .contact-invitation {
    font-size: 12vw;
  }
  .footer > .wrap {
    gap: 20px;
  }
  .footer img {
    width: 74px;
    height: auto;
  }
  .footer p {
    max-width: calc(100% - 94px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .bolt-sculpture {
    transform: rotate(-7deg);
  }
  .motion-toggle {
    display: none;
  }
}

/* Search entry pages inherit the editorial brand and require no JavaScript. */
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 36px;
  font-size: 15px;
  color: var(--blue);
}
.service-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.search-questions {
  border-top: 1px solid var(--line);
}
.search-questions .disclosure {
  margin-top: 0;
}
.search-questions .disclosure > p {
  max-width: 760px;
  font-size: 18px;
}
.service-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--blue);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 32px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a {
  color: var(--blue);
}
.service-intro {
  padding-block: 64px 80px;
  max-width: 970px;
}
.service-intro h1 {
  font-size: clamp(40px, 5.5vw, 76px);
}
.service-intro h1 strong {
  color: var(--blue);
}
.service-intro .lead {
  max-width: 760px;
  margin-top: 30px;
}
.service-intro .text-link {
  margin-top: 32px;
}
.service-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-block: 52px;
}
.service-section h2 {
  font-size: clamp(26px, 2.8vw, 38px);
}
.service-section p + p {
  margin-top: 20px;
}
.service-section ul {
  margin-top: 22px;
  padding-left: 22px;
  color: var(--body);
}
.service-section li {
  padding-left: 6px;
  margin-bottom: 14px;
}
.service-section li::marker {
  color: var(--blue);
}
.service-questions {
  padding-block: 40px 60px;
}
.service-questions h2,
.service-related h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 32px;
}
.service-questions .disclosure {
  margin-top: 0;
}
.service-questions .disclosure p {
  max-width: 760px;
  font-size: 18px;
}
.service-related {
  border-top: 1px solid var(--line);
  padding-block: 44px 64px;
}
.service-related .service-links {
  margin-top: 0;
}
.service-page .footer {
  background: var(--wash);
}
@media (max-width: 800px) {
  .service-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px;
  }
  .service-intro {
    padding-block: 44px 54px;
  }
  .service-nav {
    gap: 20px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .service-nav {
    gap: 12px;
    font-size: 12px;
  }
  .service-page .header .brand span {
    display: none;
  }
  .service-page .header > .wrap {
    gap: 16px;
  }
  .breadcrumbs {
    font-size: 12px;
  }
  .service-intro h1 {
    font-size: 38px;
  }
  .service-links {
    flex-direction: column;
    gap: 16px;
  }
}
