/* FitClub home — cinematic plate. Violet system only. */

@property --cine-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: #0a0b0f;
}

@property --cine-text {
  syntax: "<color>";
  inherits: true;
  initial-value: #f4f3f8;
}

@property --cine-muted {
  syntax: "<color>";
  inherits: true;
  initial-value: #c8c7d1;
}

@property --cine-line {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff1f;
}

:root {
  --cine-void: #0a0b0f;
  --cine-paper: #efeef6;
  --cine-ink-void: #f4f3f8;
  --cine-ink-paper: #14151c;
  --cine-bg: var(--cine-void);
  --cine-violet: #6a4cff;
  --cine-violet-2: #8b79ff;
  --cine-line: rgba(255, 255, 255, 0.12);
  --cine-text: var(--cine-ink-void);
  --cine-muted: rgba(214, 214, 224, 0.72);
  --cine-display: "Space Grotesk", "Geist", system-ui, sans-serif;
  --cine-body: "Geist", system-ui, sans-serif;
  --cine-gutter: clamp(24px, 5.2vw, 80px);
  --cine-panel-left: var(--cine-gutter);
  --cine-nav-h: 72px;
}

html.page-cine {
  background: var(--cine-bg);
  color: var(--cine-text);
  transition:
    --cine-bg 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    --cine-text 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    --cine-muted 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    --cine-line 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.page-cine.is-paper {
  --cine-bg: var(--cine-paper);
  --cine-text: var(--cine-ink-paper);
  --cine-muted: rgba(20, 21, 28, 0.62);
  --cine-line: rgba(20, 21, 28, 0.14);
}

html.page-cine,
body.page-cine {
  background: var(--cine-bg);
  color: var(--cine-text);
}

body.page-cine {
  cursor: none;
}

body.page-cine:not(.is-touch):not(.is-reduced),
body.page-cine:not(.is-touch):not(.is-reduced) * {
  cursor: none !important;
}

body.page-cine.is-touch,
body.page-cine.is-reduced {
  cursor: auto;
}

body.page-cine .page-wrapper,
body.page-cine .main {
  background: var(--cine-bg);
}

/* ── Loader (Huge-style count) ───────────────────────────────────────── */

.cine-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--cine-bg);
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.55s;
}

.cine-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cine-loader__mark {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 10px;
  height: 10px;
  background: var(--cine-violet);
}

.cine-loader__count {
  font-family: var(--cine-display);
  font-weight: 500;
  font-size: clamp(6rem, 18vw, 14rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: var(--cine-text);
}

.cine-loader__label {
  position: absolute;
  bottom: 32px;
  left: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

/* ── Cursor ──────────────────────────────────────────────────────────── */

.cine-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 1.5px solid var(--cine-violet-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  transition: width 0.2s, height 0.2s, margin 0.2s, background 0.2s, border-color 0.2s;
}

.cine-cursor.is-down,
.cine-cursor.is-hot {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  background: rgba(106, 76, 255, 0.18);
}

html.page-cine.is-paper .cine-cursor {
  border-color: #4a32d4;
}

html.page-cine.is-paper .cine-cursor.is-down,
html.page-cine.is-paper .cine-cursor.is-hot {
  background: rgba(50, 32, 160, 0.14);
  border-color: #3524b0;
}

body.page-cine.is-touch .cine-cursor,
body.page-cine.is-reduced .cine-cursor {
  display: none;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */

body.page-cine .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent !important;
  border: 0;
  padding: 0;
}

body.page-cine .navbar-block {
  margin: 0 !important;
  padding: 0 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.page-cine .navbar .main-container {
  max-width: none;
  width: 100%;
  padding-left: var(--cine-gutter);
  padding-right: var(--cine-gutter);
}

body.page-cine .navbar-block,
body.page-cine .navbar-main-content {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

body.page-cine .navbar-main-content {
  min-height: var(--cine-nav-h);
}

body.page-cine .navbar-main-block {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
}

body.page-cine .navbar-main-image {
  height: 40px;
  width: 40px;
  filter: none;
}

body.page-cine .navbar-link-text,
body.page-cine .button-text {
  font-family: var(--cine-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cine-text) !important;
}

body.page-cine .primary-button.w-variant-1857544f-8d68-06c5-54cc-c37371f6158a {
  background: transparent !important;
  border: 0 !important;
  min-height: 0;
  padding: 8px 0;
  box-shadow: none !important;
}

body.page-cine .navbar.is-scrolled {
  background: color-mix(in srgb, var(--cine-bg) 78%, transparent) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.page-cine .site-lang-toggle__trigger {
  background: transparent;
  border-color: color-mix(in srgb, var(--cine-text) 16%, transparent);
  color: var(--cine-text);
}

html.page-cine.is-paper body.page-cine .navbar-main-image {
  filter: brightness(0);
}

body.page-cine {
  overflow-anchor: none;
}

@media screen and (max-width: 991px) {
  body.page-cine {
    touch-action: pan-y;
  }

  .cine-plate__copy {
    max-width: min(22rem, calc(100% - 72px));
    right: 56px;
    left: var(--cine-gutter);
    bottom: 8vh;
  }

  .cine-plate .cine-display {
    font-size: clamp(2.05rem, 9.2vw, 2.85rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
    text-wrap: pretty;
  }

  .cine-plate__progress {
    opacity: 0.55;
  }
}

@media screen and (max-width: 479px) {
  .cine-plate__progress {
    display: none;
  }
}

::selection {
  background: rgba(106, 76, 255, 0.45);
  color: #fff;
}

.cine-grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.9'/></svg>");
}

html.page-cine.is-paper .cine-grain {
  opacity: 0.045;
}

body.page-cine.is-reduced .cine-grain {
  display: none;
}

/* ── Plate ───────────────────────────────────────────────────────────── */

.cine-plate {
  position: relative;
  height: 280vh;
}

.cine-plate__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--cine-void);
  color: var(--cine-ink-void);
}

.cine-plate__still,
.cine-plate__video,
.cine-plate__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  transform-origin: 72% 48%;
  will-change: transform;
}

.cine-plate__still {
  filter: none;
}

.cine-plate__video,
.cine-plate__poster {
  filter: saturate(0.78) contrast(1.08) brightness(0.62);
}

.cine-plate__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 15, 0.58) 0%, rgba(10, 11, 15, 0.16) 40%, rgba(10, 11, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 11, 15, 0.42) 0%, rgba(10, 11, 15, 0.08) 34%, rgba(10, 11, 15, 0.28) 100%);
  pointer-events: none;
}

