/* ========================================================================
   v5 — Scheduler spotlight (dark) + Handoff closer (light).
   Reuses tokens from styles-v2.css. Section frame from styles-v2-sections.css.
   ======================================================================== */

/* ── Scheduler spotlight ────────────────────────────────────────────── */
.spot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.spot-pillars {
  display: flex;
  flex-direction: column;
}
.spot-pillar {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.spot-pillar:first-child {
  border-top: none;
  padding-top: 0;
}
.spot-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}
.spot-pillar h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}
.spot-pillar p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  text-wrap: pretty;
}

.spot-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}
.spot-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}
.spot-frame image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.spot-primitives {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
}
.spot-prim-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}
.spot-prim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.spot-chip {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--baby);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 4px 10px;
  border-radius: 7px;
}
.spot-prim-note {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.spot-eng {
  max-width: var(--maxw);
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding: 0 var(--gutter);
}
.spot-eng-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 8px;
}
.spot-eng p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 72ch;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .spot-grid { grid-template-columns: 1fr; }
  .spot-side { position: static; }
}

/* ── Handoff closer (light) ─────────────────────────────────────────── */
.handoff-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.handoff-item {
  background: var(--bg);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.handoff-idx {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--azure);
  letter-spacing: 0.04em;
}
.handoff-item h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--oxford);
}
.handoff-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-600);
  text-wrap: pretty;
}

.handoff-close-wrap {
  max-width: var(--maxw);
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding: 0 var(--gutter);
}
.handoff-close {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--oxford);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.handoff-close::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--azure);
  border-radius: 2px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .handoff-grid { grid-template-columns: 1fr; }
}
