/* ════════════════════════════════════════════════════════════════
   SYNORA VENTURES — Cinematic design system (site-wide)
   A luminous, editorial experience: layered constellation, kinetic type,
   scroll-revealed chapters. Loads on top of synora.css (tokens/reset/forms)
   for every public page (body.cine-page).
   ════════════════════════════════════════════════════════════════ */

body.cine-page {
  --fog:   #E7ECF5;
  --gray:  #AAB4C5;
  --deep:  #070B16;          /* deepest space base */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --ease-cine: cubic-bezier(.2,.7,.2,1);

  background: var(--deep);
  color: var(--fog);
  font-family: var(--body);
  cursor: none;
}
@media (hover: none) { body.cine-page { cursor: auto; } }
body.cine-page #main { overflow: visible; }

/* ── Layered backgrounds ───────────────────────────────────── */
#aura { position: fixed; inset: 0; z-index: 0; display: block; }

.aurora {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .55; mix-blend-mode: screen;
  background:
    radial-gradient(46vmax 40vmax at 22% 18%, rgba(108,92,231,.30), transparent 60%),
    radial-gradient(50vmax 42vmax at 80% 30%, rgba(39,245,255,.18), transparent 62%),
    radial-gradient(60vmax 48vmax at 50% 108%, rgba(108,92,231,.20), transparent 60%);
  animation: auroraShift 22s var(--ease-cine) infinite alternate;
}
@keyframes auroraShift {
  0%   { transform: translate3d(-2%,-1%,0) scale(1.02); }
  100% { transform: translate3d(3%,2%,0)  scale(1.08); }
}

.glow {
  position: fixed; z-index: 2; pointer-events: none;
  width: 60vmax; height: 60vmax; left: 0; top: 0; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(108,92,231,.18), rgba(39,245,255,.06) 38%, transparent 62%);
  transform: translate(-50%,-50%); transition: opacity .6s var(--ease-cine);
  mix-blend-mode: screen;
}
.vignette {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(circle at 50% 36%, transparent 28%, rgba(7,11,22,.5) 76%, rgba(7,11,22,.92) 100%);
}
.grain {
  position: fixed; inset: -50%; z-index: 4; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-4%)}
  60%{transform:translate(-3%,2%)} 80%{transform:translate(4%,-2%)} 100%{transform:translate(0,0)}
}

/* ── Custom cursor ─────────────────────────────────────────── */
.cursor {
  position: fixed; z-index: 90; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); pointer-events: none; transform: translate(-50%,-50%);
  box-shadow: 0 0 14px var(--cyan); transition: width .25s, height .25s, background .25s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; z-index: 90; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(170,180,197,.5); pointer-events: none; transform: translate(-50%,-50%);
  transition: width .3s var(--ease-cine), height .3s var(--ease-cine), border-color .3s, opacity .3s;
}
body.link-hover .cursor { width: 0; height: 0; }
body.link-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--cyan); }
@media (hover: none) { .cursor, .cursor-ring, .glow { display: none; } }

/* ── Intro bloom ───────────────────────────────────────────── */
#intro {
  position: fixed; inset: 0; z-index: 80; background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s var(--ease-cine), visibility 1s;
}
#intro.gone { opacity: 0; visibility: hidden; }
#introDot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(39,245,255,.6), 0 0 30px var(--cyan);
  animation: bloom 1.8s var(--ease-cine) infinite;
}
@keyframes bloom {
  0%   { transform: scale(.7);  opacity: .5; box-shadow: 0 0 0 0 rgba(39,245,255,.45), 0 0 20px var(--cyan); }
  60%  { opacity: 1; }
  100% { transform: scale(2.6); opacity: 0;  box-shadow: 0 0 0 26px rgba(39,245,255,0), 0 0 40px var(--cyan); }
}

