/*
Copyright (C) 2026 Alex Lama.
Copyright (C) 2026 Joseph Lama.
All rights reserved.

The cinematic homepage is isolated here so the visual experiment never leaks
into Product, Demo, account, or legal pages.
*/

:root {
  --film-ink: #06111d;
  --film-night: #071827;
  --film-night-soft: #0a2238;
  --film-frost: #f2f8fc;
  --film-white: #fbfdff;
  --film-steel: #66798c;
  --film-blue: #1a8cff;
  --film-cyan: #44d7ff;
  --film-indigo: #6264ff;
  --film-amber: #f4aa2d;
  --film-line-dark: rgba(139, 189, 226, 0.24);
  --film-line-light: rgba(52, 105, 151, 0.18);
  --film-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --film-enter: cubic-bezier(0.05, 0.7, 0.1, 1);
}

html:has(.home-cinema-page) {
  max-width: 100%;
  overflow-x: hidden;
  background: #020a12;
}

.home-cinema-page {
  overflow-x: clip;
  background: transparent;
  color: var(--film-ink);
}

.home-cinema-page > .site-ambient {
  display: none;
}

.home-film-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
  background:
    radial-gradient(ellipse at 78% 42%, rgba(24, 112, 220, 0.32), transparent 40%),
    radial-gradient(ellipse at 62% 68%, rgba(91, 70, 219, 0.22), transparent 36%),
    radial-gradient(ellipse at 96% 12%, rgba(47, 192, 255, 0.16), transparent 28%),
    linear-gradient(122deg, #020a12 0%, #061626 48%, #071a2c 100%),
    var(--film-ink);
}

#home-film-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: saturate(1) brightness(1);
  transition: opacity 800ms var(--film-ease), filter 420ms var(--film-ease);
}

.home-field-engaged #home-film-canvas {
  filter: saturate(1.14) brightness(1.06);
}

.home-film-depth {
  position: absolute;
  inset: -18%;
  opacity: 0.42;
  will-change: transform;
}

.home-film-depth-a {
  background:
    radial-gradient(ellipse at 76% 43%, transparent 0 20%, rgba(80, 176, 255, 0.08) 35%, transparent 57%),
    linear-gradient(308deg, transparent 38%, rgba(98, 100, 255, 0.08) 49%, transparent 61%);
  transform: translate3d(
    var(--film-x-a, 0px),
    calc(var(--film-y-a, 0px) + var(--film-scroll-a, 0px)),
    0
  ) rotate(calc(-4deg + var(--film-tilt-a, 0deg)));
}

.home-film-depth-b {
  background:
    radial-gradient(ellipse at 64% 58%, transparent 0 22%, rgba(244, 170, 45, 0.045) 38%, transparent 56%),
    linear-gradient(24deg, transparent 41%, rgba(68, 215, 255, 0.075) 49%, transparent 57%);
  transform: translate3d(
    var(--film-x-b, 0px),
    calc(var(--film-y-b, 0px) + var(--film-scroll-b, 0px)),
    0
  ) rotate(calc(5deg + var(--film-tilt-b, 0deg)));
}

.home-film-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 16, 0.36), transparent 21%, transparent 78%, rgba(1, 8, 14, 0.18)),
    linear-gradient(180deg, rgba(2, 10, 18, 0.18), transparent 24%, transparent 76%, rgba(0, 6, 12, 0.28));
}

.home-cinema-page .site-header,
.home-cinema-page .home-main,
.home-cinema-page footer {
  position: relative;
  z-index: 1;
}

