:root {
  --cine-ink: #0d1628;
  --cine-ink-2: #101b31;
  --cine-ink-3: #17233a;
  --cine-paper: #f7f2e8;
  --cine-paper-2: #e9e1d4;
  --cine-red: #d7354f;
  --cine-red-hot: #ff4b60;
  --cine-coral: #d67c70;
  --cine-muted: #a9b0bd;
  --cine-line: rgba(247, 242, 232, .14);
  --cine-pad: clamp(24px, 5vw, 84px);
  --cine-max: 1600px;
  --cine-ease: cubic-bezier(.2, .8, .2, 1);
}

html {
  background: var(--cine-ink);
  scroll-padding-top: 76px;
}

body.home-cinematic {
  overflow-x: clip;
  background: var(--cine-ink);
  color: var(--cine-paper);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 16px;
}

.home-cinematic *,
.home-cinematic *::before,
.home-cinematic *::after {
  box-sizing: border-box;
}

.home-cinematic h1,
.home-cinematic h2,
.home-cinematic h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home-cinematic a,
.home-cinematic button {
  -webkit-tap-highlight-color: transparent;
}

.home-cinematic a:focus-visible,
.home-cinematic button:focus-visible {
  outline: 2px solid var(--cine-red-hot);
  outline-offset: 4px;
}

.home-cinematic .skip-link {
  z-index: 10000;
}

.film-open {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: grid;
  place-items: center;
  background: #080e19;
  transition: opacity .9s var(--cine-ease), visibility .9s;
  animation: intro-failsafe .01s 3s forwards;
}

.film-open.is-done {
  visibility: hidden;
  opacity: 0;
}

.film-open__mark {
  position: relative;
  width: 120px;
  aspect-ratio: 1;
  animation: film-mark-out 1.7s var(--cine-ease) both;
}

.film-open__mark i {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(247, 242, 232, .5);
  border-radius: 50%;
  animation: film-ring-in 1.2s var(--cine-ease) both;
}

.film-open__mark i:nth-child(2) {
  inset: 28%;
  border-color: rgba(247, 242, 232, .8);
  animation-delay: .12s;
}

.film-open__mark i:nth-child(3) {
  inset: 41%;
  border: 0;
  background: radial-gradient(circle at 35% 30%, #ff7a87 0 8%, var(--cine-red-hot) 24%, #c51f3b 70%, #5e0b18 100%);
  box-shadow: 0 0 50px rgba(215, 53, 79, .48);
  animation-delay: .24s;
}

.film-open p {
  position: absolute;
  bottom: 9vh;
  color: rgba(247, 242, 232, .45);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
  animation: film-caption 1.6s ease both;
}

@keyframes film-ring-in {
  0% { opacity: 0; transform: scale(.2) rotate(-40deg); }
  55% { opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

@keyframes film-mark-out {
  0%, 76% { filter: blur(0); transform: scale(1); }
  100% { filter: blur(8px); transform: scale(1.28); }
}

@keyframes film-caption {
  0%, 30% { opacity: 0; transform: translateY(10px); }
  60%, 80% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}

@keyframes intro-failsafe {
  to { visibility: hidden; opacity: 0; }
}

.home-cinematic .reading-progress {
  z-index: 9999;
  height: 2px;
  background: transparent;
}

.home-cinematic .reading-progress span {
  background: linear-gradient(90deg, var(--cine-coral), var(--cine-red-hot));
  box-shadow: 0 0 18px rgba(255, 75, 96, .7);
}

.atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .82;
}

.cinema-grain {
  position: fixed;
  z-index: 97;
  inset: -40%;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grain-jump .26s steps(2) infinite;
}

@keyframes grain-jump {
  0% { transform: translate3d(-1%, 1%, 0); }
  25% { transform: translate3d(2%, -1%, 0); }
  50% { transform: translate3d(-2%, 2%, 0); }
  75% { transform: translate3d(1%, -2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.cursor-light {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .18;
  background: radial-gradient(circle, rgba(215, 53, 79, .28), rgba(215, 53, 79, 0) 68%);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%), 0);
  transition: opacity .3s ease;
}

.home-cinematic main,
.home-cinematic .site-footer {
  position: relative;
  z-index: 2;
}

.home-cinematic .cinema-header {
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid rgba(247, 242, 232, .09);
  background: linear-gradient(180deg, rgba(9, 15, 27, .84), rgba(9, 15, 27, .26));
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.home-cinematic .cinema-header.is-compact {
  height: 70px;
  background: rgba(9, 15, 27, .9);
}

.home-cinematic .brand img,
.home-cinematic .footer-brand img {
  display: block;
  width: 132px;
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, .2));
}

.home-cinematic .primary-nav a {
  color: rgba(247, 242, 232, .66);
  font-size: 12px;
  letter-spacing: .02em;
}

.home-cinematic .primary-nav a:hover,
.home-cinematic .primary-nav a:focus-visible {
  color: var(--cine-paper);
}

.home-cinematic .primary-nav .nav-cta {
  border-color: rgba(247, 242, 232, .3);
  color: var(--cine-paper);
}

.home-cinematic .primary-nav .nav-cta:hover {
  border-color: var(--cine-red);
  background: var(--cine-red);
}

.cine-pad {
  padding: clamp(110px, 12vw, 190px) var(--cine-pad);
}

.cine-kicker {
  margin: 0 0 22px;
  color: var(--cine-coral);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.5;
}

.cine-title,
.section-title,
.contact-cinema__title {
  margin: 0;
  color: var(--cine-paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.cine-title {
  font-size: clamp(70px, 9.4vw, 162px);
  line-height: .79;
}

.cine-title span,
.cine-title em {
  display: block;
}

.cine-title em,
.section-title em,
.contact-cinema__title em {
  color: var(--cine-coral);
  font-style: italic;
}

.section-title {
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: .89;
}

.section-simple-copy {
  max-width: 520px;
  margin: 0;
  color: #5f6671;
  font-family: Lora, Georgia, serif;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.65;
}

.cine-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(130px, 15vh, 190px) var(--cine-pad) 92px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: center;
  gap: clamp(30px, 4vw, 80px);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(13, 22, 40, .98) 0%, rgba(13, 22, 40, .88) 38%, rgba(13, 22, 40, .42) 66%, rgba(13, 22, 40, .78) 100%),
    radial-gradient(circle at 76% 48%, rgba(215, 53, 79, .15), transparent 31%),
    var(--cine-ink);
}

.cine-hero::before,
.cine-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 88px 0 0 50%;
  pointer-events: none;
}

.cine-hero::before {
  background-image: linear-gradient(rgba(247, 242, 232, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 242, 232, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000);
}

.cine-hero::after {
  inset: auto -14vw -45vh 49%;
  height: 90vh;
  border-radius: 50%;
  background: rgba(8, 14, 25, .58);
  transform: rotate(-12deg);
}

.cine-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.cine-hero__lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(247, 242, 232, .66);
  font-family: Lora, Georgia, serif;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.65;
}

.hero-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 36px 0 0;
  color: rgba(247, 242, 232, .8);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-category span {
  color: var(--cine-red-hot);
}

.cine-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.cine-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 1px solid transparent;
  color: var(--cine-paper);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .35s var(--cine-ease), background .35s ease, box-shadow .35s ease;
}