.cine-plate__veil {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 20%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--cine-void) 0%,
    color-mix(in srgb, var(--cine-void) 90%, transparent) 32%,
    color-mix(in srgb, var(--cine-void) 40%, transparent) 64%,
    transparent 100%
  );
}

.cine-plate__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 86px,
      rgba(106, 76, 255, 0.09) 86px 87px
    );
  mix-blend-mode: screen;
  opacity: 0.55;
}

.cine-plate__hud {
  position: absolute;
  top: calc(var(--cine-nav-h) + 18px);
  left: var(--cine-gutter);
  display: flex;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
  z-index: 3;
}

.cine-plate__hud b {
  color: var(--cine-text);
  font-weight: 700;
}

.cine-plate__copy {
  position: absolute;
  left: var(--cine-gutter);
  right: var(--cine-gutter);
  top: calc(var(--cine-nav-h) + clamp(28px, 8vh, 80px));
  bottom: auto;
  z-index: 3;
  max-width: min(36rem, 44vw);
  will-change: opacity, transform;
}

.cine-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

.cine-display {
  margin: 0;
  font-family: var(--cine-display);
  font-weight: 500;
  font-size: clamp(2.05rem, 3.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cine-plate .cine-display {
  font-size: clamp(2.1rem, 3.5vw, 3.85rem);
  max-width: none;
  line-height: 1.02;
}

.cine-plate__copy p {
  max-width: 36ch;
  margin: 16px 0 0;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.5;
  color: var(--cine-muted);
}

.cine-plate__progress {
  display: none;
}

.cine-skel-wrap {
  position: absolute;
  left: 16%;
  top: 8%;
  width: 40%;
  height: 86%;
  z-index: 2;
  pointer-events: none;
}

.cine-skeleton {
  width: 100%;
  height: 100%;
}

.cine-mark {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border: 1.5px solid var(--cine-violet);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}

.cine-mark span {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 12px;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

.cine-mark.is-on {
  opacity: 1;
  transform: scale(1);
}

.cine-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(106, 76, 255, 0.22);
}

.cine-rec b {
  animation: cine-rec-pulse 1.4s ease-in-out infinite;
}

@keyframes cine-rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.cine-lede {
  max-width: 42ch;
  margin: 20px 0 0;
  color: var(--cine-muted);
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.cine-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
  max-width: 28ch;
}

.cine-stat b {
  font-family: var(--cine-display);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: var(--cine-text);
}

.cine-stat span {
  color: var(--cine-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

body.page-cine .pricing-v3-ribbon {
  background: var(--cine-violet);
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 76, 255, 0.32);
}

body.page-cine .w-nav-overlay {
  pointer-events: none !important;
  background: transparent !important;
}

body.page-cine .navbar:has(.w-nav-button.w--open) .w-nav-overlay {
  pointer-events: auto !important;
  background: rgba(10, 11, 15, 0.96) !important;
}

body.page-cine .w-nav-menu {
  pointer-events: auto;
}

body.page-cine .cine-nav-login {
  display: none;
}

@media screen and (max-width: 991px) {
  body.page-cine .cine-nav-login {
    display: flex;
  }
}

/* ── Chapter: Huge "What we do" — title from the bottom, copy lower-right */

.cine-chapter {
  position: relative;
  height: 420vh;
}

.cine-chapter__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 var(--cine-gutter);
  overflow: hidden;
}

.cine-chapter__pin::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to top,
    var(--cine-bg) 0%,
    color-mix(in srgb, var(--cine-bg) 70%, transparent) 42%,
    transparent 100%
  );
}

.cine-mega {
  --cine-mega-size: clamp(3.4rem, 11.4vw, 10.5rem);
  position: absolute;
  left: var(--cine-gutter);
  right: 22%;
  top: 0;
  margin: 0;
  font-family: var(--cine-display);
  font-weight: 400;
  font-size: var(--cine-mega-size);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--cine-text);
  z-index: 1;
  will-change: transform;
}

.cine-mega [data-cine-token] {
  display: inline-block;
  padding: 0.02em 0.01em;
  opacity: 0;
  will-change: filter, opacity;
}

.cine-words {
  position: absolute;
  right: var(--cine-gutter);
  left: auto;
  top: 0;
  z-index: 4;
  width: min(34rem, 38vw);
  margin: 0;
  font-family: var(--cine-body);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.45vw, 2.55rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  color: var(--cine-text);
  will-change: transform;
}

.cine-words .cine-word {
  display: inline-block;
  white-space: nowrap;
}

.cine-words [data-cine-token] {
  display: inline-block;
  padding: 0;
  opacity: 0;
  will-change: color, background-image;
}

.cine-cta {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 18px 28px;
  border: 0;
  background: var(--cine-violet);
  color: #fff;
  font-family: var(--cine-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  will-change: transform;
}

.cine-cta:hover,
.cine-cta:focus-visible {
  background: #7d61ff;
}

.cine-cta--ghost {
  background: transparent;
  border: 1px solid var(--cine-line);
  color: var(--cine-text);
}

.cine-cta--ghost:hover,
.cine-cta--ghost:focus-visible {
  background: transparent;
  border-color: var(--cine-violet);
  color: var(--cine-text);
}

.cine-cta small {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  font-weight: 600;
  text-transform: none;
}

/* ── Rails: hub stacks vertically; offer rail stays a horizontal scrub ─ */

.cine-rail {
  --cine-rail-n: 4;
  position: relative;
}

.cine-rail--stack {
  height: auto;
}

.cine-rail--stack .cine-rail__pin {
  position: relative;
  height: auto;
  overflow: visible;
}

.cine-rail--stack .cine-rail__track {
  display: block;
  transform: none;
}

.cine-panel {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--cine-nav-h) + 36px) var(--cine-gutter) 10vh;
  padding-left: var(--cine-panel-left);
}

