:root {
  --cinema-white: #fff;
  --cinema-black: #0b0d0c;
  --cinema-black-soft: #111513;
  --cinema-green: #18a477;
  --cinema-green-light: #47c99a;
  --cinema-mint: #e9f8f2;
  --cinema-text: #101311;
  --cinema-muted: #69746f;
  --cinema-line: rgba(13, 29, 22, 0.12);
  --cinema-shadow: 0 38px 90px rgba(11, 27, 20, 0.14);
  --cinema-display: "Satoshi", "Maison Neue", Inter, sans-serif;
  --cinema-body: "Maison Neue", "Satoshi", Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

html.cinema-instant-scroll {
  scroll-behavior: auto !important;
}

body.landing-cinema {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--cinema-text);
  background: #07100d;
  font-family: var(--cinema-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-cinema button,
.landing-cinema a {
  -webkit-tap-highlight-color: transparent;
}

.landing-cinema a {
  color: inherit;
  text-decoration: none;
}

.landing-cinema button {
  font: inherit;
}

.landing-cinema img,
.landing-cinema svg {
  display: block;
}

.cinema-wrap,
.nav-wrap > .wrap {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.cinema-scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.cinema-scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cinema-green);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* Public header */
.nav-wrap {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cinema-text);
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease;
}

.nav-wrap::before {
  position: absolute;
  inset: 0;
  content: "";
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transition: opacity 300ms ease, border-color 300ms ease;
}

.landing-cinema.is-scrolled .nav-wrap::before {
  border-color: rgba(10, 30, 21, 0.08);
  opacity: 1;
}

.nav-wrap .nav {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-wrap .brand {
  display: inline-flex;
  width: 116px;
  align-items: center;
  flex: 0 0 auto;
}

.nav-wrap .brand-wordmark {
  width: 100%;
  height: auto;
}

.nav-wrap .links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-wrap .links > a:not(.btn) {
  position: relative;
  padding: 28px 0 26px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-wrap .links > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 250ms ease;
}

.nav-wrap .links > a:not(.btn):hover::after,
.nav-wrap .links > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.nav-wrap .btn,
.theme-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 13, 12, 0.14);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-wrap .btn {
  padding: 0 18px;
}

.theme-toggle {
  width: 40px;
  padding: 0;
}

.theme-icon {
  width: 16px;
  height: 16px;
}

.nav-wrap .btn.primary {
  border-color: var(--cinema-green);
  background: var(--cinema-green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(24, 164, 119, 0.2);
}

.nav-wrap .btn:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--cinema-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: currentColor;
}

.nav-hamburger span {
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.landing-cinema.is-dark-scene .nav-wrap {
  color: #fff;
}

.landing-cinema.is-dark-scene .nav-wrap::before {
  background: rgba(11, 13, 12, 0.94);
}

.landing-cinema.is-dark-scene .nav-wrap .brand-wordmark {
  content: url("/static/brand/growlee-logo-dark.png");
}

html[data-theme="dark"] body.landing-cinema:not(.is-dark-scene) .nav-wrap .brand-wordmark {
  content: url("/static/brand/growlee-logo-light.png");
}

.landing-cinema.is-dark-scene .nav-wrap .btn,
.landing-cinema.is-dark-scene .theme-toggle {
  border-color: rgba(255, 255, 255, 0.22);
}

.landing-cinema.is-dark-scene .nav-wrap .btn.primary {
  border-color: var(--cinema-green);
  background: var(--cinema-green);
  color: #fff;
}

.landing-cinema.is-dark-scene .nav-hamburger {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.landing-cinema.is-lower-header .nav-wrap::before {
  bottom: -8px;
  border-color: rgba(10, 30, 21, 0.08);
  background: #fff;
  opacity: 1;
  transition: none;
}

/* Chapter rail */
.cinema-rail {
  position: fixed;
  z-index: 700;
  top: 50%;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 92px;
  color: #000;
  transform: translateY(-50%);
  transition: color 300ms ease, opacity 260ms ease, transform 260ms ease;
}

.cinema-rail-line {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 3px;
  width: 1px;
  overflow: hidden;
  background: rgba(80, 94, 88, 0.22);
}

.cinema-rail-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cinema-green);
  transform: scaleY(0);
  transform-origin: 50% 0;
}

.cinema-rail a {
  position: relative;
  display: grid;
  min-height: 22px;
  grid-template-columns: 17px 1fr;
  align-items: center;
  gap: 9px;
  color: inherit;
  opacity: 0.32;
  transition: opacity 250ms ease;
}

.cinema-rail a::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--cinema-white);
  content: "";
  transform: translateX(-0.5px);
}

.cinema-rail a span {
  grid-column: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cinema-rail a b {
  grid-column: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cinema-rail a.is-active {
  opacity: 1;
}

.cinema-rail a.is-active::before {
  border-color: var(--cinema-green);
  background: var(--cinema-green);
  box-shadow: 0 0 0 5px rgba(24, 164, 119, 0.13);
}

.landing-cinema.is-dark-rail .cinema-rail {
  color: #fff;
}

.landing-cinema.is-dark-rail .cinema-rail a::before {
  background: var(--cinema-black);
}

.landing-cinema.is-dark-rail .cinema-rail a.is-active::before {
  background: var(--cinema-green-light);
}

.landing-cinema.is-lower-landing .cinema-rail {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
}

.landing-cinema.is-hero-exiting [data-hero-copy] {
  pointer-events: none;
}

/* Shared controls */
.cinema-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.cinema-btn {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(11, 13, 12, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.cinema-btn:hover,
.cinema-btn:focus-visible {
  transform: translateY(-2px);
}

.cinema-btn-primary {
  border-color: var(--cinema-green);
  background: var(--cinema-green);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(24, 164, 119, 0.2);
}

.cinema-btn-secondary {
  background: rgba(255, 255, 255, 0.7);
}

/* Scene 01 — hero */
.cinema-hero {
  position: relative;
  height: 190vh;
  min-height: 1320px;
  background: #fff;
}

.cinema-hero-sticky,
.cinema-transformation-sticky,
.cinema-product-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}

.cinema-hero-sticky {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  isolation: isolate;
}

.cinema-hero-copy {
  position: relative;
  z-index: 4;
  width: min(94vw, 840px);
  padding-top: clamp(104px, 12vh, 140px);
  text-align: center;
}

.cinema-hero-copy h1 {
  margin: 0;
  color: var(--cinema-text);
  font-family: var(--cinema-display);
  font-size: clamp(54px, 5.25vw, 82px);
  font-weight: 650;
  letter-spacing: -0.068em;
  line-height: 0.87;
}

.cinema-hero-copy h1 span {
  color: var(--cinema-green);
}

.cinema-hero-copy > p {
  width: min(100%, 600px);
  margin: 20px auto 0;
  color: var(--cinema-muted);
  font-size: 15px;
  line-height: 1.55;
}

.cinema-hero-product {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -2px;
  left: 0;
  height: min(52vh, 510px);
  perspective: 1400px;
}

.cinema-dashboard {
  position: absolute;
  right: max(6vw, 84px);
  bottom: -52px;
  left: max(6vw, 84px);
  height: min(49vh, 500px);
  overflow: hidden;
  border: 1px solid rgba(23, 58, 43, 0.12);
  border-radius: 24px 24px 0 0;
  background: #fbfcfb;
  color: var(--cinema-text);
  box-shadow: 0 -8px 60px rgba(26, 75, 54, 0.1), var(--cinema-shadow);
  transform: rotateX(5deg) scale(0.98) translateY(0);
  transform-origin: 50% 100%;
}

.cinema-dashboard-top {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e9ecea;
  background: #fff;
  color: #171717;
}

.cinema-dashboard-top > img {
  width: 38px;
  height: auto;
}

.cinema-dashboard-account-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cinema-dashboard-account-actions span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #171717;
  font-size: 9px;
  font-weight: 700;
}

.cinema-dashboard svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cinema-dashboard-account-actions svg {
  width: 14px;
  height: 14px;
}

.cinema-dashboard-body {
  display: grid;
  height: calc(100% - 54px);
  grid-template-columns: 188px minmax(0, 1fr);
  background: #fff;
}

.cinema-dashboard-body aside {
  display: flex;
  flex-direction: column;
  padding: 20px 14px 14px;
  border-right: 1px solid #e9ecea;
  background: #fff;
  color: #171717;
}

.cinema-dashboard-context {
  display: grid;
  gap: 5px;
  padding: 0 7px 16px;
}

.cinema-dashboard-context small {
  color: #667085;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cinema-dashboard-context b {
  font-size: 12px;
  letter-spacing: -0.02em;
}

.cinema-dashboard-body aside nav {
  display: grid;
  gap: 3px;
}

.cinema-dashboard-body aside nav span,
.cinema-dashboard-body aside nav strong {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 9px;
  color: #667085;
  font-size: 9px;
  font-weight: 650;
}

.cinema-dashboard-body aside nav strong {
  background: #f6f7f5;
  color: #171717;
}

.cinema-dashboard-body aside nav svg,
.cinema-dashboard-sidebar-bottom svg {
  width: 14px;
  height: 14px;
}

.cinema-dashboard-sidebar-bottom {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.cinema-dashboard-cash {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.cinema-dashboard-merchant {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 8px;
  background: #f6f7f5;
}

.cinema-dashboard-merchant > i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 8px;
  font-style: normal;
}

.cinema-dashboard-merchant > b {
  display: grid;
  gap: 2px;
  color: #171717;
  font-size: 9px;
}

.cinema-dashboard-merchant small {
  color: #667085;
  font-size: 7px;
  font-weight: 500;
}

.cinema-dashboard-main {
  min-width: 0;
  padding: 12px 22px 26px;
  background: #fff;
  color: #171717;
}

.cinema-dashboard-demo {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid #eee5df;
  border-radius: 9px;
  background: #fffaf7;
  color: #667085;
  font-size: 7px;
  white-space: nowrap;
}

.cinema-dashboard-demo strong {
  color: #8b351d;
}

.cinema-dashboard-demo i {
  color: #667085;
  font-style: normal;
}

.cinema-dashboard-main header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cinema-dashboard-main header h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(17px, 1.45vw, 23px);
  letter-spacing: -0.045em;
}

.cinema-dashboard-main header > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: #fff;
  color: #171717;
  font-size: 8px;
  font-weight: 700;
}

.cinema-dashboard-main header svg {
  width: 13px;
  height: 13px;
  color: #667085;
}

.cinema-dashboard-status {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  padding: 10px 15px;
  border-radius: 13px;
  background: #f7f8f6;
}

.cinema-dashboard-status > span,
.cinema-dashboard-kpis article > span > svg,
.cinema-dashboard-overview-head > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: #f0f2f4;
  color: #667085;
}

.cinema-dashboard-status > span {
  background: #fff;
}

.cinema-dashboard-status > span svg,
.cinema-dashboard-overview-head > span svg {
  width: 14px;
  height: 14px;
}

.cinema-dashboard-status > div {
  display: grid;
  gap: 3px;
}

.cinema-dashboard-status small {
  color: #667085;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cinema-dashboard-status strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #171717;
  font-size: 10px;
}

.cinema-dashboard-status strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d9e75;
}

.cinema-dashboard-status p {
  margin: 0;
  color: #667085;
  font-size: 8px;
}

.cinema-dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.cinema-dashboard-kpis article {
  display: grid;
  min-height: 71px;
  align-content: center;
  gap: 8px;
  padding: 5px 0;
  border: 0;
  background: transparent;
}

.cinema-dashboard-kpis article > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cinema-dashboard-kpis article > span > svg {
  width: 24px;
  height: 24px;
  padding: 6px;
}

.cinema-dashboard-kpis small {
  color: #171717;
  font-size: 8px;
  font-weight: 650;
}

.cinema-dashboard-kpis b {
  color: #111;
  font-size: clamp(25px, 2.35vw, 37px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.cinema-dashboard-overview {
  min-height: 183px;
  margin-top: 8px;
  padding: 13px 16px 0;
  overflow: hidden;
  border-radius: 13px;
  background: #f7f8f6;
}

.cinema-dashboard-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
}

.cinema-dashboard-overview-head > div {
  display: grid;
  flex: 1;
  gap: 3px;
}

.cinema-dashboard-overview-head strong {
  color: #171717;
  font-size: 13px;
}

.cinema-dashboard-overview-head small {
  color: #667085;
  font-size: 7px;
}

.cinema-dashboard-overview-head > b {
  color: #171717;
  font-size: 8px;
}

.cinema-dashboard-chart {
  display: block;
  width: 100%;
  height: 132px;
  margin-top: 7px;
  overflow: visible;
}

.cinema-dashboard-chart path,
.cinema-dashboard-chart circle {
  vector-effect: non-scaling-stroke;
}

.cinema-dashboard-chart .cinema-chart-grid path {
  stroke: #e2e7e4;
  stroke-width: 1;
}

.cinema-dashboard-chart text {
  fill: #667085;
  font-family: var(--cinema-display);
  font-size: 12px;
  stroke: none;
}

.cinema-dashboard-chart .cinema-chart-area {
  fill: rgba(17, 17, 17, 0.08);
  stroke: none;
}

.cinema-dashboard-chart .cinema-chart-line {
  fill: none;
  stroke: #111;
  stroke-width: 2.5;
}

.cinema-dashboard-chart .cinema-chart-gain {
  fill: none;
  stroke: #1d9e75;
  stroke-dasharray: 4 3;
  stroke-width: 1.6;
}

.cinema-dashboard-chart .cinema-chart-points circle {
  fill: #111;
  stroke: #fff;
  stroke-width: 2;
}

.cinema-signal {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(20, 51, 38, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(19, 59, 42, 0.13);
  color: var(--cinema-text);
}

.cinema-signal-review {
  bottom: min(70vh, 730px);
  left: 9vw;
  display: flex;
  width: 216px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  transform: translate(-16px, 12px);
}

.cinema-google {
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #4285f4;
}

.cinema-signal-review div,
.cinema-signal-reward div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.cinema-signal-review b {
  color: #f7ad0c;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.cinema-signal strong {
  font-size: 9px;
}

.cinema-signal small {
  color: #7a857f;
  font-size: 7px;
}

.cinema-signal-reward {
  right: auto;
  bottom: min(52vh, 545px);
  left: 7vw;
  display: flex;
  width: 228px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  transform: translate(-12px, 14px);
}

.cinema-signal-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--cinema-mint);
  color: var(--cinema-green);
}

.cinema-signal-icon svg {
  width: 15px;
}