.cine-button--red {
  background: linear-gradient(135deg, #b92b42, var(--cine-red));
  box-shadow: 0 20px 60px rgba(215, 53, 79, .22);
}

.cine-button--red:hover {
  box-shadow: 0 25px 70px rgba(215, 53, 79, .38);
  transform: translateY(-2px);
}

.cine-button--paper {
  background: var(--cine-paper);
  color: var(--cine-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.cine-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 242, 232, .3);
  color: rgba(247, 242, 232, .74);
  font-size: 12px;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease;
}

.cine-link:hover {
  border-color: var(--cine-red-hot);
  color: var(--cine-paper);
}

.target-stage {
  --target-rx: -8deg;
  --target-ry: 12deg;
  --target-scroll-rx: 0deg;
  --target-scroll-ry: 0deg;
  --target-lift: 0px;
  position: relative;
  min-height: min(72vw, 720px);
  perspective: 1200px;
  transform-style: preserve-3d;
  touch-action: pan-y;
}

.target-coordinates {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 4%;
  display: flex;
  gap: 16px;
  color: rgba(247, 242, 232, .32);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .2em;
}

.target-orbits {
  position: absolute;
  z-index: 0;
  inset: 4%;
  transform: rotateX(62deg) rotateZ(calc(var(--scroll-spin, 0) * 1deg));
  transform-style: preserve-3d;
}

.target-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 242, 232, .13);
  border-radius: 50%;
}

.target-orbit::before {
  content: "";
  position: absolute;
  top: 47%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cine-red-hot);
  box-shadow: 0 0 18px var(--cine-red);
}

.target-orbit--two { inset: 15%; transform: rotateZ(66deg); }
.target-orbit--three { inset: 29%; transform: rotateZ(132deg); }

.target-field {
  position: absolute;
  z-index: 1;
  inset: 8%;
  pointer-events: none;
}

.target-field i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(247,242,232,.8);
  box-shadow: 0 0 14px rgba(247,242,232,.58);
  animation: target-field-drift 5s ease-in-out infinite alternate;
}

.target-field i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: .24;
}

.target-field i:nth-child(1) { top: 14%; left: 19%; color: var(--cine-coral); }
.target-field i:nth-child(2) { top: 24%; right: 8%; animation-delay: -.8s; }
.target-field i:nth-child(3) { top: 53%; left: 2%; animation-delay: -1.6s; }
.target-field i:nth-child(4) { right: 5%; bottom: 28%; color: var(--cine-red-hot); animation-delay: -2.4s; }
.target-field i:nth-child(5) { bottom: 10%; left: 28%; animation-delay: -3.2s; }
.target-field i:nth-child(6) { top: 6%; left: 58%; color: var(--cine-red-hot); animation-delay: -4s; }

@keyframes target-field-drift {
  to { opacity: .32; transform: translate3d(8px, -12px, 20px) scale(.72); }
}

.target-object {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  transform: translate3d(-50%, calc(-50% + var(--target-lift)), 80px) rotateX(calc(var(--target-rx) + var(--target-scroll-rx))) rotateY(calc(var(--target-ry) + var(--target-scroll-ry))) rotateZ(calc(var(--scroll-spin, 0) * .08deg));
  transform-style: preserve-3d;
  transition: transform .5s var(--cine-ease);
  will-change: transform;
}

.target-assembly {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: target-assembly-float 6s ease-in-out infinite alternate;
}

.target-shadow,
.target-disc,
.target-iris,
.target-core,
.target-glint {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.target-shadow {
  z-index: -1;
  inset: 20% -12% -20%;
  background: radial-gradient(ellipse, rgba(0,0,0,.68), rgba(0,0,0,0) 68%);
  filter: blur(28px);
  transform: translateZ(-110px) rotateX(72deg);
}

.target-gimbal {
  position: absolute;
  border: 1px solid rgba(247,242,232,.24);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(247,242,232,.025), 0 0 28px rgba(215,53,79,.04);
  transform-style: preserve-3d;
  will-change: transform;
}

.target-gimbal i,
.target-gimbal b {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(247,242,232,.64);
  border-radius: 50%;
  background: #111a29;
  box-shadow: 0 0 14px rgba(247,242,232,.28);
}

.target-gimbal i { top: 50%; left: -5px; }
.target-gimbal b { top: -5px; left: 50%; }

.target-gimbal--outer {
  inset: -8%;
  border-color: rgba(247,242,232,.21);
  animation: target-gimbal-outer 15s linear infinite;
}

.target-gimbal--outer i {
  border-color: var(--cine-red-hot);
  background: var(--cine-red);
  box-shadow: 0 0 18px rgba(255,75,96,.72);
}

.target-gimbal--middle {
  inset: 2%;
  border-color: rgba(214,124,112,.42);
  animation: target-gimbal-middle 11s linear infinite reverse;
}

.target-gimbal--inner {
  inset: 12%;
  border-color: rgba(247,242,232,.34);
  animation: target-gimbal-inner 8s linear infinite;
}

.target-disc {
  inset: 15%;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 27%, rgba(255,255,255,.98) 0 1.4%, rgba(255,255,255,.22) 4%, transparent 15%),
    radial-gradient(circle at 37% 32%, #f4f0e8 0 4%, #aeb4bb 13%, #59616d 27%, #202936 52%, #0b121f 77%, #050a12 100%);
  box-shadow: inset -42px -48px 72px rgba(2,6,12,.76), inset 24px 22px 44px rgba(255,255,255,.28), 0 38px 85px rgba(0,0,0,.55), 0 0 0 1px rgba(247,242,232,.34), 0 0 85px rgba(215,53,79,.16);
  transform: translateZ(18px);
  animation: target-sphere-breathe 5s ease-in-out infinite alternate;
}

.target-disc::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: inherit;
  opacity: .48;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 9%, rgba(247,242,232,.18) 9.3% 9.65%, transparent 10% 18%),
    repeating-linear-gradient(90deg, transparent 0 13%, rgba(247,242,232,.11) 13.3% 13.65%, transparent 14% 25%);
  mask-image: radial-gradient(circle, #000 30%, transparent 80%);
}

