@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600&display=swap");

:root {
  --paper: #f2f0e7;
  --white: #faf9f4;
  --ink: #151a1e;
  --muted: #596269;
  --line: #d4d2c8;
  --soft: #e5e8df;
  --blue: #175fc5;
  --blue-dark: #0e4b9f;
  --coral: #ef705d;
  --deep: #18242b;
  --deep-muted: #aeb9bd;
  --max-width: 1220px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

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

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(242, 240, 231, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  gap: 3px;
  align-items: end;
  width: 28px;
  height: 24px;
}

.brand-mark span {
  display: block;
  width: 7px;
  height: 15px;
  background: var(--ink);
}

.brand-mark span:first-child {
  height: 10px;
}

.brand-mark span:nth-child(2) {
  position: relative;
  bottom: 4px;
  transform: skewY(-22deg);
}

.brand-mark span:last-child {
  height: 20px;
  background: var(--blue);
}

.primary-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.08) saturate(0.92);
  mix-blend-mode: multiply;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 240, 231, 0.98) 0%, rgba(242, 240, 231, 0.87) 38%, rgba(242, 240, 231, 0.1) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
  padding-top: 100px;
  padding-bottom: 58px;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.section-label,
.panel-kicker {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--coral);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.hero-summary {
  max-width: 600px;
  margin-bottom: 38px;
  color: #424b50;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.hero-index {
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 26, 30, 0.3);
}

.hero-index p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.7fr;
  gap: 80px;
}

.split-intro h2 {
  max-width: 900px;
  margin-bottom: 36px;
}

.split-intro > div > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.editorial-photo {
  margin-top: 76px;
  margin-bottom: 0;
  overflow: hidden;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.intro-photo {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.55fr);
  grid-template-rows: 520px;
}

.intro-photo img {
  min-width: 0;
}

.editorial-photo figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 0;
  background: #e3e7dc;
  font-size: 13px;
  min-height: 0;
}

.editorial-photo figcaption span:first-child {
  max-width: 220px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.editorial-photo figcaption span:last-child {
  color: var(--muted);
}

.principle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-strip > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  min-height: 130px;
  padding: 25px 24px 25px 0;
  border-right: 1px solid var(--line);
}

.principle-strip > div:not(:first-child) {
  padding-left: 24px;
}

.principle-strip > div:last-child {
  border-right: 0;
}

.principle-strip span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.principle-strip p {
  max-width: 270px;
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
}