.cine-rail--stack .cine-panel {
  min-height: 100svh;
  border-bottom: 0;
}

/* Offer rail scrubs horizontally at every width; JS maps scroll → translateX. */
.cine-rail--loop {
  height: calc(100vh * (0.9 + var(--cine-rail-n) * 1.25));
}

.cine-rail--loop .cine-rail__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.cine-rail--loop .cine-rail__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.cine-rail--loop .cine-panel {
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 0;
  height: 100%;
  padding-left: var(--cine-panel-left);
}

.cine-panel__idx {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

.cine-panel__title {
  margin: 0;
  max-width: 11em;
  font-family: var(--cine-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cine-text);
}

.cine-panel__copy {
  margin: 18px 0 0;
  max-width: 28rem;
  color: var(--cine-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
}

.cine-panel--cta .cine-stat {
  margin-top: 8px;
}

.cine-panel--cta .cine-panel__copy {
  max-width: 26ch;
  font-size: 0.95rem;
}

.cine-hub {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.cine-hub__copy {
  min-width: 0;
  padding-left: var(--cine-panel-left);
  padding-right: 28px;
}

.cine-hub__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 145svh;
  padding: calc(var(--cine-nav-h) + 36px) 0 10vh;
}

.cine-hub__device {
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100svh;
  padding-right: var(--cine-gutter);
  pointer-events: none;
}

.cine-hub__device > * {
  grid-area: 1 / 1;
}

/* Panel (beat 01) and phone (beats 02–05) crossfade in the same cell. */
.cine-hub__device .cine-fab,
.cine-hub__device-pin {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Sit the panel slightly below dead center so the gap under the
   Continuar button stays tight. */
.cine-hub__device .cine-fab {
  transform: translateY(16px);
}

.cine-hub__device .cine-fab.is-on,
.cine-hub__device-pin.is-on {
  opacity: 1;
}

.cine-hub__device .cine-fab.is-on {
  pointer-events: auto;
}

.cine-hub__device-pin {
  width: min(300px, 38vh);
}

.cine-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.4;
  overflow: hidden;
  border-radius: 36px;
  background: #16171e;
  border: 2px solid rgba(20, 21, 28, 0.18);
  box-shadow: 0 24px 56px rgba(20, 21, 28, 0.16);
}

.cine-phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #0a0b0f;
}

.cine-phone__screen {
  position: absolute;
  inset: 12px 8px 10px;
  overflow: hidden;
  border-radius: 26px;
  background: #0c0d12;
  color: #f4f3f8;
}

.cine-phone__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 14px 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cine-phone__slide.is-on {
  opacity: 1;
}

.cine-ui-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 243, 248, 0.42);
}

.cine-ui-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

.cine-ui-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cine-ui-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.cine-ui-list li.is-live {
  color: var(--cine-violet-2);
}

.cine-ui-list b {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cine-ui-list span {
  flex: 0 0 auto;
  color: rgba(244, 243, 248, 0.48);
  font-variant-numeric: tabular-nums;
}

.cine-ui-list + .cine-ui-stats {
  margin-top: 14px;
  gap: 5px;
}

.cine-ui-list + .cine-ui-stats div {
  padding: 8px 3px;
}

.cine-ui-list + .cine-ui-stats span {
  font-size: 8px;
  letter-spacing: 0.04em;
}

.cine-ui-list + .cine-ui-stats b {
  margin-top: 4px;
  font-size: 1.05rem;
}

.cine-ui-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.cine-ui-stats div {
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.cine-ui-stats span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 243, 248, 0.45);
}

.cine-ui-stats b {
  display: block;
  margin-top: 6px;
  font-family: var(--cine-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.cine-ui-frame {
  position: relative;
  flex: 1;
  min-height: 120px;
  margin-bottom: 12px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(106, 76, 255, 0.18), rgba(12, 13, 18, 0.2)),
    repeating-linear-gradient(-18deg, transparent, transparent 11px, rgba(255, 255, 255, 0.04) 11px, rgba(255, 255, 255, 0.04) 12px);
}

.cine-ui-pin {
  position: absolute;
  top: 38%;
  left: 58%;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(106, 76, 255, 0.35);
}

.cine-ui-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(244, 243, 248, 0.78);
}

.cine-ui-note + .cine-ui-list,
.cine-ui-list + .cine-ui-note {
  margin-top: 12px;
}

.cine-ui-list li.is-new {
  animation: cineDemoIn 0.32s ease both;
}

@keyframes cineDemoIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body.is-reduced .cine-ui-list li.is-new {
  animation: none;
}

/* ── Hub demo: replica of the in-app AI workout creator ──────────────── */

/* Detached, free-flowing on the page background: no card, no device frame.
   Colors ride the ink variables so the panel matches the section behind it. */
.cine-fab {
  width: clamp(340px, 36vw, 540px);
  color: var(--cine-text);
  font-family: var(--cine-body);
}

/* One wizard step at a time, stacked in the same cell. */
.cine-fab__steps {
  display: grid;
  align-items: center;
}

