/* Homepage cinematic narrative: first-party, progressive, and motion-safe. */
.page-home.home-cinema {
  --cinema-ink: #07111f;
  --cinema-ink-deep: #030914;
  --cinema-slate: #0d1a2a;
  --cinema-gold: #f4b63d;
  --cinema-blue: #74bfff;
  --cinema-progress: 0;
  --hero-drift: 0px;
  background: var(--cinema-ink-deep);
}

.page-home.home-cinema main { overflow: clip; }
.page-home.home-cinema .hero,
.page-home.home-cinema .home-cinema-scene { scroll-margin-top: 148px; }

.page-home.home-cinema .hero {
  min-height: 0;
  padding: clamp(32px, 4vw, 56px) 0 clamp(36px, 4.4vw, 60px);
  border-bottom: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(116, 191, 255, .14), transparent 25rem),
    radial-gradient(circle at 22% 18%, rgba(244, 182, 61, .12), transparent 24rem),
    linear-gradient(138deg, #07111f 0%, #07111f 46%, #0b1728 100%);
}

.page-home.home-cinema .hero::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 20, .98) 0%, rgba(3, 9, 20, .9) 44%, rgba(3, 9, 20, .44) 100%),
    linear-gradient(180deg, transparent 64%, rgba(3, 9, 20, .88) 100%);
}

.page-home.home-cinema .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 57%, rgba(255, 255, 255, .055) 57.1%, transparent 57.35%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, .025) 120px, transparent 121px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 86%);
}

.page-home.home-cinema .hero-bg {
  opacity: .28;
  transform: translate3d(0, var(--hero-drift), 0) scale(1.055);
  transform-origin: center;
  transition: transform .15s linear;
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, .32) 47%, #000 100%);
}

.page-home.home-cinema .hero-bg img {
  filter: saturate(.72) contrast(1.08) brightness(.62);
}

.page-home.home-cinema .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: clamp(34px, 5.2vw, 70px);
}

.page-home.home-cinema .hero-copy { gap: 18px; }
.page-home.home-cinema .hero h1 {
  max-width: 18ch;
  font-family: "Segoe UI Variable Display", Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .32);
}

.page-home.home-cinema .hero .lead {
  max-width: 57ch;
  margin: 0;
  color: #dce6f5;
  font-size: clamp(1.03rem, 1.34vw, 1.2rem);
  line-height: 1.58;
}

.page-home.home-cinema .hero-actions { gap: 10px; }
.home-opening-payoff { color: #ffd77e; }
.page-home.home-cinema .home-opening .hero-supporting-link { min-height: 44px; }
.page-home.home-cinema .hero-metrics {
  max-width: 660px;
  margin-top: 4px;
}

.page-home.home-cinema .hero-metrics div {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(9, 22, 38, .76);
}

.page-home.home-cinema .hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cinema-gold), rgba(116, 191, 255, .62));
}