.target-disc::after {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: inherit;
  background: conic-gradient(from 220deg, transparent 0 56%, rgba(255,75,96,.25) 61%, transparent 68%);
  animation: target-scan-turn 7s linear infinite;
}

.target-iris {
  inset: 31%;
  border: 1px solid rgba(247,242,232,.25);
  background: radial-gradient(circle, rgba(7,11,19,.92) 0 31%, rgba(44,52,64,.86) 32% 49%, rgba(214,124,112,.46) 50% 52%, #111927 55% 100%);
  box-shadow: inset 12px 12px 28px rgba(255,255,255,.11), inset -18px -20px 32px rgba(0,0,0,.7), 0 0 32px rgba(215,53,79,.16);
  transform: translateZ(52px);
}

.target-core {
  inset: 40.5%;
  background: radial-gradient(circle at 32% 27%, #ffd6d9 0 3%, #ff7d8b 13%, #ff425a 34%, #c3213d 61%, #650b1d 82%, #24030a 100%);
  box-shadow: inset -14px -17px 22px rgba(57,0,10,.58), inset 9px 8px 15px rgba(255,255,255,.28), 0 14px 22px rgba(0,0,0,.52), 0 0 28px rgba(255,75,96,.75), 0 0 75px rgba(215,53,79,.48);
  transform: translateZ(92px);
  animation: target-core-heartbeat 2.8s ease-in-out infinite;
}

.target-glint {
  top: 22%;
  left: 27%;
  width: 18%;
  height: 7%;
  background: rgba(255,255,255,.46);
  filter: blur(8px);
  transform: translateZ(105px) rotate(-35deg);
}

.target-pulse-wave {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform-style: preserve-3d;
}

.target-pulse-wave i {
  position: absolute;
  inset: 31%;
  border: 1px solid rgba(255,75,96,.38);
  border-radius: 50%;
  opacity: 0;
  transform: translateZ(-8px) scale(.6);
  animation: target-wave-out 3.2s var(--cine-ease) infinite;
}

.target-pulse-wave i:nth-child(2) { animation-delay: 1.05s; }
.target-pulse-wave i:nth-child(3) { animation-delay: 2.1s; }

.target-data {
  position: absolute;
  z-index: 6;
  inset: 0;
  transform-style: preserve-3d;
}

.target-data i {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(247,242,232,.66);
  border-radius: 50%;
  background: #0d1628;
  box-shadow: 0 0 15px rgba(247,242,232,.28);
  animation: target-data-blip 2.6s ease-in-out infinite alternate;
}

.target-data i:nth-child(1) { top: 8%; left: 48%; transform: translateZ(60px); }
.target-data i:nth-child(2) { top: 49%; right: 3%; transform: translateZ(34px); animation-delay: -.65s; }
.target-data i:nth-child(3) { bottom: 6%; left: 38%; transform: translateZ(76px); animation-delay: -1.3s; }
.target-data i:nth-child(4) { top: 42%; left: 2%; transform: translateZ(42px); animation-delay: -1.95s; }

@keyframes target-assembly-float {
  0% { transform: translate3d(0, -5px, 0) rotateZ(-1.4deg); }
  100% { transform: translate3d(0, 7px, 0) rotateZ(1.4deg); }
}

@keyframes target-gimbal-outer {
  from { transform: translateZ(6px) rotateX(67deg) rotateY(9deg) rotateZ(0); }
  to { transform: translateZ(6px) rotateX(67deg) rotateY(9deg) rotateZ(360deg); }
}

@keyframes target-gimbal-middle {
  from { transform: translateZ(22px) rotateY(70deg) rotateX(15deg) rotateZ(0); }
  to { transform: translateZ(22px) rotateY(70deg) rotateX(15deg) rotateZ(360deg); }
}

@keyframes target-gimbal-inner {
  from { transform: translateZ(38px) rotateX(48deg) rotateY(-32deg) rotateZ(0); }
  to { transform: translateZ(38px) rotateX(48deg) rotateY(-32deg) rotateZ(360deg); }
}

@keyframes target-sphere-breathe {
  to { box-shadow: inset -36px -42px 64px rgba(2,6,12,.72), inset 27px 25px 48px rgba(255,255,255,.31), 0 44px 92px rgba(0,0,0,.58), 0 0 0 1px rgba(247,242,232,.42), 0 0 105px rgba(215,53,79,.24); }
}

@keyframes target-scan-turn {
  to { transform: rotate(360deg); }
}

@keyframes target-core-heartbeat {
  0%, 100% { filter: saturate(.92); transform: translateZ(92px) scale(.94); }
  45% { filter: saturate(1.2); transform: translateZ(92px) scale(1.06); }
}

@keyframes target-wave-out {
  0% { opacity: 0; transform: translateZ(-8px) scale(.6); }
  22% { opacity: .5; }
  100% { opacity: 0; transform: translateZ(-38px) scale(2.3); }
}

@keyframes target-data-blip {
  to { opacity: .35; box-shadow: 0 0 5px rgba(247,242,232,.1); }
}

.target-word {
  position: absolute;
  z-index: 3;
  color: rgba(247, 242, 232, .62);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  animation: target-word-signal 6s ease-in-out infinite;
}

.target-word--a { top: 24%; left: 8%; }
.target-word--b { top: 70%; right: 0; animation-delay: -4s; }
.target-word--c { bottom: 11%; left: 27%; animation-delay: -2s; }

@keyframes target-word-signal {
  0%, 22%, 100% { color: rgba(247,242,232,.34); text-shadow: none; }
  8%, 14% { color: rgba(247,242,232,.92); text-shadow: 0 0 18px rgba(255,75,96,.38); }
}

.target-hint {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 3%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(247, 242, 232, .34);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.target-hint b {
  font-size: inherit;
  font-weight: 400;
}

.target-hint__touch {
  display: none;
}

.target-hint span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cine-red-hot);
  box-shadow: 0 0 0 0 rgba(255,75,96,.5);
  animation: target-pulse 2.1s ease-out infinite;
}

@keyframes target-pulse {
  70%, 100% { box-shadow: 0 0 0 12px rgba(255,75,96,0); }
}

@media (pointer: coarse) {
  .target-hint__mouse { display: none; }
  .target-hint__touch { display: inline; }
}

.home-cinematic .experience-controls {
  right: var(--cine-pad);
  bottom: 22px;
}

.home-cinematic .experience-button {
  border-color: rgba(247, 242, 232, .13);
  background: rgba(9, 15, 27, .42);
  color: rgba(247, 242, 232, .7);
}

.home-cinematic .experience-button:hover {
  border-color: rgba(247, 242, 232, .3);
  color: var(--cine-paper);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: var(--cine-pad);
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(247,242,232,.14);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: -100% 0 0;
  background: var(--cine-coral);
  animation: scroll-line 2s var(--cine-ease) infinite;
}

.scroll-cue b {
  color: rgba(247,242,232,.25);
  font-family: ui-monospace, monospace;
  font-size: 7px;
  letter-spacing: .22em;
}

@keyframes scroll-line {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(150%); }
}

