:root {
  --ink: #071522;
  --navy: #0a2034;
  --blue: #156aa5;
  --red: #e34938;
  --paper: #f4f6f8;
  --line: #d7dee5;
  --muted: #61707d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button { font: inherit; }
body.dialog-open { overflow: hidden; }

.site-header {
  min-height: 88px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--red);
}
.brand { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 13px; }
.brand img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 1px solid #344451; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 1.2rem; letter-spacing: .01em; }
.brand-copy small { margin-top: 6px; color: #b8c5cf; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.live-status { display: flex; align-items: center; gap: 9px; color: #dce5eb; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.live-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(227,73,56,.15); }

main { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px) 72px; }
.intro { display: flex; justify-content: space-between; align-items: end; gap: 32px; padding: 56px 0 30px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 8px; color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
h1 { margin: 0; font-family: Newsreader, Georgia, serif; font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: .9; letter-spacing: -.035em; }
.coverage-area { display: flex; flex-wrap: wrap; gap: 5px 13px; max-width: 760px; margin: 17px 0 0; padding: 0; color: var(--muted); list-style: none; font-size: .78rem; font-weight: 600; line-height: 1.5; letter-spacing: .025em; }
.coverage-area li { display: inline-flex; align-items: center; white-space: nowrap; }
.coverage-area li + li::before { content: "•"; margin-right: 13px; color: var(--red); font-size: .8em; }
.deck { max-width: 390px; margin: 0 0 6px; color: var(--muted); font-family: Newsreader, Georgia, serif; font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.18; }
.promo-rotator { display: grid; align-self: end; width: min(410px, 100%); min-height: 174px; }
.promo-message { grid-area: 1 / 1; align-self: center; opacity: 0; visibility: hidden; transform: translateY(5px); transition: opacity .8s ease, transform .8s ease, visibility 0s linear .8s; }
.promo-message.is-active { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.promo-sponsor { display: grid; gap: 7px; color: var(--ink); font-family: Newsreader, Georgia, serif; }
.sponsor-label { color: var(--red); font-family: Inter, Arial, sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.promo-sponsor a { color: var(--blue); font-family: Inter, Arial, sans-serif; font-size: .82rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.sponsor-link { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.sponsor-link img { width: 92px; height: 72px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 4px; object-fit: cover; object-position: center 34%; }
.promo-sponsor a:hover { color: var(--ink); }
.promo-sponsor a:focus-visible { outline: 3px solid #57b9fa; outline-offset: 3px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.news-crawl { margin-top: 24px; overflow: hidden; border: 1px solid #c8cfd5; border-left: 4px solid #6d747a; background: #e8ebed; color: #27313a; }
.crawl-window { overflow: hidden; }
.crawl-track { display: flex; width: max-content; animation: crawl-left 42s linear infinite; }
.crawl-group { display: flex; flex: 0 0 auto; align-items: center; gap: 0; padding: 10px 0; white-space: nowrap; font-size: .82rem; letter-spacing: .015em; }
.crawl-group > span { display: inline-flex; align-items: center; }
.crawl-group > span::after { content: "◆"; margin: 0 22px; color: #92999f; font-size: .55rem; }
.crawl-group strong { margin-left: .32em; font-weight: 700; }
.news-crawl:hover .crawl-track { animation-play-state: paused; }

@keyframes crawl-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; padding-top: 32px; }
.video-card { min-width: 0; }
.grid-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 38px 0 8px; }
.grid-pagination[hidden] { display: none; }
.grid-pagination button { min-width: 42px; min-height: 42px; padding: 8px 13px; border: 1px solid #aab5bd; border-radius: 3px; background: white; color: #172833; font: inherit; font-weight: 700; cursor: pointer; }
.grid-pagination button:hover:not(:disabled), .grid-pagination button:focus-visible { border-color: #172833; outline: 2px solid #172833; outline-offset: 2px; }
.grid-pagination button[aria-current="page"] { border-color: #172833; background: #172833; color: white; }
.grid-pagination button:disabled { cursor: default; opacity: .42; }
.thumbnail {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  color: white;
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(7,21,34,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.thumbnail::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,21,34,.06), rgba(7,21,34,.34)); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.thumbnail img.fallback { width: 34%; height: 60%; margin: 11% auto 0; object-fit: contain; border-radius: 50%; }
.thumbnail:hover img { transform: scale(1.025); }
.thumbnail:hover, .thumbnail:focus-visible { transform: translateY(-3px); box-shadow: 0 15px 28px rgba(7,21,34,.2); }
.thumbnail:focus-visible { outline: 3px solid #57b9fa; outline-offset: 3px; }
.card-label, .duration { position: absolute; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.card-label { top: 14px; left: 14px; padding: 6px 8px; background: rgba(7,21,34,.82); }
.duration { right: 14px; bottom: 12px; padding: 3px 7px; background: rgba(7,21,34,.82); letter-spacing: .04em; text-transform: uppercase; }
.play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 56px; height: 56px; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; box-shadow: 0 3px 18px rgba(0,0,0,.28); }
.play i { display: block; margin-left: 4px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid var(--ink); }
.caption { padding-top: 15px; }
.caption .meta { margin: 0 0 5px; color: var(--blue); font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.caption h2 { margin: 0 0 6px; font-family: Newsreader, Georgia, serif; font-size: 1.55rem; line-height: 1.12; }
.licensing-note { margin: 10px 0 9px; padding-left: 11px; border-left: 3px solid var(--red); color: #3f4e5a; font-size: .9rem; line-height: 1.45; }
.licensing-note a { color: var(--blue); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.licensing-note a:hover { color: var(--ink); }
.licensing-note a:focus-visible { outline: 3px solid #57b9fa; outline-offset: 3px; }
.caption .filename { margin: 0; color: var(--muted); font-size: .82rem; overflow-wrap: anywhere; }

.license-dialog {
  width: min(92vw, 590px);
  padding: 38px 40px 40px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: white;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(2, 12, 22, .42);
}
.license-dialog::backdrop { background: rgba(3, 15, 26, .76); backdrop-filter: blur(4px); }
.dialog-accent { position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--red); }
.dialog-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer; font-size: 1.75rem; line-height: 1; }
.dialog-close:hover { background: var(--paper); color: var(--ink); }
.dialog-close:focus-visible, .dialog-watch-link:focus-visible { outline: 3px solid #57b9fa; outline-offset: 3px; }
.dialog-eyebrow { margin: 0 0 10px; color: var(--red); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.license-dialog h2 { max-width: 470px; margin: 0 40px 18px 0; font-family: Newsreader, Georgia, serif; font-size: clamp(2rem, 6vw, 3rem); line-height: 1; letter-spacing: -.025em; }
.dialog-client-copy { margin: 0 0 17px; color: #3f4e5a; font-size: 1rem; line-height: 1.6; }
.dialog-redirect { margin: 0 0 22px; color: var(--muted); font-size: .88rem; }
.dialog-watch-link { display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 12px 17px; border-radius: 3px; background: var(--blue); color: white; font-weight: 700; text-decoration: none; }
.dialog-watch-link:hover { background: var(--ink); }

footer { min-height: 76px; padding: 24px clamp(20px, 5vw, 72px); background: var(--ink); color: #9daeb9; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro { align-items: start; flex-direction: column; gap: 18px; }
  .deck { max-width: 540px; }
  .promo-rotator { width: min(540px, 100%); min-height: 174px; }
}
@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .live-status { font-size: .7rem; }
  .intro { padding-top: 38px; }
  .video-grid { grid-template-columns: 1fr; gap-top: 34px; }
  .license-dialog { padding: 34px 28px 30px; }
  footer { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .crawl-track { width: auto; animation: none; }
  .crawl-group { flex-wrap: wrap; gap: 6px 0; padding: 10px 12px; white-space: normal; }
  .crawl-group + .crawl-group { display: none; }
}

/* Client video desk */
.client-page { background: #eef2f5; }
.client-status { display: flex; align-items: center; gap: 9px; color: #dce5eb; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.client-status span { width: 8px; height: 8px; border-radius: 50%; background: #6ec1e4; box-shadow: 0 0 0 5px rgba(110,193,228,.14); }
.client-intro { align-items: center; }
.client-intro h1 { font-size: clamp(2.7rem, 6vw, 5.35rem); }
.client-instructions { width: min(430px, 100%); padding: 24px 26px; border-top: 4px solid var(--blue); background: white; box-shadow: 0 10px 25px rgba(7,21,34,.08); }
.instruction-label { margin: 0 0 7px; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.client-instructions h2 { margin: 0 0 9px; font-family: Newsreader, Georgia, serif; font-size: 1.55rem; line-height: 1.1; }
.client-instructions p:not(.instruction-label) { margin: 0 0 14px; color: #485864; font-size: .9rem; line-height: 1.5; }
.client-instructions a { color: var(--blue); font-size: .88rem; font-weight: 700; text-underline-offset: 3px; }
.client-toolbar { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding: 12px 15px; border: 1px solid #c8d1d8; background: #e2e8ec; color: #344451; font-size: .82rem; }
.client-toolbar p { margin: 0; }
.client-toolbar a { color: var(--blue); font-weight: 700; }
.client-video-grid { padding-top: 26px; }
.client-thumbnail { padding: 0; border: 0; text-align: initial; }
.client-caption { padding: 15px 16px 17px; border: 1px solid var(--line); border-top: 0; background: white; }
.client-caption-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.client-caption-heading .meta { margin-bottom: 0; }
.availability { padding: 4px 7px; border-radius: 2px; background: #e7f3ed; color: #216746; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.availability.is-licensed { background: #eef0f2; color: #65717b; }
.deliverable-type { padding: 4px 7px; border-radius: 2px; background: #e7f1f8; color: #15577f; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.client-caption h2 { margin-top: 9px; }
.card-metadata { display: grid; gap: 0; margin: 12px 0 15px; border-top: 1px solid #e1e6ea; }
.card-technical { display: grid; gap: 2px; margin: 10px 0 13px; color: #43545f; font-size: .76rem; line-height: 1.4; }
.card-technical p { margin: 0; }
.card-technical .card-trt { margin-top: 2px; color: #263743; }
.card-metadata div { display: grid; grid-template-columns: 68px 1fr; gap: 10px; padding: 7px 0; border-bottom: 1px solid #e1e6ea; font-size: .76rem; line-height: 1.35; }
.card-metadata dt { color: #6a7883; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.card-metadata dd { margin: 0; color: #263743; overflow-wrap: anywhere; }
.license-tally { margin: 0 0 10px; color: #4d5c67; font-size: .78rem; font-weight: 700; }
.exclusive-countdown { margin: 0 0 11px; padding: 8px 9px; border-left: 3px solid var(--blue); background: #eef6fb; color: #24475e; font-size: .76rem; line-height: 1.4; }
.exclusive-countdown::before { content: "48-Hour Exclusive: "; font-weight: 700; }
.exclusive-countdown.is-closed { border-left-color: #8b969e; background: #f0f2f3; color: #65717b; }
.dialog-countdown { color: var(--blue); font-weight: 700; }
.card-license-actions { display: grid; gap: 8px; }
.card-action { display: grid; gap: 2px; width: 100%; min-height: 52px; padding: 9px 11px; border: 1px solid var(--blue); border-radius: 2px; background: transparent; color: var(--blue); cursor: pointer; text-align: left; }
.card-action strong { font-size: .78rem; }
.card-action span { font-size: .72rem; font-weight: 600; }
.card-action:hover { background: var(--blue); color: white; }
.card-action.window-action { border-color: var(--ink); color: var(--ink); }
.card-action.window-action:hover { background: var(--ink); color: white; }
.card-action:disabled { border-color: #c9d0d5; background: #f2f4f5; color: #7b8790; cursor: not-allowed; }
.card-action:focus-visible, .client-thumbnail:focus-visible, .client-instructions a:focus-visible, .client-toolbar a:focus-visible, .license-request-link:focus-visible { outline: 3px solid #57b9fa; outline-offset: 3px; }
.client-caption .filename { margin-top: 11px; }
.client-dialog { width: min(92vw, 650px); padding: 38px 40px 34px; overflow: hidden; border: 0; border-radius: 5px; background: white; color: var(--ink); box-shadow: 0 28px 80px rgba(2,12,22,.42); }
.client-dialog::backdrop { background: rgba(3,15,26,.76); backdrop-filter: blur(4px); }
.client-dialog h2 { max-width: 520px; margin: 0 40px 21px 0; font-family: Newsreader, Georgia, serif; font-size: clamp(2rem, 6vw, 3rem); line-height: 1; letter-spacing: -.025em; }
.dialog-metadata { margin: 0 0 25px; border-top: 1px solid var(--line); }
.dialog-metadata div { display: grid; grid-template-columns: 155px 1fr; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.dialog-metadata dt { color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.dialog-metadata dd { margin: 0; font-size: .9rem; }
.license-options { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; border: 0; }
.license-options legend { margin: 0 0 9px; color: var(--ink); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.license-option { display: grid; gap: 5px; width: 100%; padding: 14px 15px; border: 1px solid #cbd4db; border-radius: 3px; background: white; color: var(--ink); cursor: pointer; text-align: left; }
.license-option:hover { border-color: var(--blue); background: #f7fbfe; }
.license-option.is-selected { border-color: var(--blue); box-shadow: inset 4px 0 0 var(--blue); background: #f2f8fc; }
.license-option-top { display: flex; justify-content: space-between; gap: 18px; font-size: .95rem; }
.license-option-top b { color: var(--blue); }
.license-option-label { color: #263743; font-size: .82rem; font-weight: 700; }
.license-option-copy { color: var(--muted); font-size: .76rem; line-height: 1.45; }
.license-option:disabled { border-color: #d7dde1; background: #f4f5f6; color: #7b8790; cursor: not-allowed; }
.license-option:disabled .license-option-top b, .license-option:disabled .license-option-label, .license-option:disabled .license-option-copy { color: #7b8790; }
.client-dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.license-request-link { display: inline-flex; align-items: center; min-height: 48px; padding: 12px 17px; border: 1px solid var(--blue); border-radius: 3px; background: white; color: var(--blue); cursor: pointer; font-weight: 700; text-decoration: none; }
.license-request-link:hover { background: #eef6fb; }
.dialog-fineprint { margin: 18px 0 0; color: var(--muted); font-size: .76rem; }
.license-order-form { margin-top: 22px; padding: 18px; border: 1px solid var(--line); background: #f6f8f9; }
.order-heading { margin: 0 0 14px; font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-grid label { display: grid; gap: 5px; color: #485864; font-size: .75rem; font-weight: 700; }
.order-grid label.wide { grid-column: 1 / -1; }
.order-grid input { min-height: 42px; padding: 8px 9px; border: 1px solid #b6c1c9; border-radius: 2px; background: white; color: var(--ink); font: inherit; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.order-check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin-top: 12px; color: #3f4e5a; font-size: .76rem; line-height: 1.45; }
.order-check input { width: 18px; height: 18px; margin: 1px 0 0; }
.submit-order { width: 100%; min-height: 48px; margin-top: 15px; border: 0; border-radius: 3px; background: var(--ink); color: white; cursor: pointer; font-weight: 800; }
.submit-order:hover { background: var(--blue); }
.submit-order:disabled { cursor: wait; opacity: .65; }
.order-message { min-height: 20px; margin: 10px 0 0; color: #a43b31; font-size: .78rem; }
.order-result { margin-top: 20px; padding: 17px 18px; border-left: 4px solid #26815d; background: #edf7f2; color: #234c3c; }
.order-result h3 { margin: 0 0 7px; font-family: Newsreader, Georgia, serif; font-size: 1.35rem; }
.order-result p { margin: 4px 0; font-size: .84rem; }
.order-result a { display: inline-flex; margin-top: 10px; padding: 10px 13px; border-radius: 2px; background: #216746; color: white; font-weight: 800; text-decoration: none; }

@media (max-width: 900px) {
  .client-intro { align-items: flex-start; }
  .client-instructions { width: min(600px, 100%); }
}
@media (max-width: 560px) {
  .client-toolbar { flex-direction: column; gap: 4px; }
  .client-caption { padding-inline: 13px; }
  .dialog-metadata div { grid-template-columns: 1fr; gap: 3px; }
  .client-dialog { padding: 34px 25px 28px; }
  .order-grid { grid-template-columns: 1fr; }
  .order-grid label.wide { grid-column: auto; }
}
