/* #watch — video walkthrough row between #home and #features
   content-driven (no poster stage) · card row scrolls horizontally → adding a video = adding a card */

#watch {
  height: auto;
  min-height: 0;
  padding: 72px 24px 64px;
  display: block;
}
#watch .watch-wrap { max-width: 1360px; margin: 0 auto; text-align: center; }

#watch .eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .36em; text-transform: uppercase;
  color: var(--cyan);
}
#watch h2 {
  margin: 9px 0 8px;
  font-size: 38px; line-height: 1.05;
  font-weight: 700; letter-spacing: -.022em;
}
#watch h2 .blue { color: var(--blue-hi); }
#watch .sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* horizontal card row — centered-peek carousel: ONE card centered, swipe (trackpad/finger) for the next.
   padding-inline centers first & last card; scroll-snap locks one-per-view. add a video = add a card. */
#watch .watch-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 max(0px, calc((100% - min(1240px, 94vw)) / 2)) 8px;
  scrollbar-width: none;
}
#watch .watch-row::-webkit-scrollbar { display: none; }
#watch .watch-card {
  flex: 0 0 min(1240px, 94vw);
  scroll-snap-align: center;
  background: linear-gradient(110deg, rgba(20,25,46,.82), rgba(11,14,26,.82));
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  text-align: left;
}
#watch .watch-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}
#watch .watch-meta {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
}
#watch .watch-title { font-size: 14px; font-weight: 600; }
#watch .watch-tag   { font-size: 12px; color: var(--dim); }
#watch .watch-copy {
  margin-left: auto;
  height: 34px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 9px;
  background: rgba(17,22,40,.9);
  color: var(--text); font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
#watch .watch-copy:hover { border-color: rgba(91,140,240,.6); }
#watch .watch-copy.done  { color: var(--green); border-color: rgba(76,216,136,.4); cursor: default; }

/* pagination dots — DERIVED from card count (JS builds one per video · how-many-to-swipe cue) */
#watch .watch-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
#watch .watch-dots:empty { display: none; }
#watch .watch-dot {
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 999px;
  background: var(--line-2); cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
#watch .watch-dot:hover { background: var(--muted); }
#watch .watch-dot.active { background: var(--blue-hi); width: 22px; }

#watch .watch-note { margin-top: 18px; font-size: 13px; color: var(--dim); }
#watch .watch-note strong { color: var(--muted); font-weight: 600; }

@media (max-width: 640px) {
  #watch { padding: 48px 14px 40px; }
  #watch h2 { font-size: 28px; }
  #watch .watch-meta { flex-wrap: wrap; }
  #watch .watch-copy { margin-left: 0; }
}
