:root {
  --bg-0: #03050a;
  --bg-1: #07111e;
  --bg-2: #0a1b31;
  --bg-3: #102744;
  --panel: rgba(10, 18, 30, 0.58);
  --panel-strong: rgba(7, 14, 24, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(132, 183, 234, 0.14);
  --line-strong: rgba(132, 183, 234, 0.28);
  --text: #eff5ff;
  --muted: #8fa8c6;
  --accent: #7fe6ff;
  --accent-2: #7a88ff;
  --accent-3: #9cf7da;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --scroll-progress: 0%;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  --hero-glow-x: 50%;
  --hero-glow-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(127, 230, 255, 0.14), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(122, 136, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 82%, rgba(156, 247, 218, 0.08), transparent 24%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 32%, var(--bg-2) 68%, var(--bg-3) 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 24% 74%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1px),
    radial-gradient(circle at 88% 68%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px);
  background-size: 320px 320px;
  opacity: 0.28;
}

body::after {
  background:
    linear-gradient(transparent, rgba(1, 6, 13, 0.24)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 150px
    );
  mix-blend-mode: screen;
  opacity: 0.12;
}

body.is-ready {
  overflow: auto;
}

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 28px rgba(127, 230, 255, 0.35);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at center, rgba(127, 230, 255, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(3, 6, 11, 0.98), rgba(4, 10, 18, 0.98));
  transition: opacity 850ms ease, visibility 850ms ease;
}

body.is-ready .loader {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  position: relative;
  width: 118px;
  height: 118px;
}

.loader-orbit,
.loader-center {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loader-orbit {
  border: 1px solid rgba(127, 230, 255, 0.18);
}

.orbit-one {
  transform: rotateX(74deg) rotateZ(18deg);
  animation: spin-orbit 1.8s linear infinite;
}

.orbit-two {
  inset: 18px;
  border-color: rgba(122, 136, 255, 0.24);
  transform: rotateY(68deg) rotateZ(-12deg);
  animation: spin-orbit-reverse 2.1s linear infinite;
}

.loader-center {
  inset: 34px;
  background: radial-gradient(circle at 35% 35%, #ffffff 0, var(--accent) 38%, rgba(127, 230, 255, 0.08) 82%);
  box-shadow: 0 0 32px rgba(127, 230, 255, 0.24);
}

.loader-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.loader-label,
.loader-status,
.eyebrow,
.meta-card span,
.orbital-card span,
.visual-caption span,
.showcase-copy span,
.capability-card span,
.process-step span,
.artifact span,
.brand-copy span,
.nav a {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-label {
  font-size: 0.78rem;
  color: var(--text);
}

.loader-status {
  font-size: 0.7rem;
  color: var(--muted);
}

.cursor-dot,
.cursor-ring,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 115;
  opacity: 0;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(127, 230, 255, 0.35);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(127, 230, 255, 0.4);
  border-radius: 50%;
}

.cursor-glow {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 230, 255, 0.15), rgba(127, 230, 255, 0) 64%);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.6;
}

.ambient-left {
  top: 120px;
  left: -40px;
  width: 240px;
  height: 280px;
  background: rgba(127, 230, 255, 0.12);
}

.ambient-right {
  top: 220px;
  right: -40px;
  width: 220px;
  height: 260px;
  background: rgba(122, 136, 255, 0.1);
}

.ambient-bottom {
  bottom: 0;
  left: 36%;
  width: 320px;
  height: 180px;
  background: rgba(156, 247, 218, 0.06);
}

.page-shell {
  position: relative;
  z-index: 10;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 80px;
  opacity: 0.01;
  transition: opacity 800ms ease;
}

body.is-ready .page-shell {
  opacity: 1;
}

