/* AIPrism landing page: foundations, components, sections, responsive states. */
@font-face {
  font-family: Inter;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #080b12;
  --surface: #101622;
  --surface-raised: #161e2d;
  --line: #2b364a;
  --control-line: #687993;
  --text: #f0f3fa;
  --muted: #b0bbce;
  --subtle: #99a7bf;
  --violet: #beaaff;
  --cyan: #8cdcf1;
  --mint: #9ae0c4;
  --button: #bdd9fc;
  --button-text: #101724;
  --radius: 16px;
  --max-width: 1240px;
  --header-height: 100px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 3.7vw, 48px);
  letter-spacing: -1.8px;
}
h3 {
  letter-spacing: -0.6px;
}
p {
  color: var(--muted);
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button,
fieldset {
  border: 0;
}
fieldset {
  padding: 0;
  margin: 0;
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
[hidden] {
  display: none !important;
}
::selection {
  color: #fff;
  background: #574888;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
  border-radius: 4px;
}
input:focus-visible,
textarea:focus-visible {
  outline-offset: 3px;
}
section[id],
details[id] {
  scroll-margin-top: 24px;
}
.wrap {
  width: min(var(--max-width), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.section-tinted {
  background: #0c111b;
  border-block: 1px solid #20293a;
}
.section-heading {
  margin-bottom: 48px;
}
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
}
.split-heading > p {
  max-width: 360px;
  flex: 0 1 360px;
  font-size: 15px;
  line-height: 1.8;
}
.split-heading > div {
  flex: 1;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.small-label {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--subtle);
}
.muted-heading {
  color: #9ca9c1;
}
.spectrum-text {
  color: #bcb8ff;
  background: linear-gradient(105deg, #a9dfff 5%, #bbb6ff 55%, #e1baf3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tiny-prism {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-left: 1px solid var(--cyan);
  border-right: 1px solid var(--violet);
  border-bottom: 1px solid var(--violet);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 10px;
  padding: 12px 20px;
  background: var(--button);
  color: var(--button-text);
  z-index: 200;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* Shared actions. All movement is small and respects reduced-motion preferences. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--button);
  color: var(--button-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button:hover {
  background: #d7e8ff;
  box-shadow: 0 4px 25px #86b3ff20;
  transform: translateY(-2px);
}
.button:disabled {
  cursor: wait;
  transform: none;
  background: #a5b5cd;
}
.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--control-line);
}
.button-outline:hover {
  background: #1b263b;
  color: #fff;
  border-color: #91a2c1;
}
.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
/* Navigation. The supplied official logo sits on a quiet white plate. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1019f5;
  border-bottom: 1px solid #263047;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  background: #fff;
  border-radius: 5px;
  padding: 3px 8px;
}
.brand picture {
  display: flex;
}
.brand img {
  display: block;
  width: 91px;
  height: 72px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > a:not(.button) {
  font-size: 12px;
  color: #c2cada;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-links > a:hover,
.nav-links > a[aria-current="location"] {
  color: #fff;
}
.nav-links .button {
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--control-line);
  border-radius: 6px;
  background: var(--surface);
}
.menu-lines,
.menu-lines::after {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--text);
  position: relative;
  margin: auto;
}
.menu-lines::after {
  content: "";
  position: absolute;
  top: 6px;
}
.menu-lines {
  transform: translateY(-3px);
}
.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-90deg);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header {
    background: #0b1019d9;
    backdrop-filter: blur(16px);
  }
}
/* Hero: a restrained, cursor-responsive SVG refraction study. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-top: 72px;
}
.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: -100px 0 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 40%, #2823524d, transparent 52%),
    radial-gradient(ellipse at 5% 30%, #1239481f, transparent 55%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 460px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 30px 0 48px;
}
.hero h1 {
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -3.5px;
  white-space: nowrap;
}
.hero-description {
  max-width: 465px;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 26px;
}
.hero .button-row {
  margin-top: 32px;
}
.hero-note {
  padding-left: 14px;
  border-left: 1px solid #465b7b;
  margin-top: 35px;
  color: #a9b7ce;
  font-size: 11px;
  line-height: 1.9;
}
.hero-note strong {
  font-weight: 500;
  color: #c9d5e7;
}
.prism-scene {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -20px;
}
.scene-topline {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.7px;
  color: var(--subtle);
  margin: 0 20px 2px 56px;
}
.prism-art {
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  margin-left: -20px;
  transform: perspective(1100px) rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition: transform 0.25s ease-out;
  overflow: visible;
}
.prism-scene figcaption {
  font-size: 10px;
  letter-spacing: 0.15px;
  text-align: center;
  color: #afbad1;
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.scene-dot {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: var(--violet);
}
.beam-intro {
  stroke-dasharray: 30 500;
  stroke-dashoffset: 400;
  animation: beam-arrive 3s ease-out 1 forwards;
}
.hero-foundations {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid #283044;
  padding: 26px 0 28px;
  margin-top: 35px;
  font-size: 10px;
  color: #aebbd1;
}
.hero-foundations > span {
  margin-right: auto;
  font-size: 10px;
}
.hero-foundations > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-foundations strong {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #e1e9f6;
}
.hero-foundations > a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 44px;
  font-size: 20px;
  color: var(--cyan);
  margin-left: auto;
}
.ecosystem {
  border-block: 1px solid #202a3c;
  padding: 32px 0;
  background: #0c111a;
}
.ecosystem .wrap {
  display: block;
}
.ecosystem p {
  font-size: 10px;
  max-width: none;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.7;
}
.ecosystem ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  list-style: none;
  gap: 24px;
}
.ecosystem li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  color: #c7d2e4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.ecosystem li img {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}
/* Value proposition. */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #121a29, #0d121c);
  transition:
    border-color 0.25s,
    transform 0.25s;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: #647393;
}
.icon-tile {
  display: flex;
  width: 42px;
  height: 42px;
  border: 1px solid #4b426f;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #29223f;
  color: var(--violet);
  margin-bottom: 36px;
}
.icon-tile.cyan {
  color: var(--cyan);
  background: #152c36;
  border-color: #305365;
}
.icon-tile.mint {
  color: var(--mint);
  background: #152d2c;
  border-color: #305651;
}
.card-number {
  position: absolute;
  right: 27px;
  top: 36px;
  font-size: 10px;
  color: var(--subtle);
}
.value-card h3 {
  font-size: 19px;
  margin-bottom: 15px;
}
.value-card p {
  font-size: 13px;
  line-height: 1.9;
  max-width: 320px;
}
.card-footnote {
  display: block;
  font-size: 10px;
  color: #aab7cc;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 28px;
}
.mission-line {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  margin-top: 30px;
}
.mission-line > span:last-child {
  color: var(--subtle);
}
/* Service matrix. Links remain normal page anchors when JavaScript is unavailable. */
.service-matrix {
  border: 1px solid #38445d;
  border-radius: var(--radius);
  overflow: clip;
  background: #0e1421;
}
.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #38445d;
  background: #101725;
}
.service-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 30px;
  color: var(--muted);
  transition:
    background 0.25s,
    box-shadow 0.25s;
  min-width: 0;
}
.service-tab + .service-tab {
  border-left: 1px solid #38445d;
}
.tab-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--subtle);
  margin-bottom: 28px;
}
.tab-top > .icon {
  color: #bdc4d9;
}
.tab-top > span {
  font-size: 10px;
}
.service-tab > strong {
  font-size: 21px;
  font-weight: 500;
  color: #f0f3fa;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.6px;
}
.service-tab > span:not(.tab-top):not(.tab-arrow) {
  font-size: 11px;
}
.tab-arrow {
  position: absolute;
  right: 28px;
  bottom: 36px;
  font-size: 19px;
  color: var(--violet);
}
.service-tab:hover {
  background: #1a2033;
}
.service-tab[aria-selected="true"] {
  background: linear-gradient(110deg, #282339, #1b2034);
  box-shadow: inset 0 -2px var(--violet);
}
.service-tab[aria-selected="true"] .tab-top {
  color: var(--violet);
}
.service-tab:focus-visible {
  outline-offset: -7px;
  box-shadow:
    inset 0 -2px var(--violet),
    inset 0 0 24px #bba0ff18;
}
.service-panel {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.service-panel + .service-panel {
  border-top: 1px solid var(--line);
}
.service-panel h3 {
  font-size: 32px;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.service-panel p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  max-width: 430px;
}
.service-panel .eyebrow {
  font-size: 9px;
  letter-spacing: 1.3px;
  margin-bottom: 17px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 23px 0 28px;
  font-size: 12px;
  color: #c7d3e5;
}
.check-list li {
  position: relative;
  padding-left: 22px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
}
.domain-matrix,
.capability-map {
  align-self: center;
}
.matrix-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--subtle);
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.domain-matrix > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 10px 16px;
  margin-top: 7px;
  border: 1px solid #3d4961;
  border-radius: 7px;
  background: #121b2b;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.domain-matrix strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #e6ecf6;
}
.domain-matrix small {
  display: block;
  font-size: 10px;
  color: #acb9cc;
  margin-top: 3px;
}
.domain-matrix > a > span:last-child {
  color: var(--violet);
  font-size: 18px;
}
.domain-matrix > a:hover {
  background: #202640;
  border-color: #a290d0;
}
.capability-map > a {
  display: block;
  padding: 18px 20px;
  border: 1px solid #3d4961;
  margin-top: 10px;
  border-radius: 8px;
  background: #121b2b;
  position: relative;
}
.capability-map > a > span {
  color: var(--violet);
  font-size: 10px;
  display: block;
  margin-bottom: 8px;
}
.capability-map strong {
  font-size: 15px;
  font-weight: 500;
}
.capability-map a:hover {
  border-color: var(--violet);
}
.capability-map a p {
  font-size: 11px !important;
  margin-top: 6px;
}
.section-note {
  text-align: center;
  font-size: 11px;
  margin-top: 25px;
}
.section-note a {
  color: var(--cyan);
  display: inline-block;
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* Native details form a transparent, keyboard-operable delivery pipeline. */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  border-top: 1px solid #495069;
}
.process-step {
  min-width: 0;
  padding: 26px 24px 25px 0;
}
.process-step + .process-step {
  padding-left: 24px;
  border-left: 1px solid #283348;
}
.step-number {
  display: flex;
  justify-content: space-between;
  color: var(--violet);
  font-size: 11px;
  margin-bottom: 32px;
}
.step-number > span {
  color: #aab8d0;
}
.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.process-step summary > span:not(.step-number) {
  font-size: 11px;
  color: var(--muted);
  display: block;
  min-height: 36px;
}
.process-step summary > .icon {
  width: 18px;
  height: 18px;
  margin-top: 14px;
  color: var(--cyan);
  transition: transform 0.2s;
}
.process-step[open] summary > .icon {
  transform: rotate(45deg);
}
.process-step > div {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.process-step p {
  font-size: 12px;
  line-height: 1.85;
}
.process-step > div strong {
  display: block;
  color: var(--mint);
  font-size: 10px;
  margin: 18px 0 7px;
}
/* Interactive architecture, replacing autoplay video and its GIF fallback. */
.platform-section {
  background:
    radial-gradient(ellipse at 85% 40%, #26244745, transparent 60%), #0c111b;
  border-block: 1px solid #20293a;
}
.platform-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.platform-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 24px;
  max-width: 380px;
}
.platform-copy > .text-link {
  margin-top: 18px;
}
.governance-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid #3a4359;
  margin-top: 30px;
  padding-top: 24px;
}
.governance-note > .icon {
  color: var(--mint);
  margin-top: 3px;
}
.governance-note p {
  font-size: 11px;
  line-height: 1.85;
}
.governance-note strong {
  display: block;
  color: #d8e2f2;
  margin-bottom: 5px;
  font-weight: 500;
}
.architecture {
  padding: 18px;
  border: 1px solid #3b4460;
  border-radius: 16px;
  background: linear-gradient(140deg, #151c2e, #0f1420);
  box-shadow: 0 20px 80px #0003;
}
.architecture-bar,
.architecture-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #acb7d0;
}
.architecture-bar {
  padding: 5px 0 20px;
}
.architecture-bar > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.architecture-bar i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}
.architecture-layer {
  margin-bottom: 8px;
  background: #181e30;
  border: 1px solid #434661;
  border-radius: 6px;
  border-left: 2px solid #b09be9;
}
.architecture-layer summary {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.layer-number {
  color: #c5b6e9;
  font-size: 10px;
}
.architecture-layer h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  flex: 1;
}
.architecture-layer summary > .icon {
  width: 16px;
  height: 16px;
  color: #aebad0;
  transition: transform 0.2s;
}
.architecture-layer[open] summary > .icon {
  transform: rotate(45deg);
}
.architecture-layer > div {
  padding: 0 16px 18px 45px;
}
.architecture-layer p {
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.architecture-layer > div > span {
  font-size: 9px;
  color: #c7bbeb;
}
.layer-2 {
  border-left-color: #89ace8;
  background: #141f32;
}
.layer-3 {
  border-left-color: #78cbe2;
  background: #132430;
}
.layer-4 {
  border-left-color: #8ad1b9;
  background: #13272c;
}
.layer-5 {
  border-left-color: #d7c292;
  background: #23252b;
}
.architecture-base {
  margin-top: 20px;
  padding-top: 8px;
  font-size: 7px;
}
/* Work previews are CSS/SVG; videos load on their dedicated demo pages. */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-card {
  border: 1px solid #35405a;
  background: #101622;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: #8d90b9;
}
.work-visual {
  height: 275px;
  position: relative;
  padding: 24px 28px;
  border-bottom: 1px solid #344055;
  overflow: hidden;
}
.preview-label {
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #b8c7df;
}
.tryon-visual {
  background:
    radial-gradient(ellipse at 50% 90%, #44548070, transparent 65%),
    linear-gradient(140deg, #172335, #101824);
}
.garment-composition {
  position: relative;
  max-width: 330px;
  height: 205px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.garment-composition > svg {
  width: 195px;
  height: 175px;
  filter: drop-shadow(0 12px 14px #0005);
}
.garment-option {
  border: 1px solid #667697;
  border-radius: 5px;
  padding: 14px 10px;
  font-size: 9px;
  color: #d0d9ea;
  background: #213047;
}
.garment-swatches {
  display: grid;
  gap: 10px;
}
.garment-swatches i {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #a5b0c8;
  background: #526e96;
}
.garment-swatches i:nth-child(2) {
  background: #c8b8b2;
}
.garment-swatches i:nth-child(3) {
  background: #3c4a4c;
}
.visual-caption {
  position: absolute;
  bottom: 15px;
  left: 28px;
  font-size: 8px;
  color: #b2bfd2;
}
.menu-visual {
  background:
    radial-gradient(ellipse at 100% 100%, #23595370, transparent 65%), #132327;
}
.chat-preview {
  max-width: 350px;
  margin: 25px auto 0;
  font-size: 11px;
}
.chat-question {
  margin-left: 55px;
  padding: 11px 16px;
  border: 1px solid #436063;
  background: #223b40;
  border-radius: 9px 9px 0 9px;
  color: #d6ebe9;
}
.chat-response {
  display: flex;
  gap: 10px;
  margin-top: 17px;
  align-items: center;
}
.chat-avatar {
  display: grid;
  place-items: center;
  color: #aae4d4;
  background: #254841;
  border: 1px solid #618c80;
  width: 29px;
  height: 29px;
  border-radius: 7px;
  font-size: 19px;
  flex-shrink: 0;
}
.chat-response p {
  font-size: 11px;
  color: #c5d9d3;
  line-height: 1.9;
}
.chat-response strong {
  font-weight: 500;
  color: #d4e9e0;
}
.chat-chips {
  display: flex;
  gap: 6px;
  margin: 12px 0 0 39px;
  flex-wrap: wrap;
}
.chat-chips span {
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #52756b;
  font-size: 8px;
  color: #b7dace;
}
.work-body {
  padding: 28px;
}
.tag {
  display: inline-block;
  font-size: 9px;
  color: #c7b8f7;
  border: 1px solid #625480;
  background: #272139;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 17px;
}
.mint-tag {
  color: #aadfcd;
  background: #182c29;
  border-color: #40655b;
}
.work-body h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.work-body p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 420px;
}
.work-body .text-link {
  margin-top: 15px;
  font-size: 11px;
}
.work-body .case-metric {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.case-metric strong {
  color: var(--mint);
  font-size: 15px;
  font-weight: 500;
}
/* Article details are the no-JS fallback; dialog enhancement is optional. */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  min-width: 0;
  border: 1px solid #354057;
  border-radius: 12px;
  background: #111826;
  overflow: hidden;
  transition: border-color 0.2s;
}
.insight-card:hover {
  border-color: #9a90bd;
}
.insight-card > summary {
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.article-date {
  font-size: 9px;
  color: var(--violet);
  letter-spacing: 0.4px;
}
.insight-card h3 {
  font-size: 19px;
  line-height: 1.45;
  margin: 18px 0 14px;
  letter-spacing: -0.3px;
}
.insight-card summary > p {
  font-size: 11px;
  line-height: 1.9;
  flex: 1;
}
.insight-card .text-link {
  margin-top: 20px;
  font-size: 11px;
}
.insight-card .article-content {
  padding: 0 28px 28px;
}
.article-content p {
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content h4 {
  font-size: 15px;
  margin: 24px 0 12px;
}
.article-content a {
  color: var(--cyan);
  text-decoration: underline;
}
.more-insights {
  margin-top: 28px;
}
.more-insights > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  font-size: 12px;
  color: var(--cyan);
  width: fit-content;
  margin: auto;
}
.more-insights > summary > span {
  font-size: 20px;
  transition: transform 0.2s;
}
.more-insights[open] > summary > span {
  transform: rotate(45deg);
}
.more-insights > .insight-grid {
  margin-top: 28px;
}
.article-dialog {
  padding: 0;
  background: #131b2a;
  color: var(--text);
  border: 1px solid #71809b;
  border-radius: 16px;
  width: min(740px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  box-shadow: 0 30px 120px #0009;
  overscroll-behavior: contain;
}
.article-dialog[open] {
  display: flex;
  flex-direction: column;
}
.article-dialog::backdrop {
  background: #03060ccb;
  backdrop-filter: blur(6px);
}
.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #3c4961;
  flex-shrink: 0;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--control-line);
  border-radius: 6px;
  background: #202b40;
  font-size: 25px;
  line-height: 1;
}
.dialog-content {
  padding: 32px;
  overflow-y: auto;
}
.dialog-content h2 {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.8px;
  margin: 16px 0 24px;
}
.dialog-content p {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.dialog-content h4 {
  font-size: 16px;
  margin: 26px 0 12px;
}
.dialog-content a {
  color: var(--cyan);
  text-decoration: underline;
}
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #3c4961;
  flex-shrink: 0;
}
.dialog-footer > span {
  font-size: 11px;
  color: var(--muted);
}
/* Enquiry form. Labels, status, and native radios remain available without JS. */
.contact-section {
  position: relative;
  background: radial-gradient(ellipse at 10% 60%, #32235036, transparent 55%);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact-copy {
  padding-top: 35px;
}
.contact-copy h2 {
  font-size: clamp(34px, 3.8vw, 49px);
  line-height: 1.16;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 25px;
  max-width: 370px;
}
.contact-expectations {
  margin-top: 42px;
}
.contact-expectations ol {
  list-style: none;
  counter-reset: expectation;
  display: grid;
  gap: 15px;
  margin-top: 20px;
  font-size: 12px;
  color: #c5cfe0;
}
.contact-expectations li {
  counter-increment: expectation;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-expectations li::before {
  content: "0" counter(expectation);
  color: var(--violet);
  font-size: 9px;
  border: 1px solid #4f4568;
  background: #221d32;
  border-radius: 50%;
  height: 27px;
  width: 27px;
  display: grid;
  place-items: center;
}
.contact-email {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  gap: 40px;
  font-size: 12px;
  border-top: 1px solid #3e4359;
  padding-top: 25px;
  margin-top: 36px;
  color: var(--cyan);
  min-height: 44px;
}
.contact-email:hover {
  text-decoration: underline;
}
.contact-form {
  border: 1px solid #424c64;
  border-radius: 16px;
  background: linear-gradient(130deg, #181d2e, #111925);
  padding: 34px;
}
.contact-form h3 {
  font-size: 22px;
}
.form-intro {
  font-size: 11px;
  margin: 9px 0 26px;
}
.interest-options {
  margin-bottom: 24px;
}
.interest-options legend {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 11px;
}
.interest-options > div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.interest-options label {
  position: relative;
  display: block;
  cursor: pointer;
}
.interest-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.interest-options label span {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--control-line);
  border-radius: 5px;
  font-size: 10px;
  color: #c7d2e4;
  transition: background 0.2s;
}
.interest-options input:checked + span {
  background: #2e2845;
  border-color: var(--violet);
  color: #e5dbff;
}
.interest-options input:focus-visible + span {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form > label,
.form-row > label {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 11px;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 19px;
  color: #e5eaf4;
}
.form-row > label > span {
  color: #bac6db;
  font-weight: 400;
  font-size: 9px;
  display: contents;
}
.contact-form
  input:not([type="radio"]):not([type="hidden"]):not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  min-width: 0;
  background: #0c1320;
  border: 1px solid var(--control-line);
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  min-height: 44px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a5b2c8;
  opacity: 1;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}
.form-privacy {
  font-size: 9px;
  line-height: 1.8;
  margin-top: 15px;
  color: #bac6d9;
}
.form-privacy a {
  color: #d3dded;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}
.form-status:not(:empty) {
  margin-top: 16px;
  padding: 12px 14px;
  background: #172e2b;
  border: 1px solid #578d7b;
  border-radius: 5px;
  color: #b1efd9;
}
.form-status[data-state="error"] {
  background: #321f2d;
  color: #ffc4d2;
  border-color: #a56c80;
}
.form-status a {
  text-decoration: underline;
  color: inherit;
}
.honeypot {
  display: none;
}
/* Footer. */
.site-footer {
  padding: 54px 0 0;
  border-top: 1px solid #303a50;
  background: #0a101a;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 72px;
  padding-bottom: 50px;
}
.footer-identity {
  flex: 1;
}
.footer-identity p {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.8;
  color: #b2bdd0;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.footer-nav h2 {
  font-size: 11px;
  letter-spacing: 0;
  margin: 5px 0 15px;
  color: #e1e8f4;
}
.footer-nav a {
  display: block;
  font-size: 10px;
  color: #aab7cc;
  padding: 7px 0;
  min-height: 32px;
}
.footer-nav a:hover {
  color: var(--cyan);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #29354a;
  padding: 22px 0;
  font-size: 9px;
  color: #a3b1c7;
}
.footer-bottom p {
  color: inherit;
}
@keyframes beam-arrive {
  0% {
    stroke-dashoffset: 400;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding-top: 85px;
  }
  .hero-copy {
    padding-bottom: 60px;
  }
  .hero-layout {
    min-height: 480px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 20px;
  }
  .hero h1 {
    font-size: 5.4vw;
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 390px;
  }
  .button {
    padding-inline: 18px;
    font-size: 12px;
  }
  .hero-note {
    margin-top: 26px;
  }
  .hero-foundations {
    gap: 20px;
  }
  .hero-foundations > span {
    max-width: 150px;
  }
  .ecosystem .wrap {
    gap: 24px;
  }
  .ecosystem li {
    font-size: 13px;
  }
  .ecosystem ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .value-card {
    padding: 26px 22px;
  }
  .value-card h3 {
    font-size: 18px;
  }
  .service-panel {
    padding: 32px;
    gap: 36px;
  }
  .service-tab {
    padding: 24px;
  }
  .service-tab > strong {
    font-size: 19px;
  }
  .tab-arrow {
    right: 20px;
    bottom: 34px;
  }
  .service-tab > span:not(.tab-top):not(.tab-arrow) {
    font-size: 10px;
  }
  .platform-layout,
  .contact-layout {
    gap: 48px;
  }
  .footer-nav {
    gap: 35px;
  }
  .split-heading {
    gap: 40px;
  }
  .split-heading > p {
    flex-basis: 300px;
  }
  .insight-card > summary {
    padding: 24px;
  }
  .insight-card h3 {
    font-size: 17px;
  }
  .contact-form {
    padding: 27px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 92px;
  }
  .brand img {
    width: 83px;
    height: 66px;
  }
  .nav {
    gap: 20px;
    flex-wrap: wrap;
    padding-block: 9px;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
  }
  .nav-links .button {
    margin: 0;
  }
  .site-header[data-enhanced] .menu-toggle {
    display: block;
  }
  .site-header[data-enhanced] .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0e1522;
    border-bottom: 1px solid #55647e;
    padding: 20px 32px 28px;
    max-height: calc(100dvh - var(--header-height));
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-header[data-enhanced] .nav-links.open {
    display: flex;
  }
  .site-header[data-enhanced] .nav-links .button {
    margin-top: 12px;
  }
  .site-header[data-enhanced] .nav-links > a {
    justify-content: center;
    min-height: 46px;
  }
  .hero {
    padding-top: 46px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
    padding: 10px 0 30px;
  }
  .hero .eyebrow {
    justify-content: center;
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(48px, 8.5vw, 70px);
    letter-spacing: -3px;
  }
  .hero-description {
    max-width: 500px;
    margin-inline: auto;
  }
  .hero .button-row {
    justify-content: center;
  }
  .hero-note {
    display: none;
  }
  .prism-scene {
    width: min(550px, 100%);
    margin: 8px auto 0;
  }
  .scene-topline {
    margin-inline: 40px;
  }
  .prism-art {
    width: 100%;
    margin-left: 0;
  }
  .prism-scene figcaption {
    margin-top: -5px;
  }
  .hero-foundations {
    margin-top: 32px;
  }
  .hero-foundations > span {
    display: none;
  }
  .hero-foundations > div {
    margin-right: auto;
  }
  .hero-foundations > a {
    margin-left: 0;
  }
  .ecosystem .wrap {
    display: block;
  }
  .ecosystem p {
    max-width: none;
    text-align: center;
    margin-bottom: 24px;
  }
  .ecosystem ul {
    gap: 24px 36px;
  }
  .section {
    padding: 80px 0;
  }
  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }
  .split-heading > p {
    flex-basis: auto;
    max-width: 580px;
    font-size: 14px;
  }
  .split-heading h2 {
    font-size: 39px;
  }
  .value-grid {
    gap: 12px;
  }
  .value-card {
    padding: 24px 19px;
  }
  .value-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .value-card p {
    font-size: 12px;
  }
  .card-footnote {
    font-size: 9px;
  }
  .card-number {
    right: 18px;
  }
  .service-tab > strong {
    font-size: 18px;
  }
  .service-tab > span:not(.tab-top):not(.tab-arrow) {
    max-width: 130px;
  }
  .tab-arrow {
    bottom: 30px;
  }
  .service-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-panel h3 br {
    display: none;
  }
  .service-panel p:not(.eyebrow) {
    max-width: 600px;
  }
  .domain-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .domain-matrix .matrix-label {
    grid-column: 1/-1;
  }
  .domain-matrix > a {
    margin: 0;
  }
  .capability-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .capability-map .matrix-label {
    grid-column: 1/-1;
  }
  .capability-map > a {
    margin: 0;
    padding: 16px;
  }
  .capability-map strong {
    font-size: 13px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
  .process-step {
    padding-right: 0;
  }
  .process-step:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .process-step:nth-child(n + 3) {
    border-top: 1px solid #283348;
  }
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .platform-copy > p:not(.eyebrow) {
    max-width: 600px;
  }
  .governance-note {
    max-width: 580px;
  }
  .architecture {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .work-visual {
    padding: 22px;
    height: 260px;
  }
  .chat-question {
    margin-left: 15px;
    padding: 9px 12px;
    font-size: 10px;
  }
  .chat-response p {
    font-size: 10px;
  }
  .chat-chips {
    margin-left: 0;
  }
  .garment-composition > svg {
    width: 165px;
  }
  .work-body {
    padding: 24px;
  }
  .work-body h3 {
    font-size: 20px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .insight-card > summary {
    min-height: 0;
  }
  .insight-card h3 {
    font-size: 20px;
    margin-top: 12px;
  }
  .insight-card summary > p {
    font-size: 13px;
  }
  .insight-card .text-link {
    margin-top: 12px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 550px;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-expectations {
    margin-top: 28px;
  }
  .contact-form {
    max-width: 650px;
    width: 100%;
    margin: auto;
    padding: 32px;
  }
  .footer-top {
    gap: 40px;
  }
  .footer-nav {
    gap: 26px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  h2,
  .split-heading h2 {
    font-size: 32px;
    letter-spacing: -1.3px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }
  .hero {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: clamp(33px, 9vw, 52px);
    letter-spacing: -1.8px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
    margin-top: 22px;
  }
  .hero .button-row {
    gap: 10px;
    margin-top: 25px;
  }
  .hero .button-row > .button {
    padding: 12px 14px;
    gap: 9px;
    font-size: 11px;
    min-height: 46px;
  }
  .hero-copy {
    padding-bottom: 20px;
  }
  .scene-topline {
    font-size: 6px;
    margin-inline: 24px;
  }
  .prism-scene {
    margin-top: 14px;
  }
  .prism-scene figcaption {
    font-size: 8px;
  }
  .hero-foundations {
    gap: 14px;
    padding: 22px 0;
    margin-top: 27px;
    justify-content: space-between;
  }
  .hero-foundations > div {
    display: block;
    font-size: 8px;
    line-height: 1.8;
    margin: 0;
  }
  .hero-foundations strong {
    display: block;
    font-size: 20px;
    line-height: 1.4;
  }
  .hero-foundations > a {
    display: none;
  }
  .ecosystem {
    padding: 27px 0;
  }
  .ecosystem li {
    font-size: 12px;
  }
  .ecosystem ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }
  .ecosystem li {
    justify-content: flex-start;
    gap: 8px;
  }
  .ecosystem li img {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .ecosystem p {
    font-size: 10px;
  }
  .split-heading > p {
    font-size: 13px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .value-card {
    padding: 25px;
  }
  .icon-tile {
    margin-bottom: 24px;
  }
  .value-card h3 {
    font-size: 21px;
  }
  .value-card p {
    font-size: 13px;
    max-width: none;
  }
  .card-footnote {
    font-size: 10px;
    padding-top: 16px;
    margin-top: 20px;
  }
  .mission-line {
    font-size: 10px;
    justify-content: start;
    gap: 9px;
  }
  .mission-line > span:last-child {
    width: 100%;
    padding-left: 21px;
  }
  .service-tab {
    padding: 17px 12px;
  }
  .tab-top {
    margin-bottom: 17px;
  }
  .tab-top > .icon {
    width: 20px;
    height: 20px;
  }
  .tab-top > span {
    font-size: 8px;
  }
  .service-tab > strong {
    font-size: 13px;
    letter-spacing: -0.3px;
    line-height: 1.4;
  }
  .service-tab > span:not(.tab-top):not(.tab-arrow) {
    font-size: 9px;
    line-height: 1.6;
    padding-right: 0;
  }
  .tab-arrow {
    display: none;
  }
  .service-panel {
    padding: 25px 20px;
    gap: 28px;
  }
  .service-panel h3 {
    font-size: 27px;
  }
  .service-panel h3 br {
    display: initial;
  }
  .service-panel .eyebrow {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .domain-matrix {
    grid-template-columns: 1fr;
  }
  .matrix-label {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .domain-matrix > a {
    min-height: 65px;
  }
  .domain-matrix strong {
    font-size: 12px;
  }
  .domain-matrix small {
    font-size: 10px;
  }
  .capability-map {
    grid-template-columns: 1fr;
  }
  .capability-map > a {
    padding: 18px;
  }
  .capability-map strong {
    font-size: 15px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step + .process-step {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid #354055;
  }
  .process-step:first-child {
    border-top: 0;
  }
  .step-number {
    margin-bottom: 18px;
  }
  .process-step h3 {
    font-size: 23px;
  }
  .process-step summary {
    position: relative;
    padding-right: 36px;
  }
  .process-step summary > .icon {
    position: absolute;
    bottom: 6px;
    right: 0;
  }
  .process-step summary > span:not(.step-number) {
    min-height: 0;
    font-size: 12px;
  }
  .process-step p {
    font-size: 13px;
  }
  .architecture {
    padding: 14px;
  }
  .architecture-bar {
    font-size: 7px;
    letter-spacing: 0.6px;
  }
  .architecture-layer summary {
    padding: 16px 12px;
    gap: 12px;
  }
  .architecture-layer h3 {
    font-size: 12px;
  }
  .architecture-layer > div {
    padding-left: 36px;
  }
  .architecture-base {
    font-size: 6px;
    letter-spacing: 0.5px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-visual {
    height: 270px;
  }
  .garment-composition > svg {
    width: 190px;
  }
  .work-body h3 {
    font-size: 23px;
  }
  .work-body p {
    font-size: 13px;
  }
  .work-body .text-link {
    font-size: 11px;
  }
  .chat-preview {
    margin-top: 28px;
  }
  .chat-question {
    margin-left: 50px;
    font-size: 10px;
  }
  .chat-chips {
    margin-left: 39px;
  }
  .insight-card > summary {
    padding: 24px;
  }
  .contact-copy h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .contact-form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form
    input:not([type="radio"]):not([type="hidden"]):not([type="checkbox"]),
  .contact-form textarea {
    font-size: 16px;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 12px;
  }
  .interest-options > div {
    gap: 8px;
  }
  .interest-options label span {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 10px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 35px;
  }
  .footer-identity {
    display: flex;
    gap: 22px;
    align-items: center;
  }
  .footer-identity p {
    margin-top: 0;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-nav > div:last-child {
    grid-column: 1/-1;
  }
  .footer-nav a {
    font-size: 11px;
    min-height: 38px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: start;
    font-size: 9px;
  }
  .article-dialog {
    max-height: calc(100dvh - 24px);
  }
  .dialog-toolbar {
    padding: 10px 16px;
  }
  .dialog-content {
    padding: 22px;
  }
  .dialog-content h2 {
    font-size: 23px;
  }
  .dialog-content p {
    font-size: 13px;
  }
  .dialog-footer {
    padding: 14px;
  }
  .dialog-footer .button {
    padding: 11px 12px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .prism-art {
    transform: none !important;
  }
  .beam-intro {
    display: none;
  }
  .button:hover,
  .value-card:hover,
  .work-card:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .spectrum-text {
    background: none;
    -webkit-text-fill-color: CanvasText;
    color: CanvasText;
  }
  .button,
  .service-tab,
  .interest-options label span {
    border: 1px solid ButtonText;
  }
  .service-tab[aria-selected="true"] {
    outline: 2px solid Highlight;
    outline-offset: -3px;
  }
  .interest-options input:checked + span {
    outline: 2px solid Highlight;
  }
  .prism-art {
    forced-color-adjust: none;
  }
  .brand {
    forced-color-adjust: none;
  }
  .tiny-prism {
    background: CanvasText;
  }
}
@media print {
  .site-header,
  .prism-scene,
  .hero-ambient,
  .ecosystem,
  .contact-form,
  .article-dialog,
  .site-footer {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
  p,
  .eyebrow,
  .muted-heading,
  .small-label {
    color: #333;
  }
  .spectrum-text {
    background: none;
    -webkit-text-fill-color: #111;
  }
  .section {
    padding: 28px 0;
  }
  .wrap {
    width: 100%;
  }
  .service-panel[hidden] {
    display: grid !important;
  }
  .value-card,
  .service-matrix,
  .work-card,
  .insight-card {
    background: #fff;
    color: #111;
    border-color: #555;
    break-inside: avoid;
  }
}