.home-cinema-page .site-header {
  height: 80px;
  border-bottom-color: rgba(104, 171, 220, 0.22);
  background: rgba(3, 13, 23, 0.76);
  box-shadow: 0 12px 40px rgba(0, 5, 12, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(132%);
  backdrop-filter: blur(22px) saturate(132%);
}

.home-cinema-page .site-header nav {
  border-color: rgba(103, 165, 211, 0.25);
  background: rgba(5, 22, 37, 0.68);
  box-shadow: 0 8px 26px rgba(0, 6, 14, 0.18);
}

.home-cinema-page .site-header .brand strong {
  color: #f7fbfe;
}

.home-cinema-page .site-header nav a {
  color: #b8cad8;
}

.home-cinema-page .site-header nav a.active-page {
  background: linear-gradient(120deg, #096fc7, #286ff0 58%, #5b61ef);
  box-shadow: 0 8px 22px rgba(36, 107, 230, 0.24);
  animation: none;
}

.home-cinema-page .home-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-cinema-page .home-hero-product {
  width: 100%;
  min-height: calc(100svh - 80px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.home-cinema-page .home-hero-product::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 12, 21, 0.98) 0%, rgba(4, 14, 25, 0.86) 45%, rgba(3, 13, 23, 0.2) 100%),
    linear-gradient(115deg, rgba(27, 140, 255, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(98, 100, 255, 0.09), transparent 34%);
  content: "";
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
}

.home-cinema-page .home-hero-product::after {
  position: absolute;
  right: -12vw;
  bottom: 7%;
  z-index: -1;
  width: 74vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 146, 255, 0.68), rgba(244, 170, 45, 0.46), transparent);
  box-shadow: 0 0 22px rgba(26, 140, 255, 0.2);
  content: "";
  transform: rotate(-17deg);
  transform-origin: center;
}

.home-cinema-page .home-hero-product .home-hero-content {
  width: min(1340px, 100%);
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: clamp(86px, 10vh, 132px) clamp(44px, 7vw, 116px) clamp(58px, 8vh, 86px);
  background: transparent;
}

.home-cinema-page .home-hero-product .home-hero-content::before {
  top: clamp(76px, 10vh, 116px);
  bottom: clamp(54px, 8vh, 92px);
  left: clamp(22px, 3.6vw, 62px);
  width: 2px;
  background: linear-gradient(180deg, var(--film-cyan), var(--film-blue) 54%, var(--film-indigo));
  box-shadow: 0 0 24px rgba(26, 140, 255, 0.28);
}

.home-cinema-page .home-hero h1 {
  max-width: 980px;
  margin-top: 22px;
  color: #fbfdff;
  font-size: clamp(73.6px, 7.705vw, 115px);
  font-weight: 790;
  line-height: 0.93;
  letter-spacing: -0.066em;
  text-wrap: balance;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}