/* ── Navigation (minimal, mix-blend) ──────────────────────── */
.cine-nav {
  position: fixed; z-index: 40; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 26px 7vw; mix-blend-mode: difference;
}
.cine-nav .mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 500; letter-spacing: .32em; font-size: 13px;
  color: #fff; text-decoration: none;
}
.cine-nav .mark .dots { display: inline-flex; align-items: center; gap: 5px; }
.cine-nav .mark .dots i {
  width: 6px; height: 6px; border-radius: 50%; background: #fff; display: block; position: relative;
}
.cine-nav .mark .dots i::before {
  content: ""; position: absolute; top: 50%; left: 100%; width: 10px; height: 1px;
  background: #fff; transform: translateY(-50%);
}
.cine-nav .mark .dots i:last-child::before { display: none; }
.cine-links { display: flex; align-items: center; gap: 30px; }
.cine-nav a.nlink {
  font-family: var(--display); font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  text-decoration: none; color: #fff; opacity: .82; transition: opacity .3s;
}
.cine-nav a.nlink:hover, .cine-nav a.nlink.active { opacity: 1; }
@media (max-width: 860px) { .cine-links { gap: 18px; } .cine-nav a.nlink { font-size: 11px; letter-spacing: .2em; } }
@media (max-width: 600px) {
  .cine-nav { padding: 20px 7vw; }
  .cine-links { gap: 14px; }
  .cine-links a.nlink.opt { display: none; }     /* keep the row from overflowing on phones */
}

/* ── Scroll rail ───────────────────────────────────────────── */
.rail {
  position: fixed; z-index: 35; right: 34px; top: 0; bottom: 0; width: 1px;
  display: flex; justify-content: center; pointer-events: none;
}
@media (max-width: 760px) { .rail { display: none; } }
.rail .track { position: absolute; top: 18vh; bottom: 18vh; width: 1px; background: linear-gradient(var(--violet), rgba(170,180,197,.12)); }
.rail .node {
  position: absolute; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan);
  transform: translate(-50%,-50%); box-shadow: 0 0 16px var(--cyan); will-change: top; top: 18vh;
}
.rail .pct { position: absolute; left: -46px; font-family: var(--display); font-size: 10px; letter-spacing: .2em; color: var(--gray); }

/* ── Content shell ─────────────────────────────────────────── */
.cine { position: relative; z-index: 10; }
.cine .wrap { max-width: 1180px; margin: 0 auto; padding: 0 7vw; width: 100%; }
.cine section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 14vh 0; }

.cine p { color: var(--gray); }
.cine a { color: var(--fog); }