.site-header,
.hero-copy,
.meta-card,
.orbital-card,
.visual-caption,
.showcase-copy,
.capability-card,
.process-step,
.artifact,
.cta-panel {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 14, 24, 0.56);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 26px rgba(127, 230, 255, 0.4);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(127, 230, 255, 0.18);
  border-radius: 50%;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(127, 230, 255, 0.2));
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.hero h1,
.section-intro h2,
.showcase-copy h3,
.capability-card h3,
.process-step h3,
.visual-caption strong,
.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span,
.nav a,
.hero-subline,
.showcase-copy p,
.capability-card p,
.process-step p,
.artifact span,
.visual-caption span,
.visual-caption strong,
.loader-status,
.cta-panel .eyebrow {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.72rem;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-cta,
.button-primary {
  color: #06101b;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  box-shadow: 0 16px 30px rgba(127, 230, 255, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 40px 0 12px;
}

.hero-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.52);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero h1,
.section-intro h2,
.cta-panel h2 {
  margin: 0;
  line-height: 0.92;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 10vw, 8.4rem);
}

.hero-subline {
  margin: 18px 0 0;
  font-size: 1.02rem;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.meta-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-soft);
}

.meta-card span,
.orbital-card span,
.visual-caption span,
.showcase-copy span,
.capability-card span,
.process-step span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  color: var(--muted);
}

.meta-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 780px;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transition: transform 160ms ease-out;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 10%;
  border-radius: 50%;
  background: radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(127, 230, 255, 0.2), transparent 36%);
  filter: blur(38px);
}

.hero-fog,
.hero-grid,
.printer-stage,
.visual-caption {
  position: absolute;
}

.hero-fog {
  border-radius: 50%;
  filter: blur(28px);
}

.fog-a {
  top: 6%;
  right: 10%;
  width: 240px;
  height: 240px;
  background: rgba(127, 230, 255, 0.16);
}

.fog-b {
  left: 6%;
  bottom: 18%;
  width: 260px;
  height: 180px;
  background: rgba(122, 136, 255, 0.14);
}

.hero-grid {
  inset: auto 0 2% 0;
  height: 260px;
  border-radius: 36px;
  border: 1px solid rgba(132, 183, 234, 0.08);
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4)),
    repeating-linear-gradient(
      90deg,
      rgba(132, 183, 234, 0.14) 0,
      rgba(132, 183, 234, 0.14) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(132, 183, 234, 0.14) 0,
      rgba(132, 183, 234, 0.14) 1px,
      transparent 1px,
      transparent 40px
    );
  transform: rotateX(73deg) translateZ(-60px);
}

.printer-stage {
  inset: 2% 4% 12%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.product-stage {
  position: absolute;
  cursor: grab;
  touch-action: pan-y;
}

.stage-shadow {
  position: absolute;
  bottom: 42px;
  width: 420px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 230, 255, 0.18), rgba(127, 230, 255, 0) 72%);
  filter: blur(16px);
}

.hero-product,
.showcase-photo,
.process-photo,
.artifact-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(132, 183, 234, 0.18);
  border-radius: 30px;
  background: rgba(8, 14, 24, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.4);
  transition:
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 980ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms ease,
    box-shadow 420ms ease;
  will-change: transform;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%, rgba(3, 6, 11, 0.18) 100%);
  pointer-events: none;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-main {
  width: 360px;
  height: 520px;
  z-index: 3;
  transform: translateY(-8px);
}

.hero-product-left {
  left: 26px;
  bottom: 66px;
  width: 220px;
  height: 300px;
  z-index: 2;
  transform: rotate(-8deg);
}

.hero-product-right {
  right: 20px;
  top: 126px;
  width: 220px;
  height: 260px;
  z-index: 2;
  transform: rotate(8deg);
}