.cinema-signal-wallet {
  right: 13vw;
  bottom: min(60vh, 620px);
  display: grid;
  width: 190px;
  gap: 4px;
  padding: 13px 15px;
  background: linear-gradient(145deg, #0c7f5d, #159d73);
  color: #fff;
  transform: translate(0, 12px) rotate(2deg);
}

.cinema-signal-wallet small {
  color: rgba(255, 255, 255, 0.68);
}

.cinema-signal-wallet b {
  margin-top: 8px;
  font-size: 13px;
}

.cinema-wallet-mark {
  width: 21px;
  height: 21px;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 8%;
}

.cinema-scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(11, 13, 12, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
}

.cinema-scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--cinema-green);
  animation: cinema-cue 1.6s ease-in-out infinite;
}

@keyframes cinema-cue {
  0%, 100% { transform: translateY(-4px); opacity: 0.35; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* Scene 02 — transformation */
.cinema-transformation {
  position: relative;
  height: 260vh;
  min-height: 1820px;
  background: var(--cinema-black);
  color: #fff;
}

.cinema-transformation-sticky {
  padding: clamp(94px, 12vh, 130px) max(6vw, 70px) 34px;
  background:
    radial-gradient(circle at 74% 62%, rgba(32, 142, 105, 0.12), transparent 32%),
    var(--cinema-black);
}

.cinema-transformation-head {
  position: relative;
  z-index: 3;
  width: min(68vw, 900px);
}

.cinema-transformation-head h2,
.cinema-product-copy h2 {
  margin: 0;
  font-family: var(--cinema-display);
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.92;
}

.cinema-transformation-head h2 span,
.cinema-product-copy h2 span {
  color: var(--cinema-green-light);
}

.cinema-storefront {
  position: absolute;
  right: max(1.5vw, 20px);
  bottom: clamp(30px, 5vh, 60px);
  left: max(1.5vw, 20px);
  height: min(69vh, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #14201b;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.36);
}

.cinema-storefront > img,
.cinema-storefront-before,
.cinema-storefront-before img,
.cinema-storefront-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinema-storefront > img,
.cinema-storefront-before img {
  object-fit: cover;
}

.cinema-storefront-before {
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.cinema-storefront-before img {
  filter: none;
}

.cinema-storefront-shade {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 7, 5, 0.42), transparent 37%, transparent 80%, rgba(3, 7, 5, 0.12));
}

.cinema-storefront-divider {
  position: absolute;
  z-index: 8;
  top: -1px;
  bottom: -1px;
  left: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.32);
}

.cinema-storefront-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(11, 13, 12, 0.78);
  transform: translate(-50%, -50%);
}

.cinema-storefront-divider svg {
  width: 16px;
}

.cinema-storefront-label,
.cinema-callout {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 #fff;
  color: var(--cinema-text);
}

.cinema-storefront-label {
  top: 22px;
  min-height: 50px;
  gap: 10px;
  padding: 9px 16px 9px 9px;
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
}

.cinema-storefront-label-before { left: 22px; }
.cinema-storefront-label-after {
  right: 22px;
  border-color: rgba(71, 201, 154, 0.4);
  background: rgba(232, 255, 246, 0.97);
}

.cinema-storefront-label i,
.cinema-callout > i {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(235, 101, 91, 0.16);
  color: #ff8c82;
  font-style: normal;
  font-weight: 800;
}

.cinema-storefront-label i {
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.cinema-storefront-label-after i,
[data-positive] > i {
  background: rgba(71, 201, 154, 0.17);
  color: var(--cinema-green-light);
}

.cinema-callout {
  width: max-content;
  max-width: min(248px, 24vw);
  min-height: 56px;
  gap: 11px;
  padding: 11px 16px 11px 11px;
  border-radius: 999px;
}

.cinema-callout[data-negative] {
  border-color: rgba(235, 101, 91, 0.28);
}

.cinema-callout[data-positive] {
  border-color: rgba(71, 201, 154, 0.34);
}

.cinema-callout > i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  font-size: 13px;
}

.cinema-callout > i svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cinema-callout span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.cinema-callout b {
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.12;
}

.cinema-callout small {
  color: #526159;
  font-size: clamp(9.5px, 0.58vw, 10.5px);
  font-weight: 500;
  line-height: 1.25;
}

.cinema-callout-paper { top: 50%; left: 3%; }
.cinema-callout-review-lost { top: 23%; left: 28%; }
.cinema-callout-relance { bottom: 11%; left: 6%; }
.cinema-callout-qr { bottom: 22%; left: 55%; }
.cinema-callout-review { top: 23%; left: 53%; }
.cinema-callout-wallet { top: 44%; right: 5%; }
.cinema-callout-return { right: 24%; bottom: 7%; }

@media (min-width: 961px) {
  .cinema-callout::after {
    position: absolute;
    z-index: -1;
    top: var(--pin-top, 100%);
    left: var(--pin-left, 50%);
    width: var(--pin-length, 74px);
    height: 20px;
    background:
      radial-gradient(circle at calc(100% - 10px) 50%, #fff 0 3px, rgba(255, 255, 255, 0.38) 3.5px 9px, transparent 9.5px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) left center / calc(100% - 18px) 1px no-repeat;
    content: "";
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.42));
    pointer-events: none;
    transform: translateY(-50%) rotate(var(--pin-angle, 45deg));
    transform-origin: left center;
  }

  .cinema-callout-paper { --pin-top: 92%; --pin-left: 76%; --pin-angle: 42deg; --pin-length: 78px; }
  .cinema-callout-review-lost { --pin-top: 94%; --pin-left: 72%; --pin-angle: 53deg; --pin-length: 72px; }
  .cinema-callout-relance { --pin-top: 8%; --pin-left: 76%; --pin-angle: -42deg; --pin-length: 78px; }
  .cinema-callout-qr { --pin-top: 8%; --pin-left: 24%; --pin-angle: -132deg; --pin-length: 74px; }
  .cinema-callout-review { --pin-top: 94%; --pin-left: 34%; --pin-angle: 132deg; --pin-length: 76px; }
  .cinema-callout-wallet { --pin-top: 88%; --pin-left: 18%; --pin-angle: 142deg; --pin-length: 74px; }
  .cinema-callout-return { --pin-top: 10%; --pin-left: 72%; --pin-angle: -50deg; --pin-length: 76px; }
}

[data-positive] {
  opacity: 0;
}

/* Scene 03 — product theatre */
.cinema-product {
  position: relative;
  height: 430vh;
  min-height: 3010px;
  background: #07100d;
  color: #fff;
}

.cinema-product-sticky {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(30px, 4vw, 70px);
  padding: clamp(104px, 13vh, 140px) max(6vw, 70px) 40px;
  background:
    radial-gradient(circle at 68% 42%, rgba(71, 201, 154, 0.18), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(24, 164, 119, 0.1), transparent 24%),
    linear-gradient(140deg, #07100d 0%, #0b1511 54%, #07100d 100%);
}

.cinema-product-copy {
  position: relative;
  z-index: 10;
  align-self: start;
}

.cinema-product-copy h2 {
  font-size: clamp(47px, 4.2vw, 68px);
}

.cinema-product-copy > p {
  width: min(100%, 450px);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.cinema-product-steps {
  display: grid;
  gap: 0;
  width: min(100%, 440px);
  margin-top: 34px;
}

.cinema-product-steps button {
  position: relative;
  display: grid;
  min-height: 40px;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}

.cinema-product-steps button:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 24px;
  bottom: -16px;
  left: 4px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.cinema-product-steps button i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #09120e;
}

.cinema-product-steps button span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cinema-product-steps button.is-active {
  color: #fff;
}

.cinema-product-steps button.is-active i {
  border-color: var(--cinema-green-light);
  background: var(--cinema-green-light);
  box-shadow: 0 0 0 5px rgba(71, 201, 154, 0.12);
}

.cinema-push-proof {
  display: flex;
  width: min(100%, 440px);
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  padding: 14px;
  border: 1px solid rgba(71, 201, 154, 0.19);
  border-radius: 14px;
  background: rgba(24, 164, 119, 0.08);
}

.cinema-push-proof > span,
.cinema-push-notification > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(71, 201, 154, 0.14);
  color: var(--cinema-green-light);
}

.cinema-push-proof svg,
.cinema-push-notification svg {
  width: 16px;
}

.cinema-push-proof div {
  display: grid;
  gap: 3px;
}

.cinema-push-proof strong {
  font-size: 12px;
}

.cinema-push-proof small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.4;
}

.cinema-product-descriptions {
  position: relative;
  width: min(100%, 440px);
  min-height: 120px;
  margin-top: 25px;
}

.cinema-product-descriptions article {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
  visibility: hidden;
}

.cinema-product-descriptions article.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cinema-product-descriptions small {
  color: var(--cinema-green-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cinema-product-descriptions h3 {
  margin: 7px 0 6px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.cinema-product-descriptions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.cinema-theatre {
  position: relative;
  align-self: stretch;
  min-width: 0;
  perspective: 1300px;
}

.cinema-theatre-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48vw, 650px);
  height: min(48vw, 650px);
  border: 1px solid rgba(71, 201, 154, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232, 249, 242, 0.12), transparent 18%),
    radial-gradient(circle, rgba(24, 164, 119, 0.16), rgba(24, 164, 119, 0.015) 53%, transparent 70%);
  transform: translate(-50%, -48%);
}

.cinema-theatre-aura::before,
.cinema-theatre-aura::after {
  position: absolute;
  border: 1px solid rgba(71, 201, 154, 0.065);
  border-radius: 50%;
  content: "";
}

.cinema-theatre-aura::before { inset: 11%; }
.cinema-theatre-aura::after { inset: 24%; }

.cinema-theatre-platform {
  position: absolute;
  right: 4%;
  bottom: 7%;
  left: 4%;
  height: 27%;
  border: 1px solid rgba(219, 247, 237, 0.34);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 249, 242, 0.86), rgba(145, 202, 181, 0.46) 50%, rgba(24, 82, 61, 0.12) 70%, transparent 74%);
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.25));
  transform: rotateX(67deg);
}

.cinema-theatre-platform i {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(71, 201, 154, 0.18);
  border-radius: 50%;
}

.cinema-product-layer {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 50%;
  width: min(35vw, 500px);
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(27, 41, 35, 0.94), rgba(13, 21, 17, 0.98));
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(100px, 40px, -80px) scale(0.9);
  backface-visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}

.cinema-product-layer::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.28), transparent 28%, transparent 66%, rgba(71, 201, 154, 0.1)),
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.16), transparent 33%);
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.cinema-product-layer.is-active {
  z-index: 5;
}

.cinema-layer-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--cinema-display);
  font-size: 12px;
  font-weight: 700;
}

.cinema-product-layer > strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.cinema-layer-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(155deg, #eefbf6, #ccefe1);
  color: var(--cinema-text);
}

.cinema-layer-qr > strong,
.cinema-layer-qr .cinema-layer-index {
  color: rgba(11, 13, 12, 0.46);
}

.cinema-qr {
  width: 164px;
  filter: drop-shadow(0 18px 25px rgba(15, 60, 42, 0.12));
}

.cinema-layer-qr small {
  color: #52625b;
  font-size: 10px;
}