.problems-cinema {
  overflow: hidden;
  border-top: 1px solid rgba(13,22,40,.08);
  background:
    radial-gradient(circle at 83% 18%, rgba(215,53,79,.1), transparent 26%),
    var(--cine-paper);
  color: var(--cine-ink);
}

.problems-cinema .section-title {
  color: var(--cine-ink);
}

.problems-cinema .section-title em {
  color: #b34f49;
}

.problems-cinema .cine-kicker {
  color: #a64347;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--cine-max);
  margin: 0 auto;
  border-top: 1px solid rgba(13,22,40,.14);
  border-left: 1px solid rgba(13,22,40,.14);
}

.problem-card {
  min-height: 330px;
  padding: clamp(24px, 2.6vw, 42px);
  border-right: 1px solid rgba(13,22,40,.14);
  border-bottom: 1px solid rgba(13,22,40,.14);
  background: rgba(255,255,255,.22);
  transition: opacity .9s var(--cine-ease), transform .9s var(--cine-ease), background .35s ease, box-shadow .35s ease;
}

.problem-card.is-visible:hover {
  z-index: 1;
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 70px rgba(13,22,40,.1);
  transform: translate3d(0, -7px, 0);
}

.problem-card > span {
  color: #a64347;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .2em;
}

.problem-card h3 {
  max-width: 290px;
  margin: 85px 0 18px;
  color: var(--cine-ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}

.problem-card p {
  max-width: 310px;
  margin: 0;
  color: #66625d;
  font-family: Lora, Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
}

.problem-answer {
  display: flex;
  max-width: var(--cine-max);
  align-items: center;
  gap: 14px;
  margin: 34px auto 0;
  color: #5f5b56;
  font-size: 12px;
}

.problem-answer span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cine-red);
  box-shadow: 0 0 0 7px rgba(215,53,79,.1);
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 410vh;
  border-top: 1px solid var(--cine-line);
  background: #0a111f;
}

.story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  perspective: 1200px;
  border-right: 1px solid var(--cine-line);
  background: radial-gradient(circle at 50% 50%, rgba(215,53,79,.12), transparent 34%), #0a111f;
}

