/* 01. Design tokens — edit this layer to change the visual system. */
:root {
  color-scheme: dark;
  --bg: #070b10;
  --surface: #0d131c;
  --surface-raised: #121b26;
  --line: rgba(182, 205, 235, 0.14);
  --text: #f0f3f7;
  --muted: #8e9aac;
  --cyan: #66d9f6;
  --blue: #4484ff;
  --purple: #ac98ff;
  --max-width: 1320px;
  --gutter: clamp(24px, 5vw, 88px);
  --header-height: 94px;
  --font: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
body.is-dialog-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  border: 0;
}
::selection {
  color: #fff;
  background: #346b9c;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--max-width));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px 20px;
  background: var(--cyan);
  color: var(--bg);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font: 12px/1.6 var(--mono);
  letter-spacing: 0.15em;
  color: #a2aec0;
}
.small-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  vertical-align: middle;
  margin-right: 12px;
  background: var(--cyan);
}
/* 02. Navigation */
.site-header {
  position: fixed;
  background: #070b10f2;
  backdrop-filter: blur(16px);
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-mark {
  display: block;
  position: relative;
  width: 54px;
  height: 36px;
  overflow: hidden;
}
.brand-mark img {
  position: absolute;
  width: 74px;
  height: 74px;
  max-width: none;
  left: -10px;
  top: -12px;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.brand-name {
  font-size: 22px;
  letter-spacing: 0.085em;
  font-weight: 700;
  line-height: 1;
}
.brand-name > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  font-weight: 400;
  color: #8e9bac;
  margin-top: 9px;
}
.site-header nav {
  display: flex;
  gap: 42px;
  margin-left: 35px;
}
.site-header nav a {
  position: relative;
  padding-block: 35px;
  color: #929ba9;
  font-size: 14px;
  transition: color 0.2s;
}
.site-header nav a:hover,
.site-header nav a.is-current {
  color: #fff;
}
.site-header nav a.is-current::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}
.header-cta {
  border: 1px solid #394453;
  padding: 10px 18px;
  font-size: 13px;
  display: flex;
  gap: 28px;
  align-items: center;
  border-radius: 4px;
  transition: background 0.2s;
}
.header-cta.is-current {
  color: var(--cyan);
  border-color: var(--cyan);
  background: #142736;
}
.header-cta:hover {
  background: #19232f;
}
.menu-toggle {
  display: none;
}
/* 03. Hero and the interactive spatial visualization */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 790px;
  padding-top: 94px;
  background: radial-gradient(
    ellipse at 79% 49%,
    rgba(15, 61, 90, 0.16),
    transparent 50%
  );
}
.hero-grid {
  position: absolute;
  inset: 94px 0 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(#354458 1px, transparent 1px),
    linear-gradient(90deg, #354458 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 80% 70%, black, transparent 65%);
}
.hero-layout {
  min-height: 618px;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  align-items: center;
  position: relative;
  gap: 0;
}
.hero-copy {
  z-index: 2;
  padding: 60px 0 48px;
}
.hero h1 {
  font-size: clamp(44px, 4.25vw, 67px);
  line-height: 1.24;
  letter-spacing: -0.065em;
  margin: 30px 0 24px;
  font-weight: 600;
  white-space: nowrap;
}
.accent {
  color: var(--cyan);
}
.hero-description {
  font-size: 16px;
  color: #96a3b5;
  line-height: 1.95;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 450px;
}
.hero-product {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.hero-product > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 24px;
  gap: 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.button-primary {
  background: #d9f6ff;
  color: #0c1720;
}
.button-primary:hover {
  background: #9fe7ff;
  box-shadow: 0 0 30px #3cbcec22;
  transform: translateY(-2px);
}
.button-text {
  padding-inline: 0;
  background: transparent;
  gap: 10px;
  color: #d5dde9;
}
.button-text:hover {
  color: var(--cyan);
}
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  border: 1px solid #566272;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding-left: 2px;
}
.hero-tags {
  display: flex;
  gap: 20px;
  color: #78879b;
  font-size: 12px;
  margin-top: 42px;
}
.hero-tags span + span::before {
  content: "/";
  margin-right: 20px;
  color: #334455;
}
.hero-visual {
  position: relative;
  min-width: 0;
  width: calc(100% + 60px);
  height: 530px;
  perspective: 1000px;
  --pointer-x: 0;
  --pointer-y: 0;
}
.visual-field {
  position: absolute;
  inset: 32px -50px 0 -42px;
  transform: translate3d(
    calc(var(--pointer-x) * 8px),
    calc(var(--pointer-y) * 8px),
    0
  );
  transition: transform 0.45s var(--ease);
}
.visual-orbit {
  position: absolute;
  inset: 15% 10%;
  border: 1px solid #3ca0cb33;
  border-radius: 50%;
  transform: rotate(-24deg);
  box-shadow:
    0 0 70px #26609915,
    inset 0 0 80px #26609915;
}
.visual-target {
  position: absolute;
  inset: 26% 24%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #2e6379;
  letter-spacing: 0.4em;
  font: 18px/2 var(--mono);
}
.visual-target strong {
  font-size: 35px;
  font-weight: 400;
}
.visual-target i {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #58daf0;
  border-style: solid;
  border-width: 0;
}
.visual-target i:nth-child(1) {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}
.visual-target i:nth-child(2) {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}
.visual-target i:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}
.visual-target i:nth-child(4) {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.visual-topline {
  position: absolute;
  top: 50px;
  left: 42px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font: 10px var(--mono);
  letter-spacing: 0.12em;
  color: #8393a6;
}
.status-light {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px #66d9f680;
}
.visual-label {
  position: absolute;
  z-index: 2;
  font-size: 12px;
  line-height: 1.7;
  color: #c1d3e2;
}
.visual-label > span {
  display: block;
  font: 9px var(--mono);
  letter-spacing: 0.12em;
  color: #526a83;
}
.label-a {
  top: 29%;
  left: 6%;
  padding-left: 12px;
  border-left: 1px solid #6885a0;
}
.label-b {
  right: 4%;
  bottom: 29%;
  text-align: right;
  padding-right: 12px;
  border-right: 1px solid var(--cyan);
}
.visual-bottom {
  position: absolute;
  bottom: 64px;
  left: 30px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #668093;
  font: 10px var(--mono);
}
.axis-symbol {
  font-size: 28px;
  color: #4e91b2;
}
.visual-coordinates {
  margin-left: auto;
}
.view-switch {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #263747;
  display: flex;
  padding: 4px;
  gap: 3px;
  border-radius: 5px;
  background: #0b131cbf;
}
.view-switch button {
  font-size: 12px;
  background: transparent;
  color: #8493a5;
  padding: 7px 20px;
  border-radius: 3px;
  white-space: nowrap;
}
.view-switch button.is-active {
  background: #263b4b;
  color: #b1eeff;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
  color: #69798b;
  font: 10px var(--mono);
  letter-spacing: 0.12em;
}
.hero-bottom a {
  font: 12px var(--font);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-icon {
  width: 13px;
  height: 21px;
  border: 1px solid #647484;
  border-radius: 8px;
  position: relative;
}
.scroll-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 1px;
  height: 5px;
  background: var(--cyan);
}
.hero-index {
  color: #adbac9;
}
/* 04. Supplied artwork and presentation-only interaction. */
.model-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 57%, transparent 95%);
  transition: opacity 0.65s var(--ease);
  opacity: 0;
  visibility: hidden;
}
.hero-visual[data-mode="physical"] [data-model="physical"],
.hero-visual[data-mode="fusion"] [data-model="fusion"],
.hero-visual[data-mode="digital"] [data-model="digital"] {
  opacity: 1;
  visibility: visible;
}
.hero-visual[data-mode="digital"] .scan-plane {
  background: linear-gradient(90deg, transparent, #ff70c7bb, transparent);
  box-shadow: 0 0 18px #ec4bba66;
}
.hero-visual[data-mode="digital"] .status-light {
  background: #ff70c7;
  box-shadow: 0 0 8px #ff70c766;
}
.hero-visual[data-mode="digital"] .view-switch button.is-active {
  background: #49243e;
  color: #ffc5e9;
}
.hero-visual[data-mode="physical"] .label-b,
.hero-visual[data-mode="digital"] .label-a {
  opacity: 0.25;
}
.scan-plane {
  position: absolute;
  left: 15%;
  right: 12%;
  top: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #71eaffaa, transparent);
  box-shadow: 0 0 18px #33b9ff66;
  animation: scan 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-visual[data-mode="physical"] .scan-plane {
  opacity: 0;
}
.tracking-corners {
  position: absolute;
  inset: 19% 15% 15%;
  pointer-events: none;
}
.tracking-corners i {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 0 solid #65bed977;
  transition:
    width 0.5s,
    height 0.5s;
}
.tracking-corners i:nth-child(1) {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}
.tracking-corners i:nth-child(2) {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}
.tracking-corners i:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}
.tracking-corners i:nth-child(4) {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.hero-visual[data-mode="digital"] .tracking-corners i {
  width: 28px;
  height: 28px;
  border-color: #ff70c777;
}
.visual-label {
  transition: opacity 0.5s;
}
.label-a {
  left: 0;
}
.label-b {
  right: 0;
}
.visual-topline {
  top: 26px;
  left: 10px;
}
.visual-bottom {
  left: 10px;
  right: 10px;
}
.visual-field {
  inset: 0 -45px 12px -70px;
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  25% {
    opacity: 0.8;
  }
  65% {
    opacity: 0.8;
  }
  90% {
    transform: translateY(210px);
    opacity: 0;
  }
}
/* 05. Capability strip, selected work, about and footer. */
.capability-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1017;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 32px;
}
.capability-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 27px;
  border-right: 1px solid var(--line);
}
.capability-grid > div:first-child {
  padding-left: 0;
}
.capability-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}
.capability-number {
  align-self: flex-start;
  padding-top: 3px;
  font: 11px/2 var(--mono);
  color: #586e83;
}
.capability-grid h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.035em;
  margin: 0 0 6px;
}
.capability-grid p {
  font-size: 12px;
  color: #75859a;
  margin: 0;
}
.capability-icon {
  font-size: 32px;
  color: #5e7f92;
  margin-left: auto;
  font-family: var(--mono);
  line-height: 1;
}
.section-pad {
  padding-block: 110px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading h2,
.about-copy h2 {
  font-weight: 500;
  font-size: clamp(32px, 3.25vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 22px 0 0;
}
.muted-heading {
  color: #909bac;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 4px;
  line-height: 1.9;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.work-card {
  min-width: 0;
}
.work-media {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 16/10;
  padding: 0;
  background: #15202b;
  text-align: left;
  border: 1px solid #273443;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease),
    filter 0.9s;
  filter: saturate(0.55) brightness(0.85);
}
.work-media:hover img,
.work-media:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.95) brightness(1);
}
.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(#03081055, transparent 40%, #03081099);
}
.work-kicker {
  position: absolute;
  left: 20px;
  top: 20px;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  color: #e4eef8;
  padding: 7px 10px;
  background: #0a1118ab;
  border: 1px solid #a9c4db44;
  backdrop-filter: blur(8px);
  border-radius: 3px;
}
.work-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #d5ecff99;
  border-radius: 50%;
  background: #06101a88;
  backdrop-filter: blur(8px);
  font-size: 15px;
  color: #fff;
  padding-left: 3px;
  transition:
    background 0.25s,
    scale 0.25s;
}
.work-media:hover .work-play {
  background: #75dafa;
  color: #07131b;
  scale: 1.08;
}
.media-caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: #eff5fc;
  font-size: 12px;
}
.work-duration {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font: 11px/1.8 var(--mono);
  color: #c7d3df;
}
.work-card-body {
  position: relative;
  padding: 23px 0 0;
}
.work-tags {
  display: flex;
  gap: 8px;
}
.work-tags span {
  font-size: 11px;
  border: 1px solid #283442;
  padding: 2px 9px;
  border-radius: 3px;
  color: #8d9eae;
}
.work-card h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 14px 0 10px;
}
.work-card p {
  max-width: 90%;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.work-link {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  color: #c8d5e4;
  padding: 17px 0 0;
  background: none;
}
.work-link:hover {
  color: var(--cyan);
}
.work-link span {
  font-size: 20px;
}
.work-note {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-top: 60px;
  color: #718399;
  font-size: 12px;
}
.work-note span:last-child {
  font: 10px/1.8 var(--mono);
  letter-spacing: 0.12em;
}
.about-section {
  padding-top: 25px;
  padding-bottom: 110px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(32px, 3.1vw, 46px);
  margin-bottom: 28px;
}
.about-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 450px;
  line-height: 1.95;
  margin: 0 0 22px;
}
.about-copy .about-lead {
  font-size: 18px;
  color: #cdd7e2;
  line-height: 1.8;
}
.button-outline {
  background: transparent;
  border: 1px solid #354453;
  color: #d8e4f1;
  gap: 15px;
  margin-top: 7px;
}
.button-outline:hover {
  background: #182532;
  border-color: #7693ae;
}
.button-outline > span:last-child {
  margin-left: 12px;
}
.about-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid #263444;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 40%, #162745 0, transparent 65%), #0a111b;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#3f57751c 1px, transparent 1px),
    linear-gradient(90deg, #3f57751c 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: linear-gradient(transparent, #000);
}
.about-visual-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 24px;
  color: #59738e;
  font: 9px/1.6 var(--mono);
  letter-spacing: 0.1em;
}
.about-visual-top > span:last-child {
  font-size: 20px;
  line-height: 10px;
}
.brand-art {
  position: relative;
  width: 310px;
  height: 160px;
  overflow: hidden;
  margin: 18px auto 12px;
  filter: drop-shadow(0 0 16px #1772c644);
}
.brand-art img {
  position: absolute;
  max-width: none;
  width: 405px;
  height: 405px;
  left: -48px;
  top: -74px;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.about-wordmark {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.1;
}
.about-wordmark span {
  display: block;
  font: 9px var(--mono);
  letter-spacing: 0.27em;
  color: #617895;
  margin-top: 14px;
}
.about-visual-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
  border-top: 1px solid #26344477;
  color: #7a90a5;
  font-size: 11px;
}
.about-visual-bottom i {
  width: 2px;
  height: 2px;
  background: #486789;
  border-radius: 50%;
}
.closing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, #101c2b, #080d16 60%);
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 52px;
}
.closing-inner p {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.03em;
}
.closing-inner p span {
  color: #7c92a9;
}
.circle-link {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #546a80;
  border-radius: 50%;
  font-size: 26px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.circle-link:hover {
  background: #22445e;
  transform: rotate(-45deg);
}
.site-footer {
  background: #080c12;
}
.footer-top {
  padding-block: 42px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: #8c9aac;
  margin-left: auto;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-top > p {
  font-size: 12px;
  color: #4d6176;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #586a7d;
  font-size: 11px;
}
.footer-bottom > span:nth-child(2) {
  font: 9px var(--mono);
  letter-spacing: 0.1em;
}
.motion-toggle {
  font-size: 11px;
  padding: 6px 0;
  background: transparent;
  color: #8194a8;
}
.motion-toggle:hover {
  color: var(--cyan);
}
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}
.motion-paused .visual-field {
  transform: none !important;
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 06. Product information — reusable value, application and configuration grids. */
.site-header nav {
  gap: 28px;
  margin-left: 0;
}
.header-cta {
  white-space: nowrap;
}
.platform-section {
  padding-bottom: 24px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.value-item {
  padding: 27px 0 0;
  border-top: 1px solid #344959;
}
.item-index {
  color: #6c8aa1;
  font: 12px/1.5 var(--mono);
  letter-spacing: 0.09em;
}
.value-item h3,
.application-item h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  margin: 18px 0 12px;
  letter-spacing: -0.025em;
}
.value-item p,
.application-item p,
.solution-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}
.applications-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1017;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #263441;
  border: 1px solid #263441;
  border-radius: 6px;
  overflow: hidden;
}
.application-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 34px;
  background: #0b121b;
}
.application-item > .item-index {
  padding-top: 8px;
}
.application-item h3 {
  margin-top: 0;
}
.application-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #7796af;
  margin-top: 23px;
}
.industry-row {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-top: 34px;
}
.industry-label {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
.industry-row ul {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.industry-row li {
  border-left: 1px solid #33404f;
  padding-left: 32px;
  font-size: 17px;
  color: #c7d7e5;
}
.solutions-section .section-heading {
  align-items: flex-end;
}
.solutions-section .section-heading h2 {
  font-size: clamp(30px, 2.7vw, 41px);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.solution-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #293747;
  border-radius: 5px;
  padding: 28px 24px 22px;
  background: #0c131c;
}
.solution-entry {
  background: linear-gradient(150deg, #173047, #0c1824);
  border-color: #37526a;
}
.solution-item .item-index {
  font-size: 11px;
  letter-spacing: 0.025em;
}
.solution-item h3 {
  min-height: 66px;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 500;
  margin: 24px 0 18px;
  letter-spacing: -0.03em;
}
.solution-item p {
  font-size: 15px;
  padding-bottom: 28px;
}
.solution-footer {
  display: block;
  width: 100%;
  border-top: 1px solid #304154;
  padding-top: 17px;
  margin-top: auto;
  font-size: 12px;
  color: #7392ab;
}
.solution-entry .solution-footer {
  color: #a4d7ee;
}
@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }
  .site-header nav {
    gap: 26px;
  }
  .hero-product {
    font-size: 20px;
  }
  .value-grid {
    gap: 24px;
  }
  .value-item h3 {
    font-size: 19px;
  }
  .application-item {
    padding: 28px 24px;
    gap: 12px;
  }
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .solution-item h3 {
    min-height: 0;
  }
  .solution-item h3 br {
    display: none;
  }
  .industry-row {
    gap: 24px;
  }
  .industry-row li {
    padding-left: 22px;
    font-size: 16px;
  }
}
@media (min-width: 761px) and (max-width: 950px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-description {
    max-width: 330px;
  }
  .section-heading {
    gap: 24px;
  }
  .section-heading > p {
    max-width: 285px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .value-item {
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: baseline;
    column-gap: 24px;
  }
  .value-item .item-index {
    grid-column: 1;
  }
  .value-item h3 {
    grid-column: 1;
    margin: 12px 0 0;
  }
  .value-item p {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
@media (max-width: 760px) {
  .site-header nav {
    gap: 0;
  }
  .hero-product {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .hero-product > span {
    font-size: 12px;
  }
  .hero-description {
    max-width: 480px;
  }
  .hero h1 {
    margin-bottom: 20px;
  }
  .platform-section {
    padding-bottom: 0;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .value-item {
    padding-top: 22px;
  }
  .value-item h3 {
    font-size: 21px;
    margin-top: 14px;
  }
  .application-grid {
    grid-template-columns: 1fr;
  }
  .application-item {
    padding: 26px 20px;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 12px;
  }
  .application-item h3 {
    font-size: 20px;
  }
  .application-item p,
  .value-item p {
    font-size: 16px;
  }
  .industry-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .industry-row ul {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
  .industry-row li {
    padding-left: 15px;
  }
  .solutions-section .section-heading h2 {
    font-size: 32px;
    line-height: 1.5;
  }
  .solutions-section .section-heading h2 span {
    display: block;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solution-item {
    padding: 25px;
  }
  .solution-item h3 {
    margin-block: 18px 13px;
    font-size: 23px;
  }
  .solution-item p {
    padding-bottom: 22px;
    font-size: 16px;
  }
}

/* 07. Media dialog */
.platform-link {
  padding-top: 28px;
  width: fit-content;
  font-size: 14px;
}
.footer-contact {
  display: grid;
  grid-template-columns: 0.85fr 0.95fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
}
.footer-contact h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 8px 0 0;
}
.contact-item {
  min-width: 0;
}
.contact-item > span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(16px, 1.6vw, 23px);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-item a > span {
  color: #7197ae;
  font-size: 18px;
}
.contact-item a:hover {
  color: var(--cyan);
}
@media (max-width: 1000px) {
  .footer-contact {
    grid-template-columns: 0.7fr 1fr 1.5fr;
    gap: 24px;
  }
  .contact-item a {
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 32px;
  }
  .footer-contact h2 {
    font-size: 24px;
  }
  .contact-item a {
    font-size: 20px;
  }
}

.video-dialog {
  width: min(1060px, calc(100% - 40px));
  max-height: 92dvh;
  border: 1px solid #314052;
  padding: 24px;
  background: #0c131c;
  color: var(--text);
  border-radius: 8px;
  overflow: auto;
}
.video-dialog::backdrop {
  background: #020508e8;
  backdrop-filter: blur(12px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
}
.dialog-heading h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 0;
}
.dialog-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1d2937;
  color: #fff;
  font-size: 28px;
}
.dialog-close:hover {
  background: #324558;
}
.video-dialog video {
  width: 100%;
  max-height: 65dvh;
  background: #000;
}
.dialog-caption {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 890px;
  }
  .hero-layout {
    min-height: 720px;
  }
  .hero-visual {
    height: 600px;
  }
}
@media (max-width: 1050px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero-visual {
    width: calc(100% + 20px);
  }
  .visual-label {
    display: none;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    gap: 20px;
  }
  .hero-layout {
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  :root {
    --header-height: 78px;
  }
  .header-inner {
    height: 78px;
    gap: 15px;
  }
  .brand-name {
    font-size: 19px;
  }
  .brand-name > span {
    font-size: 9px;
  }
  .brand-mark {
    transform: scale(0.86);
    transform-origin: left center;
    width: 46px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    margin-left: auto;
    z-index: 2;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: #d1d9e5;
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 15px 24px 22px;
    background: #0b111af5;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 14px 0;
  }
  .site-header nav a.is-current::after {
    bottom: auto;
    top: 25px;
    left: auto;
    right: 0;
  }
  .hero {
    padding-top: 78px;
    min-height: auto;
  }
  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-copy {
    padding: 58px 0 0;
  }
  .hero h1 {
    font-size: clamp(36px, 8.7vw, 60px);
    line-height: 1.28;
    margin: 24px 0;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 28px;
  }
  .hero-tags {
    margin-top: 26px;
    font-size: 11px;
  }
  .hero-visual {
    height: 370px;
    width: 100%;
    margin: 15px 0 22px;
  }
  .visual-field {
    inset: 0 -24px 0;
  }
  .visual-topline {
    top: 24px;
    left: 4px;
    right: 4px;
    font-size: 9px;
  }
  .visual-bottom {
    left: 0;
    right: 0;
    bottom: 52px;
    font-size: 9px;
  }
  .view-switch button {
    padding: 5px 18px;
  }
  .hero-bottom {
    padding-block: 20px;
  }
  .hero-bottom > span:nth-child(2) {
    display: none;
  }
  .video-dialog {
    padding: 15px;
    width: calc(100% - 20px);
  }
  .dialog-heading h2 {
    font-size: 17px;
  }
  .dialog-heading .eyebrow {
    font-size: 9px;
  }
  .dialog-close {
    flex-shrink: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1050px) {
  .capability-grid > div {
    padding-inline: 18px;
    gap: 10px;
  }
  .capability-icon {
    display: none;
  }
  .capability-grid h2 {
    font-size: 13px;
  }
  .about-grid {
    gap: 50px;
  }
  .footer-top {
    gap: 35px;
  }
  .footer-top > p {
    display: none;
  }
  .about-visual {
    min-height: 400px;
  }
}
@media (max-width: 760px) {
  .visual-field {
    inset: 0 -30px 8px;
  }
  .visual-topline {
    top: 15px;
    left: 0;
  }
  .visual-bottom {
    left: 0;
    right: 0;
  }
  .tracking-corners {
    inset: 20% 15% 23%;
  }
  .capability-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }
  .capability-grid > div,
  .capability-grid > div:first-child,
  .capability-grid > div:last-child {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .capability-grid > div:last-child {
    border-bottom: 0;
  }
  .capability-icon {
    display: block;
    font-size: 25px;
  }
  .capability-grid h2 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .capability-grid p {
    font-size: 12px;
  }
  .section-pad {
    padding-block: 70px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 34px;
    margin-top: 19px;
  }
  .section-heading > .eyebrow,
  .eyebrow {
    font-size: 10px;
  }
  .section-heading > p {
    margin: 22px 0 0;
    font-size: 14px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .work-card h3 {
    font-size: 22px;
  }
  .work-card p {
    max-width: 100%;
    font-size: 14px;
  }
  .work-media {
    aspect-ratio: 16/10;
  }
  .work-card-body {
    padding-top: 20px;
  }
  .work-note {
    margin-top: 38px;
    padding-bottom: 20px;
    gap: 16px;
    font-size: 11px;
  }
  .work-note span:last-child {
    max-width: 110px;
    text-align: right;
    font-size: 9px;
    line-height: 1.5;
  }
  .about-section {
    padding-top: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .about-copy .about-lead {
    font-size: 17px;
  }
  .about-copy p {
    font-size: 14px;
  }
  .about-visual {
    min-height: 390px;
  }
  .brand-art {
    transform: scale(0.92);
    margin-top: 12px;
  }
  .about-wordmark {
    font-size: 32px;
  }
  .closing-inner {
    padding-block: 35px;
    gap: 20px;
  }
  .closing-inner p {
    font-size: 24px;
    line-height: 1.5;
  }
  .closing-inner p span {
    display: block;
  }
  .circle-link {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 23px;
  }
  .footer-top {
    padding-block: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-nav {
    margin: 0;
    gap: 30px;
    font-size: 13px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 10px;
    gap: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom .motion-toggle {
    margin-left: auto;
    font-size: 10px;
    padding: 0;
  }
  .js-reveal .reveal {
    transform: translateY(18px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
  .model-image {
    will-change: auto;
  }
}

/* Transparent brand asset: crop its emblem with layout only; preserve the PNG. */
.brand-mark {
  width: 54px;
  height: 27px;
}
.brand-mark img {
  width: 61px;
  height: auto;
  left: -3px;
  top: -2px;
  filter: none;
  mix-blend-mode: normal;
}
.brand-art {
  width: 310px;
  height: 153px;
  filter: none;
}
.brand-art img {
  width: 348px;
  height: auto;
  left: -19px;
  top: -12px;
  filter: none;
  mix-blend-mode: normal;
}

/* Narrow phones: preserve single-line controls without squeezing the title. */
.brand-art img,
.brand-mark img {
  clip-path: inset(0 0 29% 0);
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 13px;
    white-space: nowrap;
  }
  .hero-actions .button-primary {
    padding-inline: 16px;
    gap: 16px;
  }
  .hero-actions .button-text {
    gap: 8px;
  }
  .hero-description {
    font-size: 14px;
  }
  .brand-art {
    width: 100%;
    height: 153px;
  }
  .brand-art img {
    width: 100%;
    left: 0;
    top: 0;
  }
}

/* The desktop configuration CTA remains available in the mobile menu. */
.site-header nav .nav-mobile-only {
  display: none;
}
@media (max-width: 760px) {
  .site-header nav .nav-mobile-only {
    display: block;
  }
}