.home-cinema-page .home-hero .eyebrow {
  color: var(--film-amber);
  font: 760 12.65px/1.3 Consolas, ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.home-cinema-page .home-hero-product .lead {
  max-width: 730px;
  margin-top: 28px;
  color: #b6c6d2;
  font-size: clamp(19.55px, 1.725vw, 24.15px);
  line-height: 1.62;
}

.home-cinema-page .home-hero-product .actions {
  margin-top: 30px;
}

.home-cinema-page .home-hero-product .primary,
.home-cinema-page .final-cta .primary {
  border-color: rgba(133, 200, 255, 0.52);
  background: linear-gradient(115deg, #0879c9, #2676f2 56%, #5b61ef);
  box-shadow: 0 14px 38px rgba(25, 112, 236, 0.28);
}

.home-cinema-page .home-hero-product .primary:hover,
.home-cinema-page .final-cta .primary:hover {
  background: linear-gradient(115deg, #1594e3, #3482ff 54%, #6a6bff);
  box-shadow: 0 19px 46px rgba(36, 125, 246, 0.34);
}

.home-cinema-page .hero-console {
  width: min(1120px, 100%);
  margin-top: clamp(50px, 8vh, 82px);
  border-color: rgba(109, 161, 200, 0.3);
  border-radius: 12px;
  background: rgba(3, 13, 23, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px) saturate(120%);
}

.home-cinema-page .hero-console-head strong {
  color: #8adfff;
}

.home-cinema-page .hero-console-flow span {
  border-radius: 5px;
}

.home-cinema-page .hero-signal {
  opacity: 0.13;
}

.home-cinema-page .workflow-rail {
  width: min(1240px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
  border-top: 0;
  border-bottom: 1px solid rgba(100, 165, 214, 0.24);
  background: rgba(5, 22, 37, 0.72);
  box-shadow: 0 18px 58px rgba(0, 7, 16, 0.22), inset 0 1px rgba(159, 211, 248, 0.1);
  -webkit-backdrop-filter: blur(8px) saturate(124%);
  backdrop-filter: blur(8px) saturate(124%);
}

.home-cinema-page .workflow-rail span {
  border-color: rgba(115, 177, 221, 0.18);
  color: #a8bdcd;
  font-family: Consolas, ui-monospace, monospace;
  font-size: 12.65px;
  letter-spacing: 0.045em;
}

.home-cinema-page .workflow-rail small {
  border-radius: 2px;
  border: 1px solid rgba(68, 215, 255, 0.34);
  background: rgba(4, 19, 32, 0.88);
  color: var(--film-cyan);
  animation: none;
}

.home-cinema-page .product-intro {
  position: relative;
  width: min(1180px, calc(100% - 64px));
  min-height: 580px;
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: 120px 0;
}

.home-cinema-page .product-intro::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background: transparent;
  content: "";
  transform: translateX(-50%);
}

.home-cinema-page .product-intro .eyebrow {
  color: var(--film-cyan);
  font-family: Consolas, ui-monospace, monospace;
}

.home-cinema-page .product-intro h2 {
  max-width: 1020px;
  color: var(--film-white);
  font-size: clamp(57.5px, 7.36vw, 98.9px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-cinema-page .product-intro > p:last-child {
  max-width: 700px;
  margin: 32px 0 0 auto;
  color: #a9bdcc;
  font-size: 21.85px;
}

.home-cinema-page .product-story {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(96px, 11vh, 138px) max(clamp(36px, 6vw, 90px), calc((100vw - 1320px) / 2));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.home-cinema-page .product-story::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: none;
  content: "";
}

.home-cinema-page .product-story::after {
  position: absolute;
  right: -8%;
  bottom: 11%;
  z-index: -1;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 145, 255, 0.72), rgba(244, 170, 45, 0.58), transparent);
  content: none;
}

.home-cinema-page .story-dark {
  border-color: transparent;
  background: transparent;
  color: #f8fbfd;
}

.home-cinema-page .story-light {
  background: transparent;
  color: #f8fbfd;
  box-shadow: none;
}

.home-cinema-page .story-light::before {
  background: none;
}

.home-cinema-page .story-light::after {
  background: none;
}

.home-cinema-page .story-teal {
  border-color: transparent;
  background: transparent;
  color: #f8fbfd;
}

.home-cinema-page .story-index {
  color: var(--film-amber);
  font-size: 11.5px;
  letter-spacing: 0.15em;
}

.home-cinema-page .story-index::before {
  width: 13px;
  height: 6px;
  border-radius: 0;
  border-color: var(--film-blue);
  box-shadow: inset 5px 0 var(--film-cyan);
  animation: none;
}

.home-cinema-page .story-light .story-index {
  color: var(--film-cyan);
}

.home-cinema-page .story-copy h2 {
  max-width: 590px;
  font-size: clamp(55.2px, 5.75vw, 82.8px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.home-cinema-page .story-copy > p:not(.story-index) {
  max-width: 560px;
  color: #b5c5d1;
  font-size: 20.7px;
  line-height: 1.68;
}

.home-cinema-page .story-light .story-copy > p:not(.story-index) {
  color: #b5c5d1;
}

.home-cinema-page .story-teal .story-copy > p:not(.story-index) {
  color: #b6c9d5;
}

.home-cinema-page .story-points {
  border-color: rgba(137, 184, 217, 0.22);
}

.home-cinema-page .story-points li {
  position: relative;
  grid-template-columns: 92px minmax(0, 1fr);
  border-color: rgba(137, 184, 217, 0.2);
  color: #aebfcb;
}

.home-cinema-page .story-points li::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--film-blue);
  background: var(--film-night);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.home-cinema-page .story-visual {
  border: 1px solid rgba(53, 147, 255, 0.58);
  border-top-color: rgba(73, 165, 255, 0.9);
  border-radius: 18px;
  background: rgba(4, 17, 29, 0.92);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.32), 0 0 70px rgba(26, 140, 255, 0.075);
  transform: none;
  transition: box-shadow 580ms ease;
}

.home-cinema-page .story-light .story-visual {
  border-color: rgba(53, 147, 255, 0.46);
  border-top-color: rgba(73, 165, 255, 0.82);
  box-shadow: 0 38px 100px rgba(0, 5, 12, 0.3), 0 0 70px rgba(26, 140, 255, 0.075);
  --film-media-rotate: 0.55deg;
}

.home-cinema-page .product-story:hover .story-visual {
  box-shadow: 0 48px 126px rgba(0, 0, 0, 0.36), 0 0 84px rgba(26, 140, 255, 0.1);
  transform: none;
}

.home-cinema-page .story-visual figcaption {
  height: 52px;
  background: rgba(4, 17, 29, 0.9);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

.home-cinema-page .story-visual figcaption span {
  color: #eaf5fc;
}

.home-cinema-page .story-visual figcaption em {
  color: #7f9caf;
}

.home-cinema-page .story-shot img {
  width: 129.75%;
  margin-left: -29.49%;
  transform: none;
  transition: filter 420ms ease;
}

.home-cinema-page .product-story:hover .story-shot img {
  transform: none;
}

.home-cinema-page .story-facts {
  border-color: rgba(60, 111, 153, 0.2);
}

.home-cinema-page .story-facts div + div {
  border-color: rgba(60, 111, 153, 0.2);
}

.home-cinema-page .story-facts strong {
  color: var(--film-cyan);
}

.home-cinema-page .capability-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(110px, 14vh, 170px) max(clamp(34px, 6vw, 88px), calc((100vw - 1320px) / 2)) clamp(120px, 14vh, 180px);
  background: transparent;
  color: #f8fbfd;
  isolation: isolate;
}

.home-cinema-page .capability-heading {
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  margin: 0 auto 82px;
}

.home-cinema-page .capability-heading .eyebrow {
  color: var(--film-amber);
  font-family: Consolas, ui-monospace, monospace;
}

.home-cinema-page .capability-heading h2 {
  color: #fbfdff;
  font-size: clamp(59.8px, 7.245vw, 98.9px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.056em;
}

.home-cinema-page .capability-heading > p:last-child {
  color: #9fb2c1;
  font-size: 19.55px;
}

.home-cinema-page .capability-grid {
  position: relative;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  margin: 0 auto;
  padding-top: 80px;
  counter-reset: capability;
}

.home-cinema-page .capability-grid::before {
  position: absolute;
  top: 48%;
  right: -8%;
  left: -8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 140, 255, 0.78), rgba(98, 100, 255, 0.68), rgba(244, 170, 45, 0.66), transparent);
  box-shadow: 0 0 18px rgba(26, 140, 255, 0.18);
  content: "";
  transform: rotate(-10deg);
}

.home-cinema-page .capability-card,
.home-cinema-page .capability-local,
.home-cinema-page .capability-code,
.home-cinema-page .capability-data,
.home-cinema-page .capability-risk {
  position: relative;
  grid-column: auto;
  min-height: 360px;
  padding: 30px 28px 34px;
  overflow: visible;
  border: 0;
  border-left: 1px solid rgba(132, 180, 215, 0.3);
  border-radius: 0;
  background: transparent;
  color: #f8fbfd;
  box-shadow: none;
  counter-increment: capability;
}

.home-cinema-page .capability-card:nth-child(1) { margin-top: 120px; }
.home-cinema-page .capability-card:nth-child(2) { margin-top: 80px; }
.home-cinema-page .capability-card:nth-child(3) { margin-top: 40px; }
.home-cinema-page .capability-card:nth-child(4) { margin-top: 0; }

.home-cinema-page .capability-card::before {
  top: -5px;
  right: auto;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--film-cyan);
  background: var(--film-ink);
  box-shadow: 0 0 18px rgba(26, 140, 255, 0.42);
  opacity: 1;
  transform: rotate(45deg);
}

.home-cinema-page .capability-card::after {
  position: absolute;
  top: 23px;
  right: 28px;
  color: #4d8fc8;
  content: "0" counter(capability);
  font: 700 11.5px/1 Consolas, ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.home-cinema-page .capability-card > span,
.home-cinema-page .capability-local > span {
  color: #79d9ff;
}

.home-cinema-page .capability-card h3 {
  margin-top: 22px;
  color: #fbfdff;
  font-size: 29.9px;
}

.home-cinema-page .capability-card > p,
.home-cinema-page .capability-local > p {
  color: #94aaba;
  font-size: 16.1px;
}

.home-cinema-page .local-diagram {
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 30px;
  padding-top: 0;
}

.home-cinema-page .local-diagram i {
  border: 0;
  border-bottom: 1px solid rgba(115, 166, 202, 0.22);
  border-radius: 0;
  padding: 8px 0;
}

.home-cinema-page .local-diagram b {
  display: none;
}

.home-cinema-page .capability-code pre {
  margin: 30px 0 0;
  padding: 20px;
  border: 1px solid rgba(101, 154, 192, 0.26);
  background: rgba(3, 12, 22, 0.56);
  color: #8bc7ff;
  font-size: 11.5px;
}

.home-cinema-page .data-tape {
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-cinema-page .data-tape span {
  height: 34px;
  border-color: rgba(110, 160, 197, 0.25);
  border-radius: 2px;
  background: rgba(5, 20, 33, 0.62);
  color: #a9d8ff;
}

.home-cinema-page .risk-bars {
  margin-top: 36px;
  border-color: rgba(110, 160, 197, 0.28);
}

.home-cinema-page .risk-bars i {
  border-radius: 0;
  background: linear-gradient(180deg, var(--film-cyan), var(--film-blue));
}

.home-cinema-page .privacy-band {
  width: 100%;
  margin: 0;
  padding: 82px max(clamp(34px, 7vw, 110px), calc((100vw - 1260px) / 2));
  border: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
}

.home-cinema-page .privacy-band h2 {
  font-size: clamp(39.1px, 3.68vw, 55.2px);
}

.home-cinema-page .privacy-band > a {
  color: #8bdcff;
}

.home-cinema-page .final-cta {
  width: 100%;
  min-height: 760px;
  margin: 0;
  padding: 120px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-cinema-page .final-cta::before {
  position: absolute;
  right: 10%;
  bottom: 19%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 140, 255, 0.7), rgba(98, 100, 255, 0.52), rgba(244, 170, 45, 0.72), transparent);
  box-shadow: 0 0 25px rgba(26, 140, 255, 0.22);
  content: "";
  transform: perspective(800px) rotateX(58deg);
}

.home-cinema-page .final-cta .eyebrow {
  color: var(--film-amber);
  font-family: Consolas, ui-monospace, monospace;
}

.home-cinema-page .final-cta h2 {
  max-width: 980px;
  font-size: clamp(66.7px, 8.05vw, 112.7px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-cinema-page .final-cta > p:not(.eyebrow) {
  color: #a8bac8;
}

.home-cinema-page .final-cta > svg {
  inset: auto -5% 3%;
  height: 45%;
  opacity: 0.34;
}

.home-cinema-page .final-cta > svg path {
  stroke: var(--film-blue);
  stroke-dasharray: none;
  filter: drop-shadow(0 0 8px rgba(26, 140, 255, 0.4));
  animation: none;
}

.home-cinema-page footer {
  border-top: 0;
  background: transparent;
  color: #8095a6;
}

.home-cinema-page footer a {
  color: #a9bac8;
}

.home-cinema-page .film-scene {
  --film-shift: 42px;
}

.home-cinema-page .film-scene .story-copy,
.home-cinema-page .film-scene.capability-card {
  opacity: 0.36;
  transition: opacity 820ms var(--film-enter), transform 900ms var(--film-enter);
}

.home-cinema-page .film-scene .story-copy {
  transform: translate3d(calc(var(--film-shift) * -1), 24px, 0);
}

.home-cinema-page .film-scene.film-in-view .story-copy,
.home-cinema-page .film-scene.film-in-view.capability-card {
  opacity: 1;
}

.home-cinema-page .film-scene.film-in-view .story-copy {
  transform: translate3d(0, 0, 0);
}

.home-cinema-page .film-scene .story-visual,
.home-cinema-page .film-scene.film-in-view .story-visual {
  opacity: 1;
  transform: none;
}

.home-cinema-page .film-scene.capability-card {
  transform: translate3d(0, 30px, 0);
}

.home-cinema-page .film-scene.film-in-view.capability-card {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1040px) {
  .home-cinema-page .product-story,
  .home-cinema-page .story-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-cinema-page .story-reverse .story-copy,
  .home-cinema-page .story-reverse .story-visual {
    order: initial;
  }

  .home-cinema-page .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding-top: 30px;
  }

  .home-cinema-page .capability-grid::before {
    display: none;
  }

  .home-cinema-page .capability-card:nth-child(n) {
    min-height: 330px;
    margin-top: 0;
    border-top: 1px solid rgba(132, 180, 215, 0.18);
  }
}

@media (max-width: 700px) {
  .home-cinema-page .site-header {
    height: 70px;
  }

  .home-film-depth {
    opacity: 0.24;
  }

  #home-film-canvas {
    opacity: 0.68;
  }

  .home-cinema-page .home-hero-product {
    width: 100%;
    min-height: calc(100svh - 70px);
  }

  .home-cinema-page .home-hero-product .home-hero-content {
    min-height: calc(100svh - 70px);
    padding: 74px 28px 46px;
  }

  .home-cinema-page .home-hero-product .home-hero-content::before {
    top: 44px;
    bottom: 34px;
    left: 12px;
  }

  .home-cinema-page .home-hero h1 {
    max-width: 100%;
    font-size: clamp(55.2px, 15.87vw, 75.9px);
    line-height: 0.96;
    letter-spacing: -0.058em;
  }

  .home-cinema-page .home-hero-product .lead {
    font-size: 18.4px;
  }

  .home-cinema-page .hero-console {
    margin-top: 48px;
    padding: 18px 16px;
    backdrop-filter: blur(12px);
  }

  .home-cinema-page .hero-console-head {
    flex-direction: column;
  }

  .home-cinema-page .workflow-rail {
    width: 100%;
    padding-inline: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-cinema-page .workflow-rail::-webkit-scrollbar {
    display: none;
  }

  .home-cinema-page .workflow-rail span {
    min-width: 148px;
  }

  .home-cinema-page .product-intro {
    width: calc(100% - 48px);
    min-height: 560px;
    padding: 100px 0;
  }

  .home-cinema-page .product-intro h2 {
    font-size: clamp(49.45px, 14.49vw, 66.7px);
  }

  .home-cinema-page .product-intro > p:last-child {
    margin-left: 0;
    font-size: 18.4px;
  }

  .home-cinema-page .product-story {
    width: 100%;
    gap: 48px;
    margin: 0;
    padding: 92px 24px 72px;
    border-radius: 0;
  }

  .home-cinema-page .story-copy h2 {
    font-size: clamp(48.3px, 13.8vw, 64.4px);
  }

  .home-cinema-page .story-copy > p:not(.story-index) {
    font-size: 18.4px;
  }

  .home-cinema-page .story-points li {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .home-cinema-page .story-visual {
    border-radius: 12px;
    transform: none;
  }

  .home-cinema-page .film-scene .story-visual,
  .home-cinema-page .film-scene.film-in-view .story-visual {
    transform: none;
  }

  .home-cinema-page .story-shot,
  .home-cinema-page .story-shot-tall {
    height: 470px;
  }

  .home-cinema-page .capability-section {
    padding: 104px 24px 90px;
  }

  .home-cinema-page .capability-heading {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .home-cinema-page .capability-heading h2 {
    font-size: clamp(50.6px, 14.375vw, 66.7px);
  }

  .home-cinema-page .capability-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .home-cinema-page .capability-card:nth-child(n) {
    min-height: 0;
    padding: 42px 10px 52px 26px;
    border-top: 1px solid rgba(132, 180, 215, 0.18);
    border-left: 1px solid rgba(132, 180, 215, 0.3);
  }

  .home-cinema-page .privacy-band {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 72px 24px;
  }

  .home-cinema-page .final-cta {
    min-height: 700px;
    padding: 100px 24px;
  }

  .home-cinema-page .final-cta h2 {
    font-size: clamp(55.2px, 14.95vw, 73.6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-film-depth {
    transform: none !important;
  }

  .home-cinema-page .film-scene .story-copy,
  .home-cinema-page .film-scene .story-visual,
  .home-cinema-page .film-scene.capability-card {
    opacity: 1;
    transform: none;
  }
}