.story__grid {
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(247,242,232,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,232,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(63deg) translateY(22%) scale(1.4);
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.stack-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28vw, 390px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(calc(62deg - var(--stack-open, 0) * 18deg)) rotateZ(calc(-34deg + var(--stack-spin, 0) * 1deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.stack-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 18px;
  border: 1px solid rgba(247,242,232,.28);
  border-radius: 7%;
  background: linear-gradient(145deg, rgba(247,242,232,.13), rgba(247,242,232,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 35px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  transform: translateZ(calc(var(--layer, 1) * (24px + var(--stack-open, 0) * 58px)));
  transition: border-color .4s ease, background .4s ease;
}

.stack-card::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(247,242,232,.1);
  border-radius: inherit;
}

.stack-card b {
  color: rgba(247,242,232,.5);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .2em;
}

.stack-card--1 { --layer: 1; }
.stack-card--2 { --layer: 2; }
.stack-card--3 { --layer: 3; }
.stack-card--4 { --layer: 4; border-color: rgba(215,53,79,.6); background: linear-gradient(145deg, rgba(215,53,79,.17), rgba(247,242,232,.03)); }

.stack-core {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff9ca6 0 4%, #ff4b60 22%, #b71d37 67%, #3e0712 100%);
  box-shadow: 0 0 55px rgba(215,53,79,.42), 0 22px 40px rgba(0,0,0,.45);
  transform: translate(-50%, -50%) translateZ(calc(140px + var(--stack-open, 0) * 190px));
}

.story__stage-label {
  position: absolute;
  bottom: 36px;
  left: 50%;
  margin: 0;
  color: rgba(247,242,232,.26);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .28em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.story__steps {
  padding: 0 clamp(30px, 7vw, 120px);
}

.story__intro,
.story-step {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story__intro {
  min-height: 90vh;
}

.story-step {
  opacity: .28;
  transition: opacity .5s ease;
}

.story-step.is-active {
  opacity: 1;
}

.story-step > span {
  margin-bottom: 30px;
  color: var(--cine-coral);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .25em;
}

.story-step h3 {
  max-width: 680px;
  margin: 0;
  color: var(--cine-paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

.story-step p {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(247,242,232,.56);
  font-family: Lora, Georgia, serif;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.65;
}

.services {
  background: var(--cine-paper);
  color: var(--cine-ink);
}

.services .section-title,
.ecosystem-cinema .section-title,
.human-cinema .section-title {
  color: var(--cine-ink);
}

.services .section-title em,
.ecosystem-cinema .section-title em,
.human-cinema .section-title em {
  color: #b34f49;
}

.services .cine-kicker,
.ecosystem-cinema .cine-kicker,
.human-cinema .cine-kicker {
  color: #a64347;
}

.section-head-simple {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  align-items: end;
  gap: 80px;
  max-width: var(--cine-max);
  margin: 0 auto 90px;
}

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

.service-card {
  position: relative;
  min-height: 580px;
  padding: clamp(28px, 3vw, 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13,22,40,.12);
  border-radius: 2px;
  background: rgba(255,255,255,.54);
  color: var(--cine-ink);
  box-shadow: 0 30px 70px rgba(32, 29, 24, .07);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .4s ease;
}

.service-card:hover {
  box-shadow: 0 45px 100px rgba(32,29,24,.14);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .65;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,.9), transparent 28%);
}

.service-card--red {
  border-color: transparent;
  background: linear-gradient(145deg, #c22d46, #8e1d33);
  color: var(--cine-paper);
}

.service-card--red::after {
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,.16), transparent 32%);
}

.service-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9b8f82;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .2em;
}

.service-card__top i {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .5;
}

.service-card__top i::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 12px;
  border-radius: 50%;
  background: var(--cine-red);
}

.service-card--red .service-card__top {
  color: rgba(247,242,232,.62);
}

.service-card--red .service-card__top i::after {
  background: var(--cine-paper);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: auto 0 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 3.8vw, 64px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 0 28px;
  color: #6d6b68;
  font-family: Lora, Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

.service-card--red p {
  color: rgba(247,242,232,.68);
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid rgba(13,22,40,.12);
  border-radius: 999px;
  color: #77716a;
  font-size: 10px;
}

.proof-cinema {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(247,242,232,.1);
  background:
    radial-gradient(circle at 18% 16%, rgba(215,53,79,.16), transparent 26%),
    linear-gradient(145deg, #101b31, #09111e 70%);
}

.proof-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(247,242,232,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,232,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}

.proof-cinema .section-head-simple,
.proof-grid,
.proof-note {
  position: relative;
  z-index: 1;
}

.proof-cinema .section-simple-copy {
  color: rgba(247,242,232,.58);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--cine-max);
  margin: 0 auto;
  perspective: 1200px;
}

.proof-card {
  position: relative;
  min-height: 410px;
  padding: clamp(28px, 3vw, 46px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(247,242,232,.14);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(247,242,232,.085), rgba(247,242,232,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 34px 85px rgba(0,0,0,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .9s var(--cine-ease), transform .9s var(--cine-ease), border-color .35s ease, background .35s ease;
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -36%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(247,242,232,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(247,242,232,.02), 0 0 0 70px rgba(247,242,232,.015);
}

.proof-card.is-visible:hover {
  border-color: rgba(255,75,96,.44);
  background: linear-gradient(145deg, rgba(215,53,79,.13), rgba(247,242,232,.035));
  transform: translate3d(0, -7px, 18px);
}

.proof-card__status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #88d6ae;
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
}

.proof-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.proof-card__status--paper {
  color: var(--cine-coral);
}

.proof-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 20px;
  color: var(--cine-paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.proof-card p {
  position: relative;
  z-index: 1;
  min-height: 78px;
  margin: 0 0 22px;
  color: rgba(247,242,232,.58);
  font-family: Lora, Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
}

.proof-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(247,242,232,.2);
  color: rgba(247,242,232,.78);
  font-size: 11px;
  text-decoration: none;
}

.proof-card a:hover {
  border-color: var(--cine-red-hot);
  color: var(--cine-paper);
}

.proof-note {
  max-width: var(--cine-max);
  margin: 32px auto 0;
  color: rgba(247,242,232,.4);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .06em;
}

.service-card--red li {
  border-color: rgba(247,242,232,.2);
  color: rgba(247,242,232,.72);
}

.smartops-film {
  position: relative;
  min-height: 110vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  background:
    radial-gradient(circle at 25% 42%, rgba(215,53,79,.18), transparent 32%),
    linear-gradient(135deg, #0b1324, #111c31 62%, #0a111e);
}

.smartops-film::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247,242,232,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,232,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000 45%);
}

.smartops-film__beam {
  position: absolute;
  top: -20%;
  right: 20%;
  width: 16%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  filter: blur(12px);
  transform: rotate(22deg);
  animation: beam-move 8s ease-in-out infinite alternate;
}

@keyframes beam-move {
  to { right: 3%; transform: rotate(17deg); }
}

.smartops-film__copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(30px, 4vw, 70px);
}

.smartops-film__lede {
  max-width: 700px;
  margin: 38px 0 0;
  color: rgba(247,242,232,.62);
  font-family: Lora, Georgia, serif;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.7;
}

.truth-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 11px 14px;
  border: 1px solid rgba(247,242,232,.13);
  border-radius: 999px;
  color: rgba(247,242,232,.55);
  font-size: 11px;
}

.truth-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67c69b;
  box-shadow: 0 0 14px rgba(103,198,155,.55);
}

.smartops-console {
  position: relative;
  z-index: 2;
  width: calc(100% - var(--cine-pad));
  max-width: 780px;
  margin-right: var(--cine-pad);
  border: 1px solid rgba(247,242,232,.18);
  border-radius: 12px;
  background: rgba(5,10,18,.68);
  box-shadow: 0 70px 140px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.console-bar {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(247,242,232,.1);
}

.console-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247,242,232,.24);
}

.console-bar span:first-child { background: var(--cine-red); }

.console-bar b {
  margin-left: auto;
  color: rgba(247,242,232,.28);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .16em;
}

.console-flow {
  padding: 34px;
}

.console-flow article {
  position: relative;
  min-height: 94px;
  padding: 20px 26px;
  border: 1px solid rgba(247,242,232,.11);
  border-radius: 8px;
  background: rgba(247,242,232,.035);
}

.console-flow article + article { margin-top: 28px; }

.console-flow article i {
  position: absolute;
  top: 100%;
  left: 38px;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(247,242,232,.16);
}

.console-flow article i::after {
  content: "";
  position: absolute;
  inset: -100% 0 0;
  background: var(--cine-red-hot);
  animation: data-flow 2s linear infinite;
}

.console-flow article:nth-child(2) i::after { animation-delay: .5s; }
.console-flow article:nth-child(3) i::after { animation-delay: 1s; }

@keyframes data-flow {
  to { transform: translateY(200%); }
}

.console-flow small {
  display: block;
  margin-bottom: 10px;
  color: var(--cine-coral);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .24em;
}

.console-flow strong {
  color: var(--cine-paper);
  font-size: 17px;
  font-weight: 400;
}

.ecosystem-cinema {
  background: #eee6da;
  color: var(--cine-ink);
}

.ecosystem-orbit {
  position: relative;
  max-width: var(--cine-max);
  min-height: 860px;
  margin: 0 auto;
  padding: 110px 0 70px;
  overflow: hidden;
  border: 1px solid rgba(13,22,40,.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.7) 0 13%, transparent 13.3% 33%, rgba(13,22,40,.06) 33.2% 33.35%, transparent 33.5% 52%, rgba(13,22,40,.06) 52.2% 52.35%, transparent 52.5%);
}

.ecosystem-center {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  margin: 210px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cine-paper);
  box-shadow: 0 35px 80px rgba(13,22,40,.17), inset 0 0 0 1px rgba(13,22,40,.08);
}