.cinema-layer-game {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  background: linear-gradient(155deg, #171a18, #0e1713);
}

.cinema-wheel {
  position: relative;
  display: grid;
  width: 185px;
  height: 185px;
  margin: 16px 0 7px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: conic-gradient(var(--cinema-green) 0 45deg, #fff 45deg 90deg, #8de1c1 90deg 135deg, #fff 135deg 180deg, var(--cinema-green) 180deg 225deg, #fff 225deg 270deg, #8de1c1 270deg 315deg, #fff 315deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}

.cinema-wheel > i {
  position: absolute;
  top: -16px;
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 18px solid #fff;
}

.cinema-wheel span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--cinema-black);
  color: #fff;
}

.cinema-wheel svg {
  width: 24px;
}

.cinema-layer-game > small,
.cinema-layer-review > small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.cinema-layer-game > b {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cinema-layer-review {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(155deg, #1d2420, #101512);
  color: #fff;
  text-align: center;
}

.cinema-layer-review > strong,
.cinema-layer-review .cinema-layer-index {
  color: rgba(255, 255, 255, 0.48);
}

.cinema-review-g {
  font-family: Arial, sans-serif;
  font-size: 57px;
  font-weight: 800;
  color: #4285f4;
}

.cinema-review-stars {
  color: #f6aa0e;
  font-size: 25px;
  letter-spacing: 0.08em;
}

.cinema-layer-review > b {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.cinema-layer-review > small {
  width: 80%;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.5;
}

.cinema-review-button {
  margin-top: 5px;
  padding: 11px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--cinema-black);
  font-size: 10px;
  font-weight: 800;
}

.cinema-layer-wallet {
  min-height: 680px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cinema-layer-wallet::before {
  display: none;
}

.cinema-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 650px;
  padding: 8px;
  border: 3px solid #66726c;
  border-radius: 39px;
  background: #050605;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.cinema-phone-island {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #050605;
  transform: translateX(-50%);
}

.cinema-phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 50px 13px 18px;
  border-radius: 31px;
  background: linear-gradient(160deg, #1d2420, #101512);
  color: #fff;
}

.cinema-wallet-pass {
  display: grid;
  min-height: 184px;
  gap: 4px;
  padding: 18px;
  border-radius: 17px;
  background: linear-gradient(145deg, #0a7c5b, #1aa57a);
  color: #fff;
  box-shadow: 0 20px 40px rgba(16, 118, 84, 0.24);
}

.cinema-wallet-pass small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
}

.cinema-wallet-pass strong {
  font-size: 15px;
}

.cinema-wallet-pass b {
  align-self: end;
  font-size: 18px;
}

.cinema-wallet-message {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  min-height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #202723;
}

.cinema-wallet-message strong { font-size: 11px; }
.cinema-wallet-message small { color: rgba(255, 255, 255, 0.55); font-size: 8px; line-height: 1.5; }
.cinema-wallet-message span { color: var(--cinema-green-light); font-size: 8px; font-weight: 800; }

.cinema-push-notification {
  position: absolute;
  z-index: 5;
  right: 18%;
  bottom: 10%;
  display: flex;
  width: 250px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(26, 34, 30, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.cinema-push-notification > span { width: 30px; height: 30px; }
.cinema-push-notification div { display: grid; gap: 3px; }
.cinema-push-notification strong { font-size: 9px; }
.cinema-push-notification small { color: rgba(255, 255, 255, 0.5); font-size: 7px; }
.cinema-push-notification em { margin-left: auto; color: var(--cinema-green-light); font-size: 7px; font-style: normal; }

.cinema-theatre-progress {
  position: absolute;
  right: 10%;
  bottom: 4%;
  left: 10%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.cinema-theatre-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cinema-green-light);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* Calm lower landing */
.cinema-faq {
  position: relative;
  padding: 130px 0;
  background: #fff;
}

.cinema-faq h2,
.cinema-contact h2 {
  margin: 0;
  font-family: var(--cinema-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.cinema-faq header p {
  margin: 0;
  color: var(--cinema-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cinema-sectors {
  position: relative;
  isolation: isolate;
  padding: 150px 0 165px;
  background:
    radial-gradient(circle at 18% 18%, rgba(71, 201, 154, 0.16), transparent 26%),
    linear-gradient(135deg, #f4f7f5 0%, #eaf0ec 100%);
  overflow: clip;
}

.cinema-sectors::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(16, 49, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 49, 36, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

.cinema-sectors-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(52px, 7vw, 126px);
}

.cinema-sectors-head {
  position: sticky;
  top: 116px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.cinema-sectors h2 {
  margin: 0;
  font-family: var(--cinema-display);
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.cinema-sectors h2 span {
  color: var(--cinema-green);
}

.cinema-sector-meter {
  width: min(100%, 230px);
  margin-top: clamp(72px, 10vh, 108px);
}

.cinema-sector-meter > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 17px;
}

.cinema-sector-meter strong {
  font-family: var(--cinema-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.cinema-sector-meter span {
  color: rgba(16, 19, 17, 0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cinema-sector-meter > i {
  display: block;
  height: 2px;
  background: rgba(16, 49, 36, 0.12);
  overflow: hidden;
}

.cinema-sector-meter > i b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cinema-green);
  transform: scaleX(0.2);
  transform-origin: 0 50%;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-sector-content {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) clamp(216px, 19vw, 268px);
  align-items: stretch;
  gap: clamp(36px, 4.5vw, 70px);
}

.cinema-sector-list {
  min-width: 0;
  border-top: 1px solid rgba(16, 49, 36, 0.14);
}

.cinema-sector-visual {
  position: relative;
  min-width: 0;
  pointer-events: none;
}

.cinema-sector-viewport {
  position: sticky;
  top: max(108px, calc(50svh - 178px));
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(16, 49, 36, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(18, 52, 39, 0.16);
}

.cinema-sector-track {
  width: 100%;
  height: 500%;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cinema-sector-track figure {
  width: 100%;
  height: 20%;
  margin: 0;
  overflow: hidden;
}

.cinema-sector-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-sector-track figure.is-active img {
  transform: scale(1);
}

.cinema-sector-item {
  position: relative;
  display: grid;
  min-height: 205px;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 37px 0;
  border-bottom: 1px solid rgba(16, 49, 36, 0.14);
}

.cinema-sector-item::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -28px;
  width: 3px;
  content: "";
  background: var(--cinema-green);
  opacity: 0;
  transform: scaleY(0.24);
  transition: opacity 260ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-sector-item > span {
  align-self: start;
  padding-top: 12px;
  color: #526b61;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 350ms ease;
}

.cinema-sector-item > div {
  transform: translateX(13px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-sector-item h3 {
  margin: 0;
  color: rgba(16, 19, 17, 0.52);
  font-family: var(--cinema-display);
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
  transition: color 350ms ease;
}

.cinema-sector-item p {
  max-width: 610px;
  margin: 17px 0 0;
  color: #59655f;
  font-size: 16px;
  line-height: 1.55;
  transition: color 350ms ease;
}

.cinema-sector-item.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.cinema-sector-item.is-active > span {
  color: #087a58;
}

.cinema-sector-item.is-active > div {
  transform: translateX(0);
}

.cinema-sector-item.is-active h3 {
  color: var(--cinema-text);
}

.cinema-sector-item.is-active p {
  color: #4f5c56;
}

@media (hover: hover) {
  .cinema-sector-item:hover h3 { color: var(--cinema-text); }
  .cinema-sector-item:hover > div { transform: translateX(3px); }
}

.cinema-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
}

.cinema-faq header p {
  margin-top: 24px;
}

.cinema-faq-list {
  border-top: 1px solid var(--cinema-line);
}

.cinema-faq-list article {
  border-bottom: 1px solid var(--cinema-line);
}

.cinema-faq-list button {
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cinema-text);
  cursor: pointer;
  text-align: left;
}

.cinema-faq-list button span {
  font-size: 15px;
  font-weight: 700;
}

.cinema-faq-list button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.cinema-faq-list button i::before,
.cinema-faq-list button i::after {
  position: absolute;
  top: 8px;
  right: 2px;
  left: 2px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.cinema-faq-list button i::after {
  transform: rotate(90deg);
}

.cinema-faq-list article.is-open button i::after {
  transform: rotate(0);
}

.cinema-faq-list article > div {
  padding: 0 50px 24px 0;
}

.cinema-faq-list article > div p {
  margin: 0;
  color: var(--cinema-muted);
  font-size: 13px;
  line-height: 1.7;
}

.cinema-contact {
  padding: 24px;
  background: #fff;
}

.cinema-contact-card {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 50px;
  padding: clamp(45px, 7vw, 100px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(71, 201, 154, 0.15), transparent 27%),
    var(--cinema-black);
  color: #fff;
}

.cinema-contact-card > div > small {
  display: block;
  margin-bottom: 22px;
  color: var(--cinema-green-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cinema-contact h2 {
  font-size: clamp(55px, 7vw, 100px);
}

.cinema-contact-card p {
  width: min(100%, 520px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.cinema-contact-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 10px;
}

.cinema-contact-actions .cinema-btn {
  width: 100%;
}

.cinema-contact-actions .cinema-btn-primary {
  border-color: #fff;
  background: #fff;
  color: var(--cinema-black) !important;
}

.cinema-contact-actions .cinema-btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.cinema-contact-actions > small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.cinema-footer {
  padding: 78px 0 28px;
  background: var(--cinema-black);
  color: #fff;
}

.cinema-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.62fr);
  gap: 50px;
}

.cinema-footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.cinema-footer-grid img {
  width: 110px;
  height: auto;
}

.cinema-footer-grid p {
  width: min(100%, 330px);
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.6;
}

.cinema-footer-grid strong {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cinema-footer-grid a {
  font-size: 11px;
}

.cinema-footer-bottom {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  flex-direction: row !important;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

/* User-selected dark theme keeps the editorial hierarchy. */
html[data-theme="dark"] .cinema-hero,
html[data-theme="dark"] .cinema-hero-sticky,
html[data-theme="dark"] .cinema-faq {
  background: #0f1210;
  color: #fff;
}

html[data-theme="dark"] .cinema-hero-copy h1,
html[data-theme="dark"] .cinema-faq h2,
html[data-theme="dark"] .cinema-faq-list button {
  color: #fff;
}

html[data-theme="dark"] .cinema-sectors {
  background:
    radial-gradient(circle at 18% 18%, rgba(71, 201, 154, 0.13), transparent 26%),
    linear-gradient(135deg, #111713 0%, #0c110e 100%);
  color: #fff;
}

html[data-theme="dark"] .cinema-sectors::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

html[data-theme="dark"] .cinema-sector-list,
html[data-theme="dark"] .cinema-sector-item {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .cinema-sector-viewport {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .cinema-sector-meter strong,
html[data-theme="dark"] .cinema-sector-item.is-active h3,
html[data-theme="dark"] .cinema-sector-item:hover h3 {
  color: #fff;
}

html[data-theme="dark"] .cinema-sector-meter span,
html[data-theme="dark"] .cinema-sector-item > span {
  color: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .cinema-sector-meter > i {
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .cinema-sector-item h3 {
  color: rgba(255, 255, 255, 0.46);
}

html[data-theme="dark"] .cinema-sector-item p {
  color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .cinema-sector-item.is-active > span {
  color: var(--cinema-green-light);
}

html[data-theme="dark"] .cinema-sector-item.is-active p {
  color: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .cinema-btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

html[data-theme="dark"] .cinema-dashboard,
html[data-theme="dark"] .cinema-dashboard-top,
html[data-theme="dark"] .cinema-dashboard-body,
html[data-theme="dark"] .cinema-dashboard-body aside,
html[data-theme="dark"] .cinema-dashboard-main {
  background-color: #fff;
  color: #171717;
  color-scheme: light;
}

/* Tablet and mobile: sticky chapters with contained, touch-safe compositions. */
@media (max-width: 1339px) {
  .cinema-rail { display: none; }
}

@media (max-width: 1100px) {
  .cinema-dashboard { right: 36px; left: 36px; }
  .cinema-signal-review { left: 20px; }
  .cinema-signal-reward { right: 20px; left: auto; }
  .cinema-transformation-sticky,
  .cinema-product-sticky { padding-right: 38px; padding-left: 38px; }
  .cinema-storefront { right: 38px; left: 38px; }
  .cinema-product-sticky { grid-template-columns: minmax(310px, 0.82fr) minmax(430px, 1.18fr); }
}

@media (min-width: 961px) and (max-width: 1339px) {
  .cinema-signal-review { bottom: min(39vh, 310px); left: 36px; }
  .cinema-signal-reward { right: 24px; bottom: min(28vh, 225px); left: auto; }
  .cinema-signal-wallet { right: 36px; bottom: min(37vh, 295px); }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 72px; }
  body { overflow-x: clip; }
  .cinema-wrap,
  .nav-wrap > .wrap { width: min(100% - 36px, 720px); }

  .nav-wrap .nav { min-height: 68px; }
  .landing-cinema.is-scrolled .nav-wrap::before { background: #fff; }
  .landing-cinema.is-dark-scene.is-scrolled .nav-wrap::before { background: #0b0d0c; }
  .landing-cinema.is-lower-header .nav-wrap::before { bottom: -4px; }
  .nav-wrap .brand { width: 108px; }
  .nav-hamburger { display: flex; }
  .nav-hamburger[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

  .nav-wrap .links {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 72px);
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(11, 13, 12, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 25px 70px rgba(11, 30, 22, 0.16);
    color: var(--cinema-text);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-wrap .links.is-open { display: flex; }
  .nav-wrap .links > a:not(.btn) { padding: 10px 4px; font-size: 14px; }
  .nav-wrap .links > a:not(.btn)::after { display: none; }
  .nav-wrap .btn { width: 100%; }
  .theme-toggle { position: static; align-self: flex-end; }
  body.is-menu-open { overflow: hidden; }
  body.is-menu-open::before {
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(7, 16, 13, 0.48);
    backdrop-filter: blur(7px);
    content: "";
  }
  .nav-wrap .links .theme-toggle {
    border-color: rgba(11, 13, 12, 0.14) !important;
    background: #f7f8f6;
    color: var(--cinema-text);
  }
  .nav-wrap .links .btn.secondary {
    border-color: rgba(11, 13, 12, 0.14) !important;
    background: #fff;
    color: var(--cinema-text);
  }

  .cinema-hero { height: 178svh; min-height: 1120px; }
  .cinema-transformation { height: 228svh; min-height: 1350px; }
  .cinema-product { height: 415svh; min-height: 2480px; }

  .cinema-hero-sticky,
  .cinema-transformation-sticky,
  .cinema-product-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 660px;
    overflow: clip;
  }

  .cinema-hero-sticky {
    display: flex;
    min-height: 660px;
    padding-top: 1px;
  }

  .cinema-hero-copy {
    width: min(100% - 36px, 660px);
    margin-inline: auto;
    padding-top: 104px;
  }

  .cinema-hero-copy h1 { font-size: clamp(46px, 9vw, 66px); }
  .cinema-hero-copy > p { max-width: 34rem; font-size: 14px; }
  .cinema-hero-product {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: min(54svh, 500px);
    min-height: 380px;
  }
  .cinema-dashboard {
    right: 18px;
    bottom: 0;
    left: 18px;
    height: min(48svh, 460px);
    max-width: 690px;
    margin-inline: auto;
    transform: rotateX(4deg) scale(0.98) translateY(0);
  }
  .cinema-dashboard-body { grid-template-columns: 150px minmax(0, 1fr); }
  .cinema-dashboard-main { padding: 11px 15px 22px; }
  .cinema-dashboard-body aside { padding: 16px 10px 10px; }
  .cinema-dashboard-body aside nav span,
  .cinema-dashboard-body aside nav strong { min-height: 31px; padding-inline: 8px; }
  .cinema-dashboard-kpis { gap: 12px; }
  .cinema-dashboard-overview { min-height: 175px; }
  .cinema-signal { display: none; transform: none; }
  .cinema-signal-review { bottom: min(37svh, 350px); left: 14px; }
  .cinema-signal-reward { right: 14px; bottom: min(33svh, 320px); }
  .cinema-signal-wallet { right: 34px; bottom: 10px; }
  .cinema-scroll-cue { display: none; }

  .cinema-transformation-sticky {
    min-height: 660px;
    padding: 92px 18px 24px;
  }
  .cinema-transformation-head { width: min(100%, 720px); margin-inline: auto; }
  .cinema-transformation-head h2 { font-size: clamp(40px, 8vw, 64px); }
  .cinema-storefront {
    position: absolute;
    right: 18px;
    bottom: 24px;
    left: 18px;
    width: min(calc(100% - 36px), 720px);
    height: min(57svh, 500px);
    min-height: 390px;
    margin: 0 auto;
  }
  .cinema-storefront-before { clip-path: inset(0 18% 0 0); }
  .cinema-storefront-divider { left: 82%; }
  [data-positive] { opacity: 0; }
  .cinema-storefront-label {
    min-height: 46px;
    padding: 8px 13px 8px 8px;
    font-size: 12px;
  }
  .cinema-storefront-label i { width: 28px; height: 28px; }
  .cinema-callout {
    max-width: 190px;
    min-width: 0;
    min-height: 50px;
    gap: 9px;
    padding: 9px 12px 9px 9px;
  }
  .cinema-callout > i { width: 28px; height: 28px; }
  .cinema-callout > i svg { width: 14px; height: 14px; }
  .cinema-callout b { font-size: 12px; }
  .cinema-callout small { font-size: 9.5px; }
  .cinema-callout-review-lost,
  .cinema-callout-relance,
  .cinema-callout-return { display: none; }
  .cinema-callout-paper { top: auto; bottom: 13%; left: 3%; }
  .cinema-callout-qr { bottom: 12%; left: 53%; }
  .cinema-callout-review { top: 24%; left: 53%; }
  .cinema-callout-wallet { top: 46%; right: 3%; }

  .cinema-product-sticky {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 0;
    min-height: 660px;
    padding: 90px 18px 20px;
  }
  .cinema-product-copy,
  .cinema-theatre { width: min(100%, 720px); margin-inline: auto; }
  .cinema-product-copy { position: static; }
  .cinema-product-copy h2,
  .cinema-product-copy > p,
  .cinema-product-steps {
    position: relative;
    z-index: 10;
  }
  .cinema-product-copy h2 { font-size: clamp(40px, 8vw, 64px); }
  .cinema-product-copy > p { max-width: 27rem; margin-top: 12px; }
  .cinema-product-steps,
  .cinema-push-proof { width: 100%; max-width: none; }
  .cinema-product-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
  .cinema-product-steps::before {
    position: absolute;
    top: 17px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    content: "";
  }
  .cinema-product-steps button:not(:last-child)::after { display: none; }
  .cinema-product-steps button {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 10px auto;
    justify-items: center;
    align-items: center;
    min-width: 0;
    gap: 0;
    padding: 0;
    text-align: center;
  }
  .cinema-product-steps button i { margin-inline: auto; }
  .cinema-product-steps button span {
    display: block;
    width: 100%;
    margin-top: 7px;
    font-size: clamp(8px, 2.4vw, 10px);
    line-height: 1.15;
  }
  .cinema-product-descriptions {
    position: absolute;
    right: 18px;
    bottom: 96px;
    left: 18px;
    width: auto;
    max-width: 720px;
    min-height: 92px;
    margin-inline: auto;
    pointer-events: none;
  }
  .cinema-product-descriptions h3 { font-size: 18px; line-height: 1.05; }
  .cinema-product-descriptions p { font-size: 12px; line-height: 1.55; }
  .cinema-push-proof {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    max-width: 720px;
    margin: 0 auto;
  }
  .cinema-theatre {
    position: absolute;
    top: clamp(340px, 41svh, 400px);
    right: 18px;
    left: 18px;
    width: auto;
    max-width: 720px;
    height: min(34svh, 320px);
    min-height: 250px;
    margin-top: 0;
  }
  .cinema-product-layer {
    width: min(78vw, 440px);
    min-height: 260px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    transition: none;
  }
  .cinema-product-layer.is-active { opacity: 1; }
  .cinema-theatre-progress { display: none; }

  .cinema-sectors { padding: 108px 0 118px; }
  .cinema-faq { padding: 94px 0; }
  .cinema-faq-grid { grid-template-columns: 1fr; gap: 25px; }
  .cinema-sectors-layout { grid-template-columns: 1fr; gap: 66px; }
  .cinema-sectors-head {
    position: relative;
    top: auto;
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: end;
    gap: 40px;
  }
  .cinema-sector-content {
    grid-template-columns: minmax(0, 1fr) clamp(190px, 30vw, 240px);
    gap: clamp(34px, 6vw, 54px);
  }
  .cinema-sector-viewport { top: max(96px, calc(50svh - 150px)); }
  .cinema-sector-meter { width: 180px; margin-top: 0; }
  .cinema-sector-item { min-height: 190px; }
  .cinema-sector-item::after { left: -18px; }
  .cinema-contact-card { min-height: 500px; grid-template-columns: 1fr; }
  .cinema-footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 30px; }
}

@media (min-width: 621px) and (max-width: 960px) {
  .cinema-product-copy h2 { font-size: clamp(44px, 7vw, 58px); }
  .cinema-theatre {
    top: clamp(390px, 43svh, 440px);
    height: min(36svh, 350px);
    min-height: 300px;
  }
  .cinema-product-layer {
    width: min(62vw, 460px);
    min-height: clamp(290px, 34svh, 340px);
    padding: 24px;
  }
  .cinema-layer-wallet { min-height: clamp(360px, 42svh, 430px); }
  .cinema-phone {
    width: clamp(180px, 25vw, 210px);
    height: clamp(330px, 38svh, 390px);
  }
  .cinema-push-notification { right: -8%; bottom: 7%; }
}

@media (max-width: 620px) {
  .cinema-wrap,
  .nav-wrap > .wrap { width: min(100% - 28px, 560px); }
  .cinema-hero { height: 190svh; min-height: 1180px; }
  .cinema-transformation { height: 238svh; min-height: 1420px; }
  .cinema-product { height: 435svh; min-height: 2600px; }
  .cinema-hero-sticky,
  .cinema-transformation-sticky,
  .cinema-product-sticky { min-height: 620px; }
  .cinema-hero-copy { width: calc(100% - 28px); padding-top: 96px; }
  .cinema-hero-copy h1 { font-size: clamp(39px, 11.5vw, 51px); line-height: 0.93; }
  .cinema-hero-copy > p { width: 96%; font-size: 12.5px; }
  .cinema-actions { flex-direction: column; width: min(100%, 300px); margin-inline: auto; }
  .cinema-btn { width: 100%; }
  .cinema-hero-product {
    height: min(49svh, 390px);
    min-height: 315px;
  }
  .cinema-dashboard {
    right: 14px;
    bottom: 8px;
    left: 14px;
    height: min(47svh, 400px);
    border-radius: 17px;
  }
  .cinema-dashboard-top { height: 42px; padding: 0 12px; }
  .cinema-dashboard-top > img { width: 32px; }
  .cinema-dashboard-account-actions { gap: 10px; }
  .cinema-dashboard-account-actions span { font-size: 7px; }
  .cinema-dashboard-account-actions span:first-child { display: none; }
  .cinema-dashboard-account-actions svg { width: 12px; height: 12px; }
  .cinema-dashboard-body { height: calc(100% - 42px); grid-template-columns: minmax(0, 1fr); }
  .cinema-dashboard-body aside { display: none; }
  .cinema-dashboard-main { padding: 8px 11px 18px; overflow: hidden; }
  .cinema-dashboard-demo { min-height: 27px; padding-inline: 9px; font-size: 6px; }
  .cinema-dashboard-demo > span { overflow: hidden; text-overflow: ellipsis; }
  .cinema-dashboard-main header { min-height: 38px; }
  .cinema-dashboard-main header h2 { font-size: 17px; }
  .cinema-dashboard-main header > span { padding: 6px 8px; font-size: 7px; }
  .cinema-dashboard-status { min-height: 58px; gap: 9px; padding: 8px 10px; border-radius: 10px; }
  .cinema-dashboard-status > span { width: 26px; height: 26px; }
  .cinema-dashboard-status strong { font-size: 8px; }
  .cinema-dashboard-status p { font-size: 7px; }
  .cinema-dashboard-kpis { grid-template-columns: 1fr; gap: 4px; margin-top: 6px; }
  .cinema-dashboard-kpis article {
    display: flex;
    min-height: 37px;
    align-items: center;
    justify-content: space-between;
    padding: 4px 9px;
    border-radius: 8px;
    background: #f7f8f6;
  }
  .cinema-dashboard-kpis article > span > svg { width: 22px; height: 22px; padding: 5px; }
  .cinema-dashboard-kpis small { font-size: 7px; }
  .cinema-dashboard-kpis b { font-size: 20px; line-height: 1; }
  .cinema-dashboard-overview { min-height: 166px; margin-top: 6px; padding: 10px 11px 0; }
  .cinema-dashboard-overview-head strong { font-size: 11px; }
  .cinema-dashboard-overview-head > b { display: none; }
  .cinema-dashboard-chart { height: 115px; }
  .cinema-signal { border-radius: 11px; }
  .cinema-signal-review,
  .cinema-signal-reward,
  .cinema-signal-wallet { display: none; }

  .cinema-transformation-sticky { min-height: 620px; padding: 86px 14px 18px; }
  .cinema-transformation-head h2,
  .cinema-product-copy h2 { font-size: clamp(35px, 9.6vw, 47px); line-height: 0.96; }
  .cinema-storefront {
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
    height: min(55svh, 455px);
    min-height: 345px;
  }
  .cinema-storefront > img,
  .cinema-storefront-before img { object-position: 52% center; }
  .cinema-storefront-label {
    top: 13px;
    min-height: 44px;
    padding: 8px 11px 8px 8px;
    font-size: 11.5px;
  }
  .cinema-storefront-label i { width: 26px; height: 26px; }
  .cinema-storefront-label-before { left: 12px; }
  .cinema-storefront-label-after { right: 12px; }
  .cinema-callout {
    max-width: 172px;
    min-height: 44px;
    gap: 8px;
    padding: 8px 11px 8px 8px;
  }
  .cinema-callout > i { width: 26px; height: 26px; font-size: 12px; }
  .cinema-callout > i svg { width: 13px; height: 13px; }
  .cinema-callout b { font-size: 12px; line-height: 1.15; }
  .cinema-callout small { display: none; }
  .cinema-callout-paper { bottom: 11%; left: 2%; }
  .cinema-callout-qr { bottom: 10%; left: 51%; }
  .cinema-callout-review { top: 25%; left: 50%; }
  .cinema-callout-wallet { top: 48%; right: 2%; }

  .cinema-product-sticky { min-height: 620px; padding: 82px 14px 18px; }
  .cinema-product-copy > p { font-size: 12px; line-height: 1.5; }
  .cinema-product-steps { margin-top: 14px; gap: 5px; }
  .cinema-product-steps button span { font-size: 8px; }
  .cinema-theatre {
    top: clamp(300px, 37svh, 322px);
    right: 14px;
    left: 14px;
    height: min(34svh, 270px);
    min-height: 235px;
  }
  .cinema-product-layer { width: min(82vw, 340px); min-height: 230px; padding: 18px; }
  .cinema-layer-wallet { min-height: 310px; }
  .cinema-phone { width: 156px; height: 300px; }
  .cinema-phone-screen { padding: 38px 8px 9px; }
  .cinema-wallet-pass { min-height: 126px; padding: 11px; border-radius: 12px; }
  .cinema-wallet-pass .cinema-wallet-mark { width: 17px; height: 17px; }
  .cinema-wallet-pass small { margin-top: 3px; font-size: 7px; }
  .cinema-wallet-pass strong { font-size: 12px; }
  .cinema-wallet-pass b { font-size: 16px; }
  .cinema-wallet-message { min-height: 88px; gap: 4px; margin-top: 8px; padding: 9px; }
  .cinema-wallet-message strong { font-size: 9px; }
  .cinema-wallet-message small,
  .cinema-wallet-message span { font-size: 7px; }
  .cinema-push-notification { right: -5%; bottom: 5%; width: 198px; }
  .cinema-push-notification em { display: none; }
  .cinema-product-descriptions {
    right: 14px;
    bottom: 92px;
    left: 14px;
    min-height: 82px;
  }
  .cinema-product-descriptions h3 { font-size: 16px; }
  .cinema-product-descriptions p { font-size: 11px; }
  .cinema-push-proof {
    right: 14px;
    bottom: 15px;
    left: 14px;
    align-items: flex-start;
    padding: 10px;
  }
  .cinema-push-proof strong { font-size: 11px; }
  .cinema-push-proof small { font-size: 10px; }

  .cinema-sectors { padding: 86px 0 94px; }
  .cinema-sectors::before { background-size: 52px 52px; }
  .cinema-sectors-layout { gap: 48px; }
  .cinema-sectors-head { display: block; }
  .cinema-sectors h2 { font-size: clamp(47px, 15vw, 62px); }
  .cinema-sector-meter { width: 100%; margin-top: 40px; }
  .cinema-sector-meter > div { margin-bottom: 12px; }
  .cinema-sector-meter strong { font-size: 29px; }
  .cinema-sector-content { display: block; }
  .cinema-sector-list { padding-right: clamp(104px, 32vw, 142px); }
  .cinema-sector-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(94px, 29vw, 124px);
  }
  .cinema-sector-item {
    min-height: 174px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    padding: 27px 0;
  }
  .cinema-sector-item::after { left: -7px; width: 2px; }
  .cinema-sector-item > span { padding-top: 5px; font-size: 9px; }
  .cinema-sector-item > div { transform: translateX(7px); }
  .cinema-sector-item h3 { font-size: clamp(29px, 8.8vw, 40px); line-height: 0.98; }
  .cinema-sector-item p { margin-top: 10px; font-size: 12.5px; line-height: 1.45; }
  .cinema-sector-viewport {
    top: max(84px, calc(50svh - 84px));
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(18, 52, 39, 0.14);
  }

  .cinema-faq h2 { font-size: 43px; }
  .cinema-contact { padding: 10px; }
  .cinema-contact-card { min-height: 590px; padding: 35px 24px; border-radius: 22px; }
  .cinema-contact h2 { font-size: 54px; }
  .cinema-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cinema-footer-grid > div:first-child { grid-column: 1 / -1; }
  .cinema-footer-bottom { align-items: flex-start !important; flex-direction: column !important; gap: 8px; }
}

@media (max-width: 360px) {
  .cinema-storefront-label { font-size: 10px; }
  .cinema-callout { max-width: 148px; }
  .cinema-callout > i { width: 24px; height: 24px; }
  .cinema-callout b { font-size: 10.5px; }
  .cinema-sector-list { padding-right: 92px; }
  .cinema-sector-visual { width: 82px; }
  .cinema-sector-viewport { top: max(82px, calc(50svh - 56px)); border-radius: 16px; }
  .cinema-sector-item { grid-template-columns: 20px minmax(0, 1fr); gap: 5px; }
  .cinema-sector-item h3 { font-size: clamp(27px, 8.6vw, 33px); }
}

@media (max-width: 620px) and (min-height: 561px) and (max-height: 740px) and (orientation: portrait) {
  .cinema-hero-copy { padding-top: 78px; }
  .cinema-hero-copy h1 { font-size: clamp(34px, 10.2vw, 39px); }
  .cinema-hero-copy > p { margin-top: 12px; font-size: 11px; line-height: 1.42; }
  .cinema-actions {
    width: min(100%, 340px);
    flex-direction: row;
    gap: 7px;
    margin-top: 14px;
  }
  .cinema-btn { min-height: 42px; padding-inline: 10px; font-size: 10px; }
  .cinema-hero-product { height: 310px; min-height: 0; }
  .cinema-dashboard { height: 292px; }
  .cinema-signal-review { bottom: 236px; }
  .cinema-signal-reward { bottom: 197px; }

  .cinema-transformation-sticky { padding-top: 76px; }
  .cinema-transformation-head h2 { font-size: 34px; }
  .cinema-storefront { height: 390px; min-height: 0; }

  .cinema-product-sticky { padding-top: 74px; }
  .cinema-product-copy h2 { font-size: 34px; }
  .cinema-product-copy > p { display: none; }
  .cinema-product-steps { margin-top: 12px; }
  .cinema-theatre { top: 226px; height: 226px; min-height: 0; }
  .cinema-product-layer { min-height: 208px; }
  .cinema-layer-wallet { min-height: 270px; }
  .cinema-phone { width: 140px; height: 270px; }
  .cinema-product-descriptions { bottom: 76px; min-height: 70px; }
  .cinema-product-descriptions h3 { margin-top: 4px; font-size: 14px; }
  .cinema-product-descriptions p { font-size: 10px; line-height: 1.35; }
  .cinema-push-proof { bottom: 9px; padding: 8px; }
  .cinema-push-proof > span { width: 28px; height: 28px; }
  .cinema-push-proof strong { font-size: 9px; }
  .cinema-push-proof small { font-size: 8px; }
}

@media (min-width: 961px) and (max-height: 699px) {
  .cinema-hero-sticky,
  .cinema-transformation-sticky,
  .cinema-product-sticky { min-height: 0; }

  .cinema-hero-copy { padding-top: 76px; }
  .cinema-hero-copy h1 { font-size: 44px; line-height: 0.9; }
  .cinema-hero-copy > p { max-width: 520px; margin-top: 12px; font-size: 12px; }
  .cinema-actions { margin-top: 14px; }
  .cinema-hero-product { height: 260px; }
  .cinema-dashboard { bottom: 0; height: 250px; }
  .cinema-signal { display: none; }

  .cinema-transformation-sticky,
  .cinema-product-sticky { padding-top: 76px; padding-bottom: 18px; }
  .cinema-transformation-head h2,
  .cinema-product-copy h2 { font-size: 48px; }
  .cinema-storefront { bottom: 20px; height: min(60vh, 360px); }

  .cinema-product-copy > p { margin-top: 10px; font-size: 12px; }
  .cinema-product-steps { margin-top: 18px; }
  .cinema-product-steps button { min-height: 34px; }
  .cinema-push-proof { margin-top: 16px; padding: 10px; }
  .cinema-product-descriptions { min-height: 90px; margin-top: 14px; }
  .cinema-product-layer { min-height: 380px; padding: 24px; }
  .cinema-phone { width: 250px; height: 480px; }
  .cinema-push-notification { right: 4%; bottom: 8%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cinema-hero,
  .cinema-transformation,
  .cinema-product { height: auto; min-height: 0; }
  .cinema-hero-sticky,
  .cinema-transformation-sticky,
  .cinema-product-sticky { position: relative; height: auto; min-height: 0; overflow: hidden; }
  .cinema-hero-sticky { min-height: 980px; }
  .cinema-dashboard { transform: none; }
  .cinema-transformation-sticky { min-height: 920px; }
  .cinema-storefront-before { clip-path: inset(0 50% 0 0); }
  .cinema-storefront-divider { left: 50%; }
  [data-positive] { opacity: 1; }
  .cinema-product-sticky { min-height: 980px; }
  .cinema-product-layer { opacity: 0; transform: translate(-50%, -45%); }
  .cinema-product-layer.is-active { opacity: 1; }
  .cinema-sector-meter { display: none; }
  .cinema-sector-item > div { transform: none; }
  .cinema-sector-item::after { display: none; }
}

.cinema-static .cinema-hero,
.cinema-static .cinema-transformation,
.cinema-static .cinema-product { height: auto; min-height: 0; }

.cinema-static .cinema-hero-sticky,
.cinema-static .cinema-transformation-sticky,
.cinema-static .cinema-product-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.cinema-static .cinema-hero-sticky { min-height: 980px; }
.cinema-static .cinema-transformation-sticky { min-height: 920px; }
.cinema-static .cinema-product-sticky { min-height: 980px; }
.cinema-static .cinema-product-layer.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1) rotateY(0deg);
}
.cinema-static .cinema-sector-meter { display: none; }
.cinema-static .cinema-sector-item > div { transform: none; }
.cinema-static .cinema-sector-item::after { display: none; }

@media (max-width: 960px) {
  .cinema-static .cinema-hero-sticky { min-height: 980px; }
  .cinema-static .cinema-transformation-sticky { min-height: 860px; }
  .cinema-static .cinema-product-sticky { min-height: 980px; }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .landing-cinema.is-dark-scene .nav-wrap::before { background: #0b0d0c; }

  .cinema-hero,
  .cinema-transformation { height: auto; min-height: 0; }

  .cinema-product {
    height: 320svh;
    min-height: 1180px;
  }

  .cinema-hero-sticky,
  .cinema-transformation-sticky,
  .cinema-hero-sticky,
  .cinema-transformation-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: hidden;
  }

  .cinema-hero-sticky { min-height: 720px; }
  .cinema-hero-copy { padding-top: 78px; }
  .cinema-hero-copy h1 { font-size: 38px; }
  .cinema-hero-copy > p { max-width: 500px; margin-top: 12px; }
  .cinema-actions { margin-top: 14px; }
  .cinema-hero-product { height: 300px; min-height: 0; }
  .cinema-dashboard { height: 270px; }
  .cinema-signal-review { bottom: 230px; }
  .cinema-signal-reward { right: 14px; bottom: 190px; left: auto; }
  .cinema-signal-wallet { display: none; }

  .cinema-transformation-sticky { min-height: 660px; padding-top: 76px; }
  .cinema-transformation-head h2 { font-size: 40px; }
  .cinema-storefront { height: 440px; min-height: 0; }
  [data-positive] { opacity: 1; }

  .cinema-product-sticky {
    position: sticky;
    top: 0;
    display: grid;
    height: 100svh;
    min-height: 0;
    grid-template-columns: minmax(270px, 0.78fr) minmax(360px, 1.22fr);
    grid-template-rows: 1fr;
    gap: 22px;
    padding: 76px 40px 14px;
    overflow: hidden;
  }
  .cinema-product-copy {
    position: relative;
    width: auto;
    height: 100%;
    min-width: 0;
    margin: 0;
  }
  .cinema-product-copy h2 { font-size: 36px; line-height: 0.9; }
  .cinema-product-copy > p { display: none; }
  .cinema-product-steps { gap: 4px; margin-top: 12px; }
  .cinema-product-steps button { min-height: 34px; }
  .cinema-product-steps button span { margin-top: 5px; font-size: 7px; line-height: 1.1; }
  .cinema-theatre {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
  }
  .cinema-product-layer { width: min(46vw, 400px); min-height: 220px; padding: 20px; }
  .cinema-layer-wallet { min-height: 292px; }
  .cinema-phone { width: 155px; height: 292px; }
  .cinema-phone-screen { padding: 35px 7px 8px; }
  .cinema-wallet-pass { min-height: 116px; gap: 3px; padding: 10px; border-radius: 11px; }
  .cinema-wallet-pass .cinema-wallet-mark { width: 16px; height: 16px; }
  .cinema-wallet-pass small { margin-top: 2px; font-size: 6px; }
  .cinema-wallet-pass strong { font-size: 10px; }
  .cinema-wallet-pass b { font-size: 14px; }
  .cinema-wallet-message { min-height: 64px; gap: 3px; margin-top: 6px; padding: 7px; border-radius: 10px; }
  .cinema-wallet-message strong { font-size: 8px; }
  .cinema-wallet-message small,
  .cinema-wallet-message span { font-size: 6px; line-height: 1.3; }
  .cinema-push-notification { right: -5%; bottom: 5%; width: 190px; }
  .cinema-product-descriptions {
    right: auto;
    bottom: 66px;
    left: 0;
    width: 100%;
    min-height: 54px;
    margin: 0;
  }
  .cinema-product-descriptions h3 { margin: 4px 0; font-size: 14px; }
  .cinema-product-descriptions p { font-size: 9px; line-height: 1.35; }
  .cinema-push-proof {
    right: auto;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 7px 9px;
  }
  .cinema-push-proof > span { width: 28px; height: 28px; }
  .cinema-push-proof strong { font-size: 9px; }
  .cinema-push-proof small { font-size: 8px; }
  .cinema-product-layer.is-active { opacity: 1; }
}

@media (max-width: 740px) and (max-height: 560px) and (orientation: landscape) {
  .cinema-product-sticky {
    grid-template-columns: minmax(205px, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
    padding: 68px 18px 8px;
  }
  .cinema-product-copy h2 { font-size: 30px; }
  .cinema-product-steps { margin-top: 10px; }
  .cinema-product-steps button { min-height: 32px; }
  .cinema-product-steps button span { margin-top: 4px; font-size: 6px; }
  .cinema-product-layer { width: min(46vw, 270px); min-height: 180px; padding: 14px; }
  .cinema-layer-qr { gap: 8px; }
  .cinema-qr { width: 110px; }
  .cinema-layer-qr small { font-size: 7px; }
  .cinema-layer-game { gap: 5px; }
  .cinema-wheel {
    width: 120px;
    height: 120px;
    margin: 5px 0 2px;
    border-width: 5px;
  }
  .cinema-wheel span { width: 40px; height: 40px; border-width: 4px; }
  .cinema-wheel svg { width: 16px; }
  .cinema-layer-game > b { font-size: 15px; }
  .cinema-layer-game > small { font-size: 7px; }
  .cinema-layer-review { gap: 6px; }
  .cinema-review-g { font-size: 38px; }
  .cinema-review-stars { font-size: 18px; }
  .cinema-layer-review > b { font-size: 14px; }
  .cinema-layer-review > small { font-size: 7px; line-height: 1.3; }
  .cinema-review-button { margin-top: 2px; padding: 7px 16px; font-size: 8px; }
  .cinema-layer-wallet { min-height: 240px; }
  .cinema-phone { width: 125px; height: 235px; }
  .cinema-phone-screen { padding: 31px 6px 7px; }
  .cinema-wallet-pass { min-height: 94px; padding: 8px; }
  .cinema-wallet-pass strong { font-size: 9px; }
  .cinema-wallet-pass b { font-size: 12px; }
  .cinema-wallet-message { min-height: 54px; margin-top: 5px; padding: 6px; }
  .cinema-push-notification { right: -3%; bottom: 4%; width: 160px; padding: 8px; }
  .cinema-product-descriptions { bottom: 68px; min-height: 46px; }
  .cinema-product-descriptions h3 { font-size: 12px; }
  .cinema-product-descriptions p { font-size: 8px; }
  .cinema-push-proof { bottom: 6px; padding: 5px 7px; }
  .cinema-push-proof > span { width: 24px; height: 24px; }
  .cinema-push-proof strong { font-size: 8px; }
  .cinema-push-proof small { font-size: 7px; }
}

/* Landing precision pass: real product previews and quieter final CTA. */
.cinema-google-logo,
.cinema-review-google {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.cinema-google-logo {
  width: 28px;
  height: 28px;
}

.cinema-signal-wallet {
  right: 8vw;
  bottom: min(66vh, 650px);
  width: 250px;
  min-height: 156px;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, #087453 0%, #16a276 100%);
  box-shadow: 0 24px 60px rgba(12, 92, 66, 0.24);
}

.cinema-pkpass-mini-head,
.cinema-pkpass-mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cinema-pkpass-mini-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 800;
}

.cinema-pkpass-mini-head img {
  width: 21px;
  height: 16px;
  object-fit: contain;
}

.cinema-pkpass-mini-head > span:last-child,
.cinema-pkpass-mini-footer > span {
  display: grid;
  gap: 2px;
  text-align: right;
}

.cinema-pkpass-mini-head small,
.cinema-pkpass-mini-goal small,
.cinema-pkpass-mini-footer small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cinema-pkpass-mini-head b {
  margin: 0;
  font-size: 17px;
  line-height: 1;
}

.cinema-pkpass-mini-goal {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cinema-pkpass-mini-goal strong {
  font-size: 12px;
}

.cinema-pkpass-mini-footer b {
  margin: 0;
  font-size: 9px;
}

.cinema-pkpass-mini-footer img {
  width: 34px;
  height: 34px;
  padding: 3px;
  border-radius: 6px;
  background: #fff;
}

.cinema-dashboard-activity {
  min-height: 150px;
  margin-top: 9px;
  padding: 13px;
  border-radius: 13px;
  background: #f7f8f6;
}

.cinema-dashboard-activity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 11px;
}

.cinema-dashboard-activity-list > span {
  display: grid;
  min-width: 0;
  min-height: 73px;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid #e9eeeb;
  border-radius: 10px;
  background: #fff;
}

.cinema-dashboard-activity-list i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: #e7f8f1;
  color: #12845f;
}

.cinema-dashboard-activity-list i.is-review {
  background: #fff7e8;
}

.cinema-dashboard-activity-list i.is-wallet {
  background: #edf2ff;
  color: #4666be;
}

.cinema-dashboard-activity-list svg,
.cinema-dashboard-activity-list img {
  width: 16px;
  height: 16px;
}

.cinema-dashboard-activity-list svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cinema-dashboard-activity-list b {
  display: grid;
  min-width: 0;
  gap: 3px;
  color: #171717;
  font-size: 9px;
}

.cinema-dashboard-activity-list small,
.cinema-dashboard-activity-list time {
  color: #7a857f;
  font-size: 6px;
  font-style: normal;
  font-weight: 500;
}

.cinema-dashboard-activity-list time {
  grid-column: 2;
}

.cinema-theatre-aura {
  width: min(52vw, 720px);
  height: min(40vw, 540px);
  border: 0;
  border-radius: 45%;
  background: radial-gradient(ellipse, rgba(71, 201, 154, 0.22), rgba(232, 249, 242, 0.08) 48%, transparent 72%);
  filter: blur(18px);
}

.cinema-theatre-aura::before,
.cinema-theatre-aura::after {
  display: none;
}

.cinema-theatre::before,
.cinema-theatre::after {
  display: none;
}

.cinema-qr-preview {
  display: grid;
  width: min(78%, 300px);
  justify-items: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(11, 13, 12, 0.07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 60, 42, 0.14);
}

.cinema-qr-preview > span {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  color: #17201c;
  font-size: 10px;
  font-weight: 800;
}

.cinema-qr-preview > span img {
  width: 21px;
  height: 16px;
  object-fit: contain;
}

.cinema-qr-preview .cinema-qr {
  width: min(74%, 172px);
  margin: 2px 0;
  border-radius: 12px;
  filter: none;
}

.cinema-qr-preview > b {
  color: #111713;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.cinema-qr-preview > small {
  color: #6b7771;
  font-size: 8px;
}

.cinema-game-preview {
  display: grid;
  width: min(78%, 300px);
  justify-items: center;
  gap: 4px;
  padding: 20px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  text-align: center;
}

.cinema-game-preview > small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
}

.cinema-game-preview h4 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.cinema-game-preview .cinema-wheel {
  width: 154px;
  height: 154px;
  margin: 12px 0 7px;
}

.cinema-game-preview > div:last-child {
  display: grid;
  gap: 3px;
  padding: 8px 18px;
  border-radius: 12px;
  background: #fff;
  color: #111713;
}

.cinema-game-preview > div:last-child small {
  color: #708078;
  font-size: 7px;
}

.cinema-game-preview > div:last-child b {
  font-size: 14px;
}

.cinema-review-google {
  width: 58px;
  height: 58px;
  padding: 11px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.23);
}

.cinema-phone-screen {
  padding: 46px 10px 12px;
  background: linear-gradient(160deg, #1d2420, #101512);
}

.cinema-pkpass-card {
  display: grid;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #087453, #16a276);
  color: #fff;
  box-shadow: 0 20px 50px rgba(4, 58, 41, 0.35);
}

.cinema-pkpass-card-head,
.cinema-pkpass-card-fields {
  display: grid;
}

.cinema-pkpass-card-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 16px 16px 12px;
}

.cinema-pkpass-card-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
}

.cinema-pkpass-card-head img {
  width: 24px;
  height: 18px;
  object-fit: contain;
}

.cinema-pkpass-card-head > span:last-child,
.cinema-pkpass-card-fields span {
  display: grid;
  gap: 3px;
}

.cinema-pkpass-card-head > span:last-child {
  text-align: right;
}

.cinema-pkpass-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.cinema-pkpass-card-head b {
  font-size: 19px;
  line-height: 1;
}

.cinema-pkpass-card-primary {
  display: grid;
  gap: 5px;
  min-height: 112px;
  align-content: end;
  padding: 16px;
  background: radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.22), transparent 32%);
}

.cinema-pkpass-card-primary strong {
  max-width: 220px;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cinema-pkpass-card-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cinema-pkpass-card-fields span:last-child {
  grid-column: 1 / -1;
}

.cinema-pkpass-card-fields b {
  font-size: 9px;
}

.cinema-pkpass-card-barcode {
  display: grid;
  align-self: end;
  justify-items: center;
  gap: 4px;
  margin: 0 14px 14px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.cinema-pkpass-card-barcode img {
  width: 88px;
  height: 88px;
}

.cinema-pkpass-card-barcode small {
  color: #505d57;
  font-size: 6px;
}

.cinema-contact {
  padding: 16px 24px 24px;
}

.cinema-contact-card {
  min-height: 300px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(42px, 5vw, 70px);
  border-radius: 26px;
}

.cinema-contact h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
}

.cinema-contact-card p {
  margin-top: 16px;
  font-size: 14px;
}

.cinema-contact-actions {
  width: min(100%, 230px);
}

.cinema-contact-actions .cinema-btn {
  min-width: 210px;
}

@media (max-width: 1100px) {
  .cinema-signal-wallet {
    right: 20px;
    width: 224px;
  }
}

@media (max-width: 620px) {
  .cinema-dashboard-activity {
    min-height: 156px;
    margin-top: 6px;
    padding: 10px;
  }

  .cinema-dashboard-activity-list {
    gap: 5px;
    margin-top: 8px;
  }

  .cinema-dashboard-activity-list > span {
    min-height: 82px;
    grid-template-columns: 24px minmax(0, 1fr);
    align-content: center;
    gap: 5px;
    padding: 6px;
  }

  .cinema-dashboard-activity-list i {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .cinema-dashboard-activity-list svg,
  .cinema-dashboard-activity-list img {
    width: 12px;
    height: 12px;
  }

  .cinema-dashboard-activity-list b {
    font-size: 7px;
  }

  .cinema-dashboard-activity-list time {
    display: none;
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(82%, 246px);
    padding: 12px;
    border-radius: 16px;
  }

  .cinema-qr-preview {
    gap: 5px;
  }

  .cinema-qr-preview .cinema-qr {
    width: clamp(86px, 15svh, 118px);
  }

  .cinema-qr-preview > b {
    font-size: 12px;
  }

  .cinema-qr-preview > small {
    font-size: 7px;
  }

  .cinema-game-preview h4 {
    font-size: 13px;
  }

  .cinema-game-preview .cinema-wheel {
    width: clamp(88px, 15svh, 118px);
    height: clamp(88px, 15svh, 118px);
    margin: 5px 0 2px;
  }

  .cinema-game-preview > div:last-child {
    padding: 5px 12px;
  }

  .cinema-review-google {
    width: clamp(38px, 6svh, 50px);
    height: clamp(38px, 6svh, 50px);
    padding: 8px;
    border-radius: 13px;
  }

  .cinema-pkpass-card {
    border-radius: 11px;
  }

  .cinema-pkpass-card-head {
    gap: 4px;
    padding: 7px 7px 5px;
  }

  .cinema-pkpass-card-head > span:first-child {
    gap: 3px;
    font-size: 6px;
  }

  .cinema-pkpass-card-head img {
    width: 13px;
    height: 10px;
  }

  .cinema-pkpass-card small {
    font-size: 4px;
  }

  .cinema-pkpass-card-head b {
    font-size: 9px;
  }

  .cinema-pkpass-card-primary {
    min-height: 48px;
    gap: 2px;
    padding: 7px;
  }

  .cinema-pkpass-card-primary strong {
    font-size: 9px;
  }

  .cinema-pkpass-card-fields {
    gap: 4px;
    padding: 6px 7px;
  }

  .cinema-pkpass-card-fields b {
    font-size: 5px;
  }

  .cinema-pkpass-card-barcode {
    gap: 2px;
    margin: 0 6px 6px;
    padding: 4px;
    border-radius: 7px;
  }

  .cinema-pkpass-card-barcode img {
    width: 40px;
    height: 40px;
  }

  .cinema-pkpass-card-barcode small {
    font-size: 4px;
  }

  .cinema-contact {
    padding: 10px 12px 18px;
  }

  .cinema-contact-card {
    min-height: 260px;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .cinema-contact h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .cinema-contact-card p {
    margin-top: 14px;
    font-size: 12px;
  }

  .cinema-contact-actions,
  .cinema-contact-actions .cinema-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(76%, 220px);
    padding: 9px;
  }

  .cinema-qr-preview .cinema-qr,
  .cinema-game-preview .cinema-wheel {
    width: 82px;
    height: 82px;
  }

  .cinema-game-preview h4 {
    font-size: 12px;
  }
}

/* Scene 04 — pinned sector reel. Reduced motion keeps the linear fallback above. */
.landing-cinema:not(.cinema-static) .cinema-sectors {
  height: 500svh;
  min-height: 3400px;
  padding: 0;
}

.landing-cinema:not(.cinema-static) .cinema-sectors-layout {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  align-items: center;
  box-sizing: border-box;
  padding: clamp(98px, 12vh, 126px) 0 clamp(36px, 5vh, 56px);
  overflow: hidden;
}

.landing-cinema:not(.cinema-static) .cinema-sectors-head {
  position: relative;
  top: auto;
  align-self: center;
}

.landing-cinema:not(.cinema-static) .cinema-sector-content {
  height: min(72svh, 650px);
  align-self: center;
}

.landing-cinema:not(.cinema-static) .cinema-sector-list {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.landing-cinema:not(.cinema-static) .cinema-sector-item {
  min-height: 0;
  padding: clamp(8px, 1.2vh, 13px) 0;
}

.landing-cinema:not(.cinema-static) .cinema-sector-item h3 {
  font-size: clamp(30px, 3.1vw, 46px);
}

.landing-cinema:not(.cinema-static) .cinema-sector-item p {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.42;
}

.landing-cinema:not(.cinema-static) .cinema-sector-visual {
  align-self: center;
}

.landing-cinema:not(.cinema-static) .cinema-sector-viewport {
  position: relative;
  top: auto;
}

@media (max-width: 960px) {
  .landing-cinema:not(.cinema-static) .cinema-sectors {
    height: 500svh;
    min-height: 3000px;
    padding: 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-layout {
    height: 100svh;
    min-height: 660px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(18px, 3vh, 28px);
    padding: clamp(78px, 10vh, 96px) 0 24px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-head {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: end;
    gap: 28px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-content {
    height: min(62svh, 600px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item {
    min-height: 0;
    padding: clamp(10px, 1.5vh, 17px) 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item h3 {
    font-size: clamp(28px, 5.3vw, 42px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item p {
    margin-top: 6px;
    font-size: 11.5px;
  }
}

@media (max-width: 620px) {
  .landing-cinema:not(.cinema-static) .cinema-sectors {
    min-height: 2400px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-layout {
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: clamp(12px, 2.4vh, 18px);
    padding: clamp(64px, 10vh, 78px) 0 14px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 12px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-meter {
    width: 76px;
    margin-top: 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-meter > div {
    margin-bottom: 8px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-meter strong {
    font-size: 24px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-content {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-list {
    padding-right: clamp(104px, 32vw, 142px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-visual {
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item {
    min-height: 0;
    padding: clamp(7px, 1.7vh, 12px) 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item h3 {
    font-size: clamp(27px, 8.6vw, 36px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item p {
    display: none;
  }
}

@media (max-width: 360px) {
  .landing-cinema:not(.cinema-static) .cinema-sector-list {
    padding-right: 92px;
  }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .landing-cinema:not(.cinema-static) .cinema-sectors {
    min-height: 1900px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-layout {
    min-height: 0;
    grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
    grid-template-rows: 1fr;
    align-content: center;
    gap: 28px;
    padding: 58px 0 14px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sectors h2 {
    font-size: clamp(34px, 6vw, 48px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-meter {
    width: 120px;
    margin-top: 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-content {
    height: min(78svh, 390px);
    grid-template-columns: minmax(0, 1fr) clamp(150px, 22vw, 190px);
    gap: 24px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    padding: 4px 0;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item > span {
    padding-top: 3px;
    font-size: 8px;
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item h3 {
    font-size: clamp(22px, 3vw, 28px);
  }

  .landing-cinema:not(.cinema-static) .cinema-sector-item p {
    display: none;
  }
}

/* Scene 03 premium editorial system — one surface, four scroll states. */
.cinema-product {
  position: relative;
  height: 430svh;
  min-height: 3000px;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(71, 201, 154, 0.14), transparent 27%),
    linear-gradient(135deg, #f4f7f5 0%, #eaf0ec 100%);
  color: var(--cinema-text);
}

.cinema-product::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 49, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 49, 36, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 74%, transparent);
  pointer-events: none;
}

.cinema-product-sticky {
  position: sticky;
  z-index: 1;
  top: 0;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
  padding: clamp(84px, 10.5svh, 108px) max(32px, calc((100vw - 1320px) / 2)) clamp(22px, 4svh, 38px);
  background: transparent;
  overflow: hidden;
}

.cinema-product-copy {
  position: relative;
  z-index: 3;
  display: flex;
  height: clamp(480px, 72svh, 660px);
  min-width: 0;
  align-self: center;
  flex-direction: column;
}

.cinema-product-intro {
  position: relative;
}

.cinema-product-copy h2 {
  margin: 0;
  color: var(--cinema-text);
  font-family: var(--cinema-display);
  font-size: clamp(60px, 5.6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.cinema-product-copy h2 span {
  color: var(--cinema-green);
}

.cinema-product-copy > p,
.cinema-product-intro > p {
  width: min(100%, 410px);
  margin: 24px 0 0;
  color: #52615b;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.62;
}

.cinema-product-steps {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 420px;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid rgba(16, 49, 36, 0.14);
}

.cinema-product-steps::before,
.cinema-product-steps button:not(:last-child)::after {
  display: none;
}

.cinema-product-steps button {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 67px;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  gap: 14px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(16, 49, 36, 0.14);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  box-shadow: none;
  color: #637069;
  cursor: pointer;
  text-align: left;
  transition: color 280ms ease;
}

.cinema-product-steps button::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -18px;
  width: 3px;
  background: var(--cinema-green);
  content: "";
  opacity: 0;
  transform: scaleY(0.22);
  transition: opacity 240ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-product-steps button i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(16, 49, 36, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  color: #3f5149;
  transition:
    border-color 280ms ease,
    background-color 280ms ease,
    color 280ms ease,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-product-steps button i svg {
  width: 17px;
  height: 17px;
}

.cinema-product-steps button span {
  display: block;
  width: auto;
  min-width: 0;
  margin-top: 0;
  color: #718078;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.18;
  text-transform: uppercase;
  transition: color 280ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cinema-product-steps button span b {
  display: block;
  margin-top: 4px;
  color: #435149;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-transform: none;
  transition: color 280ms ease;
}

.cinema-product-steps button.is-active {
  color: var(--cinema-text);
}

.cinema-product-steps button.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.cinema-product-steps button.is-active i {
  border-color: #087a58;
  background: #087a58;
  box-shadow: none;
  color: #fff;
  transform: translateX(3px);
}

.cinema-product-steps button.is-active span {
  color: #087a58;
  transform: translateX(3px);
}

.cinema-product-steps button.is-active span b {
  color: var(--cinema-text);
}

.cinema-product-steps button:focus-visible {
  z-index: 2;
  outline: 2px solid #087a58;
  outline-offset: 4px;
}

.cinema-product-stage {
  position: relative;
  z-index: 2;
  display: grid;
  height: clamp(480px, 72svh, 660px);
  min-width: 0;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.34fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 42%, rgba(31, 170, 123, 0.15), transparent 34%),
    linear-gradient(145deg, #07110e 0%, #0b1712 58%, #08100d 100%);
  box-shadow:
    0 44px 100px rgba(18, 52, 39, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.cinema-product-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 22%, rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.cinema-product-stage::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -12%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(71, 201, 154, 0.1);
  content: "";
  filter: blur(72px);
  pointer-events: none;
}

.cinema-product-story {
  position: relative;
  z-index: 3;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: clamp(34px, 3.4vw, 48px) clamp(26px, 2.8vw, 40px) clamp(25px, 2.5vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cinema-product-descriptions {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  pointer-events: none;
}

.cinema-product-descriptions article {
  position: absolute;
  inset: 0;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.cinema-product-descriptions article::after {
  display: none;
}

.cinema-product-descriptions article.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cinema-product-descriptions small {
  color: #72d9b4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cinema-product-descriptions h3 {
  margin: 16px 0 13px;
  color: #fff;
  font-family: var(--cinema-display);
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.cinema-product-descriptions p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 0.96vw, 15px);
  line-height: 1.58;
}

.cinema-push-proof {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.cinema-push-proof > span,
.cinema-push-notification > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(114, 217, 180, 0.3);
  border-radius: 9px;
  background: rgba(71, 201, 154, 0.1);
  color: #72d9b4;
}

.cinema-push-proof svg,
.cinema-push-notification svg {
  width: 15px;
}

.cinema-push-proof div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.cinema-push-proof strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  line-height: 1.25;
}

.cinema-push-proof small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.42;
}

.cinema-theatre {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: none;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  perspective: initial;
}

.cinema-theatre-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(86%, 560px);
  height: min(68%, 440px);
  border: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(71, 201, 154, 0.18), rgba(71, 201, 154, 0.04) 52%, transparent 74%);
  filter: blur(24px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
}

.cinema-theatre-aura::before,
.cinema-theatre-aura::after,
.cinema-theatre::before,
.cinema-theatre::after,
.cinema-theatre-platform {
  display: none;
}

.cinema-product-layer {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: calc(100% - 42px);
  height: calc(100% - 42px);
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-style: flat;
  transition: none;
  will-change: transform, opacity;
}

.cinema-product-layer::before {
  display: none;
}

.cinema-product-layer.is-active {
  z-index: 5;
}

.cinema-product-layer > strong,
.cinema-layer-index {
  position: absolute;
  z-index: 2;
  top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cinema-product-layer > strong {
  left: 10px;
}

.cinema-layer-index {
  right: 10px;
}

.cinema-layer-qr,
.cinema-layer-game {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background: transparent;
}

.cinema-layer-qr > strong,
.cinema-layer-qr .cinema-layer-index {
  color: rgba(255, 255, 255, 0.5);
}

.cinema-qr-preview,
.cinema-game-preview {
  width: min(88%, 390px);
  max-width: none;
  border-radius: 26px;
}

.cinema-qr-preview {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(24px, 3svh, 32px);
  border: 1px solid rgba(11, 13, 12, 0.07);
  background: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.22);
}

.cinema-qr-preview > span {
  gap: 9px;
  font-size: 11px;
}

.cinema-qr-preview > span img {
  width: 24px;
  height: 18px;
}

.cinema-qr-preview .cinema-qr {
  width: clamp(164px, 20svh, 196px);
  height: auto;
  max-width: 62%;
  margin: 4px 0;
  border-radius: 14px;
}

.cinema-qr-preview > b {
  font-size: 20px;
}

.cinema-qr-preview > small {
  font-size: 9px;
}

.cinema-game-preview {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: clamp(23px, 2.8svh, 30px) 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 30px 70px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.cinema-game-preview > small {
  font-size: 9px;
}

.cinema-game-preview h4 {
  font-size: 21px;
}

.cinema-game-preview .cinema-wheel {
  width: clamp(156px, 21svh, 198px);
  height: clamp(156px, 21svh, 198px);
  margin: 14px 0 8px;
}

.cinema-game-preview > div:last-child {
  gap: 4px;
  padding: 10px 22px;
  border-radius: 13px;
}

.cinema-game-preview > div:last-child small {
  font-size: 8px;
}

.cinema-game-preview > div:last-child b {
  font-size: 16px;
}

.cinema-layer-review {
  width: min(calc(100% - 58px), 500px);
  height: auto;
  min-height: min(390px, calc(100% - 68px));
  flex-direction: column;
  gap: 13px;
  padding: clamp(34px, 4svh, 46px);
  overflow: hidden;
  border: 1px solid rgba(11, 13, 12, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.24);
  color: #111713;
  text-align: center;
}

.cinema-layer-review > strong,
.cinema-layer-review .cinema-layer-index {
  color: #75817b;
}

.cinema-layer-review > b {
  color: #111713;
  font-size: 22px;
}

.cinema-layer-review > small {
  width: min(100%, 330px);
  color: #69766f;
  font-size: 11px;
}

.cinema-review-google {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 18px;
}

.cinema-review-stars {
  color: #f6aa0e;
  font-size: 27px;
}

.cinema-review-button {
  margin-top: 5px;
  padding: 12px 25px;
  background: #087a58;
  color: #fff;
  font-size: 10px;
}

.cinema-layer-wallet {
  width: calc(100% - 34px);
  height: calc(100% - 32px);
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cinema-phone {
  top: 50%;
  left: 50%;
  width: clamp(210px, 16vw, 250px);
  height: clamp(408px, 56svh, 510px);
  max-height: calc(100% - 20px);
  border-width: 3px;
  border-radius: 34px;
  transform: translate(-50%, -50%);
}

.cinema-phone-screen {
  padding: 42px 9px 10px;
  border-radius: 27px;
}

.cinema-phone-island {
  top: 12px;
  width: 62px;
  height: 18px;
}

.cinema-push-notification {
  right: 2%;
  bottom: 8%;
  width: min(220px, 45%);
  padding: 11px;
  border-radius: 15px;
}

.cinema-theatre-progress {
  position: absolute;
  z-index: 12;
  right: 30px;
  bottom: 23px;
  left: 30px;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.cinema-theatre-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #72d9b4;
  transform: scaleX(0);
  transform-origin: 0 50%;
}

@media (hover: hover) {
  .cinema-product-steps button:hover i {
    border-color: rgba(8, 122, 88, 0.42);
    color: #087a58;
  }

  .cinema-product-steps button:hover span b {
    color: var(--cinema-text);
  }
}

@media (max-width: 1100px) {
  .cinema-product {
    height: 430svh;
    min-height: 2800px;
  }

  .cinema-product-sticky {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
    align-content: stretch;
    gap: clamp(18px, 2.6svh, 24px);
    padding: clamp(82px, 10.5svh, 92px) max(18px, calc((100vw - 920px) / 2)) clamp(16px, 2.8svh, 24px);
  }

  .cinema-product-copy {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: end;
    gap: clamp(26px, 5vw, 54px);
  }

  .cinema-product-intro {
    align-self: end;
  }

  .cinema-product-copy h2 {
    font-size: clamp(46px, 7vw, 60px);
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    margin-top: 14px;
    font-size: 12px;
  }

  .cinema-product-steps {
    display: grid;
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: end;
    margin: 0;
  }

  .cinema-product-steps button {
    min-height: 70px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    padding: 0 8px;
    border-top: 0;
  }

  .cinema-product-steps button.is-active i,
  .cinema-product-steps button.is-active span {
    transform: none;
  }

  .cinema-product-steps button + button {
    border-left: 1px solid rgba(16, 49, 36, 0.14);
  }

  .cinema-product-steps button::before {
    top: auto;
    right: -1px;
    bottom: -1px;
    left: -1px;
    width: auto;
    height: 3px;
    transform: scaleX(0.22);
  }

  .cinema-product-steps button.is-active::before {
    transform: scaleX(1);
  }

  .cinema-product-steps button i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .cinema-product-steps button i svg {
    width: 15px;
    height: 15px;
  }

  .cinema-product-steps button span {
    font-size: 8px;
  }

  .cinema-product-steps button span b {
    font-size: clamp(11px, 1.5vw, 14px);
  }

  .cinema-product-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    align-self: stretch;
    grid-template-columns: minmax(255px, 0.72fr) minmax(0, 1.28fr);
  }

  .cinema-product-story {
    padding: clamp(26px, 3.2vw, 38px);
  }

  .cinema-product-descriptions h3 {
    font-size: clamp(27px, 3.6vw, 36px);
  }

  .cinema-product-layer {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 22px;
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(88%, 340px);
  }

  .cinema-layer-review {
    width: min(calc(100% - 42px), 410px);
  }

  .cinema-phone {
    width: clamp(176px, 22vw, 216px);
    height: clamp(338px, 45svh, 430px);
  }

  .cinema-phone-screen {
    padding: 36px 8px 8px;
  }

  .cinema-pkpass-card {
    border-radius: 14px;
  }

  .cinema-pkpass-card-head {
    gap: 7px;
    padding: 10px 10px 7px;
  }

  .cinema-pkpass-card-head > span:first-child {
    gap: 5px;
    font-size: 8px;
  }

  .cinema-pkpass-card-head img {
    width: 18px;
    height: 14px;
  }

  .cinema-pkpass-card small {
    font-size: 5.5px;
  }

  .cinema-pkpass-card-head b {
    font-size: 14px;
  }

  .cinema-pkpass-card-primary {
    min-height: 72px;
    gap: 3px;
    padding: 10px;
  }

  .cinema-pkpass-card-primary strong {
    font-size: 14px;
  }

  .cinema-pkpass-card-fields {
    gap: 6px;
    padding: 8px 10px;
  }

  .cinema-pkpass-card-fields b {
    font-size: 7px;
  }

  .cinema-pkpass-card-barcode {
    gap: 3px;
    margin: 0 8px 8px;
    padding: 6px;
    border-radius: 10px;
  }

  .cinema-pkpass-card-barcode img {
    width: 56px;
    height: 56px;
  }

  .cinema-pkpass-card-barcode small {
    font-size: 5px;
  }
}

@media (max-width: 700px) {
  .cinema-product {
    height: 440svh;
    min-height: 2700px;
    overflow: visible;
  }

  .cinema-product::before {
    display: none;
  }

  .cinema-product-sticky {
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 1.8svh, 16px);
    padding: clamp(74px, 9.8svh, 84px) 14px clamp(9px, 1.8svh, 15px);
    background-image:
      linear-gradient(rgba(16, 49, 36, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 49, 36, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
  }

  .cinema-product-copy {
    display: block;
  }

  .cinema-product-copy h2 {
    font-size: clamp(35px, 10.5vw, 48px);
    line-height: 0.91;
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    width: min(100%, 35rem);
    margin-top: 10px;
    font-size: clamp(10.5px, 3vw, 12px);
    line-height: 1.44;
  }

  .cinema-product-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: clamp(11px, 1.8svh, 16px);
    border-top: 0;
  }

  .cinema-product-steps button {
    min-height: clamp(42px, 6.4svh, 52px);
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 7px;
    padding: 0 6px;
    border: 1px solid rgba(16, 49, 36, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.42);
  }

  .cinema-product-steps button + button,
  .cinema-product-steps button:nth-child(odd) {
    border-left: 1px solid rgba(16, 49, 36, 0.13);
  }

  .cinema-product-steps button::before {
    right: 9px;
    bottom: -1px;
    left: 9px;
    border-radius: 999px;
  }

  .cinema-product-steps button.is-active {
    border-color: rgba(8, 122, 88, 0.3);
    background: rgba(255, 255, 255, 0.82);
  }

  .cinema-product-steps button i {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }

  .cinema-product-steps button i svg {
    width: 13px;
    height: 13px;
  }

  .cinema-product-steps button span {
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .cinema-product-steps button span b {
    margin-top: 2px;
    font-size: clamp(10px, 2.85vw, 12px);
  }

  .cinema-product-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1.2fr) minmax(160px, 0.8fr);
    border-radius: 24px;
  }

  .cinema-product-stage::after {
    display: none;
  }

  .cinema-theatre-aura {
    filter: none;
    opacity: 0.42;
  }

  .cinema-product-layer {
    will-change: auto;
  }

  .cinema-product-story {
    grid-row: 2;
    padding: clamp(15px, 2.6svh, 21px) 20px clamp(14px, 2.3svh, 19px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
  }

  .cinema-product-descriptions article {
    justify-content: flex-start;
  }

  .cinema-product-descriptions small {
    font-size: 7px;
  }

  .cinema-product-descriptions h3 {
    margin: 7px 0 5px;
    font-size: clamp(18px, 5.6vw, 23px);
    line-height: 1;
  }

  .cinema-product-descriptions p {
    font-size: clamp(9px, 2.6vw, 11px);
    line-height: 1.4;
  }

  .cinema-push-proof {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 9px;
    padding-top: 9px;
  }

  .cinema-push-proof > span {
    width: 25px;
    height: 25px;
    border-radius: 7px;
  }

  .cinema-push-proof svg {
    width: 12px;
  }

  .cinema-push-proof div {
    gap: 2px;
  }

  .cinema-push-proof strong {
    font-size: clamp(8px, 2.3vw, 10px);
  }

  .cinema-push-proof small {
    font-size: clamp(7px, 2vw, 8.5px);
    line-height: 1.3;
  }

  .cinema-theatre {
    grid-row: 1;
  }

  .cinema-product-layer {
    width: calc(100% - 22px);
    height: calc(100% - 14px);
    padding: 15px;
  }

  .cinema-product-layer > strong,
  .cinema-layer-index {
    top: 5px;
    font-size: 6.5px;
  }

  .cinema-product-layer > strong {
    left: 8px;
  }

  .cinema-layer-index {
    right: 8px;
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(80%, 260px);
    border-radius: 18px;
  }

  .cinema-qr-preview {
    gap: 5px;
    padding: clamp(11px, 1.8svh, 16px);
  }

  .cinema-qr-preview > span {
    gap: 5px;
    font-size: 8px;
  }

  .cinema-qr-preview > span img {
    width: 17px;
    height: 13px;
  }

  .cinema-qr-preview .cinema-qr {
    width: clamp(88px, 14svh, 128px);
    margin: 0;
    border-radius: 9px;
  }

  .cinema-qr-preview > b {
    font-size: 12px;
  }

  .cinema-qr-preview > small {
    font-size: 7px;
  }

  .cinema-game-preview {
    padding: clamp(10px, 1.7svh, 15px);
  }

  .cinema-game-preview > small {
    font-size: 7px;
  }

  .cinema-game-preview h4 {
    font-size: 13px;
  }

  .cinema-game-preview .cinema-wheel {
    width: clamp(88px, 14svh, 124px);
    height: clamp(88px, 14svh, 124px);
    margin: 5px 0 2px;
    border-width: 5px;
  }

  .cinema-game-preview .cinema-wheel span {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  .cinema-game-preview .cinema-wheel svg {
    width: 16px;
  }

  .cinema-game-preview > div:last-child {
    gap: 2px;
    padding: 5px 11px;
    border-radius: 9px;
  }

  .cinema-game-preview > div:last-child small {
    font-size: 6px;
  }

  .cinema-game-preview > div:last-child b {
    font-size: 10px;
  }

  .cinema-layer-review {
    width: min(calc(100% - 38px), 280px);
    height: auto;
    min-height: min(190px, calc(100% - 32px));
    gap: 6px;
    padding: clamp(18px, 2.8svh, 24px);
    border-radius: 19px;
  }

  .cinema-layer-review > b {
    font-size: 14px;
  }

  .cinema-layer-review > small {
    font-size: 8px;
    line-height: 1.35;
  }

  .cinema-review-google {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 12px;
  }

  .cinema-review-stars {
    font-size: 18px;
  }

  .cinema-review-button {
    margin-top: 2px;
    padding: 7px 16px;
    font-size: 7px;
  }

  .cinema-layer-wallet {
    height: calc(100% - 8px);
  }

  .cinema-phone {
    width: clamp(124px, 37vw, 156px);
    height: clamp(228px, 29svh, 292px);
    max-height: calc(100% - 8px);
    padding: 5px;
    border-width: 2px;
    border-radius: 24px;
  }

  .cinema-phone-island {
    top: 8px;
    width: 44px;
    height: 13px;
  }

  .cinema-phone-screen {
    padding: 29px 6px 7px;
    border-radius: 19px;
  }

  .cinema-pkpass-card {
    border-radius: 10px;
  }

  .cinema-pkpass-card-head {
    gap: 4px;
    padding: 7px 7px 5px;
  }

  .cinema-pkpass-card-head > span:first-child {
    gap: 3px;
    font-size: 6px;
  }

  .cinema-pkpass-card-head img {
    width: 13px;
    height: 10px;
  }

  .cinema-pkpass-card small {
    font-size: 5px;
  }

  .cinema-pkpass-card-head b {
    font-size: 9px;
  }

  .cinema-pkpass-card-primary {
    min-height: 48px;
    gap: 2px;
    padding: 7px;
  }

  .cinema-pkpass-card-primary strong {
    font-size: 9px;
  }

  .cinema-pkpass-card-fields {
    gap: 4px;
    padding: 6px 7px;
  }

  .cinema-pkpass-card-fields b {
    font-size: 5.5px;
  }

  .cinema-pkpass-card-barcode {
    gap: 2px;
    margin: 0 6px 6px;
    padding: 4px;
    border-radius: 7px;
  }

  .cinema-pkpass-card-barcode img {
    width: 40px;
    height: 40px;
  }

  .cinema-pkpass-card-barcode small {
    font-size: 5px;
  }

  .cinema-push-notification {
    right: 2%;
    bottom: 3%;
    width: min(164px, 52%);
    gap: 6px;
    padding: 7px;
    border-radius: 10px;
  }

  .cinema-push-notification > span {
    width: 23px;
    height: 23px;
    border-radius: 7px;
  }

  .cinema-push-notification strong {
    font-size: 7px;
  }

  .cinema-push-notification small,
  .cinema-push-notification em {
    font-size: 5.5px;
  }

  .cinema-theatre-progress {
    right: 18px;
    bottom: 10px;
    left: 18px;
  }
}

@media (max-width: 700px) and (max-height: 560px) and (orientation: portrait) {
  .cinema-product {
    min-height: 2200px;
  }

  .cinema-product-sticky {
    gap: 7px;
    padding: 72px 10px 7px;
  }

  .cinema-product-copy h2 {
    font-size: 29px;
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    margin-top: 6px;
    font-size: 9.5px;
    line-height: 1.3;
  }

  .cinema-product-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 7px;
  }

  .cinema-product-steps button {
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 2px;
    padding: 3px;
    text-align: center;
  }

  .cinema-product-steps button + button,
  .cinema-product-steps button:nth-child(odd) {
    border-left: 1px solid rgba(16, 49, 36, 0.14);
  }

  .cinema-product-steps button i {
    width: 21px;
    height: 21px;
  }

  .cinema-product-steps button i svg {
    width: 10px;
    height: 10px;
  }

  .cinema-product-steps button span {
    font-size: 7px;
  }

  .cinema-product-steps button span b {
    font-size: 8.5px;
    line-height: 1.05;
  }

  .cinema-product-stage {
    grid-template-rows: minmax(0, 1.12fr) minmax(110px, 0.88fr);
    border-radius: 18px;
  }

  .cinema-product-story {
    padding: 7px 12px 6px;
  }

  .cinema-product-descriptions small {
    font-size: 6.5px;
  }

  .cinema-product-descriptions h3 {
    margin: 4px 0 3px;
    font-size: 14px;
  }

  .cinema-product-descriptions p {
    font-size: 9px;
    line-height: 1.25;
  }

  .cinema-push-proof {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 6px;
    padding-top: 5px;
  }

  .cinema-push-proof > span {
    width: 20px;
    height: 20px;
  }

  .cinema-push-proof strong {
    font-size: 8.5px;
  }

  .cinema-push-proof small {
    font-size: 7.5px;
  }

  .cinema-layer-review {
    width: calc(100% - 34px);
    min-height: 0;
    max-height: calc(100% - 12px);
    gap: 3px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .cinema-layer-review > b {
    font-size: 11px;
  }

  .cinema-layer-review > small {
    font-size: 6.5px;
  }

  .cinema-review-google {
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 9px;
  }

  .cinema-review-stars {
    font-size: 15px;
  }

  .cinema-review-button {
    margin-top: 0;
    padding: 5px 11px;
    font-size: 6px;
  }

  .cinema-phone-screen {
    padding: 21px 4px 4px;
  }

  .cinema-phone-island {
    top: 6px;
    width: 38px;
    height: 11px;
  }

  .cinema-pkpass-card-head {
    gap: 2px;
    padding: 3px 4px 2px;
  }

  .cinema-pkpass-card-head > span:first-child {
    gap: 2px;
    font-size: 5px;
  }

  .cinema-pkpass-card-head img {
    width: 10px;
    height: 8px;
  }

  .cinema-pkpass-card small {
    font-size: 5px;
  }

  .cinema-pkpass-card-head b {
    font-size: 8px;
  }

  .cinema-pkpass-card-primary {
    min-height: 16px;
    padding: 3px 4px;
  }

  .cinema-pkpass-card-primary strong {
    font-size: 8px;
  }

  .cinema-pkpass-card-fields {
    gap: 2px;
    padding: 2px 4px;
  }

  .cinema-pkpass-card-fields b {
    font-size: 5px;
  }

  .cinema-pkpass-card-barcode {
    gap: 1px;
    margin: 0 3px 2px;
    padding: 2px;
    border-radius: 5px;
  }

  .cinema-pkpass-card-barcode img {
    width: 16px;
    height: 16px;
  }

  .cinema-pkpass-card-barcode small {
    font-size: 5px;
  }
}

@media (max-width: 700px) and (max-height: 640px) and (orientation: portrait) {
  .cinema-product-stage {
    grid-template-rows: minmax(0, 1.3fr) minmax(104px, 0.7fr);
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    gap: 4px;
    padding: 8px;
  }

  .cinema-qr-preview .cinema-qr {
    width: clamp(70px, 12svh, 96px);
  }

  .cinema-game-preview h4 {
    font-size: 11px;
  }

  .cinema-game-preview .cinema-wheel {
    width: clamp(70px, 12svh, 96px);
    height: clamp(70px, 12svh, 96px);
    margin: 2px 0;
  }

  .cinema-game-preview > div:last-child {
    padding: 4px 9px;
  }

  .cinema-product-story {
    padding-top: 8px;
    padding-bottom: 7px;
  }
}

@media (max-width: 1100px) and (max-height: 600px) and (orientation: landscape) {
  .cinema-product {
    height: 380svh;
    min-height: 1280px;
  }

  .cinema-product-sticky {
    grid-template-columns: minmax(205px, 0.62fr) minmax(0, 1.38fr);
    grid-template-rows: minmax(0, 1fr);
    gap: clamp(12px, 2.4vw, 24px);
    padding: 72px clamp(14px, 3vw, 34px) 9px;
  }

  .cinema-product-copy {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .cinema-product-copy h2 {
    font-size: clamp(28px, 4.8vw, 42px);
    line-height: 0.89;
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    margin-top: 8px;
    font-size: clamp(9px, 1.4vw, 11px);
    line-height: 1.35;
  }

  .cinema-product-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
  }

  .cinema-product-steps button {
    min-height: clamp(40px, 10svh, 50px);
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 5px;
    padding: 0 4px;
    border-top: 1px solid rgba(16, 49, 36, 0.14);
  }

  .cinema-product-steps button:nth-child(odd) {
    border-left: 0;
  }

  .cinema-product-steps button i {
    width: 24px;
    height: 24px;
  }

  .cinema-product-steps button i svg {
    width: 11px;
    height: 11px;
  }

  .cinema-product-steps button span {
    font-size: 7px;
  }

  .cinema-product-steps button span b {
    font-size: clamp(9.5px, 1.25vw, 10.5px);
  }

  .cinema-product-stage {
    height: 100%;
    grid-template-columns: minmax(160px, 0.78fr) minmax(0, 1.22fr);
    grid-template-rows: minmax(0, 1fr);
    border-radius: 21px;
  }

  .cinema-product-story {
    grid-row: 1;
    padding: clamp(14px, 2.7svh, 21px) clamp(12px, 1.8vw, 20px);
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cinema-product-descriptions article {
    justify-content: center;
  }

  .cinema-product-descriptions small {
    font-size: 7.5px;
  }

  .cinema-product-descriptions h3 {
    margin: 6px 0 5px;
    font-size: clamp(15px, 2.3vw, 21px);
  }

  .cinema-product-descriptions p {
    font-size: clamp(9px, 1.25vw, 10px);
    line-height: 1.32;
  }

  .cinema-push-proof {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
    padding-top: 7px;
  }

  .cinema-push-proof > span {
    width: 22px;
    height: 22px;
  }

  .cinema-push-proof strong {
    font-size: clamp(8px, 1.15vw, 9px);
  }

  .cinema-push-proof small {
    font-size: clamp(7.5px, 1vw, 8px);
  }

  .cinema-theatre {
    grid-row: 1;
  }

  .cinema-product-layer {
    width: calc(100% - 16px);
    height: calc(100% - 10px);
    padding: 11px;
  }

  .cinema-product-layer > strong,
  .cinema-layer-index {
    top: 4px;
    font-size: 5.5px;
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(82%, 230px);
    padding: clamp(9px, 2svh, 13px);
    border-radius: 15px;
  }

  .cinema-qr-preview .cinema-qr,
  .cinema-game-preview .cinema-wheel {
    width: clamp(76px, 21svh, 112px);
    height: clamp(76px, 21svh, 112px);
  }

  .cinema-game-preview h4 {
    font-size: 11px;
  }

  .cinema-layer-review {
    width: min(calc(100% - 26px), 260px);
    min-height: min(180px, calc(100% - 24px));
    padding: 19px;
  }

  .cinema-phone {
    width: clamp(112px, 17vw, 148px);
    height: clamp(210px, 68svh, 286px);
  }

  .cinema-push-notification {
    width: min(150px, 53%);
  }

  .cinema-theatre-progress {
    right: 12px;
    bottom: 8px;
    left: 12px;
  }
}

@media (min-width: 1101px) and (max-height: 720px) {
  .cinema-product-sticky {
    padding-top: 76px;
    padding-bottom: 14px;
  }

  .cinema-product-copy,
  .cinema-product-stage {
    height: min(76svh, 530px);
  }

  .cinema-product-copy h2 {
    font-size: clamp(48px, 5vw, 66px);
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    margin-top: 13px;
    font-size: 12px;
  }

  .cinema-product-steps button {
    min-height: 54px;
  }

  .cinema-product-story {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .cinema-product-descriptions h3 {
    font-size: clamp(26px, 2.4vw, 34px);
  }

  .cinema-product-descriptions p {
    font-size: 12px;
  }

  .cinema-qr-preview,
  .cinema-game-preview {
    width: min(82%, 330px);
  }

  .cinema-phone {
    width: 202px;
    height: min(66svh, 440px);
  }
}

@media (min-width: 1101px) and (max-height: 600px) {
  .cinema-product-sticky {
    padding-top: 72px;
    padding-bottom: 8px;
  }

  .cinema-product-copy,
  .cinema-product-stage {
    height: calc(100svh - 86px);
  }

  .cinema-product-copy h2 {
    font-size: clamp(36px, 3.6vw, 48px);
  }

  .cinema-product-copy > p,
  .cinema-product-intro > p {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.35;
  }

  .cinema-product-steps button {
    min-height: 40px;
  }

  .cinema-product-steps button i {
    width: 29px;
    height: 29px;
    border-radius: 9px;
  }

  .cinema-product-steps button i svg {
    width: 14px;
    height: 14px;
  }

  .cinema-product-steps button span {
    font-size: 7px;
  }

  .cinema-product-steps button span b {
    margin-top: 2px;
    font-size: 12px;
  }

  .cinema-product-story {
    padding: 22px;
  }

  .cinema-product-descriptions h3 {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2.1vw, 29px);
  }

  .cinema-product-descriptions p {
    font-size: 10.5px;
  }

  .cinema-push-proof {
    padding-top: 12px;
  }
}

@media (min-width: 1101px) and (max-height: 450px) {
  .cinema-product-sticky {
    padding-top: 76px;
    padding-bottom: 6px;
  }

  .cinema-product-copy,
  .cinema-product-stage {
    height: calc(100svh - 84px);
  }

  .cinema-product-copy h2 {
    font-size: 32px;
  }

  .cinema-product-steps button {
    min-height: 34px;
  }

  .cinema-product-steps button i {
    width: 25px;
    height: 25px;
  }

  .cinema-product-steps button span b {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-product {
    height: auto;
    min-height: 0;
  }

  .cinema-product-sticky {
    position: relative;
    height: auto;
    min-height: 820px;
    overflow: hidden;
  }

  .cinema-product-layer {
    opacity: 0;
    transform: translate(-50%, -50%);
  }

  .cinema-product-layer.is-active {
    opacity: 1;
  }
}

.cinema-static .cinema-product {
  height: auto;
  min-height: 0;
}

.cinema-static .cinema-product-sticky {
  position: relative;
  height: auto;
  min-height: 820px;
  overflow: hidden;
}

.cinema-static .cinema-product-layer {
  transform: translate(-50%, -50%);
}

.cinema-static .cinema-product-layer.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  .cinema-product-sticky {
    min-height: 780px;
  }
}

@media (max-width: 700px) {
  .cinema-static .cinema-product-sticky {
    min-height: 780px;
  }
}