.hero-product.is-active {
  border-color: rgba(127, 230, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 40px 120px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(127, 230, 255, 0.08);
}

.product-stage.is-dragging {
  cursor: grabbing;
}

.product-stage.is-dragging .hero-product {
  transition:
    transform 220ms ease-out,
    opacity 220ms ease-out,
    filter 220ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.stack-hint {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 8;
  display: grid;
  gap: 6px;
  width: max-content;
  max-width: 240px;
  padding: 14px 18px;
  border: 1px solid rgba(132, 183, 234, 0.14);
  border-radius: 999px;
  background: rgba(7, 14, 24, 0.52);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.stack-hint span,
.stack-hint strong {
  display: block;
  text-align: center;
}

.stack-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.stack-hint strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}

.printer {
  position: relative;
  width: 420px;
  height: 540px;
  transform-style: preserve-3d;
  animation: printer-float 7s ease-in-out infinite;
}

.printer-halo {
  position: absolute;
  inset: -8% -10% auto;
  height: 120%;
  border-radius: 40px;
  background: radial-gradient(circle at center, rgba(127, 230, 255, 0.16), rgba(127, 230, 255, 0) 58%);
  filter: blur(30px);
}

.printer-frame {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 14, 24, 0.86);
  border: 1px solid rgba(132, 183, 234, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.44);
}

.printer-arch,
.printer-column,
.printer-roof,
.printer-base,
.printer-chamber,
.build-platform,
.print-head {
  position: absolute;
}

.printer-arch {
  top: 42px;
  left: 50%;
  width: 280px;
  height: 180px;
  border: 1px solid rgba(127, 230, 255, 0.18);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
  transform: translateX(-50%);
}

.printer-column {
  top: 120px;
  width: 18px;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(132, 183, 234, 0.4), rgba(255, 255, 255, 0.05));
}

.column-left {
  left: 96px;
}

.column-right {
  right: 96px;
}

.printer-roof {
  top: 60px;
  left: 50%;
  width: 220px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 230, 255, 0.8), rgba(122, 136, 255, 0.72));
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(127, 230, 255, 0.18);
}

.printer-chamber {
  top: 128px;
  left: 50%;
  width: 270px;
  height: 230px;
  transform: translateX(-50%);
}

.printer-glass {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(132, 183, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.print-head {
  top: 26px;
  left: 50%;
  width: 112px;
  height: 70px;
  transform: translateX(-50%);
  animation: head-scan 4.5s ease-in-out infinite;
}

.head-arm {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 32px;
  background: rgba(127, 230, 255, 0.7);
  transform: translateX(-50%);
}

.head-nozzle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44px;
  height: 34px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(127, 230, 255, 0.9), rgba(7, 14, 24, 0.9));
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(127, 230, 255, 0.18);
}

.build-platform {
  left: 50%;
  bottom: 24px;
  width: 210px;
  height: 76px;
  border-radius: 20px;
  border: 1px solid rgba(132, 183, 234, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.68);
  transform: translateX(-50%);
}

.platform-line {
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 230, 255, 0.42), transparent);
}

.line-one {
  top: 20px;
}

.line-two {
  top: 38px;
}

.line-three {
  top: 56px;
}

.printed-form {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 76px;
  height: 52px;
  border-radius: 24px 24px 18px 18px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(127, 230, 255, 0.72) 30%, rgba(7, 14, 24, 0.16) 85%),
    linear-gradient(180deg, rgba(127, 230, 255, 0.8), rgba(122, 136, 255, 0.5));
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(127, 230, 255, 0.16);
}

.printer-base {
  left: 50%;
  bottom: 46px;
  width: 330px;
  height: 84px;
  transform: translateX(-50%);
}

.base-panel {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(132, 183, 234, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(8, 14, 24, 0.92);
}

.base-light {
  position: absolute;
  top: 24px;
  width: 44px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 230, 255, 0.95), rgba(156, 247, 218, 0.7));
  box-shadow: 0 0 20px rgba(127, 230, 255, 0.18);
}

.light-one {
  left: 32px;
}

.light-two {
  right: 32px;
}

.orbital-card {
  position: absolute;
  width: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 14, 24, 0.56);
  box-shadow: var(--shadow);
}

.orbital-card strong {
  font-size: 1rem;
}

.orbital-left {
  left: 0;
  top: 120px;
  animation: orbit-a 8s ease-in-out infinite;
}

.orbital-top {
  right: 76px;
  top: 40px;
  animation: orbit-b 9s ease-in-out infinite;
}