.cine-fab__step {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.cine-fab__step.is-on {
  opacity: 1;
  visibility: visible;
}

/* The active body view forces itself visible, which would override the
   hidden step and swallow clicks meant for the slider/levels stacked in
   the same grid cell. Kill it whenever its step is off. */
.cine-fab__step:not(.is-on) .cine-fab__body {
  visibility: hidden;
  pointer-events: none;
}

.cine-fab__step:not(.is-on) .cine-fab__muscle {
  pointer-events: none;
}

.cine-fab .cine-ui-kicker {
  color: var(--cine-violet);
}

.cine-fab__intro {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: var(--cine-muted);
}

/* Nudge when trying to continue without picking a muscle: every muscle
   group glows once, slowly, in and back out. */
@keyframes cine-fab-glow {
  0% { fill: rgba(139, 121, 255, 0); }
  45% { fill: rgba(139, 121, 255, 0.45); }
  100% { fill: rgba(139, 121, 255, 0); }
}

.cine-fab__model.is-nudge .cine-fab__muscle:not(.is-on) path {
  animation: cine-fab-glow 1.2s ease-in-out 1;
}

/* The model is the wow factor: as tall as the sticky column allows. */
.cine-fab__model {
  position: relative;
  display: grid;
  justify-items: center;
  height: clamp(340px, 64svh, 720px);
  margin-bottom: 28px;
  touch-action: pan-y;
  cursor: grab;
  /* Fast double-taps to rotate must never select/highlight the image. */
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Views swap instantly, like flipping through the app's turntable. */
.cine-fab__body {
  grid-area: 1 / 1;
  position: relative;
  height: 100%;
  aspect-ratio: 568 / 768;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cine-fab__body img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.cine-fab__body.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Right-side orientations reuse the left-side assets, flipped. */
.cine-fab__body--mirror {
  transform: scaleX(-1);
}

/* Liquid-glass rotation arrows flanking the model. */
.cine-fab__rot {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: color-mix(in srgb, var(--cine-bg) 45%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow:
    0 8px 24px rgba(20, 21, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--cine-text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cine-fab__rot:hover {
  transform: scale(1.08);
  color: var(--cine-violet);
  box-shadow:
    0 10px 28px rgba(20, 21, 28, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cine-fab__rot:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 2px;
}

.cine-fab__rot--l {
  left: 0;
}

.cine-fab__rot--r {
  right: 0;
}

.cine-fab__rot svg {
  width: 16px;
  height: 16px;
}

.cine-fab__body img,
.cine-fab__body svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cine-fab__muscle {
  pointer-events: fill;
  cursor: pointer;
}

.cine-fab__muscle path {
  fill: rgba(139, 121, 255, 0);
  transition: fill 0.22s ease;
}

/* Selected fill must outrank hover — otherwise the tap :hover flash
   is the only highlight, and it vanishes when the pointer leaves. */
.cine-fab__muscle.is-on path {
  fill: rgba(139, 121, 255, 0.55);
}

.cine-fab__muscle.is-emph path {
  fill: rgba(106, 76, 255, 0.82);
}

@media (hover: hover) {
  .cine-fab__muscle:hover path {
    fill: rgba(139, 121, 255, 0.3);
  }

  .cine-fab__muscle.is-on:hover path {
    fill: rgba(139, 121, 255, 0.64);
  }

  .cine-fab__muscle.is-emph:hover path {
    fill: rgba(106, 76, 255, 0.9);
  }
}

.cine-fab__emph-label {
  margin-top: 4px;
}

.cine-fab__emph {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.cine-fab__emph-chip {
  padding: 6px 10px;
  border: 1px solid var(--cine-line);
  border-radius: 999px;
  background: transparent;
  color: var(--cine-muted);
  font-family: var(--cine-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cine-fab__emph-chip.is-on {
  border-color: var(--cine-violet);
  background: rgba(106, 76, 255, 0.16);
  color: var(--cine-text);
}

.cine-fab__emph-chip:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 2px;
}

/* No UA focus rectangle on tap; keyboard focus keeps the stroke below. */
.cine-fab__muscle:focus {
  outline: none;
}

.cine-fab__muscle:focus-visible path {
  stroke: var(--cine-violet-2);
  stroke-width: 6;
}

.cine-fab__big {
  margin: 26px 0 18px;
  font-family: var(--cine-display);
  font-size: 1.6rem;
  text-align: center;
  color: var(--cine-muted);
}

.cine-fab__big b {
  font-size: clamp(4.5rem, 12vh, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cine-text);
  font-variant-numeric: tabular-nums;
  margin-right: 10px;
}

.cine-fab__range {
  width: 100%;
  margin-top: 8px;
  accent-color: var(--cine-violet);
  cursor: pointer;
}

.cine-fab__levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.cine-fab__level {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--cine-line);
  border-radius: 12px;
  background: transparent;
  color: var(--cine-muted);
  font-family: var(--cine-body);
  font-size: 12.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cine-fab__level b {
  color: var(--cine-violet);
}

.cine-fab__level.is-on {
  border-color: var(--cine-violet);
  background: rgba(106, 76, 255, 0.12);
  color: var(--cine-text);
}

.cine-fab__level:focus-visible,
.cine-fab__redo:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 2px;
}

/* Continuar/Gerar stays centered on every step; Voltar hugs the left. */
.cine-fab__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.cine-fab__back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--cine-muted);
  font-family: var(--cine-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.cine-fab__back:hover {
  color: var(--cine-text);
}

.cine-fab__back[hidden] {
  display: none;
}

.cine-fab__go {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 14px 26px;
  cursor: pointer;
}

.cine-fab__result {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding-top: 14px;
}

.cine-fab__result[hidden] {
  display: none;
}

/* The phone-UI list styles assume a dark screen; retheme them here. */
.cine-fab .cine-ui-note {
  color: var(--cine-muted);
}

.cine-fab .cine-ui-list li {
  align-items: center;
  border-top-color: var(--cine-line);
  color: var(--cine-text);
}

.cine-fab .cine-ui-list li.is-live {
  color: var(--cine-violet);
}

.cine-fab .cine-ui-list span {
  color: var(--cine-muted);
}

.cine-fab__swap {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: -4px -6px -4px 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--cine-muted);
  cursor: pointer;
}

.cine-fab__swap svg {
  width: 16px;
  height: 16px;
}

.cine-fab__swap:hover {
  color: var(--cine-violet);
  background: rgba(106, 76, 255, 0.1);
}

.cine-fab__swap:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 2px;
}

.cine-fab__swap:disabled {
  opacity: 0.28;
  cursor: default;
  background: transparent;
  color: var(--cine-muted);
}

/* Technique badge on bundled rows, like the app's draft list. */
.cine-fab__techtag {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cine-violet);
}

.cine-fab .cine-demo__done {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cine-muted);
}

.cine-fab .cine-demo__done a {
  margin-left: 6px;
  color: var(--cine-violet);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cine-fab .cine-demo__done a:hover,
.cine-fab .cine-demo__done a:focus-visible {
  color: var(--cine-violet-2);
}

.cine-fab__redo {
  align-self: flex-start;
  margin-top: 14px;
  padding: 9px 16px;
  border: 1px solid var(--cine-line);
  border-radius: 10px;
  background: transparent;
  color: var(--cine-muted);
  font-family: var(--cine-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cine-fab__redo:hover {
  border-color: var(--cine-violet);
  color: var(--cine-text);
}

/* Mobile: the panel moves into the beat 01 article (see mountHubDemo). */
.cine-fab.is-inline {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  pointer-events: auto !important;
  margin-top: 24px;
  width: min(440px, calc(100vw - 2 * var(--cine-gutter)));
}

.cine-fab-slot:empty {
  display: none;
}

@media (max-width: 991px) {
  /* Small phone: keep a generated draft inside the screen */
  .cine-phone__slide {
    padding: 24px 12px 12px;
  }

  .cine-ui-bar {
    margin-bottom: 12px;
  }

  .cine-ui-kicker {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .cine-ui-note {
    font-size: 11px;
  }

  .cine-ui-list li {
    padding: 8px 0;
    font-size: 11px;
  }

  .cine-ui-note + .cine-ui-list,
  .cine-ui-list + .cine-ui-note {
    margin-top: 8px;
  }
}

.cine-ui-pr {
  margin: 8px 0 6px;
  font-family: var(--cine-display);
  font-size: clamp(2.6rem, 8vh, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.cine-ui-pr span {
  margin-left: 4px;
  font-size: 0.38em;
  color: var(--cine-violet-2);
}

/* ── Pricing / FAQ restyle on cine home ──────────────────────────────── */

body.page-cine .cine-faq-wrap {
  background: var(--cine-bg);
}

body.page-cine .display-header,
body.page-cine .section-header {
  font-family: var(--cine-display) !important;
  letter-spacing: -0.05em;
}

.cine-plans {
  padding: 12vh var(--cine-gutter) 10vh;
  background: var(--cine-bg);
  color: var(--cine-text);
  scroll-margin-top: var(--cine-nav-h);
}

.cine-plans__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 8vh;
}

.cine-plans__intro .cine-display {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
}

.cine-plans__intro p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--cine-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.5;
}

.cine-plans__cycle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding-bottom: 6px;
}

.cine-plans__cycle-btn {
  margin: 0;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--cine-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cine-plans__cycle-btn.is-on {
  color: var(--cine-text);
  border-bottom-color: var(--cine-violet);
}

.cine-plans__cycle-btn:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 6px;
}

.cine-plans__badge {
  color: var(--cine-violet-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cine-founding__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0 0 4vh;
  color: var(--cine-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.cine-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cine-plans__grid.is-founding {
  max-width: 52rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cine-plan.is-founding {
  border-color: rgba(106, 76, 255, 0.45);
}

.cine-plan {
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: 28px 28px 8px 0;
}

.cine-plan + .cine-plan {
  padding-left: 28px;
  padding-right: 0;
  border-left: 1px solid var(--cine-line);
}

.cine-plan__idx {
  display: block;
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cine-violet-2);
}

.cine-plan__cap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 0;
}

.cine-plan__cap b {
  font-family: var(--cine-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: var(--cine-text);
}

.cine-plan__cap span {
  color: var(--cine-muted);
  font-size: 0.95rem;
}

.cine-plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 22px;
  color: var(--cine-text);
}

.cine-plan__currency {
  font-size: 0.95rem;
  font-weight: 600;
}

.cine-plan__amount {
  font-family: var(--cine-display);
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cine-plan__decimal {
  font-size: 0.48em;
  letter-spacing: 0;
}

.cine-plan__cycle {
  margin-left: 4px;
  color: var(--cine-muted);
  font-size: 0.82rem;
}

.cine-plan__note {
  max-width: 22ch;
  margin: 22px 0 0;
  color: var(--cine-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cine-plan .cine-cta {
  margin-top: auto;
  margin-bottom: 0;
}

.cine-plans__tax {
  margin: 28px 0 0;
  color: var(--cine-muted);
  font-size: 0.78rem;
}

@media screen and (max-width: 1100px) {
  .cine-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .cine-plan {
    min-height: 24rem;
    padding: 28px 24px 12px 0;
  }

  .cine-plan:nth-child(2n) {
    padding-left: 24px;
    padding-right: 0;
    border-left: 1px solid var(--cine-line);
  }

  .cine-plan:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .cine-plan:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 700px) {
  .cine-plans {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }

  .cine-plans__head {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .cine-plans__intro .cine-display {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  /* Cycle: segmented pills instead of bare underline links. */
  .cine-plans__cycle {
    gap: 10px;
    padding-bottom: 0;
  }

  .cine-plans__cycle-btn {
    flex: 1 1 0;
    min-height: 48px;
    padding: 13px 0;
    border: 1px solid var(--cine-line);
    border-radius: 999px;
    text-align: center;
  }

  .cine-plans__cycle-btn.is-on {
    border-color: var(--cine-violet);
    background: rgba(106, 76, 255, 0.14);
    color: var(--cine-text);
  }

  .cine-plans__badge {
    flex-basis: 100%;
    text-align: center;
  }

  /* Plans: editorial rows with the desktop's hairline rhythm.
     Name and price share the top line; count, note, CTA stack below. */
  .cine-plans__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .cine-plan,
  .cine-plan + .cine-plan,
  .cine-plan:nth-child(2n),
  .cine-plan:nth-child(2n + 1) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    min-height: 0;
    padding: 26px 0 30px;
    border-left: 0;
    border-top: 1px solid var(--cine-line);
  }

  .cine-plan__idx {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .cine-plan__price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }

  .cine-plan__cap {
    grid-column: 1 / -1;
    margin: 16px 0 0;
  }

  .cine-plan__note {
    grid-column: 1 / -1;
    max-width: none;
    margin: 12px 0 0;
  }

  .cine-plan .cine-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    max-width: none;
    margin-top: 22px;
  }

  .cine-plans__tax {
    margin-top: 20px;
  }
}

body.page-cine .footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 0;
  border: 0;
  background: var(--cine-void);
  color: var(--cine-ink-void);
}

body.page-cine .footer .section-header,
body.page-cine .footer .body-text-default,
body.page-cine .footer .footer-link-text {
  color: var(--cine-ink-void);
}

body.page-cine .footer .section-header {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  max-width: 16ch;
}

body.page-cine .footer .main-container,
body.page-cine .footer-content-block {
  position: relative;
  z-index: 1;
}

body.page-cine .footer-glow,
body.page-cine .bg-glow {
  display: none;
}

.cine-foam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cine-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0 var(--cine-gutter) 0;
}

.cine-foot__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72vh;
  padding: 14vh 0 11vh;
  border: 0;
  text-align: center;
}

.cine-foot__play {
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cine-foot__play:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 8px;
}

.cine-foot__mark-wrap {
  position: relative;
  display: block;
  width: clamp(10rem, 30vw, 20rem);
  margin: 0 auto;
  aspect-ratio: 1;
}

.cine-foot__mark {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cine-foot__mark.is-hidden {
  opacity: 0;
}

.cine-foot__gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cine-foam-hud {
  display: none;
  position: absolute;
  top: 20px;
  left: var(--cine-gutter);
  z-index: 3;
  margin: 0;
  color: var(--cine-text);
  font-family: var(--cine-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.cine-foam-hud__unit {
  color: var(--cine-muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cine-foam-esc {
  display: none;
  position: absolute;
  top: 20px;
  right: var(--cine-gutter);
  z-index: 3;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--cine-line);
  background: transparent;
  color: var(--cine-muted);
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}

.cine-foam-esc:hover,
.cine-foam-esc:focus-visible {
  color: var(--cine-text);
  border-color: var(--cine-violet);
  outline: none;
}

html.is-foam-play,
html.is-foam-play body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-foam-play .cine-cursor {
  visibility: visible;
  z-index: 90;
}

body.page-cine .footer.is-foam-play {
  position: fixed;
  inset: 0;
  z-index: 70;
  min-height: 100svh;
  height: 100svh;
  background: transparent;
  pointer-events: auto;
}

body.page-cine .footer.is-foam-play::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 11, 15, 0.78);
  pointer-events: none;
}

body.page-cine .footer.is-foam-play .cine-foam {
  z-index: 1;
}

body.page-cine .footer.is-foam-play .cine-foot {
  display: none;
}

body.page-cine .footer.is-foam-play .cine-foam-esc,
body.page-cine .footer.is-foam-play .cine-foam-hud {
  display: block;
}

body.page-cine .footer.is-foam-play.is-foam-over .cine-foam-hud {
  display: none;
}

.cine-foam-over {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  place-items: center;
  align-content: center;
  padding: 24px var(--cine-gutter) 32px;
  background: rgba(10, 11, 15, 0.42);
  text-align: center;
  pointer-events: auto;
  overflow-y: auto;
}

body.page-cine .footer.is-foam-play .cine-foam-over.is-on {
  display: grid;
}

.cine-foam-over__kicker {
  margin: 0 0 12px;
  color: var(--cine-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cine-foam-over__board-kicker {
  margin: 28px 0 10px;
}

.cine-foam-over__score {
  margin: 0;
  color: var(--cine-text);
  font-family: var(--cine-display);
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}

.cine-foam-over__unit {
  margin-left: 0.12em;
  color: var(--cine-muted);
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.32em;
}

.cine-foam-over__form {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cine-foam-over__form.is-on {
  display: flex;
}

.cine-foam-over__form input {
  width: 10.5rem;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--cine-line);
  background: transparent;
  color: var(--cine-text);
  font-family: var(--cine-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.cine-foam-over__form input:focus {
  outline: none;
  border-color: var(--cine-violet);
}

body.page-cine .footer.is-foam-play .cine-foam-over input,
body.page-cine .footer.is-foam-play .cine-foam-over button {
  cursor: text;
}

body.page-cine .footer.is-foam-play .cine-foam-over button {
  cursor: pointer;
}

.cine-foam-over__form .cine-cta {
  margin-top: 0;
}

.cine-foam-board {
  display: none;
  width: min(28rem, 100%);
  max-height: 32vh;
  margin: 0 auto;
  padding: 0;
  overflow-y: auto;
  list-style: none;
  text-align: left;
}

.cine-foam-board.is-on {
  display: grid;
}

.cine-foam-board li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cine-text);
  font-family: var(--cine-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cine-foam-board li span:first-child {
  color: var(--cine-muted);
  font-variant-numeric: tabular-nums;
}

.cine-foam-board li span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--cine-muted);
}

.cine-foam-over__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.cine-foam-over__actions .cine-cta {
  margin-top: 0;
}

.cine-foot__ready {
  margin: 8px auto 0;
  max-width: 16ch;
  font-family: var(--cine-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cine-foot__cta .body-text-default {
  max-width: 28ch;
  margin: 16px auto 28px;
  color: var(--cine-muted);
}

.cine-foot__links {
  padding: 48px 0 28px;
  border: 0;
}

.cine-foot__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
}

.cine-foot__col h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cine-muted);
}

.cine-foot__col a,
.cine-foot__col p {
  display: block;
  margin: 0;
  padding: 7px 0;
  color: var(--cine-ink-void);
  font-size: 0.95rem;
  line-height: 1.35;
  text-decoration: none;
}

.cine-foot__col a:hover {
  color: var(--cine-violet-2);
}

.cine-foot__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 0;
  border-top: 0;
}

.cine-foot__base .body-text-default {
  margin: 0;
  color: var(--cine-muted);
  font-size: 0.82rem;
}

.cine-foot__top-link {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 16px;
  color: var(--cine-ink-void);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.cine-foot__top-link:hover {
  border-color: var(--cine-violet-2);
  color: var(--cine-violet-2);
}

@media (prefers-reduced-motion: reduce) {
  html.page-cine {
    transition: none;
  }
}

.cine-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cine-faq-wrap {
  --cine-faq-slot: 4.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(32px, 6vw, 88px);
  row-gap: 28px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10vh var(--cine-gutter) 12vh;
}

.cine-faq-wrap__intro {
  position: sticky;
  top: calc(var(--cine-nav-h) + 28px);
  min-width: 0;
}

.cine-faq-wrap .cine-kicker {
  margin-bottom: 16px;
}

.cine-faq-wrap .cine-display {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.4vw, 3.5rem);
}

.cine-faq-wrap__list {
  min-width: 0;
  height: calc(var(--cine-faq-slot) * 5);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 7%,
    #000 20%,
    #000 80%,
    rgba(0, 0, 0, 0.55) 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 7%,
    #000 20%,
    #000 80%,
    rgba(0, 0, 0, 0.55) 93%,
    transparent 100%
  );
}

.cine-faq-wrap__list::-webkit-scrollbar {
  display: none;
  width: 0;
}

.cine-faq {
  min-height: var(--cine-faq-slot);
  border-top: 1px solid var(--cine-line);
  scroll-snap-align: center;
  transform-origin: center left;
  will-change: transform, opacity;
}

.cine-faq:last-of-type {
  border-bottom: 1px solid var(--cine-line);
}

.cine-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  min-height: var(--cine-faq-slot);
  padding: 0;
  font-family: var(--cine-display);
  font-size: clamp(1.02rem, 1.9vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  overflow-wrap: break-word;
  cursor: pointer;
}

.cine-faq summary::-webkit-details-marker,
.cine-faq summary::marker {
  display: none;
  content: "";
}

.cine-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-top: 0.05em;
  color: var(--cine-violet-2);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.cine-faq[open] summary::after {
  content: "−";
}

.cine-faq summary:focus-visible {
  outline: 2px solid var(--cine-violet);
  outline-offset: 4px;
}

.cine-faq p {
  margin: 0 0 18px;
  max-width: 46ch;
  color: var(--cine-muted);
  line-height: 1.55;
}

body.is-reduced .cine-faq-wrap__list {
  height: auto;
  max-height: calc(var(--cine-faq-slot) * 5);
  scroll-snap-type: none;
  -webkit-mask-image: none;
  mask-image: none;
}

body.is-reduced .cine-faq {
  transform: none !important;
  opacity: 1 !important;
}

@media screen and (min-width: 992px) {
  :root {
    --cine-panel-left: max(var(--cine-gutter), 8vw);
  }

  .cine-plate__copy {
    left: var(--cine-gutter);
    right: auto;
    top: calc(var(--cine-nav-h) + clamp(36px, 10vh, 96px));
    bottom: auto;
    max-width: min(34rem, 42vw);
  }

  .cine-chapter__pin {
    grid-template-columns: repeat(24, minmax(0, 1fr));
    column-gap: 20px;
    padding-left: var(--cine-gutter);
    padding-right: var(--cine-gutter);
  }

  .cine-mega {
    right: 30%;
  }

  .cine-words {
    left: auto;
    right: var(--cine-gutter);
    width: min(34rem, 36vw);
  }

  .cine-hub__step--hold {
    min-height: 190svh;
    justify-content: flex-start;
    padding: 0;
  }

  /* Short sticky block: copy rides in from the bottom, then holds at
     vertical center. The 100svh device column lags behind it. */
  .cine-hub__step-pin {
    position: sticky;
    top: calc(50svh - 7.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding: 0 0 8vh;
  }

  /* Lead 01 in from the previous scene without a scroll transform. */
  .cine-hub__step--hold[data-hub-step="0"] .cine-hub__step-pin {
    margin-top: -22vh;
  }

  /* 01 must leave the viewport before 02 starts. Sticky release is the
     article end, so 02 cannot be the next sibling. */
  .cine-hub__gap {
    min-height: 110svh;
  }

  .cine-hub__device .cine-fab,
  .cine-hub__device-pin {
    transition: none;
  }

}

@media screen and (max-width: 991px) {
  .cine-faq-wrap {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-top: 6vh;
    padding-bottom: 10vh;
  }

  .cine-faq-wrap__intro {
    position: static;
  }

  .cine-faq-wrap__list {
    --cine-faq-slot: 4.55rem;
    height: calc(var(--cine-faq-slot) * 5);
  }

  .cine-faq-wrap .cine-display {
    max-width: 12ch;
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
  }

  .cine-faq summary {
    font-size: clamp(1.12rem, 5.2vw, 1.4rem);
    padding: 18px 0;
  }

  .cine-foot__cta {
    min-height: 64vh;
    padding: 12vh 0 9vh;
  }

  .cine-foot__cols {
    grid-template-columns: 1fr 1fr;
  }

  .cine-foot__base {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cine-chapter {
    height: 200vh;
  }

  .cine-chapter__pin {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 100svh;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding: calc(var(--cine-nav-h) + 28px) var(--cine-gutter) 48px;
  }

  .cine-chapter__pin::after {
    display: none;
  }

  .cine-mega {
    --cine-mega-size: clamp(2.4rem, 10.2vw, 3.4rem);
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    line-height: 0.92;
    transform: none !important;
  }

  .cine-mega-line {
    display: block;
    white-space: nowrap;
  }

  .cine-words {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: none;
    font-family: var(--cine-display);
    font-weight: 700;
    font-size: clamp(1.95rem, 8.8vw, 2.75rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    transform: none !important;
  }

  .cine-mega [data-cine-token] {
    opacity: 1;
    filter: none;
  }

  .cine-words .cine-word {
    display: inline-block;
    white-space: nowrap;
  }

  .cine-words [data-cine-token] {
    display: inline-block;
    padding: 0;
    opacity: 1;
    filter: none;
    line-height: inherit;
  }

  .cine-plate__copy {
    max-width: 34rem;
  }

  .cine-hub {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }

  .cine-hub__copy {
    display: flex;
    flex-direction: column;
    grid-column: auto;
    grid-row: auto;
    padding-left: var(--cine-gutter);
    padding-right: var(--cine-gutter);
  }

  .cine-hub__device {
    display: flex;
    position: relative;
    top: auto;
    height: auto;
    width: 100%;
    justify-content: center;
    justify-items: center;
    padding: 0 var(--cine-gutter) 36px;
    background: none;
    pointer-events: none;
  }

  .cine-hub__device:not(:has(.cine-hub__device-pin.is-on)) {
    display: none;
  }

  .cine-hub__device-pin {
    width: min(210px, 54vw);
    pointer-events: auto;
  }

  .cine-hub__step,
  .cine-hub__step--hold {
    min-height: auto;
    justify-content: flex-start;
    padding: calc(var(--cine-nav-h) + 24px) 0 40px;
  }

  .cine-hub__step-pin {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
  }

  .cine-hub__step--hold[data-hub-step="0"] .cine-hub__step-pin {
    margin-top: 0;
  }

  .cine-hub .cine-panel__title {
    max-width: none;
    opacity: 1;
    color: var(--cine-text);
  }

  .cine-hub__step--hold[data-hub-step="0"] {
    padding: calc(var(--cine-nav-h) + 12px) 0 16px;
  }

  .cine-hub__step--hold[data-hub-step="0"] .cine-panel__copy {
    margin-top: 10px;
  }

  .cine-fab.is-inline {
    width: 100%;
    max-width: none;
    margin-top: 10px;
  }

  .cine-fab.is-inline .cine-fab__model {
    height: min(46svh, 360px);
    margin-bottom: 10px;
  }

  .cine-fab.is-inline .cine-fab__nav {
    margin-top: 8px;
  }

  .cine-plan .cine-cta {
    min-height: 48px;
  }

  .cine-hub__gap {
    min-height: 0;
    height: 0;
    overflow: hidden;
  }

  .cine-panel {
    min-height: 0;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .cine-plate__progress {
    display: none;
  }

  /* No footer minigame on mobile: the logo is just a logo. */
  .cine-foot__play {
    pointer-events: none;
  }

  .cine-rail--loop {
    height: auto;
  }

  .cine-rail--loop .cine-rail__pin {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .cine-rail--loop .cine-rail__track {
    display: block;
    transform: none !important;
    height: auto;
  }

  .cine-rail--loop .cine-panel {
    flex: none;
    flex-basis: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: calc(var(--cine-nav-h) + 20px) var(--cine-gutter) 36px;
  }

  body.page-cine .navbar-button-s-block > .primary-button {
    display: none;
  }

  body.page-cine .menu-button,
  body.page-cine .menu-button.w--open {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
  }

  body.page-cine .navbar-menu-content {
    background: var(--cine-bg) !important;
    border: 1px solid var(--cine-line);
    border-radius: 0;
    margin-top: 8px;
    padding: 12px 8px 24px;
  }

  body.page-cine .navbar-link-block {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  body.page-cine .site-lang-toggle__trigger {
    min-height: 44px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --cine-gutter: 20px;
  }

  .cine-hub__copy {
    padding-left: var(--cine-gutter);
    padding-right: var(--cine-gutter);
  }

  .cine-fab {
    width: 100%;
    max-width: none;
  }

  .cine-fab.is-inline {
    width: 100%;
    margin-top: 10px;
  }

  .cine-fab__model {
    width: 100%;
    height: min(44svh, 340px);
    margin-bottom: 10px;
  }

  .cine-fab__rot {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }

  .cine-plate__copy {
    left: var(--cine-gutter);
    right: var(--cine-gutter);
    max-width: none;
    bottom: 7vh;
  }

  .cine-plate .cine-display {
    font-size: clamp(2.05rem, 10vw, 2.6rem);
  }

  .cine-lede {
    max-width: 36ch;
    font-size: 1.02rem;
  }

  .cine-mega {
    --cine-mega-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .cine-words {
    font-family: var(--cine-display);
    font-weight: 700;
    font-size: clamp(1.85rem, 8.4vw, 2.55rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .cine-cta {
    min-height: 48px;
    padding: 14px 22px;
  }

  .cine-foot__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --cine-gutter: 18px;
    --cine-nav-h: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cine-loader,
  .cine-mark,
  .cine-cta {
    transition: none;
  }

  .cine-rec b {
    animation: none;
  }

  .cine-plate {
    height: auto;
  }

  .cine-plate__sticky {
    position: relative;
    height: 100svh;
  }

  .cine-mega,
  .cine-mega [data-cine-token],
  .cine-words,
  .cine-words [data-cine-token] {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .cine-hub__step,
  .cine-phone__slide {
    transition: none;
  }

  .cine-rail--loop .cine-rail__track {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 991px) {
  .cine-chapter {
    height: auto;
  }

  .cine-chapter__pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .cine-words [data-cine-token] {
    color: inherit !important;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 992px) {
  .cine-chapter {
    height: auto;
  }

  .cine-chapter__pin {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .cine-mega {
    top: calc(var(--cine-nav-h) + 8vh);
  }

  .cine-words {
    top: auto;
    bottom: max(32px, 8vh);
  }

  .cine-chapter__pin::after {
    display: none;
  }

  .cine-rail--loop,
  .cine-rail--loop .cine-rail__pin {
    height: auto;
  }
}
