/* ============================================================
   CaYaDev — Home (CINEMATIC / typographic redesign)
   Loaded AFTER home-redesign.css so plain selectors win by
   source order. Card-free. Huge typography, full-bleed stages,
   giant ghost scene numbers, dramatic glows, scene-by-scene
   scroll reveal. Navbar glassmorphism is NOT touched here.
   Brand red (#dc2626) preserved.
   ============================================================ */

:root {
  --cine-max: 1320px;
  --cine-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cine-gap: clamp(5rem, 12vw, 11rem);
}

/* ---------- Stack container ---------- */
.home-stack.home-cine {
  display: flex;
  flex-direction: column;
  gap: var(--cine-gap);
  width: 100%;
  max-width: var(--cine-max);
  box-sizing: border-box;
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  overflow-x: clip;
}

/* ---------- Reveal: neutralize base, drive an inner stagger ---------- */
.home-cine [data-home-reveal] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  will-change: auto;
}

.home-cine .cine-stat,
.home-cine .cine-scene-head > *,
.home-cine .cine-stage,
.home-cine .cine-portal-intro > *,
.home-cine .cine-portal-aside > *,
.home-cine .cine-finale-inner > * {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s var(--cine-ease),
    transform 0.95s var(--cine-ease);
}

.home-cine .cine-stats.is-visible .cine-stat,
.home-cine .cine-scene.is-visible .cine-scene-head > *,
.home-cine .cine-scene.is-visible .cine-stage,
.home-cine .cine-portal.is-visible .cine-portal-intro > *,
.home-cine .cine-portal.is-visible .cine-portal-aside > *,
.home-cine .cine-finale.is-visible .cine-finale-inner > * {
  opacity: 1;
  transform: none;
}

/* Staggered entrances */
.home-cine .is-visible .cine-stat:nth-child(1) { transition-delay: 0.04s; }
.home-cine .is-visible .cine-stat:nth-child(2) { transition-delay: 0.12s; }
.home-cine .is-visible .cine-stat:nth-child(3) { transition-delay: 0.20s; }
.home-cine .is-visible .cine-stat:nth-child(4) { transition-delay: 0.28s; }

.home-cine .cine-scene.is-visible .cine-scene-head > *:nth-child(1) { transition-delay: 0.06s; }
.home-cine .cine-scene.is-visible .cine-scene-head > *:nth-child(2) { transition-delay: 0.14s; }
.home-cine .cine-scene.is-visible .cine-scene-head > *:nth-child(3) { transition-delay: 0.22s; }
.home-cine .cine-scene.is-visible .cine-scene-head > *:nth-child(4) { transition-delay: 0.30s; }
.home-cine .cine-scene.is-visible .cine-stage { transition-delay: 0.20s; }

.home-cine .cine-finale.is-visible .cine-finale-inner > *:nth-child(1) { transition-delay: 0.05s; }
.home-cine .cine-finale.is-visible .cine-finale-inner > *:nth-child(2) { transition-delay: 0.13s; }
.home-cine .cine-finale.is-visible .cine-finale-inner > *:nth-child(3) { transition-delay: 0.21s; }
.home-cine .cine-finale.is-visible .cine-finale-inner > *:nth-child(4) { transition-delay: 0.30s; }

/* ---------- Shared typographic system ---------- */
.home-cine .cine-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ff9a9a;
}
.home-cine .cine-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--hr-red-soft, #ef4444), transparent);
}

.home-cine .cine-title {
  margin: 1.1rem 0 1.3rem;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  background: linear-gradient(176deg, #ffffff 8%, #b7bcca 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-cine .cine-title--mono {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.home-cine .cine-lead {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--hr-text-mute, #aab2c5);
}
.home-cine .cine-muted {
  margin: 1rem 0 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #8b94a8;
}

.home-cine .cine-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.9rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffd0d0;
  text-decoration: none;
  width: fit-content;
  transition: color 0.3s var(--cine-ease), gap 0.3s var(--cine-ease);
}
.home-cine .cine-link i { transition: transform 0.3s var(--cine-ease); }
.home-cine .cine-link:hover { color: #fff; gap: 0.85rem; }
.home-cine .cine-link:hover i { transform: translateX(5px); }
.home-cine .cine-link--lg {
  margin-top: 2.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(239, 68, 68, 0.4);
}
.home-cine .cine-link--lg:hover { border-bottom-color: rgba(239, 68, 68, 0.85); }

/* ============================================================
   Stats band
   ============================================================ */
.home-cine .cine-stats {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
  border-bottom: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
}
.home-cine .cine-stats::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(120px, 30%, 360px);
  height: 1px;
  background: linear-gradient(90deg, var(--hr-red, #dc2626), transparent);
  animation: cine-sweep 6s var(--cine-ease) infinite;
}
@keyframes cine-sweep {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(40px); }
}

.home-cine .cine-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.home-cine .cine-stat strong {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff, #ff8585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-cine .cine-stat > span {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hr-text-mute, #aab2c5);
}

.home-cine .cine-stat--update {
  margin-left: auto;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
}
.home-cine .cine-stat-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #ffb4b4;
  font-size: 1rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(127, 29, 29, 0.12));
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.home-cine .cine-stat-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: cine-live 2.4s var(--cine-ease) infinite;
}
@keyframes cine-live {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.home-cine .cine-stat-update-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}
.home-cine .cine-stat-update-label {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f7891;
}
.home-cine .cine-stat-update-text span:last-child {
  font-size: 0.98rem;
  font-weight: 600;
  color: #d7deeb;
}