.services {
  border-top: 1px solid var(--line);
  background: #f8f7f1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.service-explorer {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  min-height: 610px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.service-tab {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
  width: 100%;
  padding: 24px 28px 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-weight: 500;
  transition:
    color 160ms ease,
    padding 160ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab span {
  font-size: 11px;
  font-weight: 600;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  padding-left: 14px;
  color: var(--ink);
}

.service-tab.is-active {
  box-shadow: inset 3px 0 var(--blue);
}

.service-panels {
  min-width: 0;
}

.service-panel {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  height: 100%;
}

.service-panel[hidden] {
  display: none;
}

.panel-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background-color: var(--soft);
  background-image:
    linear-gradient(rgba(21, 26, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 26, 30, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.panel-copy {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  column-gap: 30px;
  padding: 38px 42px 42px;
  border-top: 1px solid var(--line);
}

.panel-copy .panel-kicker {
  grid-column: 1;
}

.panel-copy h3 {
  grid-column: 1;
  margin: 0;
  font-size: 27px;
}

.panel-copy > p:not(.panel-kicker),
.panel-copy ul {
  grid-column: 2;
}

.panel-copy > p:not(.panel-kicker) {
  margin-top: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 19px;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.device {
  position: absolute;
  border: 1px solid #707b80;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 18px 22px 0 rgba(21, 26, 30, 0.07);
}

.desktop-device {
  top: 60px;
  left: 13%;
  width: 58%;
  height: 220px;
  padding: 36px 22px 20px;
}

.desktop-device::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 24px;
  border-bottom: 1px solid #aab2b3;
  content: "";
}

.desktop-device span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  background: var(--coral);
}

.desktop-device span:nth-child(2) {
  background: #e4b84c;
}

.desktop-device span:nth-child(3) {
  background: var(--blue);
}

.desktop-device i {
  display: block;
  height: 10px;
  margin-top: 17px;
  background: #dce4e4;
}

.desktop-device i:nth-of-type(1) {
  width: 48%;
  height: 38px;
  background: var(--blue);
}

.desktop-device i:nth-of-type(3) {
  width: 72%;
}

.mobile-device {
  right: 14%;
  bottom: 28px;
  width: 112px;
  height: 210px;
  padding: 28px 14px;
}

.mobile-device span {
  display: block;
  width: 38px;
  height: 38px;
  margin: 7px 0 25px;
  background: var(--coral);
}

.mobile-device i {
  display: block;
  height: 8px;
  margin-top: 12px;
  background: #ced7d7;
}

.system-node,
.system-hub {
  position: absolute;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 1px solid #6f797d;
  background: var(--white);
  box-shadow: 9px 10px 0 rgba(21, 26, 30, 0.08);
}

.node-a {
  top: 70px;
  left: 12%;
}

.node-b {
  top: 190px;
  left: 16%;
}

.node-c {
  top: 72px;
  right: 13%;
}

.system-hub {
  top: 135px;
  left: 52%;
  width: 120px;
  height: 120px;
  border-color: var(--blue);
  transform: translateX(-50%);
}

.system-hub span {
  display: block;
  width: 55%;
  height: 7px;
  margin: 22px auto -10px;
  background: #cfd7d6;
}

.system-hub span:first-child {
  background: var(--blue);
}

.system-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: var(--blue);
  transform-origin: left;
}

.line-a {
  top: 111px;
  left: 20%;
  width: 35%;
  transform: rotate(14deg);
}

.line-b {
  top: 227px;
  left: 24%;
  width: 30%;
  transform: rotate(-6deg);
}

.line-c {
  top: 142px;
  left: 58%;
  width: 29%;
  transform: rotate(-5deg);
}

.visual-automation {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.visual-automation > i {
  width: 10%;
  height: 1px;
  background: var(--blue);
}

.flow-step {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid #768084;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 10px 12px 0 rgba(21, 26, 30, 0.07);
}

.flow-step span {
  font-size: 12px;
  font-weight: 600;
}

.step-b {
  width: 142px;
  height: 142px;
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.step-c::after {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 10px;
  height: 10px;
  background: var(--coral);
  content: "";
}

.visual-internal {
  display: grid;
  grid-template-columns: 110px 1fr 0.72fr;
  gap: 0;
  padding: 54px 9%;
}

.mini-sidebar,
.mini-chart,
.mini-table {
  border: 1px solid #737e82;
  background: rgba(255, 255, 255, 0.9);
}

.mini-sidebar {
  padding: 26px 18px;
}

.mini-sidebar span,
.mini-table span {
  display: block;
  height: 8px;
  margin-bottom: 20px;
  background: #ced7d7;
}

.mini-sidebar span:first-child {
  width: 70%;
  background: var(--blue);
}

.mini-chart {
  display: flex;
  gap: 12px;
  align-items: end;
  padding: 42px 28px;
  border-left: 0;
}

.mini-chart i {
  flex: 1;
  height: 42%;
  background: #bfc9c9;
}

.mini-chart i:nth-child(2) {
  height: 76%;
}

.mini-chart i:nth-child(3) {
  height: 55%;
  background: var(--blue);
}

.mini-chart i:nth-child(4) {
  height: 88%;
}

.mini-chart i:nth-child(5) {
  height: 66%;
  background: var(--coral);
}

.mini-table {
  padding: 30px 22px;
  border-left: 0;
}

.mini-table span {
  height: 14px;
  margin-bottom: 28px;
}

.possibilities {
  background: #e4e8dd;
}

.section-heading.compact {
  display: block;
}

.possibility-list {
  border-top: 1px solid #bdc5c0;
}

.possibility-list > a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 52px;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid #bdc5c0;
}

.item-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.possibility-list h3 {
  margin-bottom: 9px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.possibility-list p {
  margin: 0;
  color: var(--muted);
}

.circle-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #a9b1ae;
  border-radius: 50%;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.possibility-list a:hover .circle-arrow,
.possibility-list a:focus-visible .circle-arrow {
  color: var(--white);
  background: var(--blue);
  transform: rotate(45deg);
}

.approach {
  color: var(--white);
  background: var(--deep);
}

.approach .section-heading > p {
  color: var(--deep-muted);
}

.label-light {
  color: var(--deep-muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #536169;
  list-style: none;
}

.process-list li {
  min-height: 390px;
  padding: 24px 26px 32px;
  border-right: 1px solid #536169;
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  border-right: 0;
}

.process-number {
  color: #94a2a7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.process-visual {
  position: relative;
  width: 100%;
  height: 124px;
  margin-top: 34px;
  overflow: hidden;
  border-top: 1px solid rgba(174, 185, 189, 0.28);
  border-bottom: 1px solid rgba(174, 185, 189, 0.28);
  background: transparent;
}

.process-copy {
  margin-top: 34px;
}

.process-list h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.process-list p {
  margin: 0;
  color: var(--deep-muted);
  font-size: 14px;
}

.process-understand .understand-lens {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translateX(-58%);
}

.process-understand .understand-lens::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.process-understand .understand-lens::after {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 15px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.75);
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px 0 0;
  content: "";
  transform: rotate(-8deg);
}

.process-understand .understand-handle {
  position: absolute;
  top: 81px;
  left: calc(50% + 19px);
  width: 42px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 0 6px 6px 0;
  background: transparent;
  transform: rotate(42deg);
  transform-origin: left center;
}

.process-understand b {
  position: absolute;
  top: 51px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: transparent;
}

.process-understand b:nth-of-type(1) {
  left: calc(50% - 36px);
}

.process-understand b:nth-of-type(2) {
  left: calc(50% - 16px);
  background: rgba(255, 255, 255, 0.94);
}

.process-understand b:nth-of-type(3) {
  left: calc(50% + 4px);
  background: transparent;
}

.process-shape .mold-half {
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 67px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.process-shape .mold-left {
  left: calc(50% - 72px);
  border-radius: 8px 2px 2px 8px;
}

.process-shape .mold-right {
  right: calc(50% - 72px);
  border-radius: 2px 8px 8px 2px;
}

.process-shape .mold-half::after {
  position: absolute;
  top: 20px;
  width: 19px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  content: "";
}

.process-shape .mold-left::after {
  right: -1px;
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.process-shape .mold-right::after {
  left: -1px;
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.process-shape .mold-core {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 20px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 9px 9px 4px 4px;
  transform: translateX(-50%);
}

.process-shape .mold-core::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.process-shape .mold-pin {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.process-shape .pin-a,
.process-shape .pin-b {
  top: 29px;
}

.process-shape .pin-c,
.process-shape .pin-d {
  bottom: 29px;
}

.process-shape .pin-a,
.process-shape .pin-c {
  left: calc(50% - 58px);
}

.process-shape .pin-b,
.process-shape .pin-d {
  right: calc(50% - 58px);
}

.process-build .cross-tool {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 128px;
  height: 26px;
  transform-origin: center;
}

.process-build .hammer-tool {
  transform: translate(-50%, -50%) rotate(42deg);
}

.process-build .hammer-tool i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 45px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 3px;
}

.process-build .hammer-tool i::before {
  position: absolute;
  top: 4px;
  left: -13px;
  width: 11px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-right: 0;
  border-radius: 3px 0 0 3px;
  content: "";
}

.process-build .hammer-tool i::after {
  position: absolute;
  top: 4px;
  right: -14px;
  width: 12px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-left: 0;
  content: "";
  clip-path: polygon(0 0, 100% 30%, 100% 70%, 0 100%);
}

.process-build .hammer-tool b {
  position: absolute;
  top: 9px;
  left: 56px;
  width: 69px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 0 6px 6px 0;
}

.process-build .screwdriver-tool {
  transform: translate(-50%, -50%) rotate(-42deg);
}

.process-build .screwdriver-tool b {
  position: absolute;
  top: 1px;
  left: 0;
  width: 47px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 13px 5px 5px 13px;
}

.process-build .screwdriver-tool b::before,
.process-build .screwdriver-tool b::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.process-build .screwdriver-tool b::before {
  left: 13px;
}

.process-build .screwdriver-tool b::after {
  right: 13px;
}

.process-build .screwdriver-tool em {
  position: absolute;
  top: 10px;
  left: 46px;
  width: 72px;
  height: 6px;
  border-top: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
}

.process-build .screwdriver-tool i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 12px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.process-launch {
  display: flex;
  gap: 9px;
  align-items: end;
  justify-content: center;
  padding: 22px 14% 21px;
}

.process-launch span {
  position: relative;
  z-index: 2;
  width: 17%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 0;
  background: transparent;
}

.process-launch span:first-child {
  height: 31%;
}

.process-launch span:nth-child(2) {
  height: 53%;
}

.process-launch span:nth-child(3) {
  height: 42%;
}

.process-launch span:nth-child(4) {
  height: 78%;
}

.process-launch i {
  position: absolute;
  right: 12%;
  bottom: 20px;
  left: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.process-launch .trend-line {
  position: absolute;
  z-index: 3;
  height: 1px;
  background: rgba(255, 255, 255, 0.62);
  transform-origin: left center;
}

.process-launch .trend-a {
  top: 67px;
  left: 23%;
  width: 29%;
  transform: rotate(-14deg);
}

.process-launch .trend-b {
  top: 58px;
  left: 50%;
  width: 31%;
  transform: rotate(-20deg);
}

.process-launch .trend-point {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: var(--deep);
}

.process-launch .point-a {
  top: 65px;
  left: 22%;
}

.process-launch .point-b {
  top: 55px;
  left: 49%;
}

.process-launch .point-c {
  top: 40px;
  left: 79%;
}

.studio {
  background: #eeece3;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
}

.studio-grid h2 {
  max-width: 580px;
}

.studio-lead {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

.studio-copy > p:not(.studio-lead) {
  color: var(--muted);
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 55px 0 0;
  border-top: 1px solid var(--line);
}

.studio-facts div {
  padding: 21px 15px 0 0;
}

.studio-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-facts dd {
  margin: 0;
  font-weight: 500;
}

.studio-photo {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.55fr);
  grid-template-rows: 500px;
}

.studio-photo figcaption {
  background: #e1e5da;
}

.contact {
  border-top: 1px solid var(--line);
  background: #e5e8df;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-intro h2 {
  margin-bottom: 30px;
}

.contact-intro > p:not(.section-label) {
  max-width: 480px;
  color: var(--muted);
}

.email-link {
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.inquiry-form {
  padding: 44px;
  border: 1px solid #c8ceca;
  background: #f8f7f1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 28px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9fa8a5;
  border-radius: 0;
  outline: none;
  background: transparent;
}

.inquiry-form input,
.inquiry-form select {
  height: 48px;
}

.inquiry-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px var(--blue);
}

.form-footer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.form-footer p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 58px 0 26px;
  color: var(--white);
  background: #11171b;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  padding-bottom: 68px;
}

.footer-top p {
  margin: 0;
  color: #a6b0b4;
}

.footer-brand .brand-mark span {
  background: var(--white);
}

.footer-brand .brand-mark span:last-child {
  background: #5f9cea;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #3c464b;
  color: #879397;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

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

@media (max-width: 920px) {
  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    touch-action: manipulation;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    padding: 34px 24px max(34px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-header.is-open {
    background: var(--paper);
    backdrop-filter: none;
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding: 10px 18px;
    border-bottom: 0;
    color: var(--white);
    font-size: 16px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-index {
    width: min(100%, 400px);
  }

  .split-intro,
  .section-heading,
  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-photo,
  .studio-photo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    overflow: visible;
  }

  .intro-photo img,
  .studio-photo img {
    aspect-ratio: 16 / 9;
  }

  .editorial-photo figcaption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .service-explorer {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tab {
    min-height: 78px;
    padding: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .service-tab:hover,
  .service-tab:focus-visible,
  .service-tab.is-active {
    padding-left: 16px;
  }

  .service-tab.is-active {
    box-shadow: inset 0 -3px var(--blue);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid #536169;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .contact-intro .email-link {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand-mark {
    transform: scale(0.88);
    transform-origin: left center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 57% center;
    opacity: 0.62;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(242, 240, 231, 0.9) 0%, rgba(242, 240, 231, 0.73) 45%, rgba(242, 240, 231, 0.98) 79%);
  }

  .hero-inner {
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.1rem, 14.5vw, 4.4rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-index {
    display: none;
  }

  .split-intro {
    gap: 26px;
  }

  .editorial-photo {
    width: 100%;
    margin-top: 48px;
  }

  .intro-photo img,
  .studio-photo img {
    aspect-ratio: 4 / 3;
  }

  .editorial-photo figcaption {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 16px;
  }

  .editorial-photo figcaption span:first-child {
    font-size: 19px;
  }

  .principle-strip {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .principle-strip > div,
  .principle-strip > div:not(:first-child) {
    min-height: 0;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .service-explorer {
    min-height: 0;
  }

  .service-tabs {
    grid-template-columns: repeat(4, 190px);
  }

  .service-panel {
    grid-template-rows: 270px auto;
  }

  .panel-visual {
    min-height: 270px;
  }

  .panel-copy {
    grid-template-columns: 1fr;
    padding: 30px 0 12px;
  }

  .panel-copy .panel-kicker,
  .panel-copy h3,
  .panel-copy > p:not(.panel-kicker),
  .panel-copy ul {
    grid-column: 1;
  }

  .panel-copy h3 {
    margin-bottom: 22px;
  }

  .desktop-device {
    top: 42px;
    left: 6%;
    width: 70%;
    height: 180px;
  }

  .mobile-device {
    right: 5%;
    bottom: 24px;
    height: 170px;
  }

  .system-node {
    width: 58px;
    height: 58px;
  }

  .system-hub {
    width: 92px;
    height: 92px;
  }

  .visual-automation {
    gap: 9px;
  }

  .visual-automation > i {
    width: 5%;
  }

  .flow-step {
    width: 74px;
    height: 74px;
  }

  .step-b {
    width: 92px;
    height: 92px;
  }

  .visual-internal {
    grid-template-columns: 70px 1fr;
    padding: 42px 6%;
  }

  .mini-table {
    display: none;
  }

  .possibility-list > a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 27px 0;
  }

  .circle-arrow {
    display: none;
  }

  .possibility-list p {
    font-size: 14px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #536169;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-visual {
    height: 132px;
    margin-top: 22px;
  }

  .process-copy {
    margin-top: 26px;
  }

  .studio-facts {
    grid-template-columns: 1fr;
  }

  .studio-facts div {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-facts dt {
    margin: 0;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer p {
    max-width: none;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    padding-bottom: 50px;
  }
}