.orbital-right {
  right: 0;
  top: 250px;
  animation: orbit-c 7.5s ease-in-out infinite;
}

.orbital-bottom {
  left: 100px;
  bottom: 60px;
  animation: orbit-d 8.4s ease-in-out infinite;
}

.visual-caption {
  right: 14px;
  bottom: 16px;
  width: 240px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 14, 24, 0.58);
}

.visual-caption strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.3;
}

.signal-band {
  overflow: hidden;
  padding: 18px 0 4px;
}

.signal-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(127, 230, 255, 0.28);
}

.section {
  padding: 110px 0;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 32px;
}

.section-intro h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 22px;
  align-items: stretch;
}

.showcase-panel {
  display: grid;
  gap: 16px;
}

.showcase-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.52);
}

.showcase-copy h3,
.capability-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.showcase-copy p,
.capability-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(127, 230, 255, 0.08), transparent 24%),
    rgba(8, 14, 24, 0.56);
  overflow: hidden;
}

.showcase-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.showcase-photo {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.showcase-ring,
.showcase-printer-mini {
  position: absolute;
}

.showcase-ring {
  border: 1px solid rgba(132, 183, 234, 0.2);
  border-radius: 50%;
}

.ring-a {
  width: 320px;
  height: 320px;
  transform: rotateX(74deg) rotateZ(10deg);
}

.ring-b {
  width: 420px;
  height: 190px;
  transform: rotateX(78deg) rotateZ(-18deg);
}

.ring-c {
  width: 240px;
  height: 240px;
  border-color: rgba(127, 230, 255, 0.3);
  transform: rotateY(68deg) rotateZ(30deg);
}

.showcase-printer-mini {
  width: 180px;
  height: 240px;
}

.mini-top,
.mini-core,
.mini-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 24px;
}

.mini-top {
  top: 24px;
  width: 120px;
  height: 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.mini-core {
  top: 54px;
  width: 142px;
  height: 120px;
  border: 1px solid rgba(132, 183, 234, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-base {
  bottom: 24px;
  width: 170px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(132, 183, 234, 0.18);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.5);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
}

.process-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(127, 230, 255, 0.08), transparent 24%),
    rgba(8, 14, 24, 0.54);
  overflow: hidden;
}

.process-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(132, 183, 234, 0.08) 0,
      rgba(132, 183, 234, 0.08) 1px,
      transparent 1px,
      transparent 36px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(132, 183, 234, 0.08) 0,
      rgba(132, 183, 234, 0.08) 1px,
      transparent 1px,
      transparent 36px
    );
  mask-image: linear-gradient(180deg, transparent, white 16%, white 84%, transparent);
}

.process-beam {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 18%;
  width: 64%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(127, 230, 255, 0.26);
  animation: beam-scan 4s ease-in-out infinite;
}

.process-object {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
}

.process-photo {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border-radius: 28px;
  object-fit: cover;
  opacity: 0.96;
}

.process-layer {
  position: absolute;
  left: 50%;
  width: 170px;
  height: 36px;
  border-radius: 18px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(127, 230, 255, 0.72), rgba(156, 247, 218, 0.52));
  box-shadow: 0 0 18px rgba(127, 230, 255, 0.14);
}

.layer-1 {
  top: 30px;
}

.layer-2 {
  top: 74px;
  width: 148px;
}

.layer-3 {
  top: 118px;
  width: 132px;
}

.layer-4 {
  top: 162px;
  width: 112px;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 24, 0.52);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.archive-lead,
.archive-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.54);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.archive-lead {
  display: grid;
  grid-template-rows: minmax(380px, 1fr) auto;
}

.archive-lead-media,
.archive-card-photo {
  position: relative;
  overflow: hidden;
}

.archive-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-lead-copy,
.archive-card {
  padding: 24px;
}

.archive-lead-copy span,
.archive-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.archive-lead-copy h3,
.archive-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.archive-lead-copy p,
.archive-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.archive-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-card {
  min-height: 220px;
}