/* ============================================================
   Scenes (project / share) — big type + full stage
   ============================================================ */
.home-cine .cine-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.home-cine .cine-scene--alt {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}
.home-cine .cine-scene--alt .cine-scene-head {
  order: 2;
  align-items: flex-end;
  text-align: right;
}
.home-cine .cine-scene--alt .cine-stage { order: 1; }

.home-cine .cine-scene-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Giant ghost scene number */
.home-cine .cine-index {
  position: absolute;
  z-index: 0;
  top: clamp(-5rem, -7vw, -3rem);
  left: -0.06em;
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-weight: 800;
  font-size: clamp(7rem, 19vw, 15rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.035);
  -webkit-text-stroke: 1px rgba(239, 68, 68, 0.08);
  pointer-events: none;
  user-select: none;
}
.home-cine .cine-scene--alt .cine-index {
  left: auto;
  right: -0.06em;
}

/* Soft drifting glow behind the stage */
.home-cine .cine-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.home-cine .cine-stage::before {
  content: "";
  position: absolute;
  inset: -16% -12% -26% -12%;
  z-index: 0;
  background: radial-gradient(58% 58% at 65% 30%, rgba(220, 38, 38, 0.2), transparent 70%);
  filter: blur(48px);
  opacity: 0;
  transition: opacity 1s var(--cine-ease);
  pointer-events: none;
}
.home-cine .cine-scene.is-visible .cine-stage::before { opacity: 1; }

