:root {
  --ink: #f6f1e7;
  --muted: rgba(246, 241, 231, 0.72);
  --quiet: rgba(246, 241, 231, 0.44);
  --black: #080b0f;
  --coal: #10171d;
  --panel: rgba(244, 240, 232, 0.065);
  --paper: #ebe4d5;
  --paper-ink: #151515;
  --line: rgba(244, 240, 232, 0.16);
  --paper-line: rgba(21, 21, 21, 0.14);
  --signal: #bfdc7a;
  --blue: #93bfd0;
  --rust: #b96d4f;
  --gold: #d2b36f;
  --plum: #9b7aa0;
  --radius: 8px;
  color-scheme: dark;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(147, 191, 208, 0.1), transparent 28%),
    radial-gradient(circle at 8% 60%, rgba(191, 220, 122, 0.065), transparent 30%),
    var(--black);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  transform: translate3d(calc((var(--mouse-x, 0.5) - 0.5) * -16px), calc((var(--mouse-y, 0.5) - 0.5) * -16px), 0);
  transition: transform 0.45s ease-out;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(246, 241, 231, 0.05) 39%, transparent 40% 100%),
    repeating-linear-gradient(0deg, rgba(246, 241, 231, 0.03) 0 1px, transparent 1px 8px);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 74%, transparent);
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #07090d;
  color: var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.loader-core {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 260px;
}

.loader-core span,
.loader-core strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-core span {
  color: rgba(244, 240, 232, 0.48);
}

.loader-core strong {
  color: rgba(244, 240, 232, 0.42);
}

.loader-bars {
  display: flex;
  gap: 13px;
  align-items: center;
}

.loader-bars i {
  width: 12px;
  height: 12px;
  background: var(--ink);
  transform: scaleY(0.5);
  animation: loaderPulse 0.95s ease-in-out infinite alternate;
}

.loader-bars i:nth-child(2) { animation-delay: 0.08s; }
.loader-bars i:nth-child(3) { animation-delay: 0.16s; }
.loader-bars i:nth-child(4) { animation-delay: 0.24s; }
.loader-bars i:nth-child(5) { animation-delay: 0.32s; }
.loader-bars i:nth-child(6) { animation-delay: 0.4s; }

@keyframes loaderPulse {
  from { transform: scaleY(0.42); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(9, 12, 16, 0.72);
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.main-nav,
.nav-action,
.primary-link,
.secondary-link {
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 900;
}

.brand-lockup > span:last-child {
  display: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 138px;
  height: 54px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.nav-action {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: rgba(244, 240, 232, 0.08);
  font-weight: 900;
}

.chapter-rail {
  position: fixed;
  z-index: 25;
  left: clamp(18px, 3vw, 46px);
  top: 50%;
  display: grid;
  gap: 13px;
  transform: translateY(-50%);
}

.chapter-rail a {
  color: rgba(244, 240, 232, 0.32);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 0.95;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.chapter-rail a.active,
.chapter-rail a:hover {
  color: var(--ink);
  transform: translateX(8px);
}

.story-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 7vw, 96px) 92px clamp(160px, 16vw, 260px);
}

.story-content {
  position: relative;
  z-index: 8;
  min-width: 0;
  width: 100%;
  max-width: 900px;
}

.hero-content-wrap {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(30px, 5vw, 74px);
  width: 100%;
  max-width: 1460px;
}

.hero-content {
  max-width: 940px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(4.6rem, 6.8vw, 7.9rem);
  line-height: 0.82;
}

h1 span {
  display: block;
}

h2 {
  max-width: 1060px;
  font-size: 6.8rem;
  line-height: 0.85;
}

.story-content p:not(.kicker),
.final-band p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 30px;
  border: 1px solid rgba(244, 240, 232, 0.12);
  background: rgba(244, 240, 232, 0.1);
}

.hero-metrics div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(8, 11, 15, 0.64);
}

.hero-metrics strong {
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 0.9;
}