.archive-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.archive-link-card:hover,
.archive-link-card:focus-visible {
  border-color: rgba(123, 230, 255, 0.34);
  box-shadow: 0 24px 70px rgba(6, 17, 30, 0.42);
  text-decoration: none;
}

.archive-logo {
  display: block;
  width: min(240px, 100%);
  margin-bottom: 20px;
  object-fit: contain;
}

.archive-card-photo {
  min-height: 220px;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  grid-template-areas:
    "tall disc mask"
    "wide wide mask";
}

.artifact {
  position: relative;
  min-height: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.54);
  overflow: hidden;
}

.artifact-tall {
  grid-area: tall;
  min-height: 420px;
}

.artifact-wide {
  grid-area: wide;
}

.artifact:nth-child(2) {
  grid-area: disc;
}

.artifact:nth-child(3) {
  grid-area: mask;
  min-height: 420px;
}

.artifact-shape {
  position: absolute;
  inset: 18px 18px 54px;
}

.artifact-image {
  position: absolute;
  inset: 18px 18px 54px;
  border-radius: 22px;
  object-fit: cover;
}

.shape-tower {
  width: 160px;
  height: 280px;
  margin: auto;
  border-radius: 40px 40px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(127, 230, 255, 0.1)),
    linear-gradient(180deg, rgba(127, 230, 255, 0.7), rgba(8, 14, 24, 0.2));
  box-shadow: 0 0 32px rgba(127, 230, 255, 0.12);
}

.shape-disc {
  width: 200px;
  height: 90px;
  margin: 78px auto 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.86), rgba(127, 230, 255, 0.56) 30%, rgba(8, 14, 24, 0.1) 84%);
  box-shadow: 0 0 28px rgba(127, 230, 255, 0.12);
}

.shape-mask {
  width: 190px;
  height: 250px;
  margin: 24px auto 0;
  border-radius: 44% 44% 34% 34%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(122, 136, 255, 0.12)),
    linear-gradient(180deg, rgba(127, 230, 255, 0.5), rgba(8, 14, 24, 0.12));
}

.shape-wave {
  width: calc(100% - 80px);
  height: 160px;
  margin: 60px auto 0;
  border-radius: 80px;
  background:
    linear-gradient(90deg, rgba(127, 230, 255, 0.56), rgba(122, 136, 255, 0.4), rgba(156, 247, 218, 0.5));
  transform: skewX(-18deg);
}

.artifact span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 0.72rem;
  color: var(--muted);
}

.cta-panel {
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(127, 230, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.6);
  text-align: center;
}

.cta-panel h2 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.nav,
.hero-actions,
.cta-actions,
.archive-stack {
  min-width: 0;
}

.reveal,
.reveal-on-load {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
}

.reveal.is-visible,
body.is-ready .reveal-on-load {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal,
.reveal-on-load,
.showcase-copy,
.capability-card,
.process-step,
.artifact,
.orbital-card,
.button,
.nav-cta,
.visual-caption,
.cta-panel {
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.showcase-copy:hover,
.capability-card:hover,
.process-step:hover,
.artifact:hover,
.orbital-card:hover,
.visual-caption:hover,
.hero-copy:hover {
  border-color: rgba(127, 230, 255, 0.3);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(127, 230, 255, 0.06);
}

@keyframes spin-orbit {
  to {
    transform: rotateX(74deg) rotateZ(378deg);
  }
}

@keyframes spin-orbit-reverse {
  to {
    transform: rotateY(68deg) rotateZ(-372deg);
  }
}

@keyframes printer-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes head-scan {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(80px);
  }
}

@keyframes beam-scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(220px);
    opacity: 1;
  }
}

@keyframes orbit-a {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-18px) rotate(-3deg);
  }
}

@keyframes orbit-b {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes orbit-c {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(-18px) rotate(-1deg);
  }
}

@keyframes orbit-d {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33%);
  }
}

