:root {
  --bg: #000;
  --ink: #f2f2f2;
  --muted: #8a8a8a;
  --ghost: rgba(255, 255, 255, 0.7);
  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.55; }

.app {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.header {
  z-index: 20;
  width: min(1200px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 2rem 0 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.mast {
  margin: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1200px, calc(100% - 6vw));
  margin: 0 auto;
  padding: 0 0 4.5rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  cursor: pointer;
}
.clip {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  background: #000;
  pointer-events: none;
}
.play-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.play-hit.is-playing .play-hit__label {
  opacity: 0;
}
.video-wrap:hover .play-hit:not(.is-playing) .play-hit__label,
.play-hit:focus-visible .play-hit__label {
  opacity: 1;
}
.play-hit__label {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.play-hit:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -3px;
}

.ask {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.ask__q {
  color: var(--ink);
  margin-right: 0.35rem;
}
.ask__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ghost);
  font: inherit;
  font-size: inherit;
  letter-spacing: 0.18em;
  padding: 0.15rem 0.2rem;
  cursor: pointer;
}
.ask__btn:hover,
.ask__btn.is-on {
  color: #fff;
}
.ask__btn.is-off {
  color: rgba(255, 255, 255, 0.28);
}
.ask__btn:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 3px;
}
.ask__slash {
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0;
  font-weight: 300;
}

.reply {
  margin: 0.65rem 0 0;
  min-height: 1em;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}

.note {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
}

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 5vw 2.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__home {
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.72rem;
}

@media (max-width: 639px) {
  .header { padding-top: 1.5rem; font-size: 0.65rem; }
  .clip { max-height: min(56vh, 520px); }
  .ask { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .play-hit__label { transition: none; }
}
