:root {
  color-scheme: light;
  --bg: #f7f7f3;
  --surface: #ffffff;
  --surface-subtle: #f0f0eb;
  --surface-raised: #ffffff;
  --ink: #11110f;
  --ink-soft: #575751;
  --ink-faint: #85857d;
  --line: #dcdcd5;
  --line-strong: #c6c6bd;
  --accent: #f47721;
  --accent-strong: #de5f0d;
  --accent-soft: #fff0e5;
  --dark: #0c0c0b;
  --light: #fdfcf9;
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.08);
  --shadow-small: 0 12px 30px rgba(17, 17, 15, 0.06);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0a09;
  --surface: #11110f;
  --surface-subtle: #171715;
  --surface-raised: #141412;
  --ink: #f6f5f1;
  --ink-soft: #b7b7af;
  --ink-faint: #77776f;
  --line: #2a2a26;
  --line-strong: #3a3a35;
  --accent: #ff7a21;
  --accent-strong: #ff8c40;
  --accent-soft: #2a170d;
  --dark: #050505;
  --light: #f8f7f3;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-small: 0 14px 35px rgba(0, 0, 0, 0.28);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: #11110f;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(17, 17, 15, 0.04);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand-crop {
  display: block;
  width: 164px;
  line-height: 0;
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.brand:hover .brand-image,
.brand:focus-visible .brand-image {
  opacity: 1;
}

.brand-image-dark {
  display: none;
}

html[data-theme="dark"] .brand-image-light {
  display: none;
}

html[data-theme="dark"] .brand-image-dark {
  display: block;
}

.footer-brand .brand-crop {
  width: 148px;
}

.footer-brand .brand-image {
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.desktop-nav a,
.footer-main nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.desktop-nav a::after,
.footer-main nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.menu-toggle {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: opacity 180ms ease, transform 250ms var(--ease);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-40deg) scale(0.6);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(40deg) scale(0.6);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 200ms var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button-dark {
  background: var(--ink);
  color: var(--bg);
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 24%, transparent);
  color: #15120f;
}

.button-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 30%, transparent);
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
}

.button-light {
  min-width: min(100%, 320px);
  background: var(--light);
  color: #11110f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 720;
}

.text-link span {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 82px) 0 36px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-position: center top;
  background-size: 78px 78px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 38%, color-mix(in srgb, var(--bg) 15%, transparent) 0, var(--bg) 58%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 8%;
  right: -9%;
  width: 42vw;
  height: 42vw;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 208px);
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.hero-copy {
  padding-block: 30px;
}

.eyebrow,
.section-kicker,
.callout-label {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-mark {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 26px;
  font-size: clamp(3.25rem, 6.25vw, 6.25rem);
  font-weight: 560;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.hero h1 span {
  color: var(--ink-soft);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.integration-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.integration-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #fff 40%, transparent);
  content: "";
  pointer-events: none;
}

.visual-topline {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #51a86a;
  box-shadow: 0 0 0 4px color-mix(in srgb, #51a86a 15%, transparent);
}

.network-map {
  position: relative;
  min-height: 390px;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--accent) 7%, transparent), transparent 38%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--line-strong);
  stroke-dasharray: 4 6;
  stroke-width: 1;
}

.network-lines circle {
  stroke: color-mix(in srgb, var(--accent) 45%, var(--line));
  stroke-dasharray: 2 8;
}

.network-node {
  position: absolute;
  z-index: 2;
  width: 120px;
  min-height: 70px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-small);
}

.network-node::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.network-node strong,
.network-node small {
  display: block;
}

.network-node strong {
  margin-top: 8px;
  font-size: 0.74rem;
  line-height: 1.2;
}

.network-node small,
.node-index {
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.node-ai {
  top: 45px;
  left: 38px;
}

.node-xr {
  top: 45px;
  right: 38px;
}

.node-creative {
  bottom: 42px;
  left: 38px;
}

.node-led {
  right: 38px;
  bottom: 42px;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 130px;
  height: 130px;
  padding: 21px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, var(--line));
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--surface) 80%, transparent), 0 18px 35px rgba(0, 0, 0, 0.16);
  color: var(--bg);
  place-content: center;
  transform: translate(-50%, -50%);
}

.network-core::after {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  content: "";
}

.network-core span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.network-core strong {
  margin-top: 5px;
  font-size: 0.88rem;
  line-height: 1.25;
}

