.product-page {
  --atelier-max: 1440px;
  background: #080710;
}

.product-page .header {
  background: rgba(8, 7, 16, 0.84);
  border-color: rgba(40, 33, 56, 0.9);
  backdrop-filter: blur(18px);
}

.product-page .header nav a:last-child {
  color: var(--orange);
}

.product-page .section {
  max-width: none;
}

.product-page :focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.product-hero {
  min-height: 930px;
  padding: 155px var(--pad) 105px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #080710);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -2;
}

.hero-glow-purple {
  width: 52vw;
  height: 52vw;
  right: -13vw;
  top: -17vw;
  background: rgba(117, 59, 189, 0.28);
}

.hero-glow-orange {
  width: 30vw;
  height: 30vw;
  left: 15vw;
  bottom: -22vw;
  background: rgba(255, 152, 0, 0.12);
}

.product-hero-grid {
  width: 100%;
  max-width: var(--atelier-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
}

.product-hero-copy {
  position: relative;
  z-index: 2;
}

.product-hero h1 {
  margin: 28px 0 0;
  max-width: 900px;
  font: 800 clamp(48px, 5.8vw, 92px)/0.98 "Unbounded", sans-serif;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.product-hero h1 em,
.atelier-intro h2 em,
.deliverables h2 em,
.architecture h2 em,
.process h2 em,
.full-service h2 em,
.product-contact h2 em {
  font-style: normal;
  background: linear-gradient(95deg, var(--purple-bright), #d3adff 48%, var(--orange));
  background-clip: text;
  color: transparent;
}

.product-hero-copy > p {
  max-width: 680px;
  margin: 34px 0 0;
  color: #b9b1ca;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.hero-tags span {
  padding: 8px 11px;
  border: 1px solid #342b46;
  border-radius: 999px;
  color: #968da9;
  font: 600 8px ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.product-hero-visual {
  position: relative;
  margin: 0;
  min-height: 610px;
  border: 1px solid rgba(156, 98, 255, 0.42);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.48), 0 0 80px rgba(117, 59, 189, 0.17);
}

.product-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 7, 16, 0.88));
  pointer-events: none;
}

.product-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.product-hero-visual:hover > img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.04);
}

.product-hero-visual figcaption {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 7, 16, 0.66);
  backdrop-filter: blur(12px);
  color: #fff;
  font: 600 9px ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.product-hero-visual figcaption span {
  color: var(--orange);
}

.visual-orbit {
  position: absolute;
  z-index: 2;
  width: 220px;
  aspect-ratio: 1;
  top: -78px;
  right: -55px;
}

.visual-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 152, 0, 0.55);
  border-radius: 50%;
  animation: spin 34s linear infinite;
}

.visual-orbit i:nth-child(2) {
  inset: 29px;
  border-color: rgba(156, 98, 255, 0.7);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 24s;
}

.visual-orbit b {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 14px;
  top: 97px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 26px var(--orange);
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(156, 98, 255, 0.35);
  background: #0c0914;
}

.studio-strip > div {
  min-height: 108px;
  padding: 30px clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(156, 98, 255, 0.24);
}

.studio-strip > div:last-child {
  border-right: 0;
}

.studio-strip span {
  color: var(--orange);
  font: 600 10px ui-monospace, monospace;
}

.studio-strip strong {
  font: 600 clamp(10px, 1vw, 13px) "Unbounded", sans-serif;
  letter-spacing: 0.02em;
}