.hero-metrics span {
  color: rgba(246, 241, 231, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-link,
.secondary-link {
  min-height: 50px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 900;
}

.primary-link {
  background: var(--signal);
  color: #111509;
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.08);
  color: var(--ink);
}

.command-deck {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 14px;
  align-self: center;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(8, 11, 15, 0.72);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.45s ease-out;
}

.command-deck:hover {
  border-color: rgba(191, 220, 122, 0.38);
  background: rgba(8, 11, 15, 0.82);
}

.deck-topline,
.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deck-topline strong,
.console-header strong {
  color: var(--signal);
}

.deck-preview {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 240, 232, 0.1);
  background: #0b0f14;
  aspect-ratio: 1.23;
}

.deck-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(8, 11, 15, 0.34)),
    linear-gradient(90deg, rgba(191, 220, 122, 0.08), transparent 34%, rgba(147, 191, 208, 0.12));
  mix-blend-mode: screen;
  pointer-events: none;
}

.living-render {
  min-height: 348px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(8, 11, 15, 0.98), rgba(17, 24, 32, 0.92)),
    #080b0f;
}

.living-render::before {
  content: "";
  position: absolute;
  inset: 10%;
  z-index: 0;
  border: 1px solid rgba(246, 241, 231, 0.08);
  transform:
    perspective(780px)
    rotateX(58deg)
    rotateZ(-19deg)
    translate3d(calc((var(--mouse-x, 0.5) - 0.5) * 20px), calc((var(--mouse-y, 0.5) - 0.5) * 18px), 0);
  opacity: 0.78;
}

.render-grid {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background-image:
    linear-gradient(rgba(246, 241, 231, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 231, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  transform:
    perspective(700px)
    rotateX(61deg)
    rotateZ(-18deg)
    translate3d(calc((var(--mouse-x, 0.5) - 0.5) * -18px), calc((var(--mouse-y, 0.5) - 0.5) * -12px), 0);
  transform-origin: center;
  opacity: 0.55;
}

.render-path {
  position: absolute;
  z-index: 1;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 220, 122, 0.8), rgba(147, 191, 208, 0.42), transparent);
  transform-origin: center;
}

.path-a {
  top: 35%;
  animation: renderPathA 4.8s linear infinite;
}

.path-b {
  top: 61%;
  opacity: 0.58;
  animation: renderPathB 6.4s linear infinite;
}

@keyframes renderPathA {
  from { transform: translateX(-18%) rotate(-12deg); }
  to { transform: translateX(18%) rotate(-12deg); }
}

@keyframes renderPathB {
  from { transform: translateX(16%) rotate(10deg); }
  to { transform: translateX(-16%) rotate(10deg); }
}

.render-orbit {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(246, 241, 231, 0.16);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(0deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

.orbit-one {
  width: min(78%, 360px);
  aspect-ratio: 1;
  animation: orbitSpin 14s linear infinite;
}

.orbit-two {
  width: min(58%, 270px);
  aspect-ratio: 1;
  animation: orbitSpin 10s linear reverse infinite;
}

.render-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(191, 220, 122, 0.54);
}

.render-orbit i:nth-child(1) { left: 50%; top: -4px; }
.render-orbit i:nth-child(2) { right: 6%; top: 74%; background: var(--blue); box-shadow: 0 0 24px rgba(147, 191, 208, 0.54); }
.render-orbit i:nth-child(3) { left: 8%; top: 72%; background: var(--gold); box-shadow: 0 0 24px rgba(210, 179, 111, 0.5); }
.render-orbit i:nth-child(4) { right: 12%; top: 18%; background: var(--rust); box-shadow: 0 0 24px rgba(185, 109, 79, 0.45); }

@keyframes orbitSpin {
  to { rotate: 360deg; }
}

.render-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 49%;
  width: min(56%, 250px);
  min-height: 138px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(246, 241, 231, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(246, 241, 231, 0.1), rgba(246, 241, 231, 0.035)),
    rgba(8, 11, 15, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform:
    translate(-50%, -50%)
    translate3d(calc((var(--mouse-x, 0.5) - 0.5) * 12px), calc((var(--mouse-y, 0.5) - 0.5) * 10px), 0);
  backdrop-filter: blur(18px);
}

.render-core img {
  width: min(190px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.38));
}