.page-home.home-cinema .hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: #07111f;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, .54),
    0 0 0 8px rgba(255, 255, 255, .025),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.home-product-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 35px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #dce6f5;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-product-label > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd77e;
}
.home-product-label > span:last-child { margin-left: auto; color: #aebed2; }

.page-home.home-cinema .hero-card img {
  display: block;
  aspect-ratio: 1440/1000;
  background: #07111f;
  object-fit: contain;
}

.page-home.home-cinema .hero-card figcaption {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(180deg, #0d1b2c, #091522);
  color: #cdd8e7;
}
.home-proof-peek summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 16px;
  color: #ffd77e;
  cursor: pointer;
  list-style: none;
  font-size: .85rem;
}
.home-proof-peek summary::-webkit-details-marker { display: none; }
.home-proof-peek summary > span {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s ease;
}
.home-proof-peek[open] summary > span { transform: rotate(45deg); }
.home-proof-peek summary:hover { background: rgba(255, 215, 126, .07); }
.home-proof-peek summary:focus-visible { outline: 2px solid #ffd77e; outline-offset: -5px; border-radius: 8px; }
.home-proof-payoff { padding: 0 16px 16px; font-size: .85rem; font-weight: 400; line-height: 1.5; }
.home-proof-payoff p { margin: 0 0 12px; font-size: inherit; }
.home-proof-payoff ul { display: grid; gap: 9px; padding: 0; margin: 0 0 12px; list-style: none; }
.home-proof-payoff strong { color: #fff; }
.home-proof-payoff a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: #ffd77e; font-weight: 800; }
.home-proof-payoff a:hover { text-decoration: underline; text-underline-offset: 3px; }
/* One finite settling motion; the message, CTA and proof stay readable throughout. */
.page-home.home-cinema.cinema-motion .home-opening .hero-card {
  animation: home-opening-arrive 900ms cubic-bezier(.2, .75, .25, 1) both;
}
.page-home.home-cinema.cinema-motion .home-proof-peek[open] .home-proof-payoff {
  animation: home-opening-arrive 240ms ease-out both;
}
@keyframes home-opening-arrive {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}

.home-storyline {
  position: sticky;
  top: 70px;
  z-index: 62;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 13, 24, .96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
}

.page-home.is-preview .home-storyline { top: 110px; }
.home-storyline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cinema-gold), var(--cinema-blue));
  transform: scaleX(var(--cinema-progress));
  transform-origin: left center;
  transition: transform .12s linear;
}

.home-storyline-inner {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 2.28fr);
  align-items: stretch;
  gap: 22px;
}

.home-storyline-label {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 13px 18px 13px 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.home-storyline-label small {
  color: #ffd77e;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-storyline-label strong { color: #f5f8fc; font-size: .82rem; line-height: 1.25; }
.home-storyline-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.home-storyline-hint{display:none;margin:0;color:#dbe5f5;font-size:.76rem;font-weight:800}

.home-storyline-links a {
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
  min-height: 68px;
  padding: 10px 13px;
  border-inline-start: 1px solid transparent;
  color: #aebbd0;
}

.home-storyline-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--cinema-gold), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left;
  transition: opacity .28s ease, transform .28s ease;
}

.home-storyline-links a span {
  color: #738198;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-storyline-links a strong {
  overflow: hidden;
  color: inherit;
  font-size: .78rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-storyline-links a:hover,
.home-storyline-links a:focus-visible,
.home-storyline-links a[aria-current="step"] {
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.home-storyline-links a[aria-current="step"] span { color: #ffd77e; }
.home-storyline-links a[aria-current="step"]::after { opacity: 1; transform: scaleX(1); }

.page-home.home-cinema .home-cinema-scene {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.page-home.home-cinema .home-section-intro h2,
.page-home.home-cinema .home-runtime-copy h2,
.page-home.home-cinema .home-proof-layout h2,
.page-home.home-cinema .home-final-panel h2 {
  font-family: "Segoe UI Variable Display", Aptos, "Segoe UI", system-ui, sans-serif;
  text-wrap: balance;
}

.page-home.home-cinema .home-day {
  background:
    linear-gradient(90deg, rgba(23, 32, 51, .035) 1px, transparent 1px) 0 0 / 120px 100%,
    #f4f0e8;
}

.page-home.home-cinema .home-day-grid {
  position: relative;
  border-block: 0;
}

.page-home.home-cinema .home-day-grid::before {
  content: "";
  position: absolute;
  top: 37px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, #b9892f, #315f7b 50%, #172033);
}

.page-home.home-cinema .home-day-grid article {
  position: relative;
  padding: 68px 28px 28px;
  border: 0;
}

.page-home.home-cinema .home-day-grid article::before {
  position: absolute;
  top: 21px;
  left: 50%;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #cabd9f;
  border-radius: 50%;
  background: #f4f0e8;
  color: #6b4b16;
  font-size: .63rem;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px #f4f0e8;
}

.page-home.home-cinema .home-day-grid article:nth-child(1)::before { content: "01"; }
.page-home.home-cinema .home-day-grid article:nth-child(2)::before { content: "02"; }
.page-home.home-cinema .home-day-grid article:nth-child(3)::before { content: "03"; }
.page-home.home-cinema .home-day-grid article > span { margin-bottom: 12px; }

.page-home.home-cinema .home-packages {
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 182, 61, .11), transparent 25rem),
    radial-gradient(circle at 92% 76%, rgba(116, 191, 255, .08), transparent 28rem),
    #07111f;
}

.page-home.home-cinema .home-package-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(158deg, rgba(19, 38, 60, .98), rgba(9, 23, 39, .98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
  transition: transform .35s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .35s ease;
}

.page-home.home-cinema .home-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cinema-gold), rgba(116, 191, 255, .5), transparent 82%);
  opacity: .72;
}

.page-home.home-cinema .home-package-card:hover,
.page-home.home-cinema .home-package-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(244, 182, 61, .38);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .3);
}