/* ── Hero ──────────────────────────────────────────────────── */
.cine #hero { flex-direction: column; justify-content: center; text-align: left; }
.cine .eyebrow {
  display: block; background: none; border: none; border-radius: 0; padding: 0;
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .45em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 30px;
  opacity: 0; transform: translateY(14px); animation: none;
}
.cine .eyebrow .dot { display: none; }
.headline {
  font-family: var(--display); font-weight: 500; line-height: 1.02; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 8.2vw, 7.4rem); max-width: 15ch; color: var(--fog);
}
.headline .w { display: inline-block; overflow: hidden; vertical-align: top; }
.headline .w b { display: inline-block; font-weight: inherit; transform: translateY(110%); will-change: transform; }
.headline .grad {
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  margin-top: 38px; max-width: 48ch; color: var(--gray);
  font-size: clamp(1rem, 1.5vw, 1.22rem); font-weight: 300; line-height: 1.65;
  opacity: 0; transform: translateY(16px);
}
.scrollcue {
  position: absolute; bottom: 6vh; left: 7vw; display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-size: 11px; letter-spacing: .3em; color: var(--gray); opacity: 0;
}
.scrollcue .bar { width: 46px; height: 1px; background: var(--gray); position: relative; overflow: hidden; }
.scrollcue .bar::after { content: ""; position: absolute; inset: 0; background: var(--cyan); animation: sweep 2.4s var(--ease-cine) infinite; }
@keyframes sweep { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* ── Chapters & headings ───────────────────────────────────── */
.chapter {
  font-family: var(--display); font-size: 12px; letter-spacing: .4em; color: var(--violet);
  text-transform: uppercase; margin-bottom: 26px; display: flex; align-items: center; gap: 14px;
}
.chapter span { width: 34px; height: 1px; background: var(--violet); opacity: .6; }
.cine h2 {
  font-family: var(--display); font-weight: 500; letter-spacing: -.015em; line-height: 1.06;
  font-size: clamp(2rem, 5.4vw, 4.4rem); max-width: 18ch; color: var(--fog);
}
.cine .lead {
  margin-top: 34px; max-width: 54ch; font-weight: 300;
  font-size: clamp(1.02rem, 1.6vw, 1.32rem); line-height: 1.7; color: #cdd5e2;
}
.cine .lead em { font-style: normal; color: #fff; }

/* ── Reveal (with blur) ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px); filter: blur(6px);
  transition: opacity 1.1s var(--ease-cine), transform 1.1s var(--ease-cine), filter 1.1s var(--ease-cine);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

/* ── Statement (kinetic) ───────────────────────────────────── */
.cine #idea { text-align: center; justify-content: center; }
.statement {
  font-family: var(--display); font-weight: 400; letter-spacing: -.02em; line-height: 1.05;
  font-size: clamp(2.4rem, 7vw, 6rem); max-width: 16ch; margin: 0 auto; color: var(--fog);
}
.statement .grad {
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.substate {
  margin: 42px auto 0; max-width: 52ch; color: var(--gray); font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.7;
}

/* ── Engines ───────────────────────────────────────────────── */
.engines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; width: 100%; }
@media (max-width: 880px) { .engines { grid-template-columns: 1fr; } }
.engine {
  position: relative; padding: 38px 30px 44px; border: 1px solid rgba(170,180,197,.14);
  border-radius: 16px; background: linear-gradient(180deg, rgba(20,26,42,.5), rgba(11,16,32,.25));
  overflow: hidden; transition: transform .5s var(--ease-cine), border-color .5s;
}
.engine::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(120% 80% at 50% 0%, rgba(39,245,255,.12), transparent 60%);
}
.engine:hover { transform: translateY(-8px); border-color: rgba(39,245,255,.4); }
.engine:hover::before { opacity: 1; }
.engine .no { font-family: var(--display); font-size: 12px; letter-spacing: .3em; color: var(--cyan); opacity: .7; }
.engine h3 { font-family: var(--display); font-weight: 500; font-size: 1.7rem; margin: 18px 0 14px; letter-spacing: -.01em; color: var(--fog); }
.engine p { color: var(--gray); font-weight: 300; line-height: 1.65; font-size: 1rem; }
.engine .ico { width: 40px; height: 40px; margin-bottom: 6px; }
.engine .ico circle, .engine .ico line, .engine .ico path { stroke: var(--cyan); stroke-width: 1.4; fill: none; }

/* ── Principles ────────────────────────────────────────────── */
.principles { margin-top: 60px; border-top: 1px solid rgba(170,180,197,.14); width: 100%; }
.pr { display: grid; grid-template-columns: 80px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid rgba(170,180,197,.14); align-items: baseline; }
@media (max-width: 680px) { .pr { grid-template-columns: 1fr; gap: 10px; } }
.pr .n { font-family: var(--display); font-size: 13px; letter-spacing: .2em; color: var(--violet); }
.pr h4 { font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 2rem); letter-spacing: -.01em; color: var(--fog); }
.pr p { margin-top: 12px; color: var(--gray); font-weight: 300; line-height: 1.65; max-width: 60ch; font-size: 1.02rem; }

/* ── Portfolio constellation (real products) ──────────────── */
.constellation { margin-top: 56px; border-top: 1px solid rgba(170,180,197,.14); width: 100%; }
.star {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 26px; align-items: center;
  padding: 30px 6px; border-bottom: 1px solid rgba(170,180,197,.14);
  text-decoration: none; color: var(--fog); position: relative;
  transition: padding-left .45s var(--ease-cine), background .45s;
}
.star::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan)); transform: scaleX(0);
  transform-origin: left; transition: transform .5s var(--ease-cine);
}
.star:hover { padding-left: 18px; }
.star:hover::after { transform: scaleX(1); }
.star .star-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--gray); justify-self: center;
  transition: background .4s, box-shadow .4s;
}
.star:hover .star-dot { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.star.is-live .star-dot { background: var(--cyan); box-shadow: 0 0 14px rgba(39,245,255,.7); }
.star h4 { font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -.01em; color: var(--fog); }
.star .star-tag { margin-top: 6px; color: var(--gray); font-weight: 300; font-size: 1rem; line-height: 1.5; max-width: 56ch; }
.star .star-status {
  font-family: var(--display); font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gray); white-space: nowrap; padding-left: 16px;
}
.star.is-live .star-status { color: var(--cyan); }
@media (max-width: 620px) {
  .star { grid-template-columns: 16px 1fr; gap: 16px; }
  .star .star-status { grid-column: 2; padding-left: 0; margin-top: 8px; }
}