.render-core span,
.render-readout span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.render-readout {
  position: absolute;
  z-index: 5;
  width: min(210px, 46%);
  display: grid;
  gap: 6px;
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(8, 11, 15, 0.72);
  backdrop-filter: blur(14px);
}

.render-readout strong {
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.readout-a {
  left: 14px;
  top: 16px;
  animation: readoutLift 5.8s ease-in-out infinite;
}

.readout-b {
  right: 14px;
  bottom: 16px;
  animation: readoutLift 6.4s ease-in-out 0.6s infinite;
}

@keyframes readoutLift {
  50% { transform: translateY(-8px); border-color: rgba(191, 220, 122, 0.32); }
}

.render-stack {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  max-width: 46%;
}

.render-stack i {
  height: 30px;
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(191, 220, 122, 0.26), rgba(147, 191, 208, 0.06));
  transform-origin: bottom;
  animation: stackBuild 1.8s ease-in-out infinite;
}

.render-stack i:nth-child(2) { animation-delay: 0.12s; }
.render-stack i:nth-child(3) { animation-delay: 0.24s; }
.render-stack i:nth-child(4) { animation-delay: 0.36s; }
.render-stack i:nth-child(5) { animation-delay: 0.48s; }

@keyframes stackBuild {
  50% { transform: scaleY(0.42); opacity: 0.52; }
}

.deck-scan {
  position: absolute;
  inset: -20% 0 auto;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(191, 220, 122, 0.2), transparent);
  animation: deckScan 4.8s ease-in-out infinite;
}

@keyframes deckScan {
  0% { transform: translateY(-90%); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateY(520%); opacity: 0; }
}

.deck-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.08);
}

.deck-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  background: rgba(8, 11, 15, 0.74);
  transition: background 0.25s ease, color 0.25s ease;
}

.deck-row span,
.deck-row em {
  color: rgba(246, 241, 231, 0.48);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.deck-row strong {
  color: rgba(246, 241, 231, 0.88);
  font-size: 0.92rem;
}

.deck-row.is-active {
  background: rgba(191, 220, 122, 0.15);
}

.deck-row.is-active span,
.deck-row.is-active em {
  color: var(--signal);
}

.system-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(137, 185, 200, 0.2), transparent 28%),
    radial-gradient(circle at 35% 72%, rgba(168, 211, 106, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(9, 12, 16, 0.98), rgba(17, 24, 32, 0.88));
}

.alive-aurora {
  position: absolute;
  inset: -16% -8%;
  opacity: 0.42;
  background:
    linear-gradient(108deg, transparent 0 23%, rgba(191, 220, 122, 0.1) 30%, transparent 42% 100%),
    linear-gradient(142deg, transparent 0 48%, rgba(147, 191, 208, 0.14) 55%, transparent 66% 100%),
    linear-gradient(22deg, transparent 0 62%, rgba(210, 179, 111, 0.1) 68%, transparent 78% 100%);
  transform: translate3d(calc((var(--mouse-x, 0.5) - 0.5) * 34px), calc((var(--mouse-y, 0.5) - 0.5) * 26px), 0);
  animation: auroraShift 10s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  from { filter: hue-rotate(0deg); opacity: 0.3; }
  to { filter: hue-rotate(12deg); opacity: 0.48; }
}

.signal-thread {
  position: absolute;
  width: 34vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 240, 232, 0.52), rgba(191, 220, 122, 0.44), transparent);
  transform-origin: center;
  opacity: 0.34;
  animation: threadDrift 9s ease-in-out infinite alternate;
}

.thread-a { right: 10vw; top: 24vh; transform: rotate(34deg); }
.thread-b { right: 26vw; top: 58vh; transform: rotate(-18deg); animation-delay: 1s; }
.thread-c { right: -2vw; top: 72vh; transform: rotate(8deg); animation-delay: 1.8s; }

@keyframes threadDrift {
  to { translate: 4vw -2vh; opacity: 0.58; }
}

.field-grid {
  position: absolute;
  inset: -12%;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  transform: perspective(650px) rotateX(58deg) translate3d(0, calc(var(--scroll, 0) * -0.015px), 0);
  transform-origin: center bottom;
  opacity: 0.44;
  transition: transform 0.55s ease-out;
}