@media (max-width: 1180px) {
  .hero,
  .showcase-layout,
  .process-layout,
  .archive-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

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

  .hero-visual {
    min-height: 700px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    top: 10px;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "disc"
      "mask"
      "wide";
  }

  .artifact,
  .artifact-tall,
  .artifact:nth-child(3) {
    min-height: 280px;
  }

  .hero {
    gap: 20px;
    padding: 20px 0 0;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-copy {
    padding: 28px;
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

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

  .showcase-visual,
  .process-visual {
    min-height: 400px;
  }

  .archive-lead {
    min-height: 0;
  }

  .site-header {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
  }

  .hero-copy,
  .cta-panel,
  .showcase-copy,
  .capability-card,
  .process-step,
  .archive-card,
  .archive-lead-copy {
    padding: 22px;
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    border-radius: 20px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
    line-height: 0.96;
  }

  .hero-subline {
    font-size: 0.95rem;
  }

  .hero-copy {
    border-radius: 28px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-meta,
  .capability-grid,
  .archive-stack {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-product-main {
    width: min(64vw, 236px);
    height: min(88vw, 332px);
  }

  .hero-product-left {
    left: 0;
    bottom: 86px;
    width: min(30vw, 114px);
    height: min(40vw, 148px);
  }

  .hero-product-right {
    right: 0;
    top: 118px;
    width: min(30vw, 114px);
    height: min(38vw, 142px);
  }

  .orbital-card {
    display: none;
  }

  .visual-caption {
    position: absolute;
    right: 12px;
    left: 12px;
    bottom: 14px;
    width: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .visual-caption strong {
    font-size: 1rem;
  }

  .stack-hint {
    width: calc(100% - 24px);
    max-width: none;
    bottom: 86px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .stack-hint strong {
    font-size: 0.68rem;
  }

  .signal-band {
    padding-top: 6px;
  }

  .signal-track span {
    padding: 10px 14px;
    font-size: 0.64rem;
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .showcase-visual,
  .process-visual {
    min-height: 280px;
    border-radius: 28px;
  }

  .showcase-photo,
  .process-photo {
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-radius: 20px;
    margin: 9px;
  }

  .archive-lead {
    grid-template-rows: minmax(260px, 1fr) auto;
  }

  .archive-card {
    min-height: 180px;
  }

  .archive-card-photo {
    min-height: 240px;
  }

  .artifact,
  .artifact-tall,
  .artifact:nth-child(3),
  .artifact-wide {
    min-height: 220px;
  }

  .artifact-image {
    inset: 14px 14px 48px;
    border-radius: 18px;
  }

  .artifact span {
    left: 14px;
    bottom: 14px;
  }

  .cta-panel {
    border-radius: 28px;
  }

  .cta-panel h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px;
  }

  .brand {
    gap: 10px;
    justify-content: flex-start;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

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

  .nav a {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    padding: 20px;
  }

  .hero-subline {
    max-width: 28ch;
  }

  .hero-meta {
    gap: 10px;
  }

  .meta-card {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .stage-shadow {
    width: 190px;
    height: 84px;
    bottom: 66px;
  }

  .hero-product-main {
    width: min(60vw, 198px);
    height: min(82vw, 280px);
  }

  .hero-product-left,
  .hero-product-right {
    opacity: 0.38;
    filter: blur(2.2px) saturate(0.74) !important;
  }

  .hero-product-left {
    width: min(22vw, 82px);
    height: min(31vw, 110px);
    bottom: 78px;
  }

  .hero-product-right {
    width: min(22vw, 82px);
    height: min(30vw, 104px);
    top: 100px;
  }

  .stack-hint {
    bottom: 70px;
    width: calc(100% - 32px);
    padding: 9px 11px;
  }

  .visual-caption {
    left: 10px;
    right: 10px;
    padding: 11px 12px;
    bottom: 8px;
  }

  .visual-caption span {
    margin-bottom: 4px;
  }

  .visual-caption strong {
    font-size: 0.92rem;
  }

  .section-intro h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .capability-card,
  .process-step,
  .showcase-copy {
    border-radius: 22px;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-glow {
    display: none;
  }
}