.page-home.home-cinema .home-package-value {
  position: relative;
  overflow: hidden;
  border-color: rgba(244, 182, 61, .42);
  background:
    linear-gradient(110deg, rgba(244, 182, 61, .13), rgba(116, 191, 255, .055)),
    #0c1a2b;
}

.page-home.home-cinema .home-package-value::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 215, 126, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 215, 126, .025), 0 0 0 64px rgba(255, 215, 126, .018);
  pointer-events: none;
}

.page-home.home-cinema .home-apps {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .025), transparent 18%),
    #f8fafc !important;
}

.page-home.home-cinema .home-workflow-group {
  position: relative;
  transition: border-color .3s ease;
}

.page-home.home-cinema .home-workflow-group::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -18px;
  width: 2px;
  background: linear-gradient(180deg, #b9892f, #315f7b);
  opacity: 0;
  transform: scaleY(.35);
  transform-origin: top;
  transition: opacity .5s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
}

.page-home.home-cinema .home-workflow-group.is-cinema-visible::before { opacity: 1; transform: scaleY(1); }
.page-home.home-cinema .launcher-suite .launcher-app-card {
  transition: transform .3s cubic-bezier(.2, .75, .25, 1), border-color .3s ease, box-shadow .3s ease;
}

.page-home.home-cinema .launcher-suite .launcher-app-card:hover,
.page-home.home-cinema .launcher-suite .launcher-app-card:focus-visible { transform: translateY(-4px); }

.page-home.home-cinema .home-runtime {
  background:
    radial-gradient(circle at 78% 50%, rgba(116, 191, 255, .13), transparent 27rem),
    linear-gradient(135deg, #081321, #0d1c2e 58%, #07111f);
}

.page-home.home-cinema .home-runtime::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, transparent 48%, rgba(255, 255, 255, .035) 48.1%, transparent 48.35%);
  pointer-events: none;
}

.page-home.home-cinema .home-runtime-media {
  border-color: rgba(116, 191, 255, .22);
  border-radius: 24px;
  box-shadow: 0 34px 86px rgba(0, 0, 0, .4);
}

.page-home.home-cinema .home-runtime-node {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 42px rgba(0, 0, 0, .16);
}

.page-home.home-cinema .home-runtime-connector span {
  animation: home-cinema-signal 2.8s cubic-bezier(.4, 0, .2, 1) infinite;
}

.page-home.home-cinema .home-proof {
  background:
    radial-gradient(circle at 14% 22%, rgba(244, 182, 61, .095), transparent 24rem),
    linear-gradient(180deg, #101c2d, #0b1727);
}

.page-home.home-cinema .home-proof-points article {
  position: relative;
  padding-left: 18px;
}

.page-home.home-cinema .home-proof-points article::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cinema-gold);
  box-shadow: 0 0 16px rgba(244, 182, 61, .55);
}

.page-home.home-cinema .home-proof-routes a {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .038);
}

.page-home.home-cinema .home-proof-routes a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #ffd77e;
  opacity: .58;
  transition: transform .25s ease, opacity .25s ease;
}