.system-field::before,
.system-field::after {
  content: "";
  position: absolute;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 240, 232, 0.14);
  transform: rotate(22deg) translate3d(calc(var(--mouse-x, 0.5) * 24px), calc(var(--mouse-y, 0.5) * 24px), 0);
}

.system-field::before {
  right: 8vw;
  top: 8vh;
}

.system-field::after {
  right: -8vw;
  bottom: -16vh;
  border-color: rgba(168, 211, 106, 0.18);
}

.scan-line {
  position: absolute;
  left: -20vw;
  width: 140vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 211, 106, 0.74), rgba(137, 185, 200, 0.38), transparent);
  animation: scanMove 7s linear infinite;
}

.line-a {
  top: 32%;
}

.line-b {
  top: 64%;
  animation-duration: 10s;
  animation-direction: reverse;
  opacity: 0.58;
}

@keyframes scanMove {
  from { transform: translateX(-18vw) rotate(-7deg); }
  to { transform: translateX(18vw) rotate(-7deg); }
}

.signal-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 232, 0.42);
  background: var(--black);
  box-shadow: 0 0 0 10px rgba(168, 211, 106, 0.08), 0 0 42px rgba(168, 211, 106, 0.32);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-a { top: 27%; right: 26%; }
.node-b { top: 62%; right: 42%; animation-delay: 0.6s; }
.node-c { top: 44%; right: 12%; animation-delay: 1.2s; }

@keyframes nodePulse {
  50% { transform: scale(1.65); opacity: 0.52; }
}

.floating-panel {
  position: absolute;
  z-index: 3;
  width: min(240px, 18vw);
  min-height: 110px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(9, 12, 16, 0.58);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.floating-panel:hover {
  border-color: rgba(168, 211, 106, 0.45);
  background: rgba(9, 12, 16, 0.72);
  transform: translate3d(0, -4px, 0);
}

.floating-panel span,
.floating-panel strong {
  display: block;
}

.floating-panel span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-panel strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 2.45rem;
  line-height: 0.9;
}

.panel-a { right: 26vw; top: 18vh; animation: panelFloat 8s ease-in-out infinite; }
.panel-b { right: 8vw; top: 40vh; animation: panelFloat 9s ease-in-out 1s infinite; }
.panel-c { right: 30vw; bottom: 12vh; animation: panelFloat 10s ease-in-out 0.4s infinite; }

@keyframes panelFloat {
  50% { translate: 0 -18px; }
}

.hero-type-layer {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  align-content: center;
  gap: clamp(18px, 4vw, 50px);
  pointer-events: none;
}

.hero-type-layer span {
  display: block;
  width: max-content;
  color: rgba(244, 240, 232, 0.055);
  font-family: Archivo, Inter, sans-serif;
  font-size: 14rem;
  font-weight: 900;
  line-height: 0.72;
  text-transform: uppercase;
  transform: translate3d(var(--type-offset, 0), var(--parallax-y, 0), 0);
  transition: transform 0.45s ease-out;
}

.hero-type-layer span:nth-child(1) { margin-left: 20vw; }
.hero-type-layer span:nth-child(2) { margin-left: 48vw; color: rgba(137, 185, 200, 0.1); }
.hero-type-layer span:nth-child(3) { margin-left: 34vw; color: rgba(168, 211, 106, 0.09); }

.metric-grid {
  position: absolute;
  z-index: 9;
  right: clamp(20px, 5vw, 80px);
  top: 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 1px;
  width: min(440px, 40vw);
  border: 1px solid rgba(244, 240, 232, 0.12);
  background: rgba(244, 240, 232, 0.1);
}

.metric-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: rgba(9, 12, 16, 0.62);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.45s ease-out, background 0.25s ease;
}

.metric-grid strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.metric-grid span {
  color: var(--ink);
  font-weight: 900;
}

.quote-marquee {
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #12171d;
  color: var(--ink);
}

.quote-marquee div {
  display: flex;
  width: max-content;
  gap: clamp(32px, 7vw, 96px);
  padding: 18px 0;
  animation: marquee 38s linear infinite;
}