/* ── Closing ───────────────────────────────────────────────── */
.cine #closing { text-align: center; justify-content: center; flex-direction: column; min-height: 108vh; }
.manifesto {
  font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 8vw, 7rem); max-width: 15ch; margin: 0 auto; color: var(--fog);
}
.manifesto .grad {
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.signoff { margin-top: 48px; color: var(--gray); font-weight: 300; font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: .02em; }
.closing-cta { margin-top: 54px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta {
  display: inline-flex; align-items: center; gap: 16px; text-decoration: none;
  font-family: var(--display); font-size: 14px; letter-spacing: .22em; color: var(--fog);
  padding: 18px 34px; border: 1px solid rgba(170,180,197,.3); border-radius: 100px;
  position: relative; overflow: hidden; transition: color .4s;
}
.cta span { position: relative; z-index: 2; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  transform: translateY(101%); transition: transform .5s var(--ease-cine);
}
.cta:hover { color: #070B16; }
.cta:hover::before { transform: translateY(0); }
.cta-quiet {
  font-family: var(--display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color .3s;
}
.cta-quiet:hover { color: var(--cyan); }

/* ── Footer ────────────────────────────────────────────────── */
.cine-foot {
  position: relative; z-index: 10; padding: 64px 7vw 70px; border-top: 1px solid rgba(170,180,197,.12);
  background: rgba(7,11,22,.6);
}
.cine-foot .foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: center; }
.cine-foot .foot-links { display: flex; flex-wrap: wrap; gap: 26px; }
.cine-foot a {
  font-family: var(--display); font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color .3s;
}
.cine-foot a:hover { color: var(--cyan); }
.cine-foot .foot-base {
  margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-family: var(--display); font-size: 11px; letter-spacing: .3em; color: var(--gray); opacity: .7;
}

/* ════════════════════════════════════════════════════════════
   INTERIOR PAGES (studio / products / about / contact / blog / legal)
   ════════════════════════════════════════════════════════════ */

/* A page header — shorter than the home hero, but same luminous register. */
.cine .page-hero { min-height: 78vh; display: flex; align-items: center; padding: 18vh 0 8vh; }
.cine .page-hero .headline,
.cine .page-hero h1 {
  font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -.02em;
  font-size: clamp(2.4rem, 6.4vw, 5.6rem); max-width: 16ch; color: var(--fog);
}
.cine .page-hero .grad {
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* Content bands flow naturally (not full-viewport like the home chapters). */
.cine section.band { min-height: auto; display: block; padding: clamp(72px, 11vh, 150px) 0; }
.cine section.band.tight { padding: clamp(48px, 7vh, 96px) 0; }

/* Lede paragraph under a hero/header */
.cine .page-lede {
  margin-top: 36px; max-width: 56ch; color: #cdd5e2; font-weight: 300;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem); line-height: 1.6;
}

/* Feature cards (reuses the engine look, but free-form content) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; width: 100%; }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .feature-grid, .feature-grid.two { grid-template-columns: 1fr; } }
.feature {
  position: relative; padding: 34px 30px 38px; border: 1px solid rgba(170,180,197,.14);
  border-radius: 16px; background: linear-gradient(180deg, rgba(20,26,42,.5), rgba(11,16,32,.25));
  overflow: hidden; transition: transform .5s var(--ease-cine), border-color .5s;
}
.feature::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s; background: radial-gradient(120% 80% at 50% 0%, rgba(39,245,255,.12), transparent 60%); }
.feature:hover { transform: translateY(-8px); border-color: rgba(39,245,255,.4); }
.feature:hover::before { opacity: 1; }
.feature .ico { width: 40px; height: 40px; margin-bottom: 16px; color: var(--cyan); }
.feature .ico svg { width: 100%; height: 100%; }
.feature .no { font-family: var(--display); font-size: 12px; letter-spacing: .3em; color: var(--cyan); opacity: .7; }
.feature h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin: 12px 0 12px; letter-spacing: -.01em; color: var(--fog); }
.feature p { color: var(--gray); font-weight: 300; line-height: 1.65; font-size: 1rem; }

/* Big pull-quote / kinetic statement reuse: .statement already defined */
.cine .quote {
  font-family: var(--display); font-weight: 400; line-height: 1.18; letter-spacing: -.01em;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); max-width: 22ch; color: var(--fog);
}
.cine .quote .grad {
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.cine .quote-by { margin-top: 22px; font-family: var(--display); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gray); }

/* Two-column split (text + visual/aside) */
.cine .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .cine .split { grid-template-columns: 1fr; gap: 40px; } }

/* Prose (blog post body, legal pages) */
.cine .prose { max-width: 68ch; }
.cine .prose p { margin-top: 22px; color: #cbd3e0; font-weight: 300; line-height: 1.8; font-size: clamp(1rem, 1.3vw, 1.16rem); }
.cine .prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 56px; }
.cine .prose h3 { font-family: var(--display); font-weight: 500; font-size: 1.35rem; color: var(--fog); margin-top: 40px; }
.cine .prose ul { margin-top: 18px; padding-left: 0; }
.cine .prose li { color: #cbd3e0; font-weight: 300; line-height: 1.7; padding: 8px 0 8px 28px; position: relative; }
.cine .prose li::before { content: ""; position: absolute; left: 4px; top: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.cine .prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* Blog index list (reuses constellation/star look) */
.cine .post-meta { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gray); }

/* Cine forms (contact / waitlist) */
.cine-form { margin-top: 44px; max-width: 620px; }
.cine-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .cine-form .row { grid-template-columns: 1fr; } }
.cine-form .field { margin-bottom: 18px; }
.cine-form label { display: block; font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.cine-form input, .cine-form textarea, .cine-form select {
  width: 100%; padding: 15px 18px; border-radius: 12px; color: var(--fog);
  background: rgba(20,26,42,.5); border: 1px solid rgba(170,180,197,.18);
  font-family: var(--body); font-size: 1rem; transition: border-color .3s, box-shadow .3s, background .3s;
}
.cine-form input::placeholder, .cine-form textarea::placeholder { color: #6b7689; }
.cine-form input:focus, .cine-form textarea:focus, .cine-form select:focus {
  outline: none; border-color: var(--cyan); background: rgba(20,26,42,.8);
  box-shadow: 0 0 0 3px rgba(39,245,255,.12);
}
.cine-form textarea { min-height: 150px; resize: vertical; }
/* Show a normal caret/pointer over fields despite the global custom cursor. */
.cine-page input, .cine-page textarea { cursor: text; }
.cine-page select, .cine-page button { cursor: pointer; }
.cine-form .btn-row { margin-top: 8px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Inline waitlist (single field + button) */
.cine-waitlist { display: flex; gap: 12px; margin-top: 34px; max-width: 480px; }
@media (max-width: 520px) { .cine-waitlist { flex-direction: column; } }
.cine-waitlist input {
  flex: 1; padding: 16px 20px; border-radius: 100px; color: var(--fog);
  background: rgba(20,26,42,.6); border: 1px solid rgba(170,180,197,.2); font-size: 1rem;
}
.cine-waitlist input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(39,245,255,.12); }

/* Solid CTA variant (filled aurora) for primary actions */
.cta.cta-fill { color: #070B16; border-color: transparent; }
.cta.cta-fill::before { transform: translateY(0); }
.cta.cta-fill:hover::before { transform: translateY(-101%); }
.cta.cta-fill:hover { color: var(--fog); }

/* Status note pill (e.g. "in the making") */
.note-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(39,245,255,.28); background: rgba(39,245,255,.06);
  font-family: var(--display); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--cyan);
}
.note-pill .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: notepulse 2.2s var(--ease-cine) infinite; }
@keyframes notepulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.5); } }

/* Footer nav active hint already minimal; nothing extra needed. */

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  body.cine-page *, body.cine-page *::before, body.cine-page *::after {
    animation: none !important; transition: none !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .headline .w b { transform: none; }
  .cine .eyebrow, .hero-sub, .scrollcue { opacity: 1; transform: none; }
  #intro { display: none; }
}