.atelier-intro {
  max-width: var(--atelier-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18% minmax(0, 1fr) minmax(280px, 31%);
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
}

.atelier-intro h2,
.deliverables h2,
.architecture h2,
.process h2,
.full-service h2,
.product-contact h2 {
  margin: 0;
  font: 700 clamp(38px, 5.2vw, 78px)/1.05 "Unbounded", sans-serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.atelier-intro-copy {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.atelier-intro-copy p {
  margin: 26px 0 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.75;
}

.atelier-intro-copy p:first-child {
  color: #d8d1e5;
  font-size: 18px;
}

.orbit-bridge {
  --bridge-progress: 0;
  --bridge-distance: 0%;
  height: 280svh;
  position: relative;
  background: #06050c;
}

.orbit-bridge-sticky {
  height: 100svh;
  min-height: 760px;
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.orbit-bridge-sticky::before,
.orbit-bridge-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-bridge-sticky::before {
  z-index: -3;
  background:
    radial-gradient(circle at 72% 48%, rgba(117, 59, 189, 0.18), transparent 31%),
    linear-gradient(180deg, #080710, #06050c 46%, #0c0a14);
}

.orbit-bridge-sticky::after {
  z-index: 4;
  background: linear-gradient(180deg, #080710 0, transparent 12%, transparent 88%, #0c0a14 100%);
}

.bridge-stars {
  z-index: -2;
  opacity: calc(0.55 + var(--bridge-progress) * 0.45);
  transform: translate3d(0, calc(var(--bridge-progress) * -44px), 0) scale(calc(1 + var(--bridge-progress) * 0.05));
  transition: opacity 180ms linear;
}

.bridge-nebula {
  width: 44vw;
  aspect-ratio: 1;
  position: absolute;
  z-index: -2;
  right: 2vw;
  top: 50%;
  border-radius: 50%;
  background: rgba(117, 59, 189, 0.17);
  filter: blur(110px);
  transform: translateY(-50%) scale(calc(0.75 + var(--bridge-progress) * 0.45));
}

.bridge-inner {
  width: 100%;
  max-width: var(--atelier-max);
  margin: 0 auto;
  padding: 110px var(--pad) 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: center;
}

.bridge-copy {
  position: relative;
  z-index: 3;
}

.bridge-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  margin-bottom: 38px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(156, 98, 255, 0.28);
}

.bridge-meta > span,
.bridge-counter {
  font: 600 9px ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.bridge-meta > span {
  color: #8d849f;
}

.bridge-counter {
  color: var(--orange);
}

.bridge-stages {
  height: 390px;
  position: relative;
}

.bridge-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bridge-stage.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.bridge-stage > span {
  margin-bottom: 20px;
  color: var(--orange);
  font: 600 9px ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.bridge-stage h2 {
  max-width: 760px;
  margin: 0;
  font: 700 clamp(36px, 4.5vw, 68px)/1.06 "Unbounded", sans-serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.bridge-stage h2 em {
  font-style: normal;
  background: linear-gradient(94deg, var(--purple-bright), #d4adff 48%, var(--orange));
  background-clip: text;
  color: transparent;
}

.bridge-stage p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #aaa2ba;
  font-size: 16px;
  line-height: 1.7;
}

.bridge-scene {
  width: min(46vw, 650px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.45));
}

.bridge-orbit,
.bridge-path {
  position: absolute;
  border-radius: 50%;
  transform: rotate(-12deg) scaleY(0.72);
}

.bridge-orbit-outer {
  inset: 2%;
  border: 1px solid rgba(156, 98, 255, 0.34);
  box-shadow: inset 0 0 90px rgba(117, 59, 189, 0.06);
}

.bridge-orbit-inner {
  inset: 23%;
  border: 1px dashed rgba(255, 152, 0, 0.28);
  transform: rotate(18deg) scaleY(0.72);
}

.bridge-path {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 152, 0, 0.72);
  border-right-color: rgba(156, 98, 255, 0.52);
  box-shadow: 0 -4px 35px rgba(255, 152, 0, 0.08);
}

.bridge-core {
  width: 29%;
  aspect-ratio: 1;
  position: absolute;
  left: 35.5%;
  top: 35.5%;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #c5a0ff, var(--purple) 39%, #291041 76%);
  box-shadow: 0 0 85px rgba(117, 59, 189, calc(0.35 + var(--bridge-progress) * 0.45));
  transform: scale(calc(0.9 + var(--bridge-progress) * 0.12));
}

.bridge-core b {
  font: 800 clamp(25px, 3vw, 44px) "Unbounded", sans-serif;
}

.bridge-core small {
  display: block;
  margin-top: 5px;
  color: #e4d8f1;
  font: 600 6px ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.bridge-capsule {
  width: 22px;
  height: 22px;
  position: absolute;
  left: calc(50% - 11px);
  top: calc(50% - 11px);
  z-index: 5;
  offset-path: ellipse(40% 29% at 50% 50%);
  offset-distance: var(--bridge-distance);
  offset-rotate: 0deg;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 10%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange), 0 0 48px rgba(255, 152, 0, 0.72);
  transform: rotate(45deg);
}

.bridge-capsule::before {
  content: "";
  width: 35px;
  height: 1px;
  position: absolute;
  right: 13px;
  top: 10px;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.85));
  transform: rotate(-45deg);
  transform-origin: right center;
}

.bridge-capsule i {
  width: 5px;
  height: 5px;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  background: #fff;
}

.bridge-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #716a7e;
  font: 600 7px ui-monospace, monospace;
  letter-spacing: 0.13em;
  transition: color 320ms ease, transform 320ms ease;
}

.bridge-node i {
  width: 9px;
  height: 9px;
  border: 1px solid #5c526c;
  border-radius: 50%;
  background: #080710;
  transition: background-color 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.bridge-node-need {
  left: 2%;
  top: 49%;
}

.bridge-node-architecture {
  left: 43%;
  top: 3%;
}

.bridge-node-experience {
  right: -2%;
  top: 51%;
}

.orbit-bridge[data-stage="0"] .bridge-node-need,
.orbit-bridge[data-stage="1"] .bridge-node-architecture,
.orbit-bridge[data-stage="2"] .bridge-node-experience {
  color: #fff;
  transform: translateY(-2px);
}

.orbit-bridge[data-stage="0"] .bridge-node-need i,
.orbit-bridge[data-stage="1"] .bridge-node-architecture i,
.orbit-bridge[data-stage="2"] .bridge-node-experience i {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.85);
}

.bridge-artifact {
  position: absolute;
  z-index: 6;
  padding: 9px 12px;
  border: 1px solid rgba(156, 98, 255, 0.48);
  border-radius: 8px;
  background: rgba(16, 14, 26, 0.88);
  backdrop-filter: blur(10px);
  color: #dcd3e8;
  font: 600 7px ui-monospace, monospace;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(18px) scale(0.88);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.artifact-ebook {
  left: 17%;
  top: 18%;
  transition-delay: 0ms;
}

.artifact-video {
  right: 11%;
  top: 22%;
  transition-delay: 70ms;
}

.artifact-game {
  left: 19%;
  bottom: 16%;
  transition-delay: 140ms;
}

.artifact-info {
  right: 8%;
  bottom: 20%;
  transition-delay: 210ms;
}

.orbit-bridge.is-artifacts-visible .bridge-artifact {
  opacity: 1;
  transform: none;
}

.bridge-progress {
  width: min(470px, 42vw);
  height: 1px;
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 39px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.bridge-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple-bright), var(--orange));
  transform: scaleX(var(--bridge-progress));
  transform-origin: left center;
}

.bridge-scroll-hint {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: 32px;
  color: #5f586c;
  font: 600 8px ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.bridge-scroll-hint span {
  margin-left: 9px;
  color: var(--orange);
}

.deliverables {
  background: #0c0a14;
}

.deliverables-head,
.process-head,
.full-service-head {
  max-width: var(--atelier-max);
  margin: 0 auto 82px;
  display: grid;
  grid-template-columns: 18% minmax(0, 1fr) minmax(260px, 29%);
  gap: clamp(30px, 4vw, 70px);
  align-items: end;
}

.deliverables-head > p,
.full-service-head > p {
  margin: 0 0 5px;
  color: var(--copy);
  line-height: 1.72;
}

.object-grid {
  max-width: var(--atelier-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.object-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(21, 17, 33, 0.98), rgba(12, 10, 20, 0.98));
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.object-card::before {
  content: "";
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  top: -120px;
  right: -105px;
  border: 1px solid rgba(156, 98, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 55px rgba(117, 59, 189, 0.08);
  transition: transform 400ms ease, border-color 260ms ease;
}

.object-card:hover,
.object-card:focus-visible {
  transform: translateY(-7px);
  border-color: var(--purple);
  outline: none;
}

.object-card:hover::before,
.object-card:focus-visible::before {
  transform: scale(1.2);
  border-color: rgba(255, 152, 0, 0.4);
}

.object-card-feature {
  grid-column: span 8;
  background: linear-gradient(130deg, rgba(117, 59, 189, 0.82), rgba(36, 17, 63, 0.96));
}

.object-card-feature::before {
  width: 400px;
  top: -250px;
  right: -80px;
  border-color: rgba(255, 255, 255, 0.18);
}

.object-card-orange {
  background: linear-gradient(145deg, rgba(255, 152, 0, 0.96), rgba(135, 67, 0, 0.96));
  color: #fff;
}

.object-card-orange p,
.object-card-feature p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.object-index {
  color: var(--orange);
  font: 600 11px ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.object-card-orange .object-index,
.object-card-feature .object-index {
  color: #fff;
}

.object-card h3 {
  max-width: 700px;
  margin: 0 0 14px;
  font: 600 clamp(23px, 2.3vw, 38px)/1.12 "Unbounded", sans-serif;
  letter-spacing: -0.035em;
}

.object-card p {
  max-width: 640px;
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

.object-card b {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: 600 8px ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.architecture {
  overflow: clip;
  background: #080710;
}

.architecture-grid {
  max-width: var(--atelier-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}

.word-universe {
  width: min(100%, 620px);
  height: 680px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.universe-stars {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.universe-stars i {
  position: absolute;
  width: var(--star-size);
  height: var(--star-size);
  left: var(--star-x);
  top: -4%;
  border-radius: 50%;
  background: #f7f4ff;
  box-shadow: 0 0 10px rgba(247, 244, 255, 0.88);
  opacity: 0;
  animation: universe-star-fall var(--star-duration) linear infinite;
  animation-delay: var(--star-delay);
}

.universe-stars i::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(12px + var(--star-size));
  left: 50%;
  bottom: 100%;
  background: linear-gradient(transparent, currentColor);
  opacity: 0.28;
  transform: translateX(-50%);
}

.universe-stars i:nth-child(3n) {
  color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.9);
}

.universe-stars i:nth-child(4n) {
  color: var(--purple-bright);
  background: var(--purple-bright);
  box-shadow: 0 0 12px rgba(156, 98, 255, 0.9);
}

.universe-connections {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.universe-connections.is-active {
  opacity: 1;
}

@property --twinkle {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.universe-word {
  --drift-y: 0px;
  --proximity: 0;
  --twinkle: 0;
  --twinkle-peak: 0.055;
  --word-scale: 1;
  --word-glow-near: 0px;
  --word-glow-far: 0px;
  position: absolute;
  z-index: 3;
  left: var(--word-x);
  top: var(--word-y);
  color: #877d96;
  font: 600 var(--word-size) "Unbounded", sans-serif;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
  opacity: calc(var(--word-alpha) - 0.12 + var(--proximity) + var(--twinkle));
  filter: brightness(calc(0.66 + var(--proximity)));
  text-shadow:
    0 0 calc(3px + var(--word-glow-near)) rgba(206, 175, 255, 0.72),
    0 0 calc(8px + var(--word-glow-far)) rgba(117, 59, 189, 0.48);
  transform: translate3d(-50%, calc(-50% + var(--drift-y)), 0) scale(var(--word-scale));
  transition: opacity 0.24s ease, filter 0.24s ease, text-shadow 0.24s ease, transform 0.16s linear;
  animation: universe-word-twinkle 8.5s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.universe-word:nth-of-type(3n) {
  animation-duration: 11s;
  animation-delay: -4.5s;
}

.universe-word:nth-of-type(4n) {
  animation-duration: 13s;
  animation-delay: -8s;
}

.universe-word:nth-of-type(5n) {
  animation-duration: 7s;
  animation-delay: -3s;
}

.universe-word-major {
  color: #b7acc5;
  font-weight: 700;
}

.universe-word-accent {
  color: #8057c4;
  text-shadow:
    0 0 calc(5px + var(--word-glow-near)) rgba(196, 154, 255, 0.86),
    0 0 calc(10px + var(--word-glow-far)) rgba(117, 59, 189, 0.62);
}

.universe-word-orange {
  color: #a76510;
  text-shadow:
    0 0 calc(5px + var(--word-glow-near)) rgba(255, 190, 92, 0.84),
    0 0 calc(10px + var(--word-glow-far)) rgba(255, 152, 0, 0.52);
}

.universe-word-distant {
  --twinkle-peak: 0.11;
  color: #6f667c;
  font-weight: 500;
}

.universe-caption {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6d6678;
  font: 600 8px ui-monospace, monospace;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.universe-caption i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

@keyframes universe-star-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) scale(0.6);
  }

  14% {
    opacity: 0.82;
  }

  72% {
    opacity: 0.36;
  }

  100% {
    opacity: 0;
    transform: translate3d(-16px, 720px, 0) scale(1.15);
  }
}

@keyframes universe-word-twinkle {
  0%,
  100% {
    --twinkle: 0;
  }

  42% {
    --twinkle: var(--twinkle-peak);
  }

  68% {
    --twinkle: 0.012;
  }
}

.architecture-copy .side-label {
  margin-bottom: 38px;
}

.architecture-lead {
  max-width: 760px;
  margin: 32px 0 0;
  color: #c4bbd1;
  font-size: 18px;
  line-height: 1.7;
}

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

.architecture-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  color: #a9a1b9;
}

.architecture-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.identity-panel {
  margin-top: 34px;
  padding: 26px;
  border-left: 3px solid var(--orange);
  background: rgba(117, 59, 189, 0.12);
}

.identity-panel span {
  color: var(--orange);
  font: 600 9px ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.identity-panel p {
  margin: 14px 0 0;
  color: #d2c9df;
  line-height: 1.68;
}

.process {
  background: #0c0a14;
}

.process-head {
  grid-template-columns: 18% minmax(0, 1fr);
}

.process-list {
  max-width: var(--atelier-max);
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 90px minmax(190px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 24px 10px;
  border-top: 1px solid var(--line);
  transition: padding 260ms ease, background-color 260ms ease;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step:hover {
  padding-inline: 26px;
  background: rgba(117, 59, 189, 0.08);
}

.process-step > span {
  color: var(--orange);
  font: 600 12px ui-monospace, monospace;
}

.process-step h3 {
  margin: 0;
  font: 600 clamp(21px, 2.2vw, 34px) "Unbounded", sans-serif;
  letter-spacing: -0.03em;
}

.process-step p {
  max-width: 700px;
  margin: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.65;
}

.full-service {
  background: linear-gradient(155deg, #6b32af, #3d176e);
  overflow: hidden;
}

.full-service h2 em {
  background: none;
  color: var(--orange);
}

.full-service .side-label,
.full-service-head > p {
  color: #e2d6ee;
}

.service-grid {
  max-width: var(--atelier-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(8, 7, 16, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, background-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(8, 7, 16, 0.3);
}

.service-card span {
  color: var(--orange);
  font: 600 11px ui-monospace, monospace;
}

.service-card h3 {
  margin: 90px 0 16px;
  font: 600 clamp(22px, 2vw, 32px) "Unbounded", sans-serif;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: #ddd0ea;
  line-height: 1.68;
}

.product-contact {
  min-height: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.product-contact h2 {
  max-width: 1200px;
  margin-top: 22px;
}

.product-contact > p {
  max-width: 650px;
  margin: 34px auto;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.7;
}

.product-contact .contact-orbits {
  z-index: -1;
}

.product-contact .contact-stars {
  z-index: -2;
}

@media (max-width: 1120px) {
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 48px;
  }

  .product-hero-visual,
  .product-hero-visual > img {
    min-height: 550px;
  }

  .object-card {
    grid-column: span 6;
  }

  .object-card-feature {
    grid-column: span 12;
  }

  .bridge-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
  }

  .bridge-scene {
    width: min(48vw, 570px);
  }
}

@media (max-width: 1000px) {
  .product-hero {
    min-height: auto;
    padding-top: 135px;
  }

  .product-hero-grid,
  .atelier-intro,
  .deliverables-head,
  .architecture-grid,
  .process-head,
  .full-service-head {
    grid-template-columns: 1fr;
  }

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

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

  .atelier-intro h2,
  .deliverables h2,
  .full-service h2 {
    margin-top: 34px;
  }

  .atelier-intro-copy,
  .deliverables-head > p,
  .full-service-head > p {
    max-width: 720px;
  }

  .architecture-grid {
    gap: 70px;
  }

  .word-universe {
    width: min(86vw, 620px);
    height: 680px;
  }

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

  .service-card {
    min-height: 250px;
  }

  .service-card h3 {
    margin-top: 58px;
  }

  .bridge-inner {
    padding-inline: 34px;
  }

  .bridge-stage h2 {
    font-size: clamp(34px, 5.2vw, 56px);
  }
}

@media (max-width: 760px) {
  .product-hero h1 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .product-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-strip {
    grid-template-columns: 1fr;
  }

  .studio-strip > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(156, 98, 255, 0.24);
  }

  .studio-strip > div:last-child {
    border-bottom: 0;
  }

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

  .object-card,
  .object-card-feature {
    grid-column: 1;
    min-height: 290px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding-block: 30px;
  }

  .process-step p {
    grid-column: 2;
  }

  .orbit-bridge {
    height: auto;
  }

  .orbit-bridge-sticky {
    min-height: auto;
    position: relative;
    padding: 96px 0;
  }

  .orbit-bridge-sticky::after {
    background: linear-gradient(180deg, #080710 0, transparent 7%, transparent 93%, #0c0a14 100%);
  }

  .bridge-inner {
    padding: 0 22px;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .bridge-copy {
    grid-row: 2;
  }

  .bridge-scene {
    grid-row: 1;
    width: min(90vw, 480px);
    justify-self: center;
  }

  .bridge-meta {
    margin-bottom: 42px;
  }

  .bridge-counter,
  .bridge-scroll-hint,
  .bridge-progress {
    display: none;
  }

  .bridge-stages {
    height: auto;
    display: grid;
    gap: 54px;
  }

  .bridge-stage {
    min-height: auto;
    position: relative;
    inset: auto;
    display: block;
    padding-left: 22px;
    border-left: 1px solid rgba(156, 98, 255, 0.38);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .bridge-stage::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: -5px;
    top: 5px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 17px rgba(255, 152, 0, 0.75);
  }

  .bridge-stage h2 {
    font-size: clamp(32px, 8.8vw, 48px);
  }

  .bridge-stage p {
    margin-top: 20px;
  }

  .bridge-artifact {
    opacity: 1;
    transform: none;
  }

  .word-universe {
    height: 610px;
    width: min(94vw, 560px);
  }
}

@media (max-width: 620px) {
  .product-hero {
    padding: 118px 22px 84px;
  }

  .product-hero-visual,
  .product-hero-visual > img {
    min-height: 420px;
  }

  .product-hero-visual {
    border-radius: 22px;
  }

  .product-hero-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: max-content;
    max-width: calc(100% - 28px);
  }

  .hero-tags {
    gap: 6px;
  }

  .deliverables-head,
  .process-head,
  .full-service-head {
    margin-bottom: 55px;
  }

  .word-universe {
    width: 100%;
    height: 540px;
  }

  .universe-word {
    letter-spacing: -0.045em;
  }

  .universe-caption {
    display: none;
  }

  .architecture-lead {
    font-size: 16px;
  }

  .product-contact {
    min-height: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero-visual > img,
  .object-card,
  .object-card::before,
  .process-step,
  .service-card,
  .visual-orbit i {
    transition: none;
    animation: none;
  }

  .orbit-bridge {
    height: auto;
  }

  .orbit-bridge-sticky {
    min-height: auto;
    position: relative;
    padding: 110px 0;
  }

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

  .bridge-copy {
    grid-row: 2;
  }

  .bridge-scene {
    grid-row: 1;
    justify-self: center;
  }

  .bridge-stages {
    height: auto;
    display: grid;
    gap: 48px;
  }

  .bridge-stage {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    transform: none;
  }

  .bridge-artifact {
    opacity: 1;
    transform: none;
  }

  .bridge-progress,
  .bridge-scroll-hint,
  .bridge-counter {
    display: none;
  }

  .universe-word {
    --drift-y: 0px !important;
    --word-scale: 1 !important;
    --twinkle: 0 !important;
    animation: none;
    transition: none;
    will-change: auto;
  }

  .universe-stars i,
  .universe-connections {
    display: none;
  }
}