.quote-marquee span {
  white-space: nowrap;
  color: rgba(244, 240, 232, 0.82);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

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

.suite-section,
.operator-section,
.offer-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(32px, 6vw, 92px);
}

.suite-section,
.operator-section,
.final-band {
  background: var(--paper);
  color: var(--paper-ink);
}

.suite-section .kicker,
.operator-section .kicker,
.offer-section .kicker,
.final-band .kicker {
  color: #8b3f2f;
}

.suite-section .story-content p:not(.kicker),
.operator-section .story-content p:not(.kicker),
.final-band p:not(.kicker) {
  color: rgba(21, 21, 21, 0.72);
}

.section-word {
  position: absolute;
  z-index: 1;
  right: -0.05em;
  bottom: -0.16em;
  color: rgba(9, 12, 16, 0.075);
  font-family: Archivo, Inter, sans-serif;
  font-size: 15rem;
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.55s ease-out;
}

.intelligence-section .section-word,
.studio-section .section-word,
.craft-section .section-word,
.motion-section .section-word,
.offer-section .section-word {
  color: rgba(244, 240, 232, 0.055);
}

.suite-panel {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--paper-line);
}

.suite-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  border: 0;
  border-bottom: 1px solid var(--paper-line);
  padding: 22px 0;
  background: transparent;
  color: var(--paper-ink);
  text-align: left;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.45s ease-out, color 0.2s ease;
}

.suite-row span {
  font-family: Archivo, Inter, sans-serif;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.suite-row strong {
  color: rgba(21, 21, 21, 0.66);
  font-size: 0.95rem;
  line-height: 1.45;
}

.suite-row:hover span {
  color: #8b3f2f;
}

.intelligence-section,
.studio-section,
.craft-section,
.motion-section,
.offer-section {
  background:
    radial-gradient(circle at 72% 20%, rgba(147, 191, 208, 0.1), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(185, 109, 79, 0.08), transparent 32%),
    linear-gradient(135deg, #0c1116, #111820);
}

.intelligence-section,
.studio-section,
.craft-section,
.motion-section {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.95fr);
  gap: clamp(36px, 7vw, 108px);
}

.intelligence-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
}

.craft-board,
.studio-board,
.motion-reel {
  position: relative;
  z-index: 7;
  min-height: 660px;
}

.intelligence-console {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.075), rgba(244, 240, 232, 0.03)),
    rgba(8, 11, 15, 0.64);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.console-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.1);
}

.console-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(191, 220, 122, 0.08), transparent 42%),
    rgba(8, 11, 15, 0.82);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: background 0.25s ease, transform 0.45s ease-out;
}

.console-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(147, 191, 208, 0.1), transparent 42%),
    rgba(8, 11, 15, 0.82);
}

.console-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(185, 109, 79, 0.1), transparent 42%),
    rgba(8, 11, 15, 0.82);
}

.console-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(210, 179, 111, 0.1), transparent 42%),
    rgba(8, 11, 15, 0.82);
}

.console-card:hover {
  transform: translate3d(0, calc(var(--parallax-y, 0) - 4px), 0);
}

.console-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-card strong {
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.82rem;
  line-height: 0.98;
}

.console-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.craft-tile,
.studio-tile,
.reel-frame,
.deliverable-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 12, 16, 0.56);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.45s ease-out;
}

.craft-tile:hover,
.studio-tile:hover,
.reel-frame:hover,
.deliverable-grid div:hover {
  border-color: rgba(168, 211, 106, 0.48);
  background: rgba(9, 12, 16, 0.7);
  transform: translate3d(0, calc(var(--parallax-y, 0) - 4px), 0);
}

.craft-tile {
  position: absolute;
  width: min(340px, 72vw);
  min-height: 188px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
}

.studio-tile {
  position: absolute;
  width: min(350px, 72vw);
  min-height: 198px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
}

.craft-tile span,
.studio-tile span,
.reel-frame span,
.deliverable-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.craft-tile strong,
.studio-tile strong,
.reel-frame strong,
.deliverable-grid strong {
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 0.98;
}