.ecosystem-center img {
  width: 138px;
  height: auto;
}

.ecosystem-center p {
  margin: 13px 0 0;
  color: #77716a;
  font-size: 10px;
}

.ecosystem-track {
  position: absolute;
  inset: 0;
}

.ecosystem-pill {
  position: absolute;
  width: min(260px, 19vw);
  min-height: 138px;
  padding: 23px;
  border: 1px solid rgba(13,22,40,.13);
  border-radius: 10px;
  background: rgba(247,242,232,.76);
  box-shadow: 0 20px 55px rgba(13,22,40,.09);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--orbit-y, 0), 0);
}

.ecosystem-pill--smartops { top: 7%; left: calc(50% - 130px); }
.ecosystem-pill--escala { right: 13%; bottom: 15%; }
.ecosystem-pill--lab { bottom: 15%; left: 13%; }

.ecosystem-pill span {
  color: #a64347;
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.ecosystem-pill h3 {
  margin: 18px 0 5px;
  color: var(--cine-ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.ecosystem-pill p {
  margin: 0;
  color: #5f5b56;
  font-size: 12px;
  line-height: 1.5;
}

.partner-note {
  position: absolute;
  bottom: 5%;
  left: 50%;
  margin: 0;
  color: #5f5b56;
  font-size: 11px;
  transform: translateX(-50%);
}

.human-cinema {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 105vh;
  background: var(--cine-paper);
  color: var(--cine-ink);
}

.human-cinema__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 760px;
  background:
    radial-gradient(circle at 50% 50%, rgba(215,53,79,.18), transparent 30%),
    linear-gradient(145deg, #111b2d, #070d17);
}

.human-cinema__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247,242,232,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,232,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.human-scan {
  position: absolute;
  z-index: 4;
  top: -5%;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: .72;
  background: linear-gradient(90deg, transparent, var(--cine-red-hot), transparent);
  box-shadow: 0 0 24px rgba(255,75,96,.6);
  animation: human-scan 5.5s ease-in-out infinite;
}

@keyframes human-scan {
  0%, 8% { top: 5%; opacity: 0; }
  18% { opacity: .8; }
  78% { top: 88%; opacity: .7; }
  90%, 100% { top: 92%; opacity: 0; }
}

.human-face {
  --face-size: min(34vw, 450px);
  position: relative;
  z-index: 2;
  width: var(--face-size);
  aspect-ratio: .78;
  border: 1px solid rgba(247,242,232,.18);
  border-radius: 45% 45% 40% 40% / 35% 35% 55% 55%;
  box-shadow: inset 0 0 100px rgba(247,242,232,.045), 0 0 90px rgba(215,53,79,.1), 0 45px 100px rgba(0,0,0,.3);
  transform: perspective(900px) translate3d(0, var(--human-shift, 0), 0) rotateY(var(--human-tilt, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.human-face::before,
.human-face::after {
  content: "";
  position: absolute;
  top: 38%;
  width: 26%;
  height: 9%;
  border-top: 1px solid rgba(247,242,232,.5);
  border-radius: 50%;
}

.human-face::before { left: 16%; transform: rotate(-4deg) translateZ(22px); }
.human-face::after { right: 16%; transform: rotate(4deg) translateZ(22px); }

.human-face span {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 1px;
  height: 34%;
  background: linear-gradient(transparent, rgba(247,242,232,.34), transparent);
  transform: translateZ(30px);
}

.human-face i {
  position: absolute;
  bottom: 22%;
  left: 35%;
  width: 30%;
  height: 10%;
  border-bottom: 1px solid rgba(247,242,232,.42);
  border-radius: 50%;
  transform: translateZ(18px);
}

.human-face b {
  position: absolute;
  top: 38%;
  left: 24%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cine-red-hot);
  box-shadow: calc(var(--face-size) * .41) 0 0 var(--cine-red-hot), 0 0 20px rgba(255,75,96,.7);
  transform: translateZ(35px);
}

.human-visual-label {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  margin: 0;
  color: rgba(247,242,232,.28);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .22em;
  line-height: 1.8;
}

.founder-signature {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(247,242,232,.16);
  border-radius: 999px;
  background: rgba(7,13,23,.72);
  box-shadow: 0 14px 38px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.045);
  color: rgba(247,242,232,.78);
  opacity: var(--founder-opacity, .8);
  transform: translate3d(0, var(--founder-y, 0), 0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  will-change: transform, opacity;
}

.founder-signature img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(247,242,232,.2);
  border-radius: 50%;
  object-fit: cover;
}

.founder-signature figcaption {
  white-space: nowrap;
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.human-cinema__copy {
  align-self: center;
}

.human-cinema__copy .section-simple-copy {
  margin-top: 34px;
}

.founder-context {
  max-width: 670px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid #b34f49;
  color: #5f5b56;
  font-family: Lora, Georgia, serif;
  font-size: 14px;
  line-height: 1.7;
}

.founder-context strong {
  color: var(--cine-ink);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
}

.plain-values {
  max-width: 720px;
  margin: 54px 0 34px;
  padding: 0;
  border-top: 1px solid rgba(13,22,40,.14);
  list-style: none;
}

.plain-values li {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(13,22,40,.14);
}

.plain-values span {
  color: #a64347;
  font-family: ui-monospace, monospace;
  font-size: 8px;
}

.plain-values strong {
  color: var(--cine-ink);
  font-size: 16px;
  font-weight: 400;
}

.human-cinema .cine-link {
  border-color: rgba(13,22,40,.25);
  color: var(--cine-ink);
}

.faq-cinema {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(440px, 1.25fr);
  gap: clamp(60px, 9vw, 150px);
  border-top: 1px solid rgba(13,22,40,.1);
  background:
    radial-gradient(circle at 13% 20%, rgba(215,53,79,.1), transparent 24%),
    #eee6da;
  color: var(--cine-ink);
}

.faq-cinema .section-title {
  color: var(--cine-ink);
  font-size: clamp(54px, 6vw, 94px);
}

.faq-cinema .section-title em {
  color: #b34f49;
}

.faq-cinema .cine-kicker {
  color: #a64347;
}

.faq-list {
  align-self: center;
  border-top: 1px solid rgba(13,22,40,.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(13,22,40,.16);
}

.faq-list summary {
  min-height: 86px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cine-ink);
  font-size: clamp(17px, 1.4vw, 21px);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(13,22,40,.18);
  border-radius: 50%;
  color: #a64347;
  font-size: 20px;
  font-weight: 300;
  transition: transform .3s var(--cine-ease), background .3s ease;
}

.faq-list details[open] summary span {
  background: rgba(215,53,79,.09);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 60px 28px 0;
  color: #5f5b56;
  font-family: Lora, Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
}

.faq-list details a {
  color: #9c3341;
  text-underline-offset: 3px;
}

.contact-cinema {
  background:
    radial-gradient(circle at 77% 20%, rgba(215,53,79,.22), transparent 28%),
    linear-gradient(135deg, #0b1425, #131e34);
}

.contact-cinema__title {
  max-width: 1150px;
  font-size: clamp(90px, 12vw, 210px);
  line-height: .72;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--cine-max);
  margin: 80px auto 0;
  padding: 0;
  border-top: 1px solid rgba(247,242,232,.16);
  border-left: 1px solid rgba(247,242,232,.16);
  list-style: none;
}

.contact-steps li {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-right: 1px solid rgba(247,242,232,.16);
  border-bottom: 1px solid rgba(247,242,232,.16);
  background: rgba(247,242,232,.025);
}

.contact-steps span {
  color: var(--cine-coral);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: .2em;
}

.contact-steps strong {
  max-width: 340px;
  color: rgba(247,242,232,.88);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.35;
}

.contact-cinema__row {
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(247,242,232,.16);
}

.contact-cinema__row p {
  margin: 0;
  color: rgba(247,242,232,.6);
  font-family: Lora, Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}

.contact-cinema__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  color: rgba(247,242,232,.7);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.contact-cinema__meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.cinema-footer {
  background: #080e19;
}

.cinema-footer .footer-brand p,
.cinema-footer .footer-links a,
.cinema-footer .footer-bottom {
  color: rgba(247,242,232,.68);
}

.cinema-footer .footer-links a:hover {
  color: var(--cine-paper);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
  transition: opacity .9s var(--cine-ease), transform .9s var(--cine-ease);
}

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

.cine-title .reveal:nth-child(2) { transition-delay: .08s; }

@media (max-width: 1180px) {
  .cine-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  }

  .target-object { width: min(37vw, 390px); }

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

  .problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-card { min-height: 280px; }
  .problem-card h3 { margin-top: 62px; }

  .smartops-film { grid-template-columns: 1fr 1fr; }

  .ecosystem-orbit { min-height: 760px; }
  .ecosystem-center { margin-top: 160px; }
  .ecosystem-pill { width: 220px; }
}

@media (max-width: 920px) {
  .home-cinematic .cinema-header {
    height: 72px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-cinematic .primary-nav {
    width: 100vw;
    height: 100dvh;
  }

  .home-cinematic .menu-toggle span { background: var(--cine-paper); }

  .home-cinematic .primary-nav {
    background: rgba(8,14,25,.98);
  }

  .home-cinematic .primary-nav a { font-size: 18px; }

  .cine-hero {
    min-height: auto;
    padding-top: 132px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cine-title { font-size: clamp(70px, 16vw, 122px); }

  .target-stage {
    min-height: 72vw;
    margin: 0 -4vw;
  }

  .target-object { width: min(55vw, 430px); }

  .scroll-cue { display: none; }

  .story {
    grid-template-columns: 44% 56%;
  }

  .stack-3d { width: 31vw; }

  .story__steps { padding: 0 7vw; }

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

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

  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-card:last-child { grid-column: 1 / -1; }
  .proof-card { min-height: 360px; }

  .section-head-simple {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .smartops-film {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  .smartops-film__copy { padding-bottom: 70px; }

  .smartops-console {
    width: calc(100% - 2 * var(--cine-pad));
    margin: 0 auto;
    transform: none;
  }

  .ecosystem-orbit {
    min-height: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
  }

  .ecosystem-center {
    width: 180px;
    height: 180px;
    margin: 0 auto 50px;
  }

  .ecosystem-track {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .ecosystem-pill,
  .ecosystem-pill:nth-child(n) {
    position: static;
    width: auto;
    min-height: 145px;
  }

  .partner-note {
    position: static;
    margin-top: 28px;
    text-align: center;
    transform: none;
  }

  .human-cinema {
    grid-template-columns: 1fr;
  }

  .human-cinema__visual { min-height: 72svh; }
  .human-face { --face-size: min(54vw, 430px); }

  .faq-cinema {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 680px) {
  .cine-pad {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .home-cinematic .brand img { width: 118px; }

  .cine-hero {
    padding: 108px 20px 64px;
    background:
      linear-gradient(180deg, rgba(13,22,40,.96), rgba(13,22,40,.78) 64%, rgba(13,22,40,.94)),
      radial-gradient(circle at 50% 62%, rgba(215,53,79,.2), transparent 34%),
      var(--cine-ink);
  }

  .cine-hero::before {
    inset: 72px 0 0;
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000);
  }

  .cine-title {
    font-size: clamp(66px, 19vw, 86px);
    line-height: .82;
  }

  .cine-hero__lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-category {
    gap: 5px 9px;
    margin-top: 26px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .cine-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .cine-button { width: 100%; }
  .cine-link { align-self: flex-start; }

  .target-stage {
    min-height: 84vw;
    margin: -10px -12px 0;
  }

  .target-object { width: 61vw; }
  .target-word--a { top: 20%; left: 3%; }
  .target-word--b { top: 73%; right: 2%; }
  .target-word--c { bottom: 9%; left: 19%; }
  .target-hint { right: 3%; bottom: 1%; }
  .target-coordinates { top: 5%; }

  .home-cinematic .experience-controls {
    right: 22px;
    bottom: 18px;
  }

  .story {
    display: block;
    min-height: auto;
  }

  .story__stage {
    position: sticky;
    z-index: 1;
    top: 72px;
    height: calc(100svh - 72px);
    border-right: 0;
    border-bottom: 1px solid var(--cine-line);
  }

  .stack-3d {
    top: 26%;
    width: min(58vw, 270px);
  }
  .story__stage-label { bottom: 18px; }

  .story__steps {
    position: relative;
    z-index: 2;
    margin-top: calc(-100svh + 72px);
    padding: 0 20px 8svh;
    background: linear-gradient(180deg, rgba(10,17,31,.12), rgba(10,17,31,.34));
  }

  .story__intro {
    min-height: 66svh;
    justify-content: flex-start;
    padding: 11svh 4px 16svh;
  }

  .story-step {
    position: relative;
    min-height: 56svh;
    margin-bottom: 4svh;
    padding: 24px;
    justify-content: flex-end;
    opacity: .44;
    transform: translate3d(0, 18px, 0) scale(.985);
    transition: opacity .45s ease, transform .55s var(--cine-ease);
  }

  .story-step::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62%;
    border: 1px solid rgba(247,242,232,.14);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(12,21,38,.76), rgba(12,21,38,.5));
    box-shadow: 0 26px 65px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .45s ease, background .45s ease;
  }

  .story-step.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .story-step.is-active::before {
    border-color: rgba(255,75,96,.46);
    background: linear-gradient(145deg, rgba(12,21,38,.82), rgba(12,21,38,.54));
  }

  .story-step > * {
    position: relative;
    z-index: 1;
  }

  .story-step > span { margin-bottom: 18px; }
  .story-step h3 { font-size: clamp(43px, 12.5vw, 58px); }
  .story-step p { margin-top: 20px; font-size: 16px; line-height: 1.55; }

  .story[data-active-step="1"] .stack-card--1,
  .story[data-active-step="2"] .stack-card--2,
  .story[data-active-step="3"] .stack-card--3,
  .story[data-active-step="4"] .stack-card--4 {
    border-color: rgba(255,75,96,.9);
    background: linear-gradient(145deg, rgba(215,53,79,.24), rgba(247,242,232,.055));
  }

  .section-title {
    font-size: clamp(50px, 14.5vw, 64px);
    line-height: .93;
  }

  .section-simple-copy { font-size: 17px; }

  .section-head-simple { gap: 28px; margin-bottom: 42px; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; padding: 24px; }
  .problem-card h3 { max-width: none; margin: 48px 0 14px; font-size: 38px; }
  .problem-card p { font-size: 14px; }
  .problem-answer { align-items: flex-start; line-height: 1.55; }

  .service-card {
    min-height: 390px;
    padding: 26px;
  }

  .service-card h3 { margin-top: 68px; font-size: 40px; }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-card,
  .proof-card:last-child { grid-column: auto; min-height: 330px; padding: 26px; }
  .proof-card p { min-height: 0; }
  .proof-note { line-height: 1.6; }

  .smartops-film { padding-bottom: 78px; }
  .smartops-film__copy { padding-right: var(--cine-pad); padding-bottom: 48px; }
  .smartops-console { width: calc(100% - 40px); }
  .console-flow { padding: 16px; }
  .console-flow article { min-height: 80px; padding: 16px; }
  .console-flow article + article { margin-top: 16px; }
  .console-flow article i { height: 18px; }
  .console-flow strong { font-size: 14px; }

  .ecosystem-center {
    width: 150px;
    height: 150px;
    margin-bottom: 34px;
  }

  .ecosystem-center img { width: 110px; }
  .ecosystem-track { grid-template-columns: 1fr; gap: 10px; }
  .ecosystem-pill,
  .ecosystem-pill:nth-child(n) { min-height: 132px; padding: 16px; }
  .ecosystem-pill h3 { margin-top: 13px; font-size: 26px; }
  .ecosystem-pill p { font-size: 11px; }

  .human-cinema__visual { min-height: 68svh; }
  .human-face { --face-size: min(72vw, 330px); }
  .human-visual-label { top: 20px; bottom: auto; left: 20px; }
  .founder-signature { right: 16px; bottom: 16px; }
  .founder-signature img { width: 48px; height: 48px; }
  .founder-signature figcaption { max-width: 150px; white-space: normal; line-height: 1.4; }
  .founder-context { font-size: 13px; }

  .faq-cinema { gap: 40px; }
  .faq-list summary { min-height: 76px; padding: 18px 0; font-size: 16px; line-height: 1.4; }
  .faq-list summary span { width: 32px; height: 32px; }
  .faq-list details p { margin-right: 0; font-size: 14px; }

  .contact-cinema__title {
    font-size: clamp(76px, 21vw, 96px);
    line-height: .78;
  }

  .contact-cinema__row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 55px;
  }

  .contact-steps {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .contact-steps li {
    min-height: 112px;
    padding: 22px;
    gap: 22px;
  }

  .contact-cinema__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 60px;
  }

  .cursor-light { display: none; }
}

@media (max-width: 360px) {
  .ecosystem-track { grid-template-columns: 1fr; }
  .ecosystem-pill,
  .ecosystem-pill:nth-child(n) { min-height: 118px; }
  .cine-title { font-size: 64px; }
  .section-title { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .film-open { display: none; }
  .cinema-grain,
  .target-hint span,
  .scroll-cue span::after,
  .smartops-film__beam,
  .console-flow article i::after,
  .human-scan { animation: none !important; }
}

html[data-motion="off"] .film-open,
html[data-motion="off"] .cinema-grain,
html[data-motion="off"] .cursor-light {
  display: none;
}

html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: .001ms !important;
}

html[data-motion="off"] .reveal {
  opacity: 1;
  transform: none;
}