/* ---- Override JS-injected project spotlight → cinematic stage ---- */
.home-cine .cine-stage .featured-project-card {
  position: relative;
  z-index: 1;
  display: block;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
  min-height: 0;
  transition: none;
}
.home-cine .cine-stage .featured-project-card::before { display: none !important; }
.home-cine .cine-stage .featured-project-card:hover {
  transform: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.home-cine .cine-stage .featured-project-media {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  border: 1px solid var(--hr-line-strong, rgba(255, 255, 255, 0.12));
  background: linear-gradient(160deg, rgba(18, 26, 48, 0.96), rgba(7, 12, 23, 0.99));
  box-shadow:
    0 60px 120px -50px rgba(0, 0, 0, 0.9),
    0 0 90px -40px rgba(220, 38, 38, 0.45);
  padding: clamp(0.9rem, 2vw, 1.75rem);
  overflow: hidden;
}
.home-cine .cine-stage .featured-project-media::after { display: none !important; }
.home-cine .cine-stage .featured-project-media img {
  border-radius: 14px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: transform 0.8s var(--cine-ease);
}
.home-cine .cine-stage .featured-project-card:hover .featured-project-media img { transform: scale(1.04); }
.home-cine .cine-stage .featured-project-content { padding: 1.75rem 0.3rem 0; }
.home-cine .cine-stage .featured-project-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 0.6rem;
}
.home-cine .cine-stage .featured-project-summary {
  color: var(--hr-text-mute, #aab2c5);
  font-size: 1.02rem;
  line-height: 1.7;
}
.home-cine .cine-stage .featured-project-footer {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
}
.home-cine .cine-stage .featured-project-action { color: #ffd0d0; transition: color 0.3s var(--cine-ease); }
.home-cine .cine-stage .featured-project-card:hover .featured-project-action { color: #fff; }

/* ---- Override JS-injected share spotlight → cinematic stage ---- */
.home-cine .cine-stage .home-share-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
  transition: none;
}
.home-cine .cine-stage .home-share-card::before { display: none !important; }
.home-cine .cine-stage .home-share-card:hover {
  transform: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.home-cine .cine-stage .home-share-card-media {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  border: 1px solid var(--hr-line-strong, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 60px 120px -50px rgba(0, 0, 0, 0.9),
    0 0 90px -40px rgba(220, 38, 38, 0.45);
  overflow: hidden;
}
.home-cine .cine-stage .home-share-card-media img { transition: transform 0.8s var(--cine-ease); }
.home-cine .cine-stage .home-share-card:hover .home-share-card-media img { transform: scale(1.04); }
.home-cine .cine-stage .home-share-card-body { padding: 1.75rem 0.3rem 0; }
.home-cine .cine-stage .home-share-card .home-preview-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.home-cine .cine-stage .home-share-card .home-preview-text {
  font-size: 1.02rem;
  line-height: 1.7;
}
.home-cine .cine-stage .home-share-card-action {
  color: #ffd0d0;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
  transition: color 0.3s var(--cine-ease);
}
.home-cine .cine-stage .home-share-card:hover .home-share-card-action { color: #fff; }

.home-cine .cine-stage .home-preview-empty {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Portal scene
   ============================================================ */
.home-cine .cine-portal { display: block; }
.home-cine .cine-portal .cine-index { position: absolute; }
.home-cine .cine-portal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.home-cine .cine-portal-intro { display: flex; flex-direction: column; }

.home-cine .cine-portal-count {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.9rem;
}
.home-cine .cine-portal-count strong {
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #ff8585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-cine .cine-portal-count span {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hr-text-mute, #aab2c5);
}

.home-cine .cine-portal-points { display: flex; flex-direction: column; }
.home-cine .cine-portal-point {
  padding: 1.2rem 0;
  border-top: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
}
.home-cine .cine-portal-point:first-child { border-top: none; padding-top: 0; }
.home-cine .cine-portal-point h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.home-cine .cine-portal-point p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--hr-text-mute, #aab2c5);
}
.home-cine .cine-portal-note {
  margin: 1.6rem 0 1.1rem;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(239, 68, 68, 0.5);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--hr-text-mute, #aab2c5);
}

/* ============================================================
   Finale (CTA)
   ============================================================ */
.home-cine .cine-finale {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--hr-line, rgba(255, 255, 255, 0.08));
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(220, 38, 38, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(18, 24, 42, 0.6), rgba(7, 10, 20, 0.6));
}
.home-cine .cine-finale::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -55%;
  left: 50%;
  width: min(900px, 120%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: conic-gradient(from 0deg, transparent, rgba(220, 38, 38, 0.16), transparent 28%, transparent 70%, rgba(255, 140, 140, 0.12), transparent);
  filter: blur(20px);
  border-radius: 50%;
  animation: cine-spin 26s linear infinite;
  pointer-events: none;
}
.home-cine .cine-finale::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
}
@keyframes cine-spin { to { transform: translateX(-50%) rotate(360deg); } }

.home-cine .cine-finale-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-cine .cine-finale .cine-eyebrow { justify-content: center; }
.home-cine .cine-finale .cine-lead { margin-inline: auto; }
.home-cine .cine-finale-title {
  margin: 1.1rem 0 1.3rem;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  background: linear-gradient(176deg, #ffffff 10%, #c2c7d4 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-cine .cine-finale-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.home-cine .cine-finale-actions .btn { text-transform: none; letter-spacing: 0.01em; }

/* ============================================================
   Title line reveal (masked wipe-up)
   ============================================================ */
.home-cine .cine-title--reveal {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: inherit;
}
.home-cine .cine-title--reveal .cine-line {
  display: block;
  overflow: hidden;
  line-height: 1.1;
  /* Global `span { font-size: 1rem }` sıfırlamasını ez; başlık boyutunu devral.
     Aksi halde başlık 16px'e düşer ve em cinsinden letter-spacing harfleri üst üste bindirir. */
  font-size: inherit;
  letter-spacing: inherit;
  /* İniş yapan harfler (y, p, j, ı) kırpılmasın diye kutuya alttan pay ver,
     negatif margin ile düzeni aynı tut. */
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.home-cine .cine-title--reveal .cine-line > span {
  display: block;
  font-size: inherit;
  letter-spacing: inherit;
  transform: translateY(125%);
  transition: transform 0.95s var(--cine-ease);
  background: linear-gradient(176deg, #ffffff 8%, #b7bcca 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* title drives its own reveal, so cancel the block-level stagger on it */
.home-cine .cine-scene-head > .cine-title--reveal,
.home-cine .cine-finale-inner > .cine-title--reveal {
  opacity: 1;
  transform: none;
}
.home-cine .is-visible .cine-title--reveal .cine-line > span { transform: none; }
.home-cine .is-visible .cine-title--reveal .cine-line:nth-child(1) > span { transition-delay: 0.10s; }
.home-cine .is-visible .cine-title--reveal .cine-line:nth-child(2) > span { transition-delay: 0.22s; }

/* ============================================================
   Hero scroll cue
   ============================================================ */
.home-cine .cine-scroll-cue,
#home .cine-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  pointer-events: none;
}
#home .cine-scroll-cue-label {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7d8499;
}
#home .cine-scroll-cue-rail {
  position: relative;
  width: 22px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
#home .cine-scroll-cue-dot {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 7px;
  margin-left: -2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ff9a9a, var(--hr-red, #dc2626));
  animation: cine-cue 1.9s var(--cine-ease) infinite;
}
@keyframes cine-cue {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  70% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* ============================================================
   Manifesto statement
   ============================================================ */
.home-cine .cine-manifesto {
  padding: clamp(1rem, 3vw, 2.5rem) 0;
}
.home-cine .cine-manifesto-text {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #cfd5e3;
}
.home-cine .cine-manifesto-text .cine-mark {
  font-size: inherit;
  font-weight: 700;
  color: #fff;
}
/* Marka: "CaYa" kırmızı (#dc2626), "Dev" beyaz kalır.
   font-size: inherit ile global `span { font-size: 1rem }` ezilir. */
.home-cine .cine-manifesto-text .cine-mark .cine-mark-caya {
  font-size: inherit;
  color: #dc2626;
}
.home-cine .cine-manifesto-text em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff, #ff8585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* manifesto reveal */
.home-cine .cine-manifesto .cine-manifesto-text {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--cine-ease), transform 1s var(--cine-ease);
}
.home-cine .cine-manifesto.is-visible .cine-manifesto-text {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Tech marquee
   ============================================================ */
.home-cine .cine-marquee {
  position: relative;
  overflow: hidden;
  margin: clamp(-1rem, -2vw, -0.5rem) 0;
  padding: 1rem 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.home-cine .cine-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  will-change: transform;
  animation: cine-marquee 32s linear infinite;
}
.home-cine .cine-marquee-track span {
  font-family: var(--hr-mono, ui-monospace, monospace);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.3s var(--cine-ease);
}
.home-cine .cine-marquee-track i {
  font-style: normal;
  color: rgba(239, 68, 68, 0.5);
  font-size: 1rem;
}
.home-cine .cine-marquee:hover .cine-marquee-track span { color: rgba(255, 255, 255, 0.4); }
@keyframes cine-marquee {
  to { transform: translateX(-50%); }
}

/* Parallax base — decorative ghost numbers */
.home-cine [data-parallax] { will-change: transform; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .home-cine .cine-scene,
  .home-cine .cine-scene--alt,
  .home-cine .cine-portal-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 6vw, 2.75rem);
  }
  .home-cine .cine-scene-head,
  .home-cine .cine-scene--alt .cine-scene-head {
    order: 1;
    align-items: flex-start;
    text-align: left;
  }
  .home-cine .cine-stage,
  .home-cine .cine-scene--alt .cine-stage { order: 2; }
  .home-cine .cine-index {
    top: clamp(-3.5rem, -10vw, -2.25rem);
    font-size: clamp(5.5rem, 26vw, 9rem);
  }
  .home-cine .cine-scene--alt .cine-index { right: auto; left: -0.06em; }
}

@media (max-width: 600px) {
  .home-cine .cine-stats { gap: 1.75rem 2.5rem; }
  .home-cine .cine-stat--update {
    margin-left: 0;
    width: 100%;
  }
  .home-cine .cine-stat-update-text { text-align: left; }
  .home-cine .cine-finale-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-cine .cine-stat,
  .home-cine .cine-scene-head > *,
  .home-cine .cine-stage,
  .home-cine .cine-portal-intro > *,
  .home-cine .cine-portal-aside > *,
  .home-cine .cine-finale-inner > *,
  .home-cine .cine-manifesto-text,
  .home-cine .cine-title--reveal .cine-line > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .home-cine .cine-stage::before { opacity: 1; transition: none; }
  .home-cine .cine-stats::before,
  .home-cine .cine-stat-icon::after,
  .home-cine .cine-finale::before,
  .home-cine .cine-scroll-cue-dot,
  .home-cine .cine-marquee-track {
    animation: none !important;
  }
  .home-cine .cine-stage .featured-project-media img,
  .home-cine .cine-stage .home-share-card-media img {
    transition: none !important;
  }
}