.craft-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.studio-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tile-a { top: 0; left: 0; }
.tile-b { top: 145px; right: 0; border-color: rgba(137, 185, 200, 0.3); }
.tile-c { top: 322px; left: 42px; border-color: rgba(199, 119, 85, 0.34); }
.tile-d { bottom: 0; right: 28px; border-color: rgba(168, 211, 106, 0.32); }

.motion-band {
  position: absolute;
  z-index: 2;
  left: -10vw;
  width: 120vw;
  color: rgba(244, 240, 232, 0.055);
  font-family: Archivo, Inter, sans-serif;
  font-size: 7.4rem;
  font-weight: 900;
  white-space: nowrap;
  pointer-events: none;
  animation: bandSlide 20s linear infinite;
}

.band-one {
  top: 18%;
  transform: rotate(-4deg);
}

.band-two {
  bottom: 14%;
  animation-direction: reverse;
  transform: rotate(3deg);
}

@keyframes bandSlide {
  from { translate: -10vw 0; }
  to { translate: 10vw 0; }
}

.motion-reel {
  order: 2;
}

.reel-frame {
  position: absolute;
  width: min(330px, 72vw);
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 18px;
}

.frame-a { top: 0; left: 0; border-color: rgba(168, 211, 106, 0.36); }
.frame-b { top: 150px; right: 0; border-color: rgba(137, 185, 200, 0.36); }
.frame-c { top: 318px; left: 42px; border-color: rgba(199, 119, 85, 0.36); }
.frame-d { bottom: 0; right: 28px; border-color: rgba(214, 172, 104, 0.36); }

.operator-media {
  position: relative;
  z-index: 7;
  align-self: end;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.45s ease-out;
}

.operator-media img {
  width: min(560px, 42vw);
  border-radius: var(--radius);
  border: 1px solid rgba(21, 21, 21, 0.18);
  background: #05070b;
  object-fit: cover;
  aspect-ratio: 0.86;
}

.operator-caption {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 3vw, 42px);
  max-width: min(310px, 72%);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(9, 12, 16, 0.78);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.operator-caption span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-caption strong {
  display: block;
  margin-top: 8px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.78rem;
  line-height: 0.98;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
}

.operator-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--paper);
  color: rgba(21, 21, 21, 0.78);
  font-weight: 900;
  text-align: center;
}

.offer-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 90px);
}

.deliverable-grid {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.deliverable-grid div {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 22px;
}

.final-band {
  position: relative;
  z-index: 6;
  min-height: 74svh;
  display: grid;
  align-content: center;
  padding: 110px clamp(20px, 7vw, 96px) 120px clamp(160px, 16vw, 260px);
}

.final-band h2 {
  max-width: 1120px;
}

.final-band .secondary-link {
  color: var(--paper-ink);
  border-color: rgba(21, 21, 21, 0.2);
  background: rgba(21, 21, 21, 0.06);
}

.projects-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(191, 220, 122, 0.08), transparent 35%),
    linear-gradient(160deg, #0b0f14, #121820);
}

.edge-grid,
.case-grid,
.page-grid,
.alchemy-flow {
  position: relative;
  z-index: 8;
  display: grid;
  gap: 12px;
}

.edge-card,
.case-card,
.page-card,
.alchemy-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(8, 11, 15, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.edge-card span,
.case-card span,
.page-card span,
.alchemy-step span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edge-card strong,
.case-card h2,
.page-card h2,
.alchemy-step h2 {
  display: block;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
  line-height: 0.98;
}

.edge-card p,
.case-card p,
.page-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.page-shell,
.brief-shell {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  padding: 130px clamp(20px, 7vw, 96px) 90px;
}

.page-hero,
.brief-hero {
  max-width: 1180px;
  padding: 70px 0 60px;
}

.page-hero h1,
.brief-hero h1 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: 7rem;
  line-height: 0.82;
}

.page-hero h1 span,
.brief-hero h1 span {
  display: block;
}

