/* ============================================================
   cine.css — shared band titles + THE FIELD GUIDE + access
   reprise for the sections below the hero. (The MEET LUX v2
   stage itself lives in cine3d.css / cine3d.js.)
   Inherits :root palette vars and the global CRT overlays from
   index.html's inline styles.
   ============================================================ */

/* ---- band titles (match .how-title idiom) ---- */
.cine-band-title,
.guide-band-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.32em;
  margin: 46px 0 22px;
}
.cine-band-title::before, .cine-band-title::after,
.guide-band-title::before, .guide-band-title::after {
  content: "————";
  color: var(--amber-soft);
  margin: 0 14px;
  letter-spacing: 0;
}
.guide-band-sub {
  text-align: center;
  color: var(--amber-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: -10px 0 26px;
}

/* CTA link used inside the guide (and styled like the stage CTA) */
.cine-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid var(--amber);
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-decoration: none;
  background: rgba(246, 188, 90, 0.03);
  transition: background 0.15s, box-shadow 0.15s;
}
.cine-cta:hover { background: rgba(246, 188, 90, 0.09); box-shadow: 0 0 18px rgba(246, 188, 90, 0.18); }

/* ============================================================
   THE FIELD GUIDE — classic panel language (matches .step cards)
   ============================================================ */
.guide { max-width: 1320px; margin: 0 auto; }
.guide-section { margin: 0 0 46px; }
.guide-kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px;
}
.guide-num {
  border: 1px solid var(--amber);
  padding: 2px 9px;
  font-size: 13px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  color: var(--amber);
  white-space: nowrap;
}
.guide-kicker h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff7d8;
}
.guide-kicker .guide-hint { color: var(--amber-soft); font-size: 12px; letter-spacing: 0.08em; }

.guide-grid { display: grid; gap: 16px; }
.guide-grid--3 { grid-template-columns: repeat(3, 1fr); }
.guide-grid--4 { grid-template-columns: repeat(4, 1fr); }
.guide-grid--2 { grid-template-columns: repeat(2, 1fr); }

.guide-card {
  position: relative;
  border: 1px solid var(--amber);
  border-radius: 8px;
  padding: 18px;
  background: rgba(246, 188, 90, 0.02);
  font-size: 13px;
  line-height: 1.6;
}
.guide-card h4 {
  margin: 0 0 8px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: #fff7d8;
}
/* numbered chips give the getting-started cards a reading order */
.guide-step {
  display: inline-block;
  border: 1px solid var(--amber);
  border-radius: 3px;
  padding: 1px 8px;
  margin-right: 10px;
  font-size: 12px;
  color: var(--amber);
}
.guide-card p { margin: 0; color: var(--amber); }
.guide-card .muted { color: var(--amber-soft); }
.guide-chip {
  display: inline-block;
  border: 1px solid var(--amber-soft);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--amber-soft);
  margin-bottom: 10px;
}
.guide-say {
  border-left: 2px solid var(--amber-dim);
  padding: 4px 0 4px 12px;
  margin: 8px 0 0;
  color: var(--amber);
  font-size: 12.5px;
  line-height: 1.6;
}
.guide-say.no { color: var(--amber-dim); text-decoration: line-through; text-decoration-thickness: 1px; }
.guide-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.guide-small {
  border: 1px solid var(--amber-dim);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(246, 188, 90, 0.015);
  text-align: center;
}
.guide-close {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #fff7d8;
  margin: 40px 0 26px;
  line-height: 1.7;
}
.guide-close .cursor {
  display: inline-block;
  width: 0.55em; height: 1em;
  background: currentColor;
  vertical-align: -0.12em;
  animation: caption-blink 1s step-end infinite;
}

/* access reprise row */
.access-reprise {
  display: flex;
  justify-content: center;
  margin: 0 0 26px;
}

/* ---- mobile ---- */
@media (max-width: 1000px) {
  .cine-band-title, .guide-band-title { font-size: 12px; letter-spacing: 0.24em; margin-top: 34px; }
  .cine-band-title::before, .cine-band-title::after,
  .guide-band-title::before, .guide-band-title::after { content: "——"; margin: 0 8px; }

  .guide-grid--3, .guide-grid--4, .guide-grid--2 { grid-template-columns: 1fr; }
  .guide-small-grid { grid-template-columns: repeat(2, 1fr); }

  /* the pinned mobile CTA (index.html) is always on screen, so the
     in-flow reprise would render as a stacked duplicate right above
     it, and its long label wraps mid-number at phone widths */
  .access-reprise { display: none; }
  .guide-close { margin-bottom: 6px; }
}
