/**
 * Grit watch page (grit/watch) — savethefae.com/watch
 *
 * The social-funnel middle hop, mobile-first (arrivals are IG/TikTok bio
 * taps). One page, one job: the video plays inside the first viewport, the
 * waitlist capture right beneath. Loads on top of grit-brand.css (extends
 * website/grit/base.html). Page-scoped: suppresses the generic footer
 * launch-list and nav waitlist pills — one page, one email path (the
 * passport pattern, #mobileDrawer specificity note included).
 */

.watch-hero {
  background: linear-gradient(160deg, var(--color-blue) 0%, var(--color-purple) 100%);
  color: #fff;
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  min-height: calc(100vh - 64px);
}

.watch-content {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.watch-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.watch-content h1 {
  color: #fff;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin-bottom: 1rem;
}

/* ---- Player: 9:16, fills the phone viewport width, no layout shift ---- */
.watch-player {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d16;
  box-shadow:
    0 24px 60px -18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-credits {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.watch-lead {
  margin: 1.1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.watch-alpha-date {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

/* ---- Waitlist capture card ---- */
.watch-capture {
  margin-top: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  text-align: left;
}

.watch-capture .launch-list-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.watch-capture .launch-list-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1.1rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  color: #1a1a2e;
}

.watch-capture .launch-list-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}

.watch-capture .launch-list-form button:disabled {
  opacity: 0.7;
  cursor: default;
}

.watch-capture .launch-list-error {
  margin: 0.6rem 0 0;
  color: #ffd7d7;
  font-size: 0.9rem;
}

.watch-capture .launch-list-thanks {
  margin: 0.85rem 0 0;
}

.watch-capture .launch-list-thanks p {
  margin: 0;
}

.watch-fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  opacity: 0.8;
}

.watch-youtube-link {
  margin: 1.1rem 0 0;
}

.watch-youtube-link a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 0.95rem;
}

/* ---- One page, one email path (see grit-passport.css for the
   #mobileDrawer specificity rationale) ---- */
body:has(.watch-capture) .footer-launch-list {
  display: none !important;
}

body:has(.watch-capture) #mobileDrawer .nav-item .btn-brand-primary {
  display: none !important;
}