.page-hero p:not(.kicker),
.brief-hero p:not(.kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.64;
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.alchemy-flow {
  margin-top: 20px;
}

.alchemy-step {
  min-height: 170px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(191, 220, 122, 0.1), transparent 42%),
    rgba(8, 11, 15, 0.68);
}

.alchemy-step:nth-child(even) {
  margin-left: clamp(0px, 9vw, 160px);
}

.page-band {
  margin-top: 90px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 231, 0.08);
}

.page-band h2 {
  font-size: 4.8rem;
}

.page-band p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.64;
}

.brief-machine {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.brief-status,
.brief-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 15, 0.68);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brief-status {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.brief-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.26);
}

.brief-logo img {
  width: min(190px, 100%);
}

.brief-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.brief-progress span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--quiet);
  font-weight: 900;
}

.brief-progress span.is-active {
  background: var(--signal);
  color: #111509;
}

.brief-readout {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.brief-readout span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-readout strong {
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.6rem;
}

.brief-form {
  padding: clamp(18px, 4vw, 42px);
}

.brief-step {
  display: none;
}

.brief-step.is-active {
  display: block;
}

.brief-step h2 {
  font-size: 4.4rem;
}

.brief-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.brief-fields label {
  display: grid;
  gap: 8px;
}

.brief-fields label.wide {
  grid-column: 1 / -1;
}

.brief-fields span {
  color: var(--muted);
  font-weight: 800;
}

.brief-fields input,
.brief-fields select,
.brief-fields textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(246, 241, 231, 0.08);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.brief-fields textarea {
  min-height: 150px;
  resize: vertical;
}

.brief-fields input:focus,
.brief-fields select:focus,
.brief-fields textarea:focus {
  border-color: rgba(191, 220, 122, 0.64);
  box-shadow: 0 0 0 4px rgba(191, 220, 122, 0.1);
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

[data-brief-submit] {
  display: none;
}

.brief-form.is-final [data-brief-next] {
  display: none;
}

.brief-form.is-final [data-brief-submit] {
  display: inline-flex;
}

.brief-result {
  display: none;
  margin-top: 24px;
  border: 1px solid rgba(191, 220, 122, 0.34);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(191, 220, 122, 0.08);
}

.brief-result.is-visible {
  display: block;
}

.brief-result h3 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: 2.1rem;
}

.brief-result p {
  color: var(--muted);
  line-height: 1.55;
}

.story-nav {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 4vw, 58px);
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-nav button {
  border: 0;
  background: transparent;
  color: rgba(244, 240, 232, 0.72);
  font-weight: 900;
}

.progress-track {
  width: min(220px, 26vw);
  height: 2px;
  background: rgba(244, 240, 232, 0.2);
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--signal);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

[data-parallax],
[data-tilt] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .quote-marquee div,
  .loader-bars i,
  .scan-line,
  .signal-node,
  .floating-panel,
  .motion-band,
  .alive-aurora,
  .signal-thread,
  .render-path,
  .render-orbit,
  .render-readout,
  .render-stack i,
  .deck-scan {
    animation: none;
  }

  [data-parallax],
  [data-tilt],
  .field-grid,
  .hero-type-layer span,
  .section-word,
  .render-core,
  .render-grid,
  .living-render::before {
    transform: none !important;
    translate: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .chapter-rail {
    display: none;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 5.4rem;
  }

  .story-section,
  .final-band {
    padding-left: clamp(20px, 7vw, 80px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .command-deck {
    width: min(560px, 100%);
    order: -1;
  }

  .living-render {
    min-height: 300px;
  }

  .story-section,
  .suite-section,
  .intelligence-section,
  .studio-section,
  .projects-section,
  .craft-section,
  .motion-section,
  .operator-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 0 26px;
    order: -1;
  }

  .floating-panel {
    width: min(210px, 28vw);
  }

  .craft-board,
  .studio-board,
  .motion-reel {
    min-height: 570px;
    width: min(720px, 100%);
  }

  .operator-media {
    order: 2;
  }

  .operator-media img {
    width: min(560px, 100%);
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 4.45rem;
  }

  .page-hero h1,
  .brief-hero h1 {
    font-size: 5.2rem;
  }

  .page-band h2,
  .brief-step h2 {
    font-size: 3.85rem;
  }

  .page-grid,
  .case-grid,
  .brief-machine {
    grid-template-columns: 1fr;
  }

  .brief-status {
    position: relative;
    top: auto;
  }

  .story-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 14px;
    gap: 10px;
  }

  .brand-lockup span:last-child {
    display: none;
  }

  .brand-mark {
    width: 112px;
    height: 44px;
  }

  .nav-action {
    display: none;
  }

  .story-section {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    padding: 94px 18px 58px;
  }

  .hero-section {
    align-items: center;
  }

  .hero-content-wrap,
  .story-content,
  .hero-content {
    max-width: calc(100vw - 36px);
    min-width: 0;
    width: calc(100vw - 36px);
  }

  .metric-grid,
  .floating-panel,
  .hero-type-layer {
    display: none;
  }

  .command-deck {
    order: 2;
    width: 100%;
    margin-top: 18px;
    padding: 10px;
  }

  .deck-topline,
  .deck-steps {
    display: none;
  }

  .living-render {
    min-height: 246px;
    aspect-ratio: 1.2;
  }

  .render-core {
    width: min(62%, 220px);
    min-height: 112px;
    padding: 14px;
  }

  .render-readout {
    width: min(178px, 52%);
    padding: 10px;
  }

  .render-readout strong {
    font-size: 0.86rem;
  }

  .readout-b,
  .render-stack {
    display: none;
  }

  .hero-metrics {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 58px;
    grid-template-columns: 74px 1fr;
    align-items: center;
    align-content: center;
    padding: 10px 12px;
  }

  .hero-metrics strong {
    font-size: 1.45rem;
  }

  .hero-metrics span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.45rem, 10.6vw, 2.85rem);
    line-height: 0.88;
  }

  h1 span {
    display: inline;
  }

  h1 span::after {
    content: " ";
  }

  h1 span:last-child::after {
    content: "";
  }

  h2 {
    font-size: 3.35rem;
  }

  .story-content p:not(.kicker),
  .final-band p:not(.kicker) {
    width: min(320px, calc(100vw - 52px));
    max-width: min(320px, calc(100vw - 52px));
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .primary-link,
  .secondary-link {
    width: 100%;
    text-align: center;
  }

  .quote-marquee span {
    font-size: 1rem;
  }

  .section-word {
    display: none;
  }

  .suite-row {
    grid-template-columns: 1fr;
    min-height: 120px;
  }

  .intelligence-section,
  .studio-section,
  .projects-section,
  .craft-section,
  .motion-section {
    min-height: auto;
  }

  .craft-board,
  .studio-board,
  .motion-reel {
    min-height: 730px;
  }

  .craft-tile,
  .studio-tile,
  .reel-frame {
    width: min(330px, calc(100vw - 36px));
  }

  .tile-a,
  .frame-a {
    top: 0;
    left: 0;
  }

  .tile-b,
  .frame-b {
    top: 176px;
    right: 0;
  }

  .tile-c,
  .frame-c {
    top: 354px;
    left: 0;
  }

  .tile-d,
  .frame-d {
    bottom: 0;
    right: 0;
  }

  .motion-band {
    display: none;
  }

  .operator-caption {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: -1px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

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

  .deliverable-grid div {
    min-height: 150px;
  }

  .final-band {
    padding: 86px 18px 78px;
  }

  .page-shell,
  .brief-shell {
    padding: 90px 18px 70px;
  }

  .page-hero,
  .brief-hero {
    padding: 40px 0;
  }

  .page-hero h1,
  .brief-hero h1 {
    font-size: 3.55rem;
  }

  .page-band {
    margin-top: 44px;
    padding: 22px;
  }

  .page-band h2,
  .brief-step h2 {
    font-size: 3rem;
  }

  .brief-fields {
    grid-template-columns: 1fr;
  }

  .alchemy-step:nth-child(even) {
    margin-left: 0;
  }
}

@media (max-width: 390px) {
  .brand-lockup span:last-child {
    display: none;
  }

  .brand-mark {
    width: 94px;
  }

  .nav-action {
    font-size: 0.88rem;
  }
}