.page-home.home-cinema .home-proof-routes a:hover::after,
.page-home.home-cinema .home-proof-routes a:focus-visible::after { opacity: 1; transform: translate(2px, -2px); }

.page-home.home-cinema .home-commercial-strip {
  background: linear-gradient(112deg, #dc9c24, #f4b63d 34%, #ffd77e 58%, #e8a72e);
  background-size: 180% 100%;
  box-shadow: inset 0 1px rgba(255, 255, 255, .46), inset 0 -1px rgba(49, 35, 8, .18);
  animation: home-cinema-gold-shift 12s ease-in-out infinite alternate;
}

.page-home.home-cinema .faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 28%),
    #07111f;
}

.page-home.home-cinema .faq-item {
  transition: border-color .28s ease, background .28s ease;
}

.page-home.home-cinema .faq-item:hover,
.page-home.home-cinema .faq-item[open] {
  border-color: rgba(244, 182, 61, .3);
  background: rgba(255, 255, 255, .055);
}

.page-home.home-cinema .home-final-cta {
  background:
    radial-gradient(circle at 82% 44%, rgba(116, 191, 255, .1), transparent 24rem),
    #050d19;
}

.page-home.home-cinema .home-final-panel {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(28px, 4.4vw, 54px);
  border-color: rgba(255, 255, 255, .16);
  border-radius: 28px;
  background:
    linear-gradient(118deg, rgba(244, 182, 61, .11), transparent 42%),
    linear-gradient(145deg, #12243a, #0a1727);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.page-home.home-cinema .home-final-panel::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .018), 0 0 0 92px rgba(255, 255, 255, .012);
  pointer-events: none;
}

.page-home.home-cinema .home-final-panel > * { position: relative; z-index: 1; }

/* Elements remain visible unless JavaScript positively enables motion. */
.page-home.home-cinema.cinema-motion [data-cinema-item] {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity .72s cubic-bezier(.2, .75, .25, 1),
    translate .82s cubic-bezier(.2, .75, .25, 1);
  transition-delay: calc(var(--cinema-order, 0) * 58ms);
  will-change: opacity, translate;
}

.page-home.home-cinema.cinema-motion [data-cinema-item].is-cinema-visible {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@keyframes home-cinema-signal {
  0%, 100% { opacity: .62; transform: translateX(-2px); }
  50% { opacity: 1; transform: translateX(2px); }
}

@keyframes home-cinema-gold-shift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (max-width: 1120px) {
  .page-home.home-cinema .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr); gap: 34px; }
  .home-storyline-inner { grid-template-columns: minmax(160px, .58fr) minmax(0, 2.42fr); }
  .home-storyline-label strong { font-size: .75rem; }
  .home-storyline-links a { padding-inline: 9px; }
}