.visual-process {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-process i {
  width: 18px;
  height: 1px;
  background: var(--line-strong);
}

.hero-rail {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.hero-rail > p {
  flex: 0 0 210px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.rail-items {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rail-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 680;
}

.rail-items i {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.61rem;
  font-style: normal;
}

.section-kicker {
  gap: 16px;
  margin-bottom: 44px;
}

.section-kicker::after {
  width: 62px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.section-kicker span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 500;
}

.section-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.section-summary {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading-row,
.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.intro {
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 90px;
}

.intro-copy p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.value-card {
  min-height: 260px;
  padding: 36px 34px 34px 0;
}

.value-card + .value-card {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.value-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  place-items: center;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value-card h3 {
  margin: 46px 0 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.value-card p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.solutions {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.solutions::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--line-strong) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.solutions > .shell {
  position: relative;
}

.solutions-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 720px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface-raised);
  box-shadow: 0 1px 0 color-mix(in srgb, #fff 40%, transparent) inset;
  transition: border-color 240ms ease, transform 300ms var(--ease), box-shadow 240ms ease;
}

.solution-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 32%, transparent 32%);
  content: "";
}

.solution-card::after {
  position: absolute;
  top: 104px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.solution-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.solution-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-category {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.solution-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 56px 0 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  place-items: center;
}

.solution-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1;
}

.accent-plus {
  color: var(--accent);
}

.solution-intro {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.solution-list-block {
  margin: 34px 0 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.list-label,
.included-services > span {
  display: block;
  margin-bottom: 15px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solution-list-block ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.solution-list-block li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.solution-list-block li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  content: "";
}

.compact-list ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.included-services {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-chips em {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-subtle);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1;
}

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

.service-bento {
  display: grid;
  margin-top: 72px;
  grid-auto-rows: minmax(260px, auto);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface-raised);
  transition: border-color 200ms ease, transform 260ms var(--ease);
}

.bento-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.bento-large {
  grid-column: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-index {
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.bento-icon {
  width: 36px;
  height: 36px;
  margin: 20px 0 28px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.bento-card h3 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.bento-card p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.studios-callout {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-top: 20px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--bg);
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}

.studios-callout::before {
  position: absolute;
  top: -150px;
  right: 15%;
  width: 360px;
  height: 360px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: 50%;
  content: "";
}

.studios-callout::after {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  content: "";
}

.studios-copy,
.studios-services {
  position: relative;
  z-index: 1;
}

.callout-label {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}

.studios-copy h3 {
  margin: 24px 0 16px;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.studios-copy p {
  max-width: 570px;
  margin: 0;
  color: color-mix(in srgb, var(--bg) 68%, transparent);
  font-size: 0.95rem;
}

.studios-services {
  display: grid;
  align-content: center;
}

.studios-services span {
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  color: color-mix(in srgb, var(--bg) 82%, transparent);
  font-size: 0.82rem;
}

.studios-services span::before {
  margin-right: 13px;
  color: var(--accent);
  content: "+";
}

.approach {
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 0.75fr);
  align-items: start;
  gap: clamp(70px, 11vw, 150px);
}

.approach-sticky {
  position: sticky;
  top: calc(var(--header-height) + 54px);
}

.approach-sticky .section-summary {
  margin: 28px 0 34px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process-item {
  display: grid;
  min-height: 168px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr;
  gap: 20px;
}

.process-item > span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 590;
  letter-spacing: -0.03em;
}

.process-item p {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.why-fuse {
  border-top: 1px solid var(--line);
}

.difference-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.difference-card {
  min-height: 330px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease;
}

.difference-card:hover {
  background: var(--surface-subtle);
}

.difference-card > span {
  display: block;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.66rem;
}

.difference-card h3 {
  margin: 112px 0 16px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.difference-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.outcome-statement {
  display: grid;
  margin-top: 20px;
  padding: 32px 34px;
  border-radius: var(--radius-medium);
  background: var(--ink);
  color: var(--bg);
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 40px;
}

.outcome-statement span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-statement p {
  max-width: 790px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.contact {
  padding-top: 40px;
}

.contact-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  align-items: end;
  padding: clamp(40px, 6vw, 76px);
  border-radius: var(--radius-large);
  background: #0a0a09;
  color: #f7f6f2;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.6fr);
  gap: 70px;
}

.contact-grid-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.contact-panel::before {
  position: absolute;
  top: -250px;
  right: -60px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(244, 119, 33, 0.3);
  border-radius: 50%;
  content: "";
}

.contact-panel::after {
  position: absolute;
  top: 58px;
  right: 74px;
  width: 11px;
  height: 11px;
  background: var(--accent);
  box-shadow: -20px 0 0 rgba(244, 119, 33, 0.35), 0 20px 0 rgba(244, 119, 33, 0.35);
  content: "";
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: rgba(247, 246, 242, 0.62);
}

.contact-copy h2 {
  margin: 28px 0 24px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(247, 246, 242, 0.63);
  font-size: 1rem;
}

.contact-actions {
  display: grid;
  gap: 34px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-meta div {
  display: grid;
  gap: 5px;
}

.contact-meta span {
  color: rgba(247, 246, 242, 0.42);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-meta a {
  font-size: 0.78rem;
}

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

.footer-main {
  display: grid;
  min-height: 140px;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 190px 1fr auto;
  gap: 30px;
}

.footer-main p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-main nav {
  display: flex;
  gap: 28px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.reveal[data-delay="3"] {
  transition-delay: 260ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle span {
    position: absolute;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms var(--ease), top 220ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-bottom: 1px solid transparent;
    background: var(--bg);
    opacity: 0;
    transition: max-height 360ms var(--ease), opacity 220ms ease, padding 360ms var(--ease), border-color 220ms ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100svh - var(--header-height));
    padding: 20px 20px 34px;
    border-color: var(--line);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    font-weight: 620;
  }

  .mobile-menu a:last-child {
    margin-top: 14px;
    padding: 16px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .integration-visual {
    width: min(100%, 700px);
    justify-self: center;
  }

  .hero-rail {
    margin-top: 70px;
    align-items: flex-start;
  }

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

  .section-heading-row,
  .services-heading,
  .intro-grid {
    gap: 56px;
  }

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

  .solution-card {
    min-height: 660px;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: auto;
  }

  .approach-grid {
    gap: 70px;
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 72px;
    --radius-large: 22px;
  }

  .section {
    padding-block: 86px;
  }

  .brand-crop {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
    background-size: 54px 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.2vw, 5rem);
  }

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

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

  .integration-visual {
    border-radius: 18px;
  }

  .network-map {
    min-height: 380px;
  }

  .network-node {
    width: 108px;
  }

  .node-ai,
  .node-creative {
    left: 16px;
  }

  .node-xr,
  .node-led {
    right: 16px;
  }

  .network-core {
    width: 116px;
    height: 116px;
  }

  .visual-process {
    gap: 6px;
    font-size: 0.52rem;
  }

  .visual-process i {
    width: 9px;
  }

  .hero-rail {
    display: block;
  }

  .hero-rail > p {
    margin-bottom: 26px;
  }

  .rail-items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-kicker {
    margin-bottom: 34px;
  }

  .section-heading-row,
  .services-heading,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section-summary {
    font-size: 0.94rem;
  }

  .value-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
    padding: 30px 0;
  }

  .value-card + .value-card {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-card h3 {
    margin-top: 26px;
  }

  .solutions-grid {
    margin-top: 50px;
  }

  .solution-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .solution-card::after {
    width: 160px;
    height: 160px;
  }

  .solution-icon {
    width: 62px;
    height: 62px;
    margin: 42px 0 26px;
  }

  .solution-icon svg {
    width: 36px;
    height: 36px;
  }

  .solution-card h3 {
    font-size: 2.3rem;
  }

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

  .included-services {
    margin-top: 32px;
  }

  .service-bento {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .studios-callout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .approach-sticky {
    position: static;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
  }

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

  .difference-card {
    min-height: 260px;
  }

  .difference-card h3 {
    margin-top: 70px;
  }

  .outcome-statement {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }

  .contact {
    padding-top: 10px;
  }

  .contact-panel {
    width: calc(100% - 16px);
    min-height: 590px;
    padding: 36px 26px;
    gap: 48px;
  }

  .contact-copy h2 {
    font-size: clamp(2.7rem, 13.5vw, 4.3rem);
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .footer-main {
    min-height: 250px;
    align-content: center;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
}

@media (max-width: 390px) {
  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .brand-crop {
    width: 126px;
  }

  .network-node {
    width: 96px;
    padding-inline: 9px;
  }

  .network-node strong {
    font-size: 0.66rem;
  }

  .network-core {
    width: 104px;
    height: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product navigation and three-deck homepage */

.network-map .node-creative {
  right: auto;
  bottom: 34px;
  left: 38px;
  transform: none;
}

.product-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: color-mix(in srgb, var(--surface-raised) 92%, transparent);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.four-product-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-tabs a {
  position: relative;
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 22px 26px 20px 54px;
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: background-color 200ms ease, color 200ms ease;
}

.product-tabs a:last-child {
  border-right: 0;
}

.product-tabs a:hover,
.product-tabs a:focus-visible,
.product-tabs a[aria-current="page"] {
  background: var(--ink);
  color: var(--bg);
}

.product-tabs a::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.product-tabs a:hover::before,
.product-tabs a:focus-visible::before,
.product-tabs a[aria-current="page"]::before {
  opacity: 1;
}

.product-tabs a > span {
  position: absolute;
  top: 23px;
  left: 23px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.product-tabs em {
  display: block;
  margin-top: 4px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-tabs a:hover em,
.product-tabs a:focus-visible em,
.product-tabs a[aria-current="page"] em {
  color: color-mix(in srgb, var(--bg) 68%, transparent);
}

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

.three-product-grid .solution-card {
  min-height: 640px;
  padding: 34px;
}

.three-product-grid .solution-card h3 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.three-product-grid .solution-icon {
  margin-top: 44px;
}

.three-product-grid .included-services {
  margin-top: 28px;
}

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

.four-product-grid .solution-card {
  min-height: 620px;
  padding: 34px;
}

.four-product-grid .solution-card h3 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.four-product-grid .solution-icon {
  margin-top: 40px;
}

.four-product-grid .included-services {
  margin-top: 28px;
}

.product-tagline {
  position: relative;
  z-index: 1;
  margin: -5px 0 15px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 740;
}

.card-link span {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 200ms var(--ease);
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

.studios-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 760;
}

/* Shared product pages */

.product-page {
  --product-tint: #c4722e;
  --product-tint-soft: #f7d9be;
  overflow-x: hidden;
}

.product-studio {
  --product-tint: #8855e8;
  --product-tint-soft: #e5d8ff;
}

.product-immersion {
  --product-tint: #df7658;
  --product-tint-soft: #ffd8cb;
}

html[data-theme="dark"] .product-page {
  --product-tint-soft: #332117;
}

html[data-theme="dark"] .product-studio {
  --product-tint: #a77aff;
  --product-tint-soft: #241a38;
}

html[data-theme="dark"] .product-immersion {
  --product-tint: #ff9678;
  --product-tint-soft: #361f18;
}

.product-page .eyebrow-mark {
  background: var(--product-tint);
}

.product-page .product-tabs a::before,
.product-page .product-tabs a > span {
  background: var(--product-tint);
  color: var(--product-tint);
}

.product-page .product-tabs a > span {
  background: none;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 38px) 0 94px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px;
}

.product-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 52%, color-mix(in srgb, var(--product-tint) 9%, transparent), transparent 38%),
    linear-gradient(90deg, var(--bg) 7%, color-mix(in srgb, var(--bg) 76%, transparent) 54%, var(--bg) 94%);
  content: "";
  pointer-events: none;
}

.product-hero > .shell {
  position: relative;
  z-index: 1;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-breadcrumb a:hover {
  color: var(--ink);
}

.product-breadcrumb span:last-child {
  color: var(--product-tint);
}

.product-tabs-compact {
  margin-top: 24px;
}

.product-tabs-compact a {
  min-height: 74px;
  padding-block: 14px;
}

.product-tabs-compact a > span {
  top: 15px;
}

.product-hero-grid {
  display: grid;
  align-items: center;
  margin-top: 72px;
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr);
  gap: clamp(58px, 7vw, 100px);
}

.product-hero-grid > *,
.statement-grid > *,
.use-case-layout > *,
.proof-grid > *,
.studio-engine-grid > *,
.integration-band > * {
  min-width: 0;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 25px 0 28px;
  font-size: clamp(3.25rem, 5.7vw, 5.7rem);
  font-weight: 560;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.product-hero-copy h1 span {
  color: var(--ink-soft);
}

.product-hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.67;
}

.product-system {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
}

.product-system::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #fff 35%, transparent);
  content: "";
  pointer-events: none;
}

.system-console-head,
.system-console-foot {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.system-console-head {
  min-height: 52px;
  border-bottom: 1px solid var(--line);
}

.system-console-foot {
  min-height: 58px;
  justify-content: center;
  gap: 11px;
  border-top: 1px solid var(--line);
}

.system-console-foot i {
  width: 18px;
  height: 1px;
  background: var(--line-strong);
}

.product-system .system-status i {
  background: var(--product-tint);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-tint) 14%, transparent);
}

.workspace-map,
.creative-canvas,
.immersion-field {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--product-tint) 11%, transparent), transparent 44%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.workspace-map > svg,
.creative-canvas > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: color-mix(in srgb, var(--product-tint) 58%, var(--line-strong));
  stroke-dasharray: 4 6;
  stroke-width: 1;
}

.workspace-map > svg circle,
.creative-canvas > svg circle {
  stroke-dasharray: 2 8;
}

.workspace-node,
.workspace-core,
.creative-frame,
.creative-core,
.immersion-program,
.immersion-core {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  box-shadow: var(--shadow-small);
}

.workspace-node {
  display: grid;
  width: 118px;
  min-height: 66px;
  align-content: center;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 720;
}

.workspace-node::before,
.creative-frame::before,
.immersion-program::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  background: var(--product-tint);
  content: "";
}

.workspace-node small,
.workspace-core small,
.creative-frame small,
.creative-core small,
.immersion-program small,
.immersion-core small {
  display: block;
  margin-top: 3px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.node-leadership { top: 42px; left: 36px; }
.node-finance { top: 42px; right: 36px; }
.node-operations { top: 50%; left: 20px; transform: translateY(-50%); }
.node-sales { top: 50%; right: 20px; transform: translateY(-50%); }
.node-admin { bottom: 42px; left: 36px; }
.node-meetings { right: 36px; bottom: 42px; }

.workspace-core,
.creative-core,
.immersion-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  align-content: center;
  justify-content: center;
  border-color: color-mix(in srgb, var(--product-tint) 68%, var(--line));
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  transform: translate(-50%, -50%);
}

.workspace-core {
  padding: 20px;
}

.workspace-core > strong,
.creative-core > strong,
.immersion-core > strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.2;
}

.workspace-core,
.creative-core,
.immersion-core {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.workspace-core > strong,
.creative-core > strong,
.immersion-core > strong {
  margin-top: 5px;
  color: #f8f7f3;
  font-family: Inter, ui-sans-serif, sans-serif;
  letter-spacing: -0.01em;
}

.workspace-core small,
.creative-core small,
.immersion-core small {
  color: rgba(248, 247, 243, 0.58);
}

.creative-canvas {
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, #9d5cff 20%, transparent), transparent 28%),
    radial-gradient(circle at 78% 20%, color-mix(in srgb, #37bce8 15%, transparent), transparent 27%),
    radial-gradient(circle at 18% 82%, color-mix(in srgb, #ef70c3 13%, transparent), transparent 27%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, auto, auto, 32px 32px, 32px 32px;
}

.creative-frame {
  display: grid;
  width: 126px;
  min-height: 82px;
  align-content: center;
  padding: 12px 14px;
  border-radius: 12px;
}

.creative-frame > span {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.54rem;
}

.creative-frame strong {
  margin-top: 4px;
  font-size: 0.75rem;
}

.frame-input { top: 60px; left: 34px; }
.frame-generate { top: 60px; right: 34px; }
.frame-refine { bottom: 60px; left: 34px; }
.frame-output { right: 34px; bottom: 60px; }

.creative-core {
  background: linear-gradient(145deg, #151218, #23163b);
}

.immersion-field {
  overflow: hidden;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--product-tint) 20%, transparent), transparent 42%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.spatial-ring,
.spatial-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid color-mix(in srgb, var(--product-tint) 50%, var(--line));
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 170px; height: 170px; }
.ring-two { width: 285px; height: 285px; opacity: 0.7; }
.ring-three { width: 410px; height: 410px; opacity: 0.4; }

.spatial-axis {
  border: 0;
  border-top: 1px dashed color-mix(in srgb, var(--product-tint) 45%, var(--line));
  border-radius: 0;
}

.axis-x { width: 100%; }
.axis-y { width: 100%; transform: translate(-50%, -50%) rotate(90deg); }

.immersion-program {
  display: grid;
  width: 118px;
  min-height: 76px;
  align-content: center;
  padding: 10px 13px;
  border-radius: 12px;
}

.immersion-program i {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.52rem;
  font-style: normal;
}

.immersion-program strong {
  margin-top: 2px;
  font-size: 0.75rem;
}

.immersion-ready { top: 45px; left: 42px; }
.immersion-learn { top: 45px; right: 42px; }
.immersion-remember { bottom: 45px; left: 42px; }
.immersion-recover { right: 42px; bottom: 45px; }

.immersion-core {
  width: 140px;
  height: 140px;
  background: linear-gradient(145deg, #171210, #2a1710);
  text-align: center;
}

.product-statement {
  border-bottom: 1px solid var(--line);
}

.statement-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(60px, 10vw, 150px);
}

.statement-copy {
  padding-top: 12px;
}

.statement-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.outcome-list {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-list span {
  padding: 15px 10px 15px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 680;
}

.product-capabilities,
.immersion-programmes {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--surface-subtle);
}

.capability-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 34px;
  background: var(--surface-raised);
}

.capability-card > span {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.capability-card h3 {
  margin: 74px 0 14px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.capability-card em {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-ribbon {
  display: grid;
  align-items: start;
  margin-top: 24px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-raised);
  grid-template-columns: 180px 1fr;
  gap: 25px;
}

.model-ribbon > span {
  color: var(--ink-faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-ribbon > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.model-ribbon em {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-style: normal;
}

.product-use-cases {
  border-bottom: 1px solid var(--line);
}

.use-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(60px, 9vw, 130px);
}

.use-case-layout .section-summary {
  margin-top: 28px;
}

.team-stack {
  border-top: 1px solid var(--line-strong);
}

.team-stack article {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  gap: 26px;
}

.team-stack span {
  font-size: 0.82rem;
  font-weight: 740;
}

.team-stack p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.integration-services {
  padding-block: 110px;
}

.integration-band {
  display: grid;
  overflow: hidden;
  min-height: 580px;
  padding: clamp(40px, 6vw, 76px);
  border-radius: var(--radius-large);
  background: #0c0c0b;
  box-shadow: var(--shadow);
  color: #f8f7f3;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 8vw, 120px);
}

.integration-band-copy h2,
.studio-engine-copy h2 {
  margin: 34px 0 24px;
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.integration-band-copy > p,
.studio-engine-copy > p {
  max-width: 520px;
  margin: 0;
  color: #a9a8a0;
  font-size: 0.93rem;
  line-height: 1.7;
}

.integration-service-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #32322e;
  list-style: none;
}

.integration-service-list li {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid #32322e;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}

.integration-service-list li > span {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.integration-service-list strong {
  font-size: 0.91rem;
}

.integration-service-list p {
  margin: 6px 0 0;
  color: #96958e;
  font-size: 0.75rem;
  line-height: 1.55;
}

.product-proof {
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
}

.proof-cards {
  border-top: 1px solid var(--line-strong);
}

.proof-cards article {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.proof-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.proof-cards p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.studio-engine {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 40%, rgba(139, 83, 230, 0.2), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(52, 183, 225, 0.13), transparent 30%),
    #0c0c0b;
  color: #f8f7f3;
}

.studio-engine-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(60px, 9vw, 130px);
}

.studio-engine-copy .button {
  margin-top: 36px;
}

.studio-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #33332f;
}

.studio-service-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 30px;
  background: #141412;
}

.studio-service-grid article > span {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.studio-service-grid h3 {
  margin: auto 0 12px;
  font-size: 1.18rem;
}

.studio-service-grid p {
  margin: 0;
  color: #9e9d96;
  font-size: 0.76rem;
  line-height: 1.6;
}

.creative-proof-strip {
  display: grid;
  margin-top: 60px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creative-proof-strip article {
  min-height: 230px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.creative-proof-strip article:last-child {
  border-right: 0;
}

.creative-proof-strip strong {
  display: block;
  color: var(--product-tint);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.creative-proof-strip span {
  display: block;
  max-width: 240px;
  margin-top: 55px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.6;
}

.proof-note,
.care-note {
  margin: 24px 0 0;
  color: var(--ink-faint);
  font-size: 0.67rem;
  line-height: 1.6;
}

.market-grid {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-grid article {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.market-grid article:last-child {
  border-right: 0;
}

.market-grid span {
  color: var(--product-tint);
  font-size: 0.83rem;
  font-weight: 750;
}

.market-grid p {
  margin: 95px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.programme-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.programme-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--product-tint) 16%, transparent), transparent 38%),
    var(--surface-raised);
}

.programme-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid color-mix(in srgb, var(--product-tint) 42%, var(--line));
  border-radius: 50%;
  content: "";
}

.programme-index {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programme-card h3 {
  margin: 92px 0 23px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 550;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.programme-card > p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.programme-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 38px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  gap: 9px;
  list-style: none;
}

.programme-card li {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.programme-card li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border: 1px solid var(--product-tint);
  content: "";
}

.care-note {
  max-width: 800px;
}

.programme-focus {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--product-tint) 13%, transparent), transparent 28%),
    var(--bg);
}

.programme-focus::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 340px;
  height: 340px;
  border: 1px solid color-mix(in srgb, var(--product-tint) 28%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateY(-55%);
}

.programme-focus > .shell {
  position: relative;
  z-index: 1;
}

.programme-focus-grid {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programme-focus-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-raised) 76%, transparent);
}

.programme-focus-card:last-child {
  border-right: 0;
}

.programme-focus-index {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programme-focus-card h3 {
  margin: 112px 0 22px;
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.programme-focus-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.7;
}

.measurement-panel {
  display: grid;
  margin-top: 24px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 84% 30%, color-mix(in srgb, var(--product-tint) 20%, transparent), transparent 34%),
    #0c0c0b;
  color: #f8f7f3;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
}

.measurement-copy h3 {
  margin: 34px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.measurement-copy p {
  max-width: 480px;
  margin: 0;
  color: #aaa9a1;
  font-size: 0.83rem;
  line-height: 1.7;
}

.measurement-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #343430;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.measurement-list li {
  position: relative;
  min-height: 92px;
  padding: 24px 18px 20px 30px;
  border-right: 1px solid #343430;
  border-bottom: 1px solid #343430;
  color: #c8c7c0;
  font-size: 0.74rem;
  line-height: 1.5;
}

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

.measurement-list li::before {
  position: absolute;
  top: 31px;
  left: 6px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--product-tint);
  content: "";
}

.broader-use-note {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--ink-faint);
  font-size: 0.68rem;
  line-height: 1.65;
}

.immersion-principles {
  border-bottom: 1px solid var(--line);
}

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

.principle-grid article {
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid article > span {
  color: var(--product-tint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.principle-grid h2 {
  margin: 132px 0 16px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.principle-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .three-product-grid {
    grid-template-columns: 1fr;
  }

  .three-product-grid .solution-card {
    min-height: 580px;
  }

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

  .product-hero-copy {
    max-width: 850px;
  }

  .product-system {
    width: min(100%, 700px);
    justify-self: center;
  }

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

  .integration-band,
  .studio-engine-grid {
    grid-template-columns: 1fr;
  }

  .integration-band-copy {
    max-width: 720px;
  }

  .proof-grid,
  .use-case-layout {
    grid-template-columns: 1fr;
  }

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

  .programme-focus-grid,
  .measurement-panel {
    grid-template-columns: 1fr;
  }

  .programme-focus-card {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .programme-focus-card:last-child {
    border-bottom: 0;
  }

  .programme-focus-card h3 {
    margin-top: 78px;
  }

  .market-grid article:nth-child(2) {
    border-right: 0;
  }

  .market-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .network-map .node-creative {
    right: auto;
    left: 16px;
    transform: none;
  }

  .product-tabs {
    display: flex;
    margin-right: calc((100vw - var(--shell)) / -2);
    margin-left: calc((100vw - var(--shell)) / -2);
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: thin;
  }

  .product-tabs a {
    min-width: 250px;
    border-right: 1px solid var(--line);
  }

  .product-tabs-compact a {
    min-width: 220px;
  }

  .product-hero {
    padding-top: calc(var(--header-height) + 30px);
    background-size: 52px 52px;
  }

  .product-hero-grid {
    margin-top: 54px;
    gap: 52px;
  }

  .product-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .workspace-map,
  .creative-canvas,
  .immersion-field {
    min-height: 390px;
  }

  .workspace-node,
  .immersion-program {
    width: 98px;
    padding-inline: 9px;
  }

  .node-leadership,
  .node-admin { left: 14px; }
  .node-finance,
  .node-meetings { right: 14px; }
  .node-operations { left: 8px; }
  .node-sales { right: 8px; }

  .workspace-core,
  .creative-core {
    width: 108px;
    height: 108px;
  }

  .creative-frame {
    width: 104px;
    min-height: 75px;
    padding-inline: 9px;
  }

  .frame-input,
  .frame-refine { left: 14px; }
  .frame-generate,
  .frame-output { right: 14px; }

  .immersion-ready,
  .immersion-remember { left: 14px; }
  .immersion-learn,
  .immersion-recover { right: 14px; }

  .immersion-core {
    width: 116px;
    height: 116px;
  }

  .ring-three {
    width: 360px;
    height: 360px;
  }

  .statement-grid,
  .model-ribbon {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .capability-grid,
  .programme-grid,
  .studio-service-grid,
  .creative-proof-strip,
  .market-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .programme-focus-grid {
    margin-top: 50px;
  }

  .programme-focus-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .programme-focus-card h3 {
    margin-top: 68px;
  }

  .measurement-panel {
    padding: 34px 24px;
    gap: 44px;
    border-radius: 20px;
  }

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

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

  .capability-card {
    min-height: 290px;
    padding: 28px;
  }

  .capability-card h3 {
    margin-top: 62px;
  }

  .integration-services {
    padding-block: 76px;
  }

  .integration-band {
    min-height: 0;
    padding: 38px 24px;
    border-radius: 20px;
  }

  .team-stack article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .studio-service-grid article {
    min-height: 230px;
  }

  .creative-proof-strip article,
  .market-grid article,
  .principle-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .creative-proof-strip article:last-child,
  .market-grid article:last-child,
  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .market-grid article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .programme-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .programme-card h3 {
    margin-top: 70px;
  }

  .principle-grid article {
    min-height: 290px;
  }

  .principle-grid h2 {
    margin-top: 96px;
  }
}

@media (max-width: 410px) {
  .workspace-node,
  .immersion-program {
    width: 90px;
    font-size: 0.63rem;
  }

  .workspace-core,
  .creative-core,
  .immersion-core {
    width: 100px;
    height: 100px;
  }

  .creative-frame {
    width: 94px;
  }

  .system-console-foot {
    gap: 6px;
    font-size: 0.5rem;
  }

  .system-console-foot i {
    width: 9px;
  }
}

.not-found {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background:
    radial-gradient(circle at 76% 35%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 30%),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
}

.not-found h1 {
  max-width: 920px;
  margin: 28px 0;
  font-size: clamp(3.4rem, 7.2vw, 7.2rem);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.not-found h1 span {
  color: var(--ink-soft);
}

.not-found p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Reference-inspired homepage skin. The existing information architecture and
   typography stay intact; this layer only changes the visual presentation. */
body.reference-skin {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --surface-subtle: #eeece7;
  --surface-raised: #ffffff;
  --ink: #17171a;
  --ink-soft: #63625f;
  --ink-faint: #93918b;
  --line: #e4e1da;
  --line-strong: #d0ccc4;
  --accent: #f5811f;
  --accent-strong: #e06e0f;
  --accent-soft: rgba(245, 129, 31, 0.12);
  --dark: #0a0a0b;
  --light: #f7f6f3;
  --shadow: 0 20px 48px rgba(20, 20, 20, 0.12);
  --shadow-small: 0 8px 24px rgba(20, 20, 20, 0.08);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 76px;
  background: var(--bg);
  overflow-x: clip;
}

html[data-theme="dark"] body.reference-skin {
  --bg: #0a0a0b;
  --surface: #17171a;
  --surface-subtle: #131315;
  --surface-raised: #17171a;
  --ink: #f3f2ef;
  --ink-soft: #a6a4a0;
  --ink-faint: #6f6d69;
  --line: #2b2b2e;
  --line-strong: #404044;
  --accent: #ff9640;
  --accent-strong: #ffab63;
  --accent-soft: rgba(255, 150, 64, 0.14);
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  --shadow-small: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.reference-skin .site-header {
  position: sticky;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(140%);
}

.reference-skin .site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
}

.reference-skin .header-inner {
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
}

.reference-skin .brand-crop { width: 156px; }
.reference-skin .desktop-nav { gap: 30px; }
.reference-skin .desktop-nav a { color: var(--ink-soft); font-size: 0.9rem; }
.reference-skin .desktop-nav a:hover { color: var(--accent-strong); }
.reference-skin .header-actions { gap: 14px; }
.reference-skin .theme-toggle,
.reference-skin .menu-toggle { width: 40px; height: 40px; background: var(--surface-raised); }

.reference-skin .button {
  min-height: 48px;
  padding-inline: 24px;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: none;
}

.reference-skin .button-small { min-height: 40px; padding-inline: 18px; font-size: 0.84rem; }
.reference-skin .button-dark,
.reference-skin .button-primary { background: var(--accent); color: #16130d; }
.reference-skin .button-dark:hover,
.reference-skin .button-primary:hover { background: var(--accent-strong); box-shadow: var(--shadow-small); }
.reference-skin .button-outline { border-color: var(--line-strong); }
.reference-skin .button-outline:hover { border-color: var(--accent); color: var(--accent-strong); }

.reference-skin .hero {
  min-height: auto;
  padding: 88px 0 0;
  border-bottom: 1px solid var(--line);
  background-size: 56px 56px;
}

.reference-skin .hero::before {
  background:
    radial-gradient(circle at 87% 5%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 31%),
    radial-gradient(circle at 78% 70%, rgba(107, 138, 253, 0.14), transparent 30%),
    linear-gradient(90deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 78%, transparent) 58%, transparent 100%);
}

.reference-skin .hero-grid {
  min-height: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(48px, 7vw, 84px);
}

.reference-skin .hero-grid > *,
.reference-skin .intro-grid > *,
.reference-skin .section-heading-row > *,
.reference-skin .services-heading > *,
.reference-skin .approach-grid > *,
.reference-skin .contact-panel > * { min-width: 0; }

.reference-skin .hero-copy { padding: 8px 0 52px; }
.reference-skin .eyebrow,
.reference-skin .section-kicker,
.reference-skin .callout-label { color: var(--accent-strong); letter-spacing: 0.09em; }

.reference-skin .hero h1 {
  max-width: 700px;
  margin: 20px 0 22px;
  font-size: clamp(2.7rem, 4.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.reference-skin .hero h1 span { color: var(--ink); }
.reference-skin .hero-lead { max-width: 610px; font-size: 1.08rem; line-height: 1.65; }
.reference-skin .hero-actions { margin-top: 32px; }
.reference-skin .integration-visual {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-large);
  background: linear-gradient(155deg, color-mix(in srgb, var(--surface-subtle) 64%, var(--surface)), var(--surface));
  box-shadow: var(--shadow-small);
  backdrop-filter: none;
}
.reference-skin .integration-visual::after { box-shadow: none; }
.reference-skin .network-map { min-height: 360px; }
.reference-skin .hero-rail { margin-top: 56px; border-color: var(--line); }

.reference-skin .section { padding-block: 88px; }
.reference-skin .section-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.reference-skin .section-summary { line-height: 1.7; }
.reference-skin .section-heading-row,
.reference-skin .services-heading { gap: 64px; }

.reference-skin .value-grid {
  gap: 20px;
  margin-top: 48px;
  border: 0;
}
.reference-skin .value-card,
.reference-skin .value-card + .value-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface-raised);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.reference-skin .value-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow-small); }
.reference-skin .value-card h3 { margin-top: 38px; }

.reference-skin .solutions { background: var(--surface-subtle); }
.reference-skin .solutions::before { display: none; }
.reference-skin .product-tabs { margin-top: 44px; background: var(--surface-raised); box-shadow: 0 1px 2px rgba(20,20,20,.04); }
.reference-skin .product-tabs a { min-height: 94px; }
.reference-skin .product-tabs a:hover,
.reference-skin .product-tabs a:focus-visible { background: var(--accent-soft); color: var(--accent-strong); }
.reference-skin .product-tabs a:hover em,
.reference-skin .product-tabs a:focus-visible em { color: var(--ink-soft); }

.reference-skin .solutions-grid { margin-top: 48px; gap: 20px; }
.reference-skin .three-product-grid .solution-card,
.reference-skin .four-product-grid .solution-card {
  min-height: 0;
  padding: 28px;
  border-radius: var(--radius-medium);
  box-shadow: none;
}
.reference-skin .solution-card::before { height: 2px; }
.reference-skin .solution-card::after { display: none; }
.reference-skin .solution-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow-small); transform: translateY(-3px); }
.reference-skin .three-product-grid .solution-icon,
.reference-skin .four-product-grid .solution-icon { margin-top: 32px; }
.reference-skin .three-product-grid .solution-card h3,
.reference-skin .four-product-grid .solution-card h3 { font-size: clamp(1.8rem, 2.4vw, 2.35rem); }

.reference-skin .service-bento { margin-top: 48px; gap: 20px; grid-auto-rows: minmax(240px, auto); }
.reference-skin .bento-card {
  min-height: 240px;
  padding: 26px;
  background: var(--surface-raised);
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reference-skin .bento-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow-small); }
.reference-skin .studios-callout { border: 1px solid #232326; border-radius: var(--radius-large); }

.reference-skin .approach { background: var(--surface-subtle); }
.reference-skin .process-list { border-top-color: var(--line); }
.reference-skin .process-item { min-height: 150px; padding: 24px 0; }
.reference-skin .difference-grid { gap: 20px; margin-top: 48px; border: 0; }
.reference-skin .difference-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface-raised);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reference-skin .difference-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow-small); }
.reference-skin .difference-card h3 { margin-top: 90px; }

.reference-skin .contact { padding-top: 28px; }
.reference-skin .contact-panel { min-height: 430px; border-radius: var(--radius-large); }
.reference-skin .site-footer { margin-top: 48px; padding-top: 0; background: #0a0a0b; color: #f3f2ef; }
.reference-skin .footer-main { border-top: 0; }
.reference-skin .footer-main p,
.reference-skin .footer-main nav a { color: #a6a4a0; }
.reference-skin .footer-bottom { border-color: #2b2b2e; color: #6f6d69; }

@media (max-width: 1100px) {
  .reference-skin .header-inner { grid-template-columns: 1fr auto; }
  .reference-skin .hero-grid { grid-template-columns: 1fr; }
  .reference-skin .hero-copy { max-width: 760px; padding-bottom: 0; }
  .reference-skin .integration-visual { width: min(100%, 680px); }
  .reference-skin .three-product-grid,
  .reference-skin .four-product-grid { grid-template-columns: 1fr; }
  .reference-skin .difference-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body.reference-skin { --shell: calc(100% - 32px); --header-height: 72px; }
  .reference-skin .brand-crop { width: 142px; }
  .reference-skin .mobile-menu { top: var(--header-height); background: var(--surface); }
  .reference-skin .hero { padding-top: 60px; background-size: 48px 48px; }
  .reference-skin .hero h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .reference-skin .hero-rail { margin-top: 44px; }
  .reference-skin .section { padding-block: 64px; }
  .reference-skin .section-title { font-size: clamp(2.2rem, 10.5vw, 3.2rem); }
  .reference-skin .value-grid,
  .reference-skin .difference-grid { grid-template-columns: 1fr; }
  .reference-skin .value-card + .value-card { padding: 26px; border: 1px solid var(--line); }
  .reference-skin .product-tabs { margin-top: 36px; }
  .reference-skin .solutions-grid,
  .reference-skin .service-bento,
  .reference-skin .difference-grid { margin-top: 40px; }
  .reference-skin .difference-card { min-height: 250px; }
  .reference-skin .difference-card h3 { margin-top: 66px; }
  .reference-skin .site-footer { margin-top: 24px; }
}
