:root {
  --paper: #ded9c8;
  --paper-light: #ebe7d9;
  --ink: #171816;
  --rule: #56574f;
  --link: #08296b;
  --red: #8e281f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #171711;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 107, 88, 0.34), transparent 42rem),
    #171711;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

a {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
}

a:hover {
  color: var(--red);
}

a:focus-visible {
  outline: 3px solid #e8b84a;
  outline-offset: 3px;
}

.computer-window {
  width: min(1080px, calc(100% - 32px));
  margin: 28px auto 48px;
  border: 2px solid #0d0d0a;
  background: var(--paper);
  box-shadow:
    0 0 0 2px #8d8b7e,
    0 0 0 5px #26261f,
    0 24px 70px rgba(0, 0, 0, 0.62);
}

.menu-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 12px;
  border-bottom: 2px solid #24251f;
  background: #deded5;
  color: #111;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.apple-mark {
  color: #a91413;
  font-size: 16px;
  text-shadow: 1px 1px 0 #d6a72e, -1px 1px 0 #3e7a3d;
}

.menu-spacer {
  flex: 1;
}

.menu-help {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #222;
}

.browser-page {
  margin: 10px;
  border: 1px solid var(--rule);
  background:
    repeating-linear-gradient(0deg, rgba(50, 48, 39, 0.018) 0, rgba(50, 48, 39, 0.018) 1px, transparent 1px, transparent 3px),
    var(--paper);
}

.masthead {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--rule);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--rule);
  background: rgba(239, 235, 221, 0.55);
  font-size: 13px;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(245px, 0.75fr);
  border-bottom: 1px solid var(--rule);
}

.video-column {
  padding: 24px;
  border-right: 1px solid var(--rule);
}

.eyebrow {
  margin: 0 0 4px;
  color: #4f5049;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  line-height: 1.05;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
}

h2 {
  font-size: 22px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid #111;
  background: #000;
  box-shadow: 4px 4px 0 rgba(31, 31, 26, 0.2);
}

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

.video-launch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.video-launch img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.video-launch:hover img,
.video-launch:focus-visible img {
  filter: brightness(0.78);
  transform: scale(1.015);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 54px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border: 2px solid #f0ecdf;
  background: rgba(16, 16, 13, 0.82);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
  font-size: 25px;
  transform: translate(-50%, -58%);
}

.play-label {
  position: absolute;
  left: 50%;
  bottom: 13px;
  padding: 5px 8px;
  background: rgba(16, 16, 13, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.film-note {
  max-width: 720px;
  margin: 14px 0 0;
}

.response-summary {
  padding: 24px 20px;
  background: rgba(234, 229, 211, 0.55);
}

.response-summary h2 {
  padding-bottom: 10px;
  border-bottom: 3px double var(--rule);
}

.big-stat {
  padding: 15px 0 12px;
  border-bottom: 1px solid #888679;
}

.big-stat strong,
.big-stat span {
  display: block;
}

.big-stat strong {
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.big-stat span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.summary-copy {
  margin: 16px 0 8px;
}

.pull-question {
  margin: 0 0 18px;
  color: var(--red);
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.platform-links {
  display: grid;
  gap: 3px;
}

.platform-links a {
  margin-top: 9px;
  font-size: 13px;
}

.platform-links small {
  color: #4c4c45;
}

.viewer-response {
  scroll-margin-top: 12px;
  padding: 26px 24px 30px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 3px double var(--rule);
}

.status-light {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-light i {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #183d18;
  border-radius: 50%;
  background: #4d9b46;
  box-shadow: 0 0 4px rgba(50, 160, 49, 0.8);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

blockquote {
  margin: 0;
  min-height: 126px;
  padding: 16px 17px;
  border: 1px solid #69695f;
  background: rgba(239, 235, 221, 0.55);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.55);
}

blockquote p {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.4;
}

blockquote cite {
  color: #55564e;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 18px;
  border-top: 1px solid var(--rule);
  background: rgba(239, 235, 221, 0.55);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .computer-window {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .menu-bar {
    gap: 12px;
    overflow: hidden;
  }

  .menu-bar span:nth-of-type(n+6):not(.menu-spacer):not(.menu-help) {
    display: none;
  }

  .browser-page {
    margin: 6px;
  }

  .site-nav {
    gap: 7px 16px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .watch-grid {
    display: block;
  }

  .video-column {
    padding: 18px 12px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .response-summary,
  .viewer-response {
    padding: 20px 14px;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  footer {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .video-launch img {
    transition: none;
  }
}