@media (max-width: 980px) {
  .page-home.home-cinema .hero-grid { grid-template-columns: 1fr; }
  .page-home.home-cinema .hero-copy { max-width: 760px; }
  .page-home.home-cinema .hero-card { max-width: 760px; }
  .home-storyline { top: 72px; }
  .page-home.is-preview .home-storyline { top: 112px; }
  .home-storyline-inner { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .home-storyline-label { display: none; }
}

@media (max-width: 760px) {
  .page-home.home-cinema .hero,
  .page-home.home-cinema .home-cinema-scene { scroll-margin-top: 84px; }
  .home-storyline,
  .page-home.is-preview .home-storyline { position: relative; top: auto; }
  .home-storyline-inner { width: 100%; }
  .home-storyline-hint{display:block;padding:8px 14px 0}
  .home-storyline-links {
    display: flex;
    max-width: 100%;
    padding-inline: max(14px, calc((100vw - var(--max)) / 2));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    background:linear-gradient(90deg,transparent 0,transparent calc(100% - 30px),rgba(255,215,126,.18) 100%);
  }
  .home-storyline-links::-webkit-scrollbar { display: none; }
  .home-storyline-links a {
    flex: 0 0 138px;
    min-height: 62px;
    scroll-snap-align: start;
  }
  .page-home.home-cinema .home-day-grid::before { top: 0; right: auto; bottom: 0; left: 16px; width: 1px; height: auto; }
  .page-home.home-cinema .home-day-grid article { padding: 24px 0 24px 54px; text-align: left; }
  .page-home.home-cinema .home-day-grid article::before {
    top: 26px;
    left: 16px;
    width: 28px;
    height: 28px;
    transform: translate(-50%, 0);
    box-shadow: 0 0 0 6px #f4f0e8;
  }
  .page-home.home-cinema .home-day-grid article + article { border-top: 1px solid #d8d1c5; }
  .page-home.home-cinema .home-workflow-group::before { left: -10px; }
}

@media (max-width: 640px) {
  .page-home.home-cinema .hero { padding: 26px 0 32px; }
  .page-home.home-cinema .hero::after { opacity: .52; }
  .page-home.home-cinema .hero-bg { opacity: .16; mask-image: linear-gradient(180deg, #000, transparent 76%); }
  .page-home.home-cinema .hero-grid { gap: 22px; }
  .page-home.home-cinema .hero-copy { gap: 13px; }
  .page-home.home-cinema .hero-copy > .eyebrow { font-size: .65rem; padding: 6px 9px; }
  .page-home.home-cinema .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.7vw, 3.35rem);
    line-height: 1.04;
  }
  .page-home.home-cinema .hero .lead { font-size: .96rem; line-height: 1.48; }
  .page-home.home-cinema .hero-actions { gap: 0; }
  .page-home.home-cinema .hero-actions .btn-primary { width: 100%; }
  .page-home.home-cinema .hero-actions .btn-secondary,
  .page-home.home-cinema .hero-actions .hero-supporting-link {
    flex: 1 1 145px;
    width: auto;
  }
  .page-home.home-cinema .hero-actions .btn-secondary { padding-inline: 14px; font-size: .9rem; }
  .page-home.home-cinema .hero-actions .hero-supporting-link { justify-content: center; }
  .page-home.home-cinema .home-opening .hero-actions { gap: 10px; }
  .page-home.home-cinema .home-opening .hero-actions .btn-primary { flex: 1 1 175px; width: auto; padding-inline: 15px; font-size: .9rem; }
  .page-home.home-cinema .home-opening .hero-actions .hero-supporting-link { flex: 1 1 125px; width: auto; font-size: .85rem; }
  .page-home.home-cinema .hero-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .page-home.home-cinema .hero-metrics div,
  .page-home.home-cinema .hero-metrics div:last-child { grid-column: auto; padding: 10px 9px; }
  .page-home.home-cinema .hero-metrics strong { font-size: .98rem; }
  .page-home.home-cinema .hero-metrics span { font-size: .67rem; }
  .page-home.home-cinema .hero-card { border-radius: 18px; box-shadow: 0 22px 58px rgba(0, 0, 0, .42); }
  .page-home.home-cinema .hero-card figcaption { padding: 0; }
  .page-home.home-cinema .home-package-card:hover,
  .page-home.home-cinema .home-package-card:focus-within { transform: none; }
  .page-home.home-cinema .home-package-value::after,
  .page-home.home-cinema .home-final-panel::after { opacity: .56; }
  .page-home.home-cinema .home-final-panel { min-height: 0; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-home.home-cinema .hero-bg,
  .page-home.home-cinema .home-opening .hero-card,
  .page-home.home-cinema .home-proof-peek[open] .home-proof-payoff,
  .page-home.home-cinema .home-proof-peek summary > span,
  .home-storyline::after,
  .page-home.home-cinema [data-cinema-item],
  .page-home.home-cinema .home-workflow-group::before,
  .page-home.home-cinema .home-runtime-connector span,
  .page-home.home-cinema .home-commercial-strip {
    animation: none !important;
    opacity: 1 !important;
    translate: none !important;
    transform: none !important;
    transition: none !important;
  }
}
