:root,
.dark {
  --background: #08090b;
  --foreground: #f1f1ee;
  --primary: #3864ff;
  --primary-foreground: #fff;
  --card: #111316;
  --muted: #979aa4;
  --border: #27292e;
  --radius: 6px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--primary);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid #839dff;
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  color: inherit;
}
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.055em;
}
p {
  line-height: 1.65;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: white;
  color: black;
  z-index: 100;
}
.skip-link:focus {
  top: 20px;
}
.header {
  height: 108px;
  padding: 0 4.2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-bottom: 1px solid #ffffff16;
  position: relative;
  z-index: 20;
}
.brand {
  width: 100px;
  flex-shrink: 0;
}
.brand img {
  width: 87px;
  height: 47px;
  object-fit: contain;
}
.header nav {
  display: flex;
  gap: 33px;
  margin-left: auto;
  margin-right: 55px;
  font-size: 14px;
  color: #cccdd2;
}
.header nav a:hover {
  color: white;
}
.header-cta {
  border: 1px solid #50525b;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  display: flex;
  gap: 27px;
}
.header-cta:hover {
  background: #fff;
  color: #08090b;
}
.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  padding: 75px 4.2% 90px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #7d9cff;
  border-radius: 50%;
  box-shadow: 0 0 12px #3664ff;
}
.hero h1 {
  font-size: clamp(70px, 6.75vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.068em;
  margin-top: 35px;
  max-width: 840px;
}
.hero h1 em {
  font-style: normal;
  color: #7490ff;
}
.hero-description {
  font-size: 16px;
  color: #a6a8b1;
  margin-top: 27px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 15px 21px;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #1d2028;
}
.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.primary:hover {
  background: #4b74ff;
}
.text-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}
.text-link:hover {
  border-color: currentColor;
}
.hero-art {
  position: absolute;
  right: -11%;
  top: -6%;
  width: 73%;
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, transparent, #000 20%);
  will-change: transform;
}
.hero-caption {
  position: absolute;
  right: 8%;
  bottom: 135px;
  display: flex;
  align-items: center;
  gap: 20px;
  font: 10px monospace;
  letter-spacing: 0.15em;
  color: #a2a8b7;
}
.cross {
  font-size: 35px;
  font-weight: 200;
  color: #718aff;
}
.hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 4.2%;
  right: 4.2%;
  display: flex;
  justify-content: space-between;
  font: 10px monospace;
  letter-spacing: 0.09em;
  color: #92959d;
  border-top: 1px solid var(--border);
  padding-top: 23px;
}
.blue {
  color: #7591ff;
}
.section {
  padding: 105px 4.2%;
}
.section h2 {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.08;
  margin-top: 28px;
}
.muted {
  color: #757983;
}
.proof-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  font-size: 30px;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #aaacb3;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 930px;
  }
  .hero-art {
    top: -15%;
  }
  .hero-description {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .header nav {
    gap: 20px;
    margin-right: 10px;
  }
  .header-cta {
    gap: 10px;
  }
  .hero {
    min-height: 790px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-art {
    width: 85%;
    right: -24%;
    top: 5%;
  }
  .hero-caption {
    right: 5%;
    bottom: 105px;
    font-size: 8px;
  }
  .hero-bottom {
    font-size: 8px;
  }
}
@media (max-width: 700px) {
  .header {
    height: 82px;
    padding: 0 6%;
  }
  .header nav {
    display: none;
  }
  .header-cta {
    font-size: 12px;
    padding: 10px 12px;
  }
  .brand img {
    width: 72px;
  }
  .hero {
    padding: 50px 6% 90px;
    min-height: 930px;
  }
  .hero h1 {
    font-size: clamp(53px, 11.5vw, 80px);
    margin-top: 27px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-description {
    font-size: 15px;
    max-width: 90%;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-art {
    width: 112%;
    right: -31%;
    top: 370px;
    opacity: 0.75;
  }
  .hero-caption {
    bottom: 101px;
    right: 8%;
    font-size: 8px;
    max-width: 60%;
    line-height: 1.7;
  }
  .hero-bottom {
    left: 6%;
    right: 6%;
    gap: 20px;
    line-height: 1.5;
  }
  .hero-bottom > span:nth-child(2) {
    display: none;
  }
  .section {
    padding: 75px 6%;
  }
  .proof-strip {
    flex-wrap: wrap;
    gap: 25px;
    font-size: 24px;
  }
  .desktop {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@font-face {
  font-family: Inter;
  src: url('/experiences/blue/fonts/inter.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/experiences/blue/fonts/mono.woff2') format('woff2');
  font-weight: 400 500;
  font-display: swap;
}
.header:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll-progress, 0%);
  height: 1px;
  background: #5b7eff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.mobile-sheet {
  background: #111316 !important;
  padding: 65px 27px 35px !important;
  max-width: 440px !important;
  width: 90% !important;
}
.menu-title {
  font-size: 28px !important;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.mobile-sheet nav {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.mobile-sheet nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
}
.mobile-sheet nav a svg {
  margin-left: auto;
}
.mobile-sheet small {
  font-size: 11px;
  color: #6e85d4;
  font-family: monospace;
}
.menu-email {
  margin-top: auto;
  padding-top: 30px;
  color: #afbbf8;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-top: 26px;
}
.section-lead {
  max-width: 360px;
  color: #999da7;
  font-size: 16px;
  line-height: 1.7;
}
.section-lead .text-link {
  margin-top: 20px;
  color: var(--foreground);
}
.trust-section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 55px;
  align-items: center;
  padding: 38px 4.2% 44px;
  background: #0d0f12;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-section > .eyebrow {
  font-size: 9px;
  color: #868b96;
  line-height: 1.8;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #bfc2ca;
}
.agilent-logo {
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.agilent-logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
  margin-top: 3px;
}
.oxfam-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.irt-logo {
  font-size: 13px;
  line-height: 1.3;
}
.irt-logo strong {
  font-size: 17px;
  font-weight: 500;
}
.startlegal-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.07em;
}
.startlegal-logo span {
  font-size: 11px;
  vertical-align: super;
  margin-left: 3px;
}
.chairlink-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 60px;
}
.intro h2 {
  margin-top: 0;
  font-size: clamp(35px, 3.7vw, 60px);
}
.section-cross {
  display: block;
  font-size: 90px;
  font-weight: 200;
  color: #6586ff;
  margin-top: 60px;
}
.intro-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  margin-top: 35px;
}
.intro-bottom p {
  color: #a0a3ad;
  max-width: 500px;
  font-size: 16px;
}
.intro-bottom a {
  flex-shrink: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stats-row strong {
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.stats-row span {
  display: block;
  color: #8c909c;
  font:
    9px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.05em;
  margin-top: 12px;
  line-height: 1.7;
}
.work-section {
  border-top: 1px solid var(--border);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 28px;
}
.project-card {
  display: block;
}
.project-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #15181e;
}
.work-preview-media {
  aspect-ratio: 2 / 1;
}
.section.product-preview-listing {
  width: min(1200px, 88%);
  margin: 0 auto;
  padding: 0 0 70px;
}
.product-preview-listing .project-grid {
  column-gap: 32px;
}
.work-preview-media > .project-visual {
  width: 100%;
  height: 100%;
  transform: none;
}
.work-preview-media .project-arrow,
.work-preview-media .project-status {
  pointer-events: none;
}
.work-preview-media .project-arrow {
  background: #111820e8;
  border-color: #ffffff50;
  color: #fff;
}
.work-preview-media > a {
  display: block;
  height: 100%;
}
.work-preview-media > a > .project-visual {
  height: 100%;
}
.work-preview-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.project-arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff45;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0a0b101f;
  backdrop-filter: blur(5px);
  transition:
    background 0.25s,
    transform 0.25s;
}
.project-card:hover .project-arrow {
  background: white;
  color: black;
  transform: rotate(45deg);
}
.project-visual {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #222c4f;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.project-card:hover .project-visual {
  transform: scale(1.025);
}
.visual-wordmark {
  font-size: 36px;
  letter-spacing: -0.075em;
  font-weight: 600;
  position: absolute;
  left: 35px;
  top: 26px;
}
.visual-wordmark > span {
  font-size: 14px;
  vertical-align: super;
  margin-left: 5px;
}
.visual-caption {
  position: absolute;
  bottom: 19px;
  left: 30px;
  font:
    9px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.14em;
  opacity: 0.65;
}
.visual-startlegal {
  background: #253cb0;
  color: white;
}
.legal-window {
  position: absolute;
  top: 100px;
  left: 48px;
  right: -25px;
  bottom: 50px;
  background: #f4f6fb;
  color: #19213b;
  border: 1px solid #ffffff60;
  border-radius: 7px;
  box-shadow: 0 30px 70px #08196970;
  transform: rotate(-4deg);
}
.window-top {
  height: 37px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-bottom: 1px solid #e2e5ee;
  font-size: 10px;
  font-weight: 600;
}
.window-top > span:last-child {
  font: 6px monospace;
  letter-spacing: 0.1em;
  color: #8a91a4;
}
.tiny-square {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #3566f4;
  margin-right: 4px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 100px 1fr;
  height: calc(100% - 37px);
}
.mock-sidebar {
  display: flex;
  flex-direction: column;
  padding: 19px 10px;
  gap: 17px;
  font-size: 7px;
  color: #757e92;
  border-right: 1px solid #dce1eb;
}
.mock-sidebar strong {
  color: #355aff;
  padding: 6px;
  background: #e6ebff;
  font-weight: 600;
}
.mock-main {
  padding: 23px 26px;
}
.mock-eyebrow {
  font: 7px monospace;
  letter-spacing: 0.1em;
  color: #747e9a;
}
.mock-main h4 {
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 10px 0 15px;
}
.mock-input {
  background: white;
  border: 1px solid #d8e1f0;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #8690a6;
  max-width: 300px;
}
.mini-options {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.mini-options span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e9edf6;
  padding: 7px;
  font-size: 6px;
  border-radius: 3px;
}
.mock-check {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  font-size: 7px;
  color: #7b879c;
}
.visual-chairlink {
  background: #dbe9e7;
  color: #1d4348;
}
.brand-period {
  font-size: 36px !important;
  vertical-align: baseline !important;
  margin: 0 !important;
}
.chair-window {
  position: absolute;
  top: 110px;
  left: 30px;
  right: 35px;
  bottom: 55px;
  background: #fbfdfc;
  border: 1px solid #fff;
  border-radius: 6px;
  box-shadow: 0 20px 45px #32545320;
  transform: rotate(3deg);
}
.dental-profile {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 20px 20px;
}
.profile-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 70px;
  background: #d6e5e2;
  border-radius: 5px;
  color: #64867e;
}
.dental-profile h4 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 8px 0 0;
}
.dental-profile .mock-eyebrow {
  font-size: 6px;
}
.verified {
  font: 6px monospace;
  background: #e4f0eb;
  color: #42745b;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  align-self: flex-start;
}
.dental-stats {
  display: flex;
  margin: 0 20px;
  border-top: 1px solid #e0e9e5;
  border-bottom: 1px solid #e0e9e5;
  padding: 13px 0;
  justify-content: space-between;
  font-size: 7px;
  color: #7b908b;
}
.dental-stats strong {
  font-size: 10px;
  display: block;
  color: #2c5750;
  margin-bottom: 4px;
}
.dental-timeline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 15px 20px;
  font-size: 8px;
}
.dental-timeline strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.dental-timeline div > span {
  font-size: 7px;
  color: #8a9c96;
}
.dental-timeline svg {
  margin-left: auto;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #599889;
  border-radius: 50%;
}
.project-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}
.project-info .eyebrow {
  font-size: 9px;
  color: #969ba7;
}
.project-info h3 {
  font-size: 28px;
  margin-top: 10px;
  letter-spacing: -0.04em;
}
.project-number {
  font: 11px monospace;
  color: #626774;
}
.project-description {
  color: #9196a2;
  max-width: 510px;
  font-size: 14px;
  margin-top: 10px;
}
.featured-strip {
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 46px;
}
.myba-word {
  font-family: Georgia, serif !important;
  letter-spacing: 0.03em !important;
  font-weight: 400 !important;
}
.featured-strip > .myba-word {
  font-size: 43px;
  width: 150px;
}
.featured-strip .eyebrow {
  font-size: 9px;
  color: #9c9fa9;
}
.featured-strip h3 {
  font-size: 23px;
  margin-top: 10px;
  letter-spacing: -0.035em;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #50535d;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.featured-strip:hover .round-arrow {
  background: #3864ff;
  border-color: #3864ff;
}
.intelligence-section {
  background: #0d0f13;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workflow-tabs {
  height: auto !important;
  width: 100% !important;
  border-bottom: 1px solid #30343e;
  border-radius: 0 !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 0 !important;
  background: transparent !important;
}
.workflow-tabs button {
  display: flex;
  justify-content: space-between !important;
  padding: 23px 0 !important;
  height: 65px !important;
  font:
    10px 'JetBrains Mono',
    monospace !important;
  letter-spacing: 0.06em;
  border: none !important;
  border-radius: 0 !important;
  color: #777f90 !important;
}
.workflow-tabs button[data-active] {
  color: #c8d2ff !important;
}
.workflow-tabs button:after {
  bottom: 0 !important;
  background: #6185ff !important;
  height: 2px !important;
}
.workflow-tabs button svg {
  margin-left: 20px;
}
.workflow-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8%;
  padding: 55px 0 30px;
  align-items: center;
}
.architecture {
  height: 390px;
  background: #10131b;
  border: 1px solid #2a3040;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.architecture-top,
.architecture-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 25px;
  right: 25px;
}
.architecture-top {
  top: 20px;
}
.architecture-top .eyebrow {
  font-size: 8px;
  color: #8191b1;
}
.architecture-foot {
  bottom: 20px;
  font: 8px monospace;
  letter-spacing: 0.08em;
  color: #7c8ba8;
}
.flow-lines {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 36px;
}
.signal-path {
  animation: signal 5s linear infinite;
}
.node {
  position: absolute;
  border: 1px solid #384159;
  border-radius: 5px;
  background: #151b29;
  font-size: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 5px 25px #0002;
}
.node-human {
  top: 69px;
  left: 50%;
  transform: translateX(-50%);
  border-color: #5a6eaa;
  background: #1b2540;
}
.node-symbol {
  font-size: 21px;
  color: #7b99ff;
}
.node-tag {
  font-size: 6px;
  letter-spacing: 0.1em;
  color: #768bad;
  margin-left: 10px;
}
.node-agents {
  top: 190px;
  left: 21%;
  transform: translateX(-50%);
}
.node-engineers {
  top: 190px;
  left: 79%;
  transform: translateX(-50%);
}
.node-review {
  top: 282px;
  left: 50%;
  transform: translateX(-50%);
}
.node svg,
.code-symbol {
  color: #7a98ff;
}
.node-review svg:last-child {
  color: #91c7b1;
  margin-left: 5px;
}
.node-lit {
  border-color: #7796ff;
  box-shadow: 0 0 30px #3c63d827;
}
.workflow-panels h3 {
  font-size: 33px;
  margin: 18px 0 18px;
}
.workflow-panels p:not(.eyebrow) {
  font-size: 15px;
  color: #9aa1b1;
  line-height: 1.75;
}
.workflow-panels ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  gap: 10px;
}
.workflow-panels li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #c7cbd4;
}
.workflow-panels li svg {
  color: #7291ff;
}
.workflow-output {
  padding-top: 20px;
  border-top: 1px solid #303642;
}
.workflow-output .eyebrow {
  font-size: 8px;
  color: #778299;
}
.workflow-output p {
  color: #d6dcec !important;
  font-size: 13px !important;
  margin-top: 7px;
}
.workflow > .text-link {
  margin-top: 10px;
  align-self: flex-start;
}
.service-row {
  display: grid;
  grid-template-columns: 50px 1.15fr 1fr 32px;
  gap: 30px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  transition:
    background 0.2s,
    padding 0.2s;
}
.service-row:last-child {
  border-bottom: 1px solid var(--border);
}
.service-row:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: #11141c;
}
.service-index {
  font: 11px monospace;
  color: #77839d;
}
.service-row h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
}
.service-row p {
  font-size: 14px;
  color: #9299a8;
}
.service-arrow {
  color: #a5afc8;
}
.tech-note {
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.tech-note .eyebrow {
  font-size: 8px;
  color: #717b90;
}
.tech-note p {
  font-size: 11px;
  color: #a4adbe;
}
.tech-note > span:last-child {
  font-size: 11px;
  color: #737d91;
}
.enterprise-section {
  background: #dfe5f0;
  color: #172136;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12%;
  position: relative;
  overflow: hidden;
}
.enterprise-copy .eyebrow {
  font-size: 9px;
  color: #536383;
}
.enterprise-copy h2 {
  font-size: clamp(40px, 4.1vw, 62px);
  margin-bottom: 27px;
}
.enterprise-copy h2 > span {
  color: #667490;
}
.enterprise-copy > p:not(.eyebrow) {
  max-width: 495px;
  font-size: 15px;
  color: #4f5f79;
  margin-top: 20px;
}
.light-button {
  background: #18243c;
  color: #fff;
  border: 0;
  margin-top: 33px;
}
.light-button:hover {
  background: #304975;
}
.enterprise-panel {
  border-left: 1px solid #b9c4d6;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enterprise-panel > .eyebrow {
  font-size: 9px;
  color: #72809a;
}
.enterprise-brand {
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 25px 0 35px;
  font-weight: 400;
}
.enterprise-brand > span {
  font-size: 18px;
  display: block;
  letter-spacing: 0.01em;
  margin-top: 7px;
}
.enterprise-connections {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 12px;
  color: #3b4d6d;
}
.connection-line {
  height: 1px;
  flex: 1;
  background: #899ebd;
  position: relative;
}
.connection-line:after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.enterprise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.enterprise-tags span {
  border: 1px solid #a7b4ca;
  border-radius: 3px;
  padding: 7px;
  font: 8px monospace;
}
.enterprise-panel > p:last-child {
  color: #8591a7;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin-top: 30px;
}
.enterprise-panel strong {
  color: #243856;
  font-weight: 500;
}
.product-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 4px;
}
.product-directory-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 30px 25px 65px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.product-directory-item:last-child {
  border: 0;
}
.product-directory-item:nth-child(3n) {
  border-right: 0;
}
.product-directory-item:nth-child(n + 4) {
  border-top: 1px solid var(--border);
}
.product-directory-item:hover {
  background: #131822;
}
.app-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 600;
  background: #2c457f;
  color: #c1d4ff;
  margin-bottom: 30px;
}
.app-chris {
  background: #162d52;
}
.app-talkyto {
  background: #29151b;
}
.app-workspace-sync {
  background: #30486b;
  color: #c5dcfc;
}
.app-nebion {
  background: #27243e;
  color: #c6b9f7;
}
.app-backbeaver {
  background: #231f20;
}
.product-directory-item h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
}
.product-directory-item p {
  font-size: 13px;
  color: #9098a8;
  margin-top: 13px;
}
.product-directory-item > svg {
  position: absolute;
  left: 25px;
  bottom: 23px;
  color: #747f97;
}
.sovereign-note {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  color: #93a3c1;
}
.sovereign-note > div {
  flex: 1;
}
.sovereign-note h3 {
  color: #d7deeb;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.sovereign-note p {
  font-size: 13px;
  color: #8793a9;
  margin-top: 7px;
}
.sovereign-note .text-link {
  font-size: 12px;
  color: #bbc8e3;
}
.coming-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 30px 0;
}
.coming-next .eyebrow {
  font-size: 8px;
  color: #828ca0;
}
.coming-next > span:nth-child(2) {
  font-size: 23px;
  letter-spacing: 0.02em;
}
.coming-next > span:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #959fb2;
}
.studio-teaser {
  background: #121722;
  border-top: 1px solid #2d3545;
  border-bottom: 1px solid #2d3545;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17%;
}
.studio-teaser h2 {
  font-size: clamp(50px, 6vw, 86px);
}
.studio-teaser h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #92a8ed;
}
.studio-teaser .eyebrow {
  font-size: 9px;
  color: #a5b2cc;
}
.studio-teaser-copy {
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.studio-teaser-copy > svg {
  color: #7d99e6;
  margin-bottom: 28px;
}
.studio-teaser-copy p {
  font-size: 17px;
  color: #a5afc3;
  margin-bottom: 24px;
}
.studio-teaser-copy .text-link {
  margin-top: 10px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-art {
  height: 215px;
  background: #181e30;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.article-art > span:first-child {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 240px;
  line-height: 1;
  color: #7396ff;
  transition: transform 0.5s;
  letter-spacing: -0.12em;
}
.article-card:hover .article-art > span:first-child {
  transform: rotate(-10deg) scale(1.12);
}
.article-art > .eyebrow {
  position: absolute;
  bottom: 15px;
  left: 18px;
  color: #899cc9;
  font-size: 8px;
}
.article-art-1 {
  background: #dce3ec;
}
.article-art-1 > span:first-child {
  font-family: Georgia, serif;
  color: #566c96;
  font-size: 140px;
  letter-spacing: 0.03em;
}
.article-art-1 > .eyebrow {
  color: #66799b;
}
.article-art-2 {
  background: #283cd2;
}
.article-art-2 > span:first-child {
  font-size: 260px;
  color: #c9d2ff;
  transform: translateY(-15px);
}
.article-art-2 > .eyebrow {
  color: #c5cdff;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  font:
    8px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.04em;
  color: #8c96ab;
}
.article-card h3 {
  font-size: 25px;
  line-height: 1.2;
  margin-top: 17px;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.article-card > .text-link {
  font-size: 12px;
  color: #a7b2c9;
}
.faq-section {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 12%;
}
.faq-section .eyebrow {
  font-size: 9px;
  color: #939fb6;
}
.faq-section h2 {
  font-size: 43px;
}
.faq-section details {
  border-bottom: 1px solid var(--border);
}
.faq-section summary {
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  cursor: pointer;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section summary svg {
  flex-shrink: 0;
  color: #7788ac;
  transition: transform 0.2s;
}
.faq-section details[open] svg {
  transform: rotate(45deg);
}
.faq-section details p {
  padding: 0 30px 24px 0;
  font-size: 14px;
  color: #929fb8;
}
.contact-cta {
  background: #10162c;
  border-top: 1px solid #2c385d;
  border-bottom: 1px solid #2c385d;
}
.cta-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.cta-top .eyebrow {
  font-size: 9px;
  color: #879aca;
}
.giant-cta {
  display: block;
  position: relative;
  font-size: clamp(70px, 10.2vw, 155px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 52px 0;
}
.giant-cta > span {
  color: #7796ff;
}
.giant-cta > svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 18%;
  height: 100%;
  color: #7796ff;
  transition: transform 0.3s;
}
.giant-cta:hover > svg {
  transform: translate(12px, -12px);
}
.cta-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cta-bottom p {
  font-size: 15px;
  color: #94a1be;
}
.footer {
  padding: 60px 4.2% 25px;
  background: #08090b;
}
.footer-top {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1.25fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer-top > a > img {
  width: 100px;
  height: 54px;
}
.footer-top > p {
  font-size: 17px;
  color: #9ba5b8;
  line-height: 1.45;
}
.footer-top .eyebrow {
  font-size: 8px;
  color: #6a7893;
}
.footer-email {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 19px;
  letter-spacing: -0.035em;
  margin-top: 15px;
}
.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  font-size: 12px;
  color: #abb4c7;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--border);
  margin-top: 55px;
  padding-top: 23px;
  font-size: 10px;
  color: #6f7d96;
}
.footer-bottom > span:nth-child(2) {
  font:
    8px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.07em;
}
.motion-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #343e50;
  padding: 8px 10px;
  border-radius: 3px;
  background: transparent;
  font: 8px monospace;
  color: #a5b4ce;
}
.motion-toggle:hover {
  border-color: #738dbe;
}
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.will-reveal.revealed {
  opacity: 1;
  transform: none;
}
[data-motion='paused'] *,
[data-motion='paused'] *:before,
[data-motion='paused'] *:after {
  animation: none !important;
  transition: none !important;
}
[data-motion='paused'] .will-reveal {
  opacity: 1;
  transform: none;
}
[data-motion='paused'] {
  scroll-behavior: auto;
}
@keyframes signal {
  to {
    stroke-dashoffset: -352;
  }
}
/* Content routes */
.page-intro {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--border);
}
.page-intro h1 {
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: 1.02;
  max-width: 1120px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.page-intro h1 > span {
  color: #7995f4;
}
.page-description {
  font-size: 18px;
  color: #969fb2;
  max-width: 680px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.page-intro-mark {
  position: absolute;
  right: 2%;
  top: 35px;
  color: #17213b;
  font-size: 440px;
  line-height: 1;
  z-index: 0;
}
.listing-section {
  padding-top: 55px;
}
.filter-bar {
  display: flex;
  gap: 10px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.filter-bar button {
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: transparent;
  font-size: 14px;
  color: #94a0b8;
}
.filter-bar button.active {
  background: #dce4ff;
  color: #15213f;
  border-color: #dce4ff;
}
.filter-bar sup {
  margin-left: 12px;
  font: 10px monospace;
}
.project-status {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 7px 11px;
  font: 11px monospace;
  border: 1px solid #7e88a2;
  border-radius: 3px;
  background: #121a2bcc;
}
.visual-myba {
  background: #c5c5b8;
  color: #303b35;
}
.myba-window {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 100px;
  bottom: 45px;
  background: #edf0e7;
  border: 1px solid #f8fff2;
  border-radius: 4px;
  padding: 26px 25px;
  box-shadow: 0 30px 40px #34413c20;
  transform: rotate(-3deg);
  overflow: hidden;
}
.myba-window h4 {
  font:
    28px/1.1 Georgia,
    serif;
  letter-spacing: -0.04em;
  margin: 12px 0 17px;
}
.myba-modules {
  display: flex;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.myba-modules span {
  font-size: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  background: #dae2d3;
  border-radius: 3px;
}
.myba-bars {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  opacity: 0.5;
}
.myba-bars i {
  background: #899b77;
  flex: 1;
  border-radius: 3px 3px 0 0;
}
.abstract-product-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 1px solid #ffffff3f;
  border-radius: 22px;
  background: #ffffff09;
  z-index: 1;
  backdrop-filter: blur(10px);
}
.abstract-product-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.2;
}
.project-visual-name {
  position: absolute;
  top: 65%;
  left: 20px;
  right: 20px;
  text-align: center;
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.visual-orbit {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid #ffffff12;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.visual-orbit:before,
.visual-orbit:after {
  content: '';
  border: 1px solid #ffffff0e;
  border-radius: 50%;
  position: absolute;
  inset: -45px;
}
.visual-orbit:after {
  inset: -90px;
}
.visual-orbit > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b8ccff;
  position: absolute;
  top: 9%;
  left: 20%;
}
.visual-orbit > span:nth-child(2) {
  top: 80%;
  left: 90%;
}
.visual-orbit > span:nth-child(3) {
  top: 20%;
  left: 90%;
}
.visual-chris {
  background: #1c386c;
  color: #e9f1ff;
}
.visual-talkyto {
  background: #264738;
  color: #d7f3d8;
}
.visual-workspace-sync {
  background: #bed1e7;
  color: #264468;
}
.visual-nebion {
  background: #24223f;
  color: #d8ceff;
}
.visual-agilent {
  background: #243d77;
  color: #dce7ff;
}
.visual-oxfam {
  background: #264a30;
  color: #d5efbd;
}
.visual-innovation-roundtable {
  background: #2e3245;
  color: #dce5ff;
}
.visual-croatian-national-tourist-board {
  background: #b9d0de;
  color: #1e3d54;
}
.visual-spectropa {
  background: #2f2850;
  color: #e4d6ff;
}
.breadcrumbs {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7f8ea9;
  margin-bottom: 65px;
  flex-wrap: wrap;
}
.breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs [aria-current] {
  color: #c1cbe0;
}
.project-detail-intro {
  padding-top: 35px;
  padding-bottom: 65px;
}
.project-title-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12%;
  align-items: end;
}
.project-title-row h1 {
  font-size: clamp(58px, 7vw, 100px);
  line-height: 1.06;
  margin: 20px 0;
  overflow-wrap: anywhere;
}
.project-title-row h1 > span {
  color: #7694ff;
}
.project-tagline {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  color: #bdc7dd;
  max-width: 580px;
}
.project-detail-meta .eyebrow {
  color: #7a8bae;
  font-size: 10px;
}
.project-detail-meta > p {
  margin-top: 20px;
  font-size: 16px;
  color: #9eabc3;
}
.project-detail-meta .button,
.project-detail-meta .text-link {
  margin-top: 25px;
}
.detail-visual-wrap {
  padding: 0 4.2%;
}
.detail-visual-wrap > .project-visual {
  height: 620px;
}
.detail-visual-wrap .visual-wordmark {
  font-size: 60px;
  left: 7%;
  top: 40px;
}
.detail-visual-wrap .legal-window {
  top: 145px;
  left: 20%;
  right: 16%;
  bottom: 60px;
  transform: rotate(-3deg);
}
.detail-visual-wrap .legal-layout {
  grid-template-columns: 140px 1fr;
}
.detail-visual-wrap .mock-main {
  padding: 35px;
}
.detail-visual-wrap .mock-main h4 {
  font-size: 40px;
  margin: 20px 0;
}
.detail-visual-wrap .mock-sidebar {
  font-size: 11px;
  padding: 30px 20px;
  gap: 25px;
}
.detail-visual-wrap .mock-input {
  max-width: none;
  padding: 20px;
  font-size: 12px;
}
.detail-visual-wrap .mini-options span {
  font-size: 10px;
  padding: 12px;
}
.detail-visual-wrap .mock-check {
  font-size: 10px;
  margin-top: 20px;
}
.detail-visual-wrap .chair-window {
  top: 155px;
  left: 20%;
  right: 20%;
  bottom: 65px;
}
.detail-visual-wrap .dental-profile {
  padding: 40px;
}
.detail-visual-wrap .dental-profile h4 {
  font-size: 38px;
}
.detail-visual-wrap .profile-avatar {
  width: 80px;
  height: 100px;
}
.detail-visual-wrap .dental-stats {
  margin: 0 40px;
  padding: 24px 0;
  font-size: 12px;
}
.detail-visual-wrap .dental-stats strong {
  font-size: 16px;
}
.detail-visual-wrap .dental-timeline {
  margin: 25px 40px;
  font-size: 12px;
}
.detail-visual-wrap .dental-timeline div > span {
  font-size: 10px;
}
.detail-visual-wrap .myba-window {
  top: 150px;
  left: 23%;
  right: 23%;
  bottom: 55px;
  padding: 35px;
}
.detail-visual-wrap .myba-window h4 {
  font-size: 40px;
}
.detail-visual-wrap .myba-modules {
  margin-top: 25px;
}
.detail-visual-wrap .myba-modules span {
  font-size: 10px;
  padding: 12px;
}
.detail-visual-wrap .abstract-product-icon {
  width: 130px;
  height: 130px;
}
.detail-visual-wrap .project-visual-name {
  font-size: 58px;
}
.detail-visual-wrap .visual-caption {
  left: 7%;
  font-size: 12px;
  bottom: 25px;
}
.project-story {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 10%;
  padding-top: 90px;
}
.project-story aside {
  position: sticky;
  top: 140px;
  align-self: start;
}
.project-story aside > .eyebrow {
  color: #8a9abb;
}
.project-story aside ul {
  list-style: none;
  padding: 25px 0;
  margin: 0;
  display: grid;
  gap: 13px;
  font-size: 14px;
  color: #b5c0d6;
}
.project-story aside .text-link {
  margin-top: 20px;
  color: #7f9fff;
}
.project-story article section {
  margin-bottom: 55px;
}
.project-story article .eyebrow {
  font-size: 10px;
  color: #687da4;
}
.project-story article h2 {
  font-size: 40px;
  margin: 18px 0 22px;
  line-height: 1.13;
}
.project-story article p:not(.eyebrow) {
  font-size: 17px;
  color: #a0aec8;
  line-height: 1.85;
  max-width: 750px;
}
.related-section {
  padding-top: 0;
}
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.related-link .eyebrow {
  font-size: 10px;
  color: #7589ad;
}
.related-link h3 {
  font-size: 35px;
  margin-top: 20px;
  line-height: 1.1;
}
.related-link > svg {
  flex-shrink: 0;
  color: #7995ff;
}
.status-pill {
  display: inline-block;
  background: #1d2949;
  padding: 10px 15px;
  border: 1px solid #495e8c;
  font: 12px monospace;
  margin-top: 25px;
}
.expertise-detail {
  padding-top: 0;
}
.expertise-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
  border-bottom: 1px solid var(--border);
  padding: 65px 0;
  scroll-margin-top: 115px;
}
.expertise-detail-row h2 {
  font-size: 42px;
}
.expertise-detail-row > div > p:not(.eyebrow) {
  color: #a2aec5;
  font-size: 17px;
}
.expertise-detail-row ul {
  display: grid;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #c7d2e8;
  font-size: 15px;
}
.expertise-detail-row li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.expertise-detail-row li > svg {
  color: #7796ff;
}
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
  padding-top: 90px;
  min-height: 850px;
}
.contact-intro h1 {
  font-size: clamp(60px, 6.8vw, 98px);
  line-height: 1.02;
  margin: 35px 0;
}
.contact-intro h1 > span {
  color: #7995f4;
}
.contact-intro > p:not(.eyebrow) {
  font-size: 18px;
  color: #9aa9c5;
  max-width: 430px;
}
.contact-intro .eyebrow {
  font-size: 10px;
  color: #8b9bbc;
}
.direct-contact {
  margin-top: 65px;
}
.direct-contact > a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 20px;
}
.contact-location {
  margin-top: 65px;
}
.contact-location > p {
  color: #7789ab;
  font-size: 14px;
  margin-top: 15px;
}
.contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 36px;
  min-width: 0;
}
.contact-form legend {
  font:
    10px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.09em;
  color: #778bad;
  margin-bottom: 22px;
}
.project-types {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap;
}
.project-types > label {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #303b50;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: #a7b6d0;
  cursor: pointer;
}
.project-types > label.selected {
  background: #192643;
  border-color: #6483cb;
  color: #d8e4ff;
}
.project-types [data-slot='radio-group-item'] {
  width: 12px;
  height: 12px;
}
.project-types [data-slot='radio-group-indicator'] > span {
  width: 5px;
  height: 5px;
}
.contact-form label:not(.project-types label) {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
  color: #c1cce0;
}
.contact-form label > span {
  color: #6d8dcc;
}
.contact-form .optional {
  color: #7585a3;
  font-size: 11px;
  margin-left: 5px;
}
.contact-form input,
.contact-form textarea,
.brief-result textarea {
  background: #101621;
  border: 1px solid #303b50;
  border-radius: 4px;
  padding: 16px;
  color: #e0eaff;
  width: 100%;
  font-size: 14px;
  outline-offset: 3px;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #75829c;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7a96e3;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.form-note {
  font-size: 12px !important;
  color: #8090af;
  line-height: 1.65;
  margin-bottom: 25px;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-error {
  font-size: 12px;
  color: #ffacb5;
  margin-top: 8px;
}
.contact-form [aria-invalid='true'] {
  border-color: #d67685;
}
.brief-result {
  background: #111a2a;
  padding: 35px;
  border: 1px solid #314569;
  border-radius: 5px;
}
.result-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: #263d62;
  color: #a5c9ff;
  border-radius: 50%;
  margin-bottom: 30px;
}
.brief-result .eyebrow {
  font-size: 10px;
}
.brief-result h2 {
  font-size: 37px;
  margin: 20px 0;
}
.brief-result > p:not(.eyebrow) {
  font-size: 15px;
  color: #a1b2cd;
  margin-bottom: 28px;
}
.brief-result .button {
  margin-bottom: 12px;
  width: 100%;
  justify-content: center;
}
.copy-brief {
  background: transparent;
  color: #a5bada;
}
.brief-result details {
  margin: 20px 0 28px;
}
.brief-result summary {
  font-size: 13px;
  cursor: pointer;
  color: #b8ccec;
}
.brief-result textarea {
  margin-top: 16px;
  font: 12px/1.7 monospace;
  resize: vertical;
  min-height: 240px;
}
.brief-result > .text-link {
  font-size: 12px;
  background: transparent;
  border: 0;
}
.studio-manifesto {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 15%;
}
.studio-numbers {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.studio-numbers strong {
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.07em;
  color: #dce6ff;
}
.studio-numbers strong span {
  display: block;
  font:
    10px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.1em;
  color: #8094b9;
  margin-top: 20px;
}
.studio-story h2 {
  font-size: 43px;
  margin-bottom: 28px;
}
.studio-story > p:not(.eyebrow) {
  font-size: 17px;
  color: #9dabc5;
  margin-bottom: 23px;
}
.studio-story .text-link {
  margin-top: 20px;
}
.principles-section {
  background: #101722;
  border-block: 1px solid #293750;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.principles-grid article > svg {
  color: #769bf7;
  margin-bottom: 35px;
}
.principles-grid h3 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.principles-grid p {
  font-size: 14px;
  color: #94a5c5;
}
.team-stance {
  max-width: 950px;
}
.team-stance > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.8;
  color: #94a7c8;
  margin-top: 30px;
}
.team-stance .button {
  margin-top: 35px;
}
.journal-index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.article-card > p {
  color: #8f9fbb;
  font-size: 14px;
  margin-bottom: 25px;
}
.article-page {
  padding-top: 35px;
}
.article-header {
  max-width: 920px;
  margin: 0 auto;
}
.article-header h1 {
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.04;
  margin: 25px 0 30px;
}
.article-header > p:not(.eyebrow) {
  font-size: 20px;
  color: #95a6c7;
  max-width: 800px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 35px 0 65px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.author-monogram {
  background: #274cc0;
  color: white;
  font-size: 23px;
  letter-spacing: -0.1em;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.article-byline strong {
  font-size: 13px;
  font-weight: 500;
}
.article-byline div > span {
  display: block;
  font-size: 11px;
  color: #7b91b8;
  margin-top: 5px;
}
.article-byline time {
  margin-left: auto;
  font: 11px monospace;
  color: #8096bd;
}
.article-content {
  display: grid;
  grid-template-columns: 1fr 2.7fr;
  gap: 8%;
  max-width: 1100px;
  margin: auto;
}
.article-content aside {
  position: sticky;
  top: 140px;
  align-self: start;
}
.article-content aside > .eyebrow {
  font-size: 9px;
  color: #6681ad;
}
.article-content aside nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.5;
  color: #96a9ca;
}
.article-content aside nav a:hover {
  color: #d8e4ff;
}
.article-prose section {
  margin-bottom: 45px;
  scroll-margin-top: 130px;
}
.article-prose h2 {
  font-size: 32px;
  margin: 0 0 24px;
  line-height: 1.2;
}
.article-prose p {
  font-size: 18px;
  line-height: 1.9;
  color: #a1b0ca;
}
.article-end {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 15px;
  color: #a2b5d6;
}
.article-page > .related-link {
  margin-top: 35px;
}
.legal-content {
  max-width: 1000px;
  margin: 0 auto;
}
.legal-content section {
  margin-bottom: 50px;
}
.legal-content h2 {
  font-size: 30px;
  margin-bottom: 22px;
}
.legal-content p {
  font-size: 16px;
  color: #a2b0c9;
  line-height: 1.85;
  margin-top: 15px;
}
.legal-content a {
  color: #8eacff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.not-found {
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-number {
  font-size: clamp(100px, 20vw, 220px);
  letter-spacing: -0.08em;
  color: #688af4;
  line-height: 1;
  margin: 35px 0;
}
.not-found h1 {
  font-size: 40px;
  line-height: 1.1;
}
.not-found > p:not(.eyebrow) {
  color: #97a9c9;
  margin: 20px;
}
.not-found > div {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
/* A quiet, persistent navigation layer and readable metadata. */
.header {
  position: sticky;
  top: 0;
  background: #08090bef;
  backdrop-filter: blur(18px);
}
.eyebrow {
  font-size: 12px;
}
.hero .eyebrow {
  font-size: 11px;
}
.hero-caption,
.hero-bottom {
  font-size: 11px;
}
.section .eyebrow,
.trust-section > .eyebrow,
.section-heading .eyebrow,
.footer .eyebrow {
  font-size: 11px;
}
.section .architecture-top .eyebrow,
.section .architecture-foot,
.visual-caption,
.article-art > .eyebrow {
  font-size: 10px;
}
.stats-row span,
.article-meta,
.footer-bottom,
.footer-bottom > span:nth-child(2),
.motion-toggle,
.project-number,
.tech-note .eyebrow,
.tech-note p,
.tech-note > span:last-child {
  font-size: 11px;
}
.node-tag {
  font-size: 8px;
}
.form-note,
.article-byline div > span,
.article-byline time,
.project-detail-meta > .eyebrow,
.contact-form legend {
  font-size: 12px;
}
.hero-art {
  opacity: 0.94;
}
.hero-art:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #08090b 0%,
    transparent 26%,
    transparent 88%,
    #08090b 100%
  );
  pointer-events: none;
}
/* Tablet and mobile compositions */
@media (min-width: 1800px) {
  .header,
  .section,
  .footer,
  .trust-section {
    padding-left: max(4.2%, calc((100vw - 1620px) /2));
    padding-right: max(4.2%, calc((100vw - 1620px) /2));
  }
  .hero {
    padding-left: max(4.2%, calc((100vw - 1620px) /2));
  }
  .hero-art {
    width: 1200px;
    right: 1%;
    top: -160px;
  }
  .hero h1 {
    font-size: 124px;
  }
}
@media (max-width: 1150px) {
  .header nav {
    margin-right: 15px;
    gap: 23px;
  }
  .header-cta {
    gap: 15px;
  }
  .section-heading {
    gap: 35px;
  }
  .trust-section {
    grid-template-columns: 190px 1fr;
    gap: 25px;
  }
  .trust-logos {
    gap: 20px;
  }
  .trust-section > .eyebrow {
    font-size: 10px;
  }
  .trust-logos .irt-logo {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr 2.8fr;
    gap: 35px;
  }
  .intro-bottom {
    gap: 25px;
  }
  .intro-bottom p {
    font-size: 15px;
  }
  .stats-row strong {
    font-size: 26px;
  }
  .stats-row span {
    font-size: 9px;
  }
  .project-visual {
    height: 365px;
  }
  .legal-window {
    left: 25px;
    bottom: 45px;
  }
  .mock-main {
    padding: 20px 15px;
  }
  .mock-main h4 {
    font-size: 25px;
  }
  .mock-sidebar {
    gap: 12px;
  }
  .legal-layout {
    grid-template-columns: 80px 1fr;
  }
  .chair-window {
    left: 25px;
    right: 22px;
    top: 95px;
    bottom: 45px;
  }
  .dental-profile {
    padding: 20px 15px;
    gap: 10px;
  }
  .dental-profile h4 {
    font-size: 23px;
  }
  .profile-avatar {
    width: 47px;
    height: 60px;
  }
  .verified {
    display: none;
  }
  .dental-timeline {
    margin-top: 12px;
  }
  .project-description {
    font-size: 14px;
  }
  .workflow-body {
    gap: 5%;
  }
  .node {
    font-size: 10px;
    padding: 12px;
  }
  .node-tag {
    display: none;
  }
  .architecture-foot {
    font-size: 8px !important;
    gap: 20px;
  }
  .workflow-tabs button {
    font-size: 10px !important;
  }
  .workflow-tabs button > svg {
    margin-left: 10px;
  }
  .workflow-panels h3 {
    font-size: 30px;
  }
  .service-row {
    grid-template-columns: 32px 1.1fr 1fr 25px;
    gap: 20px;
  }
  .service-row h3 {
    font-size: 24px;
  }
  .service-row p {
    font-size: 14px;
  }
  .enterprise-section {
    gap: 8%;
  }
  .enterprise-panel {
    padding-left: 35px;
  }
  .enterprise-brand {
    font-size: 58px;
  }
  .product-directory-item {
    padding: 25px 20px 65px;
  }
  .product-directory-item h3 {
    font-size: 20px;
  }
  .product-directory-item p {
    font-size: 13px;
  }
  .product-directory-item > svg {
    left: 20px;
  }
  .studio-teaser {
    gap: 10%;
  }
  .article-art {
    height: 190px;
  }
  .article-card h3 {
    font-size: 23px;
  }
  .article-meta {
    font-size: 9px;
  }
  .faq-section {
    gap: 7%;
  }
  .faq-section h2 {
    font-size: 40px;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-email {
    font-size: 17px;
  }
  .footer-top nav {
    gap: 15px;
  }
  .detail-visual-wrap .legal-window {
    left: 15%;
    right: 12%;
  }
  .detail-visual-wrap .chair-window {
    left: 14%;
    right: 14%;
  }
  .project-title-row {
    gap: 8%;
  }
  .contact-page {
    gap: 7%;
  }
  .contact-intro > .eyebrow {
    font-size: 9px;
  }
  .contact-form legend {
    font-size: 10px;
  }
  .principles-grid {
    gap: 25px;
  }
  .principles-grid h3 {
    font-size: 23px;
  }
}
@media (max-width: 900px) {
  .header {
    height: 88px;
    gap: 20px;
  }
  .header nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 790px;
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-art {
    top: 70px;
    width: 87%;
    right: -28%;
  }
  .hero-caption {
    font-size: 9px;
    max-width: 33%;
    line-height: 1.7;
    bottom: 125px;
  }
  .hero-bottom {
    font-size: 9px;
  }
  .trust-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .trust-section > .eyebrow br {
    display: none;
  }
  .trust-logos .irt-logo {
    display: block;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-cross {
    display: none;
  }
  .intro h2 {
    font-size: 48px;
  }
  .intro-bottom {
    justify-content: space-between;
  }
  .section-heading {
    display: block;
  }
  .section-heading > .section-lead,
  .section-heading > .text-link {
    margin-top: 28px;
    max-width: 580px;
  }
  .work-section h2 {
    font-size: 43px;
  }
  .project-visual {
    height: 320px;
  }
  .visual-wordmark {
    left: 25px;
    top: 25px;
    font-size: 31px;
  }
  .legal-window {
    top: 87px;
    left: 20px;
    bottom: 37px;
    right: -60px;
  }
  .legal-layout {
    grid-template-columns: 65px 1fr;
  }
  .mock-main {
    padding: 15px;
  }
  .mock-main h4 {
    font-size: 22px;
    margin: 8px 0 12px;
  }
  .mini-options {
    gap: 4px;
  }
  .mini-options span {
    font-size: 5px;
    padding: 5px;
  }
  .mock-input {
    padding: 9px;
  }
  .mock-check {
    margin-top: 9px;
    font-size: 6px;
  }
  .mock-sidebar {
    padding: 15px 7px;
    font-size: 6px;
  }
  .visual-caption {
    font-size: 8px;
    bottom: 13px;
    left: 20px;
  }
  .chair-window {
    left: 15px;
    right: 15px;
    top: 90px;
    bottom: 35px;
  }
  .dental-profile {
    padding: 15px 12px;
  }
  .profile-avatar {
    width: 40px;
    height: 45px;
  }
  .dental-profile h4 {
    font-size: 20px;
  }
  .dental-profile .mock-eyebrow {
    font-size: 5px;
  }
  .dental-stats {
    margin: 0 12px;
    font-size: 6px;
    padding: 10px 0;
  }
  .dental-stats strong {
    font-size: 8px;
  }
  .dental-timeline {
    margin: 10px 12px;
    font-size: 7px;
  }
  .dental-timeline div > span {
    font-size: 6px;
  }
  .project-arrow {
    width: 36px;
    height: 36px;
    right: 14px;
    top: 14px;
  }
  .project-arrow svg {
    width: 19px;
  }
  .project-info .eyebrow {
    font-size: 9px;
  }
  .project-info h3 {
    font-size: 26px;
  }
  .featured-strip {
    gap: 35px;
  }
  .featured-strip > .myba-word {
    font-size: 35px;
    width: 110px;
  }
  .featured-strip h3 {
    font-size: 22px;
  }
  .workflow-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .architecture {
    height: 400px;
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .flow-lines {
    max-width: 650px;
  }
  .node {
    font-size: 13px;
  }
  .node-human {
    top: 70px;
  }
  .node-tag {
    display: block;
  }
  .node-agents,
  .node-engineers {
    top: 190px;
  }
  .node-review {
    top: 285px;
  }
  .architecture-foot {
    font-size: 10px !important;
  }
  .workflow-panels {
    max-width: 650px;
  }
  .workflow-tabs {
    gap: 16px !important;
  }
  .workflow-tabs button {
    font-size: 9px !important;
  }
  .service-row {
    grid-template-columns: 30px 1fr 25px;
    gap: 22px;
    padding: 28px 0;
  }
  .service-row h3 {
    font-size: 25px;
  }
  .service-row p {
    grid-column: 2;
    grid-row: 2;
    max-width: 560px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }
  .enterprise-section {
    grid-template-columns: 1fr 1fr;
    gap: 7%;
  }
  .enterprise-copy h2 {
    font-size: 38px;
  }
  .enterprise-copy .eyebrow {
    font-size: 9px;
  }
  .enterprise-panel {
    padding-left: 30px;
  }
  .enterprise-brand {
    font-size: 53px;
  }
  .enterprise-panel > p:last-child {
    font-size: 27px;
  }
  .enterprise-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .light-button {
    font-size: 12px;
    padding: 13px;
    gap: 15px;
  }
  .product-directory {
    grid-template-columns: 1fr 1fr;
  }
  .product-directory-item {
    padding: 30px 25px 65px;
  }
  .product-directory-item:nth-child(2) {
    border-right: 0;
  }
  .product-directory-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .product-directory-item h3 {
    font-size: 25px;
  }
  .product-directory-item p {
    font-size: 14px;
  }
  .sovereign-note {
    gap: 20px;
    flex-wrap: wrap;
  }
  .sovereign-note .text-link {
    margin-left: 50px;
  }
  .coming-next > .eyebrow {
    font-size: 9px;
  }
  .coming-next > span:last-child {
    font-size: 11px;
  }
  .studio-teaser-copy p {
    font-size: 16px;
  }
  .article-grid {
    gap: 20px;
  }
  .article-art {
    height: 160px;
  }
  .article-art > span:first-child {
    font-size: 200px;
  }
  .article-art-1 > span:first-child {
    font-size: 100px;
  }
  .article-art-2 > span:first-child {
    font-size: 190px;
  }
  .article-meta {
    font-size: 8px;
    gap: 12px;
  }
  .article-card h3 {
    font-size: 22px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cta-top > .eyebrow:last-child {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-top > p {
    justify-self: end;
  }
  .footer-top nav {
    justify-self: end;
    gap: 15px 45px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .page-intro h1 {
    font-size: 64px;
  }
  .page-intro-mark {
    font-size: 350px;
    right: -5%;
    top: 130px;
  }
  .project-title-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-title-row h1 {
    font-size: 90px;
  }
  .project-detail-meta {
    max-width: 680px;
  }
  .project-detail-meta .eyebrow {
    font-size: 10px;
  }
  .project-story {
    grid-template-columns: 1fr 2fr;
    gap: 6%;
  }
  .project-story article h2 {
    font-size: 34px;
  }
  .detail-visual-wrap > .project-visual {
    height: 510px;
  }
  .detail-visual-wrap .legal-window {
    left: 12%;
    right: 6%;
    bottom: 45px;
    top: 120px;
  }
  .detail-visual-wrap .mock-main {
    padding: 22px;
  }
  .detail-visual-wrap .mock-main h4 {
    font-size: 35px;
    margin: 15px 0;
  }
  .detail-visual-wrap .mock-input {
    padding: 15px;
    font-size: 10px;
  }
  .detail-visual-wrap .chair-window {
    left: 10%;
    right: 10%;
    top: 135px;
    bottom: 50px;
  }
  .detail-visual-wrap .dental-profile {
    padding: 25px;
  }
  .detail-visual-wrap .dental-profile h4 {
    font-size: 30px;
  }
  .detail-visual-wrap .dental-stats {
    margin: 0 25px;
    padding: 18px 0;
  }
  .detail-visual-wrap .dental-timeline {
    margin: 22px 25px;
  }
  .detail-visual-wrap .myba-window {
    left: 15%;
    right: 15%;
    top: 120px;
    bottom: 50px;
  }
  .expertise-detail-row {
    gap: 10%;
  }
  .expertise-detail-row h2 {
    font-size: 37px;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .contact-intro h1 {
    font-size: 84px;
  }
  .contact-intro > p:not(.eyebrow) {
    max-width: 650px;
  }
  .direct-contact {
    margin-top: 35px;
  }
  .contact-location {
    margin-top: 35px;
  }
  .contact-form-wrap {
    max-width: 720px;
  }
  .studio-manifesto {
    grid-template-columns: 1fr 1.7fr;
    gap: 10%;
  }
  .studio-numbers strong {
    font-size: 65px;
  }
  .studio-story h2 {
    font-size: 34px;
  }
  .principles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .article-content {
    grid-template-columns: 1fr;
  }
  .article-content aside {
    position: static;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .article-content aside nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .article-prose {
    max-width: 740px;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .header {
    height: 80px;
    padding: 0 6%;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .brand img {
    width: 74px;
    height: 42px;
  }
  .hero {
    padding-top: 40px;
    min-height: 930px;
  }
  .hero h1 {
    font-size: clamp(55px, 12.7vw, 76px);
    line-height: 1.01;
  }
  .hero .eyebrow {
    font-size: 9px;
    max-width: 300px;
    line-height: 1.7;
  }
  .hero .status-dot {
    flex-shrink: 0;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 25px;
  }
  .hero-actions {
    gap: 25px;
    margin-top: 25px;
    align-items: center;
  }
  .hero-actions .button {
    font-size: 13px;
    gap: 20px;
    padding: 15px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-art {
    width: 123%;
    right: -25%;
    top: 400px;
  }
  .hero-caption {
    max-width: 70%;
    bottom: 97px;
    right: 6%;
    font-size: 9px;
  }
  .hero-bottom {
    font-size: 9px;
    padding-top: 18px;
    bottom: 25px;
  }
  .hero-bottom > a {
    max-width: 110px;
    text-align: right;
  }
  .trust-section {
    padding: 30px 6%;
    gap: 30px;
  }
  .trust-section > .eyebrow {
    font-size: 10px !important;
    line-height: 1.8;
    max-width: 300px;
  }
  .trust-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 28px 35px;
  }
  .trust-logos .irt-logo {
    display: none;
  }
  .agilent-logo {
    font-size: 24px;
  }
  .oxfam-logo {
    font-size: 25px;
  }
  .startlegal-logo,
  .chairlink-logo {
    font-size: 23px;
  }
  .section {
    padding: 70px 6%;
  }
  .section .eyebrow {
    font-size: 10px;
  }
  .section h2 {
    font-size: 38px;
  }
  .intro {
    gap: 25px;
  }
  .intro h2 {
    font-size: 36px;
    line-height: 1.13;
  }
  .intro-bottom {
    display: block;
    margin-top: 25px;
  }
  .intro-bottom p {
    font-size: 16px;
  }
  .intro-bottom .text-link {
    margin-top: 25px;
  }
  .stats-row {
    gap: 15px;
    margin-top: 38px;
    padding-top: 25px;
  }
  .stats-row strong {
    font-size: 23px;
  }
  .stats-row span {
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .stats-row div:nth-child(2) strong {
    font-size: 21px;
    padding-top: 2px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 35px;
    line-height: 1.13;
  }
  .section-lead {
    font-size: 16px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .project-visual {
    height: 340px;
  }
  .visual-wordmark {
    font-size: 31px;
    left: 25px;
  }
  .legal-window {
    top: 92px;
    left: 30px;
    right: -20px;
    bottom: 42px;
  }
  .legal-layout {
    grid-template-columns: 75px 1fr;
  }
  .mock-main {
    padding: 18px;
  }
  .mock-main h4 {
    font-size: 25px;
  }
  .mock-input {
    padding: 11px;
  }
  .mini-options span {
    font-size: 6px;
  }
  .chair-window {
    left: 25px;
    right: 25px;
    top: 96px;
    bottom: 42px;
  }
  .dental-profile {
    padding: 20px 16px;
  }
  .profile-avatar {
    width: 45px;
    height: 55px;
  }
  .dental-profile h4 {
    font-size: 23px;
  }
  .dental-stats {
    margin: 0 16px;
    padding: 13px 0;
  }
  .dental-stats strong {
    font-size: 9px;
  }
  .dental-timeline {
    margin: 14px 16px;
  }
  .project-info {
    margin-top: 22px;
  }
  .project-info .eyebrow {
    font-size: 10px;
  }
  .project-info h3 {
    font-size: 27px;
  }
  .project-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .featured-strip {
    gap: 18px;
    margin-top: 35px;
    padding: 27px 0;
    flex-wrap: wrap;
  }
  .featured-strip > .myba-word {
    font-size: 30px;
    width: auto;
    flex: 1;
  }
  .featured-strip > div {
    order: 3;
    width: 100%;
  }
  .featured-strip h3 {
    font-size: 24px;
  }
  .featured-strip .round-arrow {
    width: 39px;
    height: 39px;
  }
  .featured-strip .eyebrow {
    font-size: 9px;
  }
  .workflow-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px !important;
  }
  .workflow-tabs button {
    font-size: 10px !important;
    height: 58px !important;
    padding: 18px 0 !important;
  }
  .workflow-tabs button svg {
    width: 14px;
  }
  .workflow-body {
    padding-top: 30px;
    gap: 30px;
  }
  .architecture {
    height: 330px;
  }
  .architecture-top {
    top: 17px;
    left: 16px;
    right: 16px;
  }
  .architecture-top .eyebrow {
    font-size: 8px !important;
  }
  .flow-lines {
    top: 7px;
    height: 290px;
  }
  .node {
    font-size: 10px;
    padding: 10px;
    gap: 6px;
  }
  .node-human {
    top: 60px;
  }
  .node-tag {
    display: none;
  }
  .node-agents,
  .node-engineers {
    top: 166px;
  }
  .node-agents {
    left: 23%;
  }
  .node-engineers {
    left: 76%;
  }
  .node-review {
    top: 251px;
  }
  .node-review > svg {
    width: 14px;
  }
  .architecture-foot {
    bottom: 15px;
    left: 16px;
    right: 16px;
    font-size: 7px !important;
    letter-spacing: 0;
  }
  .workflow-panels h3 {
    font-size: 29px;
  }
  .workflow-panels p:not(.eyebrow) {
    font-size: 16px;
  }
  .workflow-panels li {
    font-size: 14px;
  }
  .workflow-output p {
    font-size: 14px !important;
  }
  .service-row {
    grid-template-columns: 20px 1fr 23px;
    gap: 14px;
    padding: 25px 0;
  }
  .service-row h3 {
    font-size: 23px;
    line-height: 1.2;
  }
  .service-row p {
    font-size: 15px;
    line-height: 1.7;
  }
  .service-row:hover {
    padding-left: 0;
    padding-right: 0;
  }
  .service-index {
    font-size: 10px;
  }
  .tech-note {
    gap: 15px;
  }
  .tech-note p {
    font-size: 12px;
    line-height: 1.9;
  }
  .tech-note > span:last-child {
    font-size: 12px;
  }
  .enterprise-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .enterprise-copy h2 {
    font-size: 40px;
  }
  .enterprise-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .enterprise-copy .light-button {
    font-size: 14px;
    gap: 20px;
    padding: 16px;
  }
  .enterprise-panel {
    padding: 35px 0 0;
    border-left: 0;
    border-top: 1px solid #b9c4d6;
  }
  .enterprise-brand {
    font-size: 62px;
  }
  .enterprise-panel > p:last-child {
    font-size: 32px;
  }
  .enterprise-tags span {
    font-size: 10px;
  }
  .enterprise-connections {
    font-size: 14px;
  }
  .product-directory {
    grid-template-columns: 1fr;
  }
  .product-directory-item {
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--border) !important;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 0 20px;
    padding: 28px 25px;
  }
  .product-directory-item:last-child {
    border-bottom: 0 !important;
  }
  .product-directory-item:nth-child(n + 4) {
    border-top: 0;
  }
  .app-icon {
    margin: 0;
    grid-row: 1/3;
  }
  .product-directory-item h3 {
    font-size: 23px;
    padding-right: 25px;
  }
  .product-directory-item p {
    grid-column: 2;
    font-size: 14px;
  }
  .product-directory-item > svg {
    position: absolute;
    right: 22px;
    top: 30px;
    left: auto;
    width: 18px;
  }
  .sovereign-note {
    padding: 25px 0;
    gap: 18px;
    align-items: flex-start;
  }
  .sovereign-note > svg {
    width: 25px;
    flex-shrink: 0;
  }
  .sovereign-note h3 {
    font-size: 17px;
  }
  .sovereign-note p {
    font-size: 14px;
  }
  .sovereign-note .text-link {
    font-size: 13px;
    margin-left: 43px;
  }
  .coming-next {
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 0 0;
  }
  .coming-next > .eyebrow {
    width: 100%;
  }
  .coming-next > span:nth-child(2) {
    font-size: 25px;
  }
  .coming-next > span:last-child {
    font-size: 11px;
    gap: 12px;
  }
  .studio-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .studio-teaser h2 {
    font-size: 63px;
  }
  .studio-teaser-copy p {
    font-size: 17px;
  }
  .studio-teaser-copy > svg {
    width: 42px;
    height: 42px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .article-art {
    height: 245px;
  }
  .article-art > span:first-child {
    font-size: 290px;
  }
  .article-art-1 > span:first-child {
    font-size: 160px;
  }
  .article-art-2 > span:first-child {
    font-size: 280px;
  }
  .article-meta {
    font-size: 11px;
  }
  .article-card h3 {
    font-size: 28px;
    margin: 18px 0;
  }
  .article-card .text-link {
    font-size: 14px;
  }
  .article-card > p {
    font-size: 16px;
  }
  .faq-section {
    gap: 25px;
  }
  .faq-section h2 {
    font-size: 35px;
  }
  .faq-section summary {
    font-size: 15px;
    line-height: 1.5;
    padding: 21px 0;
  }
  .faq-section details p {
    font-size: 15px;
    padding-right: 0;
  }
  .contact-cta {
    padding-block: 55px;
  }
  .cta-top .eyebrow {
    font-size: 9px;
  }
  .giant-cta {
    font-size: clamp(52px, 11.3vw, 75px);
    margin: 40px 0;
    line-height: 1.07;
  }
  .giant-cta > svg {
    width: 18%;
    right: -3%;
    height: 65%;
    top: 0;
  }
  .cta-bottom {
    gap: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-bottom p {
    font-size: 15px;
  }
  .cta-bottom .button {
    font-size: 14px;
    width: 100%;
  }
  .footer {
    padding: 45px 6% 24px;
  }
  .footer-top {
    gap: 35px 20px;
  }
  .footer-top > p {
    font-size: 16px;
  }
  .footer-top > a > img {
    width: 88px;
    height: 46px;
  }
  .footer-top > div {
    grid-column: 1/-1;
  }
  .footer-email {
    font-size: 27px;
    margin-top: 12px;
  }
  .footer-top nav {
    grid-column: 1/-1;
    width: 100%;
    justify-self: start;
    font-size: 14px;
    gap: 18px 50px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 10px;
    margin-top: 38px;
    padding-top: 25px;
  }
  .footer-bottom > span {
    flex: 1;
    white-space: nowrap;
  }
  .footer-bottom .motion-toggle {
    font-size: 9px;
  }
  .footer-bottom > a {
    font-size: 12px;
  }
  .page-intro {
    padding-top: 58px;
    padding-bottom: 55px;
  }
  .page-intro h1 {
    font-size: clamp(44px, 10.6vw, 62px);
    margin-top: 28px;
    line-height: 1.07;
  }
  .page-description {
    font-size: 17px;
    line-height: 1.75;
    margin-top: 25px;
  }
  .page-intro-mark {
    font-size: 270px;
    right: -17%;
    top: 180px;
    opacity: 0.6;
  }
  .listing-section {
    padding-top: 30px;
  }
  .filter-bar {
    gap: 8px;
    padding-bottom: 30px;
  }
  .filter-bar button {
    padding: 10px 12px;
    font-size: 12px;
    flex-grow: 1;
  }
  .filter-bar sup {
    font-size: 9px;
    margin-left: 7px;
  }
  .visual-myba .myba-window {
    left: 25px;
    right: 25px;
    top: 95px;
    bottom: 40px;
    padding: 22px;
  }
  .myba-window h4 {
    font-size: 27px;
  }
  .myba-modules {
    gap: 5px;
  }
  .myba-modules span {
    font-size: 6px;
    padding: 6px;
  }
  .myba-bars {
    gap: 5px;
  }
  .project-visual-name {
    font-size: 29px;
  }
  .abstract-product-icon {
    width: 85px;
    height: 85px;
  }
  .abstract-product-icon svg {
    width: 36px;
    height: 36px;
  }
  .breadcrumbs {
    font-size: 11px;
    gap: 9px;
    margin-bottom: 42px;
  }
  .breadcrumbs > span {
    gap: 9px;
  }
  .project-detail-intro {
    padding-top: 28px;
    padding-bottom: 45px;
  }
  .project-title-row {
    gap: 30px;
  }
  .project-title-row h1 {
    font-size: clamp(52px, 13vw, 74px);
    margin: 18px 0;
  }
  .project-tagline {
    font-size: 25px;
  }
  .project-detail-meta > p {
    font-size: 16px;
    margin-top: 15px;
  }
  .detail-visual-wrap {
    padding: 0 6%;
  }
  .detail-visual-wrap > .project-visual {
    height: 370px;
  }
  .detail-visual-wrap .visual-wordmark {
    font-size: 33px;
    left: 25px;
    top: 27px;
  }
  .detail-visual-wrap .legal-window {
    top: 95px;
    left: 25px;
    right: -20px;
    bottom: 45px;
  }
  .detail-visual-wrap .legal-layout {
    grid-template-columns: 75px 1fr;
  }
  .detail-visual-wrap .mock-main {
    padding: 20px 15px;
  }
  .detail-visual-wrap .mock-main h4 {
    font-size: 26px;
    margin: 10px 0 15px;
  }
  .detail-visual-wrap .mock-sidebar {
    padding: 15px 8px;
    font-size: 7px;
    gap: 18px;
  }
  .detail-visual-wrap .mock-input {
    font-size: 8px;
    padding: 12px;
  }
  .detail-visual-wrap .mini-options span {
    font-size: 6px;
    padding: 6px;
  }
  .detail-visual-wrap .mock-check {
    font-size: 7px;
    margin-top: 13px;
  }
  .detail-visual-wrap .visual-caption {
    font-size: 8px;
    bottom: 18px;
    left: 25px;
  }
  .detail-visual-wrap .chair-window {
    left: 20px;
    right: 20px;
    top: 103px;
    bottom: 43px;
  }
  .detail-visual-wrap .dental-profile {
    padding: 20px 16px;
    gap: 12px;
  }
  .detail-visual-wrap .dental-profile h4 {
    font-size: 24px;
  }
  .detail-visual-wrap .profile-avatar {
    width: 50px;
    height: 65px;
  }
  .detail-visual-wrap .dental-stats {
    margin: 0 16px;
    padding: 15px 0;
    font-size: 7px;
  }
  .detail-visual-wrap .dental-stats strong {
    font-size: 10px;
  }
  .detail-visual-wrap .dental-timeline {
    font-size: 8px;
    margin: 17px 16px;
  }
  .detail-visual-wrap .dental-timeline div > span {
    font-size: 7px;
  }
  .detail-visual-wrap .myba-window {
    left: 25px;
    right: 25px;
    top: 95px;
    bottom: 45px;
    padding: 24px;
  }
  .detail-visual-wrap .myba-window h4 {
    font-size: 28px;
  }
  .detail-visual-wrap .myba-modules {
    margin-top: 20px;
  }
  .detail-visual-wrap .myba-modules span {
    font-size: 7px;
    padding: 7px;
  }
  .detail-visual-wrap .abstract-product-icon {
    width: 90px;
    height: 90px;
  }
  .detail-visual-wrap .project-visual-name {
    font-size: 34px;
  }
  .project-story {
    grid-template-columns: 1fr;
    padding-top: 45px;
    gap: 45px;
  }
  .project-story aside {
    position: static;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
  }
  .project-story aside ul {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .project-story aside li {
    padding: 8px 12px;
    border: 1px solid #2a3751;
    border-radius: 3px;
    font-size: 12px;
  }
  .project-story aside .text-link {
    margin-top: 5px;
    font-size: 14px;
  }
  .project-story article h2 {
    font-size: 32px;
    margin-top: 15px;
  }
  .project-story article p:not(.eyebrow) {
    font-size: 17px;
  }
  .project-story article section {
    margin-bottom: 42px;
  }
  .related-section {
    padding-top: 0;
  }
  .related-link h3 {
    font-size: 30px;
    margin-top: 15px;
  }
  .expertise-detail {
    padding-top: 0;
  }
  .expertise-detail-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0;
  }
  .expertise-detail-row h2 {
    font-size: 35px;
    margin-top: 17px;
  }
  .expertise-detail-row > div > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact-page {
    padding-top: 55px;
    gap: 50px;
  }
  .contact-intro h1 {
    font-size: 70px;
    margin: 30px 0;
  }
  .contact-intro > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact-intro .eyebrow {
    font-size: 9px;
  }
  .direct-contact > a {
    font-size: 29px;
  }
  .contact-location {
    margin-top: 28px;
  }
  .contact-location > p {
    font-size: 13px;
  }
  .project-types > label {
    font-size: 13px;
    padding: 12px;
  }
  .contact-form legend {
    font-size: 10px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .contact-form label:not(.project-types label) {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
  .contact-form > .button {
    width: 100%;
    font-size: 15px;
  }
  .form-note {
    font-size: 13px !important;
  }
  .brief-result {
    padding: 28px 20px;
  }
  .brief-result h2 {
    font-size: 32px;
  }
  .brief-result > p:not(.eyebrow) {
    font-size: 16px;
  }
  .studio-manifesto {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .studio-numbers {
    flex-direction: row;
    gap: 22px;
    justify-content: space-between;
  }
  .studio-numbers strong {
    font-size: 45px;
  }
  .studio-numbers strong span {
    font-size: 8px;
    letter-spacing: 0;
    line-height: 1.8;
    max-width: 85px;
    margin-top: 13px;
  }
  .studio-story h2 {
    font-size: 36px;
  }
  .studio-story p {
    font-size: 17px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .principles-grid article {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
  }
  .principles-grid article:last-child {
    border: 0;
    padding: 0;
  }
  .principles-grid article > svg {
    margin-bottom: 22px;
  }
  .principles-grid h3 {
    font-size: 28px;
  }
  .principles-grid p {
    font-size: 16px;
  }
  .team-stance > p:not(.eyebrow) {
    font-size: 17px;
  }
  .journal-index-header .text-link {
    font-size: 12px;
  }
  .journal-index-header .eyebrow {
    font-size: 10px;
  }
  .article-page {
    padding-top: 25px;
  }
  .article-page .breadcrumbs {
    font-size: 10px;
    line-height: 1.7;
  }
  .article-header h1 {
    font-size: 43px;
    margin-top: 22px;
    line-height: 1.08;
  }
  .article-header > p:not(.eyebrow) {
    font-size: 18px;
  }
  .article-byline {
    margin-bottom: 45px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .article-byline div > span {
    font-size: 10px;
  }
  .article-byline time {
    font-size: 10px;
    width: 100%;
    margin-top: 7px;
  }
  .article-content aside {
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
  .article-content aside nav {
    margin-top: 20px;
    gap: 13px;
    flex-direction: column;
    font-size: 14px;
  }
  .article-prose h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .article-prose p {
    font-size: 17px;
    line-height: 1.85;
  }
  .article-prose section {
    margin-bottom: 38px;
  }
  .article-page > .related-link {
    margin-top: 0;
  }
  .legal-content h2 {
    font-size: 29px;
  }
  .legal-content p {
    font-size: 16px;
  }
  .not-found h1 {
    font-size: 32px;
  }
  .not-found > div {
    flex-direction: column;
    gap: 25px;
  }
  .will-reveal {
    transform: translateY(14px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-art {
    will-change: auto;
  }
  .signal-path {
    animation: none !important;
  }
}

/* Readable navigation and metadata at every viewport. */
.hero .eyebrow,
.section .eyebrow,
.trust-section > .eyebrow,
.footer .eyebrow,
.hero-caption,
.hero-bottom,
.stats-row span,
.article-meta,
.footer-bottom,
.footer-bottom > span:nth-child(2),
.motion-toggle,
.project-number,
.tech-note .eyebrow,
.tech-note p,
.tech-note > span:last-child,
.project-info .eyebrow,
.coming-next > .eyebrow,
.contact-intro .eyebrow,
.contact-form legend,
.article-byline div > span,
.article-byline time,
.breadcrumbs {
  font-size: 12px;
}
.workflow-tabs button {
  font-size: 12px !important;
}
.node {
  font-size: 12px;
}
.node-tag {
  font-size: 9px;
}
.architecture .eyebrow {
  font-size: 10px !important;
}
.architecture-foot {
  font-size: 10px !important;
}
@media (max-width: 600px) {
  .hero {
    min-height: 1030px;
  }
  .hero-art {
    top: 510px;
    width: 115%;
    right: -20%;
  }
  .hero .eyebrow {
    max-width: 330px;
    letter-spacing: 0.05em;
  }
  .hero-bottom > span {
    max-width: 160px;
  }
  .hero-caption {
    font-size: 10px;
  }
  .stats-row span {
    font-size: 10px;
  }
  .stats-row strong {
    font-size: 22px;
  }
  .workflow-tabs button {
    font-size: 11px !important;
  }
  .node {
    font-size: 10px;
  }
  .architecture-foot {
    font-size: 8px !important;
  }
  .architecture .eyebrow {
    font-size: 9px !important;
  }
  .flow-lines {
    top: 17px;
  }
  .footer-bottom > span {
    font-size: 10px;
  }
  .motion-toggle {
    font-size: 10px;
  }
}
