:root {
  --ink: #090b10;
  --ink-soft: #141922;
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #3157ff;
  --blue-dark: #183bd5;
  --blue-pale: #e8efff;
  --cyan: #7dd9ff;
  --mint: #a8f2d7;
  --lime: #c7f45b;
  --coral: #ff715f;
  --muted: #69717e;
  --line: rgba(9, 11, 16, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shell: 1320px;
  --gutter: 30px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

img,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

figure,
h1,
h2,
h3,
p,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

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

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 140px;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 150;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(calc(100% - 40px), 1380px);
  min-height: 66px;
  align-items: center;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(9, 11, 16, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(18, 28, 50, 0.08);
  transition: transform 0.45s ease, opacity 0.45s ease;
  transform: translateX(-50%);
}

.site-header.is-hidden {
  opacity: 0;
  transform: translate(-50%, -130%);
}

.brand {
  display: inline-flex;
  min-width: 205px;
  align-items: center;
  gap: 11px;
  font-size: 0.76rem;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
}

.brand > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand strong {
  font-weight: 700;
}

.brand small {
  color: var(--blue);
  font-size: 0.5rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  justify-self: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 14px 13px;
  color: #4f5866;
  font-size: 0.7rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 8px;
  left: 13px;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.header-cta,
.button,
.text-link,
.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.header-cta svg,
.button svg,
.text-link svg,
.contact-email svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover svg,
.button:hover svg,
.text-link:hover svg,
.contact-email:hover svg {
  transform: translate(3px, -3px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  position: absolute;
  width: 21px;
  height: 21px;
}

.menu-button svg:last-child,
.menu-button[aria-expanded="true"] svg:first-child {
  opacity: 0;
}

.menu-button[aria-expanded="true"] svg:last-child {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  align-content: center;
  padding: 100px 24px 40px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.mobile-menu[aria-hidden="false"] {
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line-light);
  font-size: 1.4rem;
}

.mobile-menu nav span,
.mobile-menu > a {
  color: var(--cyan);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.mobile-menu > a {
  margin-top: 36px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at var(--hero-shade-x, 50%) var(--hero-shade-y, 46%), rgba(82, 39, 255, 0.22) 0, rgba(126, 111, 255, 0.13) 18%, rgba(196, 210, 255, 0.08) 34%, transparent 62%);
  content: "";
  filter: blur(34px);
  pointer-events: none;
  transform: translateZ(0);
}

.hero-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  min-height: 100svh;
  padding-block: 112px 116px;
}

.hero-kicker {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(9, 11, 16, 0.18);
  color: rgba(9, 11, 16, 0.58);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5227ff;
  box-shadow: 0 0 0 6px rgba(82, 39, 255, 0.1), 0 0 18px rgba(82, 39, 255, 0.42);
}

.hero-copy {
  display: grid;
  align-self: center;
  justify-items: center;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-bottom: 18px;
  text-align: center;
}

.eyebrow,
.section-label {
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.section-label::before {
  width: 24px;
  height: 1px;
  flex: 0 0 24px;
  background: currentColor;
  content: "";
}

.hero h1 {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  grid-template-rows: auto auto;
  align-items: end;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(6.6rem, 7.7vw, 8.8rem);
  font-weight: 700;
  line-height: 0.74;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-wordmark-part {
  display: block;
  will-change: transform, opacity, filter;
}

.wordmark-prefix,
.wordmark-suffix {
  line-height: 0.78;
}

.wordmark-prefix {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  padding-right: 0.035em;
}

.wordmark-anchor {
  position: relative;
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #5227ff;
  font-size: 1.96em;
  font-weight: inherit;
  line-height: 0.7;
  text-shadow: 0 0.045em 0 rgba(82, 39, 255, 0.12);
}

.wordmark-anchor > span {
  position: relative;
  z-index: 1;
  display: block;
}

.u-impact {
  position: absolute;
  right: 8%;
  bottom: -4%;
  left: 8%;
  height: 8%;
  border: 2px solid rgba(82, 39, 255, 0.34);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.2);
}

.wordmark-suffix {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  padding-left: 0.025em;
}

.wordmark-tech {
  grid-row: 2;
  grid-column: 3;
  align-self: start;
  justify-self: start;
  color: #5227ff;
  padding-left: 0.025em;
  font-size: 0.94em;
  font-weight: 600;
  line-height: 0.78;
}

.title-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.title-word,
.word-token {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-body {
  max-width: 620px;
  margin: 0;
  color: rgba(9, 11, 16, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-foot {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(9, 11, 16, 0.16);
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 700;
}

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

.button-primary:hover {
  background: #5227ff;
  border-color: #5227ff;
}

.button-quiet {
  border-color: rgba(9, 11, 16, 0.24);
  background: rgba(247, 248, 251, 0.7);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  border-top: 1px solid rgba(9, 11, 16, 0.18);
  border-bottom: 1px solid rgba(9, 11, 16, 0.18);
  background: rgba(247, 248, 251, 0.58);
  backdrop-filter: blur(10px);
}

.hero-status > div,
.hero-status > a {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(9, 11, 16, 0.16);
}

.hero-status > a {
  justify-content: center;
  color: rgba(9, 11, 16, 0.76);
  font-family: "DM Mono", monospace;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.hero-status > a svg {
  width: 15px;
  height: 15px;
}

.hero-status > *:last-child {
  border-right: 0;
}

.hero-status strong {
  color: #5227ff;
  font-family: "DM Mono", monospace;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-status span {
  color: rgba(9, 11, 16, 0.64);
  font-size: 0.68rem;
}

.technology-loop {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.technology-track,
.technology-set {
  display: flex;
  width: max-content;
}

.technology-set {
  flex: 0 0 auto;
}

.technology-set span {
  display: inline-flex;
  min-height: 86px;
  align-items: center;
  gap: 13px;
  padding: 0 28px;
  border-right: 1px solid var(--line-light);
  font-size: 0.9rem;
  white-space: nowrap;
}

.technology-set svg {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.studio {
  background: var(--paper);
}

.studio-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 340px;
  align-items: start;
  gap: 54px;
}

.studio-heading h2,
.section-intro h2,
.architecture-heading h2,
.solutions-heading h2,
.technologies-heading h2,
.industries-copy h2,
.direction-grid > h2 {
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1;
}

.word-token {
  color: rgba(9, 11, 16, 0.22);
}

.studio-heading > p:last-child,
.section-intro > p:last-child,
.architecture-heading > p:last-child,
.solutions-heading > p:last-child,
.technologies-heading > p:last-child,
.industries-copy > p:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.studio-visual {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 680px;
  margin-top: 110px;
  overflow: hidden;
}

.studio-visual figure,
.studio-visual img {
  width: 100%;
  height: 100%;
}

.studio-visual figure {
  overflow: hidden;
}

.studio-visual img {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  will-change: transform;
}

.studio-manifesto {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px;
  background: var(--mint);
}

.studio-manifesto > span,
.studio-manifesto li {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.studio-manifesto strong {
  margin-top: 28px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.08;
}

.studio-manifesto ul {
  display: grid;
  gap: 11px;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid rgba(9, 11, 16, 0.26);
}

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

.section-intro {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 300px;
  gap: 54px;
}

.capabilities .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.service-explorer {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  margin-top: 100px;
}

.service-tabs {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 122px);
  overflow-y: auto;
  border: 1px solid var(--line-light);
  scrollbar-color: rgba(125, 217, 255, 0.55) transparent;
  scrollbar-width: thin;
}

.service-tabs button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  width: 100%;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-tabs button:hover,
.service-tabs button.active {
  padding-left: 22px;
  background: var(--white);
  color: var(--ink);
}

.service-tabs button > svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.service-tabs button.active > svg,
.service-tabs button:hover > svg {
  color: var(--blue);
}

.service-tabs button > strong {
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.service-tabs button > svg:last-child {
  width: 15px;
  height: 15px;
  justify-self: end;
  transition: transform 0.3s ease;
}

.service-tabs button.active > svg:last-child,
.service-tabs button:hover > svg:last-child {
  transform: translateX(4px);
}

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

.service-panel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 56px;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #10141d;
  background-size: 52px 52px;
}

.service-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--blue);
  content: "";
  transform: scaleY(0.24);
  transform-origin: top;
}

.service-panel header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 22px;
}

.service-panel header > span {
  color: var(--cyan);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.service-panel header > svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 52px;
  height: 52px;
  color: var(--cyan);
}

.service-panel h3 {
  grid-column: 1 / -1;
  margin-top: 70px;
  font-size: 6.2rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-panel header p {
  grid-column: 1 / -1;
  max-width: 620px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-panel li {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.service-panel li::before {
  width: 6px;
  height: 6px;
  margin-right: 12px;
  background: var(--cyan);
  content: "";
}

.architecture {
  position: relative;
  overflow: hidden;
  padding-block: 160px 210px;
  background: #070a10;
  color: var(--white);
}

.architecture-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 217, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 217, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  pointer-events: none;
}

.architecture-heading {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.architecture .section-label {
  margin-top: 64px;
  color: var(--cyan);
}

.architecture-status {
  display: grid;
  grid-template-columns: 12px auto auto;
  min-width: 360px;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(11, 15, 23, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  text-align: left;
  backdrop-filter: blur(14px);
}

.architecture-status > i,
.architecture-complete > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(125, 217, 255, 0.1), 0 0 24px rgba(125, 217, 255, 0.65);
}

.architecture-status > span,
.architecture-complete > span {
  display: grid;
  gap: 2px;
}

.architecture-status small,
.architecture-complete small,
.layer-telemetry small,
.layer-telemetry b {
  font-family: "DM Mono", monospace;
  font-size: 0.54rem;
  font-weight: 500;
  text-transform: uppercase;
}

.architecture-status small,
.architecture-complete small {
  color: rgba(255, 255, 255, 0.44);
}

.architecture-status strong,
.architecture-complete strong {
  font-size: 0.76rem;
  font-weight: 600;
}

.architecture-status > b {
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  font-weight: 500;
}

.architecture-status > b span {
  color: var(--cyan);
}

.architecture-heading h2 {
  max-width: 1120px;
  margin-top: 30px;
  font-size: 7rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.architecture-heading h2 strong {
  display: block;
  color: #7196ff;
  font-weight: inherit;
}

.architecture-heading > p:last-child {
  max-width: 660px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.75;
}

.text-link {
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
}

.architecture-system {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  grid-template-rows: repeat(6, minmax(260px, auto));
  row-gap: 68px;
  margin-top: 130px;
}

.architecture-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.architecture-spine::before,
.architecture-spine::after {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(125, 217, 255, 0.65);
  border-radius: 50%;
  background: #070a10;
  content: "";
  transform: translateX(-50%);
}

.architecture-spine::before {
  top: 0;
}

.architecture-spine::after {
  bottom: 0;
}

.architecture-spine > i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(125, 217, 255, 0.75);
  transform: scaleY(0);
  transform-origin: top;
}

.layer {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 260px;
  align-items: start;
  gap: 26px 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(12, 17, 26, 0.9);
  backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.layer:nth-of-type(odd) {
  grid-column: 1;
}

.layer:nth-of-type(even) {
  grid-column: 3;
}

.layer:nth-of-type(1) { grid-row: 1; }
.layer:nth-of-type(2) { grid-row: 2; }
.layer:nth-of-type(3) { grid-row: 3; }
.layer:nth-of-type(4) { grid-row: 4; }
.layer:nth-of-type(5) { grid-row: 5; }
.layer:nth-of-type(6) { grid-row: 6; }

.layer::before {
  position: absolute;
  top: 50%;
  width: 60px;
  border-top: 1px solid rgba(125, 217, 255, 0.34);
  content: "";
}

.layer::after {
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #070a10;
  box-shadow: 0 0 0 6px rgba(125, 217, 255, 0.08);
  content: "";
}

.layer:nth-of-type(odd)::before { right: -60px; }
.layer:nth-of-type(odd)::after { right: -67px; }
.layer:nth-of-type(even)::before { left: -60px; }
.layer:nth-of-type(even)::after { left: -67px; }

.layer:hover,
.layer:focus-visible,
.layer.active {
  border-color: rgba(125, 217, 255, 0.75);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.layer > span {
  grid-column: 1 / -1;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  opacity: 0.58;
}

.layer > svg {
  grid-row: 2;
  grid-column: 1;
  width: 38px;
  height: 38px;
  color: var(--cyan);
}

.layer:hover > svg,
.layer:focus-visible > svg,
.layer.active > svg {
  color: var(--blue);
}

.layer > div:not(.layer-telemetry) {
  grid-row: 2;
  grid-column: 2;
}

.layer h3 {
  font-size: 2rem;
  font-weight: 600;
}

.layer p {
  max-width: 440px;
  margin-top: 10px;
  color: currentColor;
  font-size: 0.8rem;
  line-height: 1.65;
  opacity: 0.68;
}

.layer-telemetry {
  grid-row: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(70px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  opacity: 0.5;
}

.layer-telemetry > span {
  height: 2px;
  overflow: hidden;
  background: rgba(125, 217, 255, 0.18);
}

.layer-telemetry > span i {
  display: block;
  width: var(--signal);
  height: 100%;
  background: var(--cyan);
}

.layer-telemetry > b {
  font-family: "DM Mono", monospace;
  font-size: 0.56rem;
  font-weight: 500;
}

.architecture-complete {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  max-width: 860px;
  min-height: 88px;
  align-items: center;
  gap: 18px;
  margin-top: 120px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(12, 17, 26, 0.92);
}

.architecture-complete .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.delivery {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding-top: 188px;
  border-radius: 48px 48px 0 0;
  background: var(--white);
}

.delivery-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 54px;
}

.delivery-heading h2 {
  max-width: 920px;
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1.02;
}

.delivery-rail {
  position: relative;
  margin-top: 100px;
  border-block: 1px solid var(--line);
}

.delivery-progress {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.delivery-steps article {
  min-height: 410px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.delivery-steps article:first-child {
  border-left: 1px solid var(--line);
}

.delivery-steps article > span {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.delivery-steps article > svg {
  display: block;
  width: 38px;
  height: 38px;
  margin-top: 22px;
  color: var(--blue);
}

.delivery-steps h3 {
  margin-top: 54px;
  font-size: 2rem;
  font-weight: 600;
}

.delivery-steps p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.solutions {
  overflow: hidden;
  background: var(--paper);
}

.solutions-heading,
.technologies-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 330px;
  gap: 54px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 245px;
  align-items: start;
  gap: 18px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-grid article::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.28), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.solution-grid article:hover {
  z-index: 1;
  background: var(--blue);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(36, 67, 170, 0.18);
}

.solution-grid article:hover::after {
  opacity: 1;
}

.solution-grid article > * {
  position: relative;
  z-index: 1;
}

.solution-grid article > span {
  grid-row: 1 / 3;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.solution-grid article > svg {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.solution-grid article:hover > svg {
  color: var(--cyan);
}

.solution-grid h3 {
  max-width: 470px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.solution-grid p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.solution-grid article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.technologies {
  position: relative;
  overflow: hidden;
  background: var(--blue-pale);
}

.technology-groups {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid rgba(24, 59, 213, 0.22);
  border-left: 1px solid rgba(24, 59, 213, 0.22);
}

.technology-groups article {
  min-height: 390px;
  padding: 30px 24px;
  border-right: 1px solid rgba(24, 59, 213, 0.22);
  border-bottom: 1px solid rgba(24, 59, 213, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

.technology-groups article > span {
  color: var(--blue-dark);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.technology-groups ul {
  display: grid;
  margin-top: 70px;
}

.technology-groups li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-block: 13px;
  border-bottom: 1px solid rgba(24, 59, 213, 0.16);
  font-size: 0.88rem;
  font-weight: 600;
}

.technology-groups li::before {
  display: none;
}

.technology-groups li > i {
  width: 27px;
  min-width: 27px;
  color: var(--blue-dark);
  font-size: 25px;
  line-height: 1;
  text-align: center;
}

.technology-groups li > span {
  min-width: 0;
  overflow-wrap: break-word;
}

.technology-code {
  display: flex;
  width: max-content;
  margin-top: 72px;
  color: rgba(24, 59, 213, 0.34);
  font-family: "DM Mono", monospace;
  font-size: 5.4rem;
  line-height: 1;
  white-space: nowrap;
}

.technology-code span {
  padding-right: 0.7em;
}

.industries {
  background: var(--paper);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
}

.industries-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.industries-copy h2 {
  margin-top: 28px;
  font-size: 4.6rem;
}

.industries-copy > p:last-child {
  max-width: 420px;
  margin-top: 30px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.industry-tabs button {
  min-height: 54px;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.industry-tabs button:last-child {
  border-right: 0;
}

.industry-tabs button:hover,
.industry-tabs button.active {
  background: var(--blue);
  color: var(--white);
}

.industry-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.industry-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 168px;
  align-items: center;
  gap: 8px 18px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.industry-list article > span,
.industry-list article > svg {
  grid-row: 1 / 3;
}

.industry-list article > span {
  align-self: start;
  padding-top: 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.industry-list article > svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.industry-list h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.industry-list p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.direction {
  background: var(--mint);
}

.direction-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
}

.direction-grid > h2 {
  max-width: 1000px;
}

.direction-copy {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(9, 11, 16, 0.28);
}

.direction-copy article {
  display: grid;
  gap: 20px;
}

.direction-copy span {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.direction-copy p {
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(141, 118, 255, 0.66) 0, rgba(174, 163, 255, 0.48) 24%, rgba(221, 225, 255, 0.76) 58%, rgba(239, 243, 255, 0.98) 100%),
    #e8edff;
  color: var(--ink);
}

.contact::before,
.contact::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.contact::before {
  inset: 0;
  background: radial-gradient(circle at center, transparent 38%, rgba(247, 249, 255, 0.48) 100%);
}

.contact::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.22));
}

.contact-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  will-change: transform;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 110px;
  text-align: center;
}

.contact .section-label {
  color: #3e2bda;
}

.contact h2 {
  max-width: 1100px;
  margin-top: 32px;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 0.94;
}

.contact-inner > p:nth-of-type(2) {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(9, 11, 16, 0.66);
  font-size: 0.9rem;
}

.contact-form {
  width: min(100%, 880px);
  margin-top: 54px;
}

.contact-form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 88px;
  align-items: center;
  padding: 10px 12px 10px 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(47, 35, 140, 0.16);
}

.contact-control > svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.contact-control input {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
}

.contact-control input::placeholder {
  color: #8a93a2;
}

.contact-control input[aria-invalid="true"] {
  color: #b22b20;
}

.contact-control button {
  display: inline-flex;
  width: 190px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-control button svg {
  width: 16px;
  height: 16px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.72rem;
}

.contact-email {
  margin-top: 14px;
  padding: 12px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.action-pulse {
  position: absolute;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.magnetic {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 108px 46px;
  }

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

  .studio-heading,
  .section-intro {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .studio-heading > p:last-child,
  .section-intro > p:last-child {
    grid-column: 2;
  }

  .studio-heading h2,
  .section-intro h2,
  .direction-grid > h2 {
    font-size: 4.3rem;
  }

  .industries-layout {
    gap: 64px;
  }

  .architecture-heading h2 {
    font-size: 5.35rem;
  }

  .architecture-system {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  }

  .layer {
    padding: 24px;
  }

}

@media (max-width: 820px) {
  :root {
    --gutter: 18px;
  }

  .section {
    padding-block: 100px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 18px);
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout {
    gap: 26px;
    padding-block: 92px 24px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-body {
    max-width: 520px;
    font-size: 0.86rem;
  }

  .technology-set span {
    min-height: 72px;
    padding-inline: 22px;
    font-size: 0.78rem;
  }

  .studio-heading,
  .section-intro,
  .delivery-heading,
  .direction-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-heading > p:last-child,
  .section-intro > p:last-child,
  .direction-copy {
    grid-column: auto;
  }

  .studio-heading h2,
  .section-intro h2,
  .industries-copy h2,
  .direction-grid > h2 {
    font-size: 3.7rem;
  }

  .studio-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 70px;
  }

  .studio-visual figure {
    height: 62vh;
    min-height: 440px;
  }

  .studio-manifesto {
    min-height: 440px;
    padding: 36px;
  }

  .industries-layout {
    grid-template-columns: 1fr;
  }

  .industries-copy {
    position: relative;
    top: auto;
  }

  .architecture {
    padding-block: 120px 154px;
  }

  .architecture-heading h2 {
    font-size: 4.35rem;
  }

  .architecture-system {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: none;
    row-gap: 34px;
    margin-top: 86px;
  }

  .architecture-spine {
    left: 24px;
  }

  .architecture-system .layer {
    grid-row: auto;
    grid-column: 2;
  }

  .layer:nth-of-type(odd)::before,
  .layer:nth-of-type(even)::before {
    right: auto;
    left: -24px;
    width: 24px;
  }

  .layer:nth-of-type(odd)::after,
  .layer:nth-of-type(even)::after {
    right: auto;
    left: -31px;
  }

  .architecture-complete {
    grid-template-columns: 12px minmax(0, 1fr);
    margin-top: 86px;
  }

  .architecture-complete .text-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .delivery {
    margin-top: -32px;
    padding-top: 132px;
    border-radius: 32px 32px 0 0;
  }

  .delivery-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-steps article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .direction-copy {
    grid-template-columns: 1fr;
  }

  .contact h2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.95rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.62rem;
  }

  .studio-heading h2,
  .section-intro h2,
  .industries-copy h2,
  .direction-grid > h2 {
    font-size: 2.85rem;
  }

  .studio-manifesto {
    padding: 28px;
  }

  .studio-manifesto strong {
    font-size: 2.25rem;
  }

  .architecture {
    padding-block: 96px 126px;
  }

  .architecture-grid {
    background-size: 48px 48px;
  }

  .architecture-status {
    grid-template-columns: 12px minmax(0, 1fr) auto;
    width: 100%;
    min-width: 0;
  }

  .architecture .section-label {
    margin-top: 48px;
  }

  .architecture-heading h2 {
    font-size: 3.1rem;
  }

  .architecture-heading > p:last-child {
    font-size: 0.8rem;
  }

  .architecture-system {
    grid-template-columns: 36px minmax(0, 1fr);
    margin-top: 68px;
  }

  .architecture-spine {
    left: 18px;
  }

  .layer {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 230px;
    gap: 20px 14px;
    padding: 22px 18px;
  }

  .layer:nth-of-type(odd)::before,
  .layer:nth-of-type(even)::before {
    left: -18px;
    width: 18px;
  }

  .layer:nth-of-type(odd)::after,
  .layer:nth-of-type(even)::after {
    left: -25px;
  }

  .layer h3 {
    font-size: 1.55rem;
  }

  .layer-telemetry {
    grid-template-columns: 1fr auto;
  }

  .layer-telemetry > span {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .layer:hover,
  .layer:focus-visible,
  .layer.active {
    transform: none;
  }

  .delivery-heading h2 {
    font-size: 2.85rem;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps article,
  .delivery-steps article:nth-child(3) {
    min-height: 320px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .delivery-steps article > svg {
    margin-top: 46px;
  }

  .delivery-steps h3 {
    margin-top: 42px;
  }

  .industry-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-tabs button:nth-child(2) {
    border-right: 0;
  }

  .industry-tabs button:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .industry-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 20px 14px;
  }

  .industry-list h3 {
    font-size: 1.08rem;
  }

  .direction-copy p {
    font-size: 1.08rem;
  }

  .contact h2 {
    font-size: 3rem;
  }

  .contact-control {
    grid-template-columns: auto 1fr;
    padding: 10px 12px 10px 18px;
  }

  .contact-control button {
    width: 100%;
    grid-column: 1 / -1;
  }

}

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

  .contact-field {
    opacity: 0.55;
  }

  .word-token,
  .title-word,
  [data-reveal],
  [data-hero-reveal] {
    color: inherit !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

html.reduce-motion .word-token,
html.reduce-motion .title-word,
html.reduce-motion [data-reveal],
html.reduce-motion [data-hero-reveal] {
  color: inherit !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

/* Final responsive pass for the infrastructure edition. */
h1,
h2,
h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 112px 116px;
  }

  .hero h1 {
    font-size: 5.9rem;
  }

  .hero-foot {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .service-explorer {
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 24px;
  }

  .service-panel {
    min-height: 640px;
    padding: 44px;
  }

  .service-panel h3 {
    font-size: 4.8rem;
  }

  .solutions-heading,
  .technologies-heading {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .solutions-heading > p:last-child,
  .technologies-heading > p:last-child {
    grid-column: 2;
  }

  .solutions-heading h2,
  .technologies-heading h2 {
    font-size: 4.3rem;
  }

  .technology-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 820px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-content: stretch;
    min-height: 820px;
    padding-block: 96px 132px;
  }

  .hero-copy {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 4.8rem;
    line-height: 0.82;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 0;
  }

  .hero-body {
    max-width: 510px;
    font-size: 0.9rem;
  }

  .hero-status {
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  }

  .hero-status > div,
  .hero-status > a {
    min-height: 64px;
    gap: 9px;
    padding-inline: 14px;
  }

  .hero-status > div:nth-child(3) {
    display: none;
  }

  .hero-status strong {
    font-size: 1rem;
  }

  .hero-status span {
    font-size: 0.58rem;
  }

  .service-explorer {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .service-tabs {
    position: relative;
    top: auto;
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tabs button {
    flex: 0 0 235px;
    min-height: 62px;
    border: 1px solid var(--line-light);
    border-right: 0;
    scroll-snap-align: start;
  }

  .service-tabs button:last-child {
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .service-panel {
    min-height: 570px;
    padding: 36px;
  }

  .service-panel h3 {
    margin-top: 46px;
    font-size: 3.8rem;
  }

  .service-panel ul {
    margin-top: 50px;
  }

  .solutions-heading,
  .technologies-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solutions-heading > p:last-child,
  .technologies-heading > p:last-child {
    grid-column: auto;
  }

  .solutions-heading h2,
  .technologies-heading h2 {
    font-size: 3.7rem;
  }

  .solution-grid {
    margin-top: 64px;
  }

  .technology-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
  }

  .technology-groups article {
    min-height: 330px;
  }

  .technology-code {
    margin-top: 54px;
    font-size: 3.5rem;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 780px;
  }

  .hero-layout {
    min-height: 780px;
    padding-block: 90px 118px;
  }

  .hero-kicker {
    justify-content: flex-end;
  }

  .hero-kicker > span:first-child {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 0.86;
  }

  .hero-body {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
  }

  .hero .button {
    width: 100%;
  }

  .hero-status {
    grid-template-columns: repeat(2, minmax(0, 1fr)) 52px;
  }

  .hero-status > div:nth-child(3) {
    display: none;
  }

  .hero-status > div:nth-child(2) {
    border-right: 1px solid rgba(9, 11, 16, 0.16);
  }

  .hero-status > a {
    display: flex;
    min-width: 52px;
    padding: 0;
  }

  .hero-status > a span {
    display: none;
  }

  .hero-waves {
    opacity: 0.72;
  }

  .service-tabs button {
    flex-basis: 210px;
  }

  .service-panel {
    min-height: 0;
    padding: 28px 22px 32px;
  }

  .service-panel header {
    gap: 12px;
  }

  .service-panel header > svg {
    width: 38px;
    height: 38px;
  }

  .service-panel h3 {
    margin-top: 38px;
    font-size: 2.7rem;
    line-height: 1.06;
  }

  .service-panel header p {
    font-size: 0.78rem;
  }

  .service-panel ul {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-panel li {
    min-height: 62px;
    padding-inline: 16px;
    font-size: 0.7rem;
  }

  .solutions-heading h2,
  .technologies-heading h2 {
    font-size: 2.85rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid article {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 210px;
    padding: 26px 20px;
  }

  .solution-grid h3 {
    font-size: 1.25rem;
  }

  .technology-groups {
    grid-template-columns: 1fr;
  }

  .technology-groups article {
    min-height: 0;
    padding: 26px 22px;
  }

  .technology-groups ul {
    margin-top: 34px;
  }

  .technology-code {
    font-size: 2.2rem;
  }
}

/* Layout guarantees for real content at every breakpoint. */
.hero-copy,
.hero-foot,
.studio-heading > *,
.section-intro > *,
.service-explorer > *,
.service-panel header > *,
.architecture-heading > *,
.layer > *,
.delivery-heading > *,
.solutions-heading > *,
.technologies-heading > *,
.industries-layout > *,
.industry-list article > *,
.direction-grid > *,
.contact-inner > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
button,
a {
  max-width: 100%;
  overflow-wrap: break-word;
}

.service-tabs button > svg,
.service-panel header > svg,
.solution-grid article > svg,
.industry-list article > svg,
.technology-groups li > i {
  flex-shrink: 0;
}

@media (max-width: 1120px) {
  .studio-heading h2,
  .section-intro h2,
  .solutions-heading h2,
  .technologies-heading h2,
  .direction-grid > h2 {
    font-size: 4.15rem;
  }
}

@media (max-width: 820px) {
  .studio-heading h2,
  .section-intro h2,
  .solutions-heading h2,
  .technologies-heading h2,
  .industries-copy h2,
  .direction-grid > h2 {
    font-size: 3.55rem;
  }

  .delivery-steps article > svg {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    justify-items: stretch;
  }

  .hero-copy > .eyebrow,
  .hero-copy > .hero-wordmark,
  .hero-foot {
    justify-self: center;
  }

  .hero-foot {
    width: 100%;
  }

  .studio-heading h2,
  .section-intro h2,
  .solutions-heading h2,
  .technologies-heading h2,
  .industries-copy h2,
  .direction-grid > h2,
  .delivery-heading h2 {
    font-size: 2.65rem;
  }

  .architecture-heading h2,
  .contact h2 {
    font-size: 2.8rem;
  }

  .contact-inner {
    padding-block: 88px;
  }

  .contact-control {
    min-height: 0;
  }

  .contact-control input {
    min-width: 0;
    font-size: 0.9rem;
  }

  .contact-control button {
    min-height: 58px;
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 14px;
  }

  .site-header {
    width: calc(100% - 12px);
    padding-left: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .hero-status span {
    display: none;
  }

  .studio-heading h2,
  .section-intro h2,
  .solutions-heading h2,
  .technologies-heading h2,
  .industries-copy h2,
  .direction-grid > h2,
  .delivery-heading h2,
  .architecture-heading h2,
  .contact h2 {
    font-size: 2.35rem;
  }

  .service-panel h3 {
    font-size: 2.25rem;
  }
}
