/* LLMMLM: Liquid Glass. Content and playback remain unchanged. */
:root {
  color-scheme: dark;
  --bg: #080f0d;
  --surface: #14221b;
  --ink: #f1f5ee;
  --muted: #b4c2b7;
  --accent: #c0edc8;
  --rule: rgba(218, 243, 224, .15);
  --sans: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;
  --glass-fill: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025) 48%, rgba(225,255,234,.055)), rgba(20,35,28,.80);
  --glass-edge: rgba(226,255,235,.20);
  --glass-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.15), 0 16px 48px rgba(0,0,0,.22);
  --glass-blur: blur(22px) saturate(135%);
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse 620px 630px at 88% 330px, rgba(115,180,140,.17), transparent 78%),
    radial-gradient(ellipse 680px 440px at 24% -100px, rgba(154,208,174,.09), transparent 80%),
    var(--bg);
  color: var(--ink);
  font: 17px/1.5 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a, input { touch-action: manipulation; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
a:focus-visible, button:focus-visible, input:focus-visible, video:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection { background: var(--accent); color: var(--bg); }
.wrap { width: min(1320px, calc(100% - 112px)); margin-inline: auto; }
.skip { position: absolute; left: 16px; top: -80px; background: var(--accent); color: var(--bg); padding: 14px; z-index: 30; border-radius: 18px; }
.skip:focus { top: 16px; }
.preview-notice { padding: 9px 24px; text-align: center; color: #c7d4c9; font: 10px/1.5 var(--mono); letter-spacing: .06em; }
.preview-notice span { margin-left: 20px; letter-spacing: 0; }

/* Floating chrome, separated from the crisp content layer. */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 10px 16px 10px 28px;
  margin-top: 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
  border: 1px solid var(--glass-edge);
  border-radius: 40px;
  background: var(--glass-fill);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.wordmark { font-size: 28px; font-weight: 750; letter-spacing: -1.8px; display: inline-flex; align-items: center; min-height: 44px; }
.wordmark span { color: var(--accent); }
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.site-header nav a { display: inline-flex; align-items: center; min-height: 46px; }
.site-header nav a:hover, footer a:hover { color: var(--accent); }
.nav-cta {
  border: 1px solid rgba(240,255,243,.26);
  border-radius: 28px;
  padding: 11px 20px;
  gap: 24px;
  background: linear-gradient(155deg, rgba(241,255,246,.16), rgba(230,255,237,.05)), rgba(20,35,28,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 4px 14px rgba(0,0,0,.10);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background-color: rgba(20,35,28,.50); }
.nav-cta:active { transform: scale(.98); }

/* Same asymmetric hero, with a physical, softly lit media frame. */
.hero { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(270px,.85fr); gap: clamp(36px,6vw,100px); align-items: center; padding-block: 70px 76px; }
.eyebrow { font: 10px/1.6 var(--mono); letter-spacing: .07em; color: var(--muted); margin: 0 0 26px; }
.hero .eyebrow { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 9px; }
.status-dot { height: 6px; width: 6px; flex-shrink: 0; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(192,237,200,.08); }
h1 { font-size: clamp(46px,5.4vw,80px); line-height: 1.045; font-weight: 550; letter-spacing: -.064em; margin: 0 0 30px; }
h1 span { color: var(--accent); }
.hero-intro { font-size: 18px; line-height: 1.5; color: var(--muted); margin-bottom: 30px; letter-spacing: -.02em; }
.button {
  background: linear-gradient(170deg, rgba(255,255,255,.36), rgba(255,255,255,0) 50%), #bce7c4;
  color: #122219;
  min-height: 56px;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(244,255,246,.68);
  border-radius: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), inset 0 -2px 3px rgba(25,61,36,.13), 0 8px 28px rgba(0,0,0,.20);
  font-size: 14px;
  font-weight: 600;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.button:hover { background-color: #d2f2d7; transform: translateY(-2px); }
.button:active { transform: scale(.98); }
.aside { font: 11px var(--mono); color: var(--muted); margin-top: 17px; padding-left: 4px; }
.hero-footnote { display: flex; gap: 32px; align-items: center; margin-top: 64px; border-top: 1px solid var(--rule); padding-top: 18px; font: 9px/1.6 var(--mono); color: var(--muted); }
.hero-footnote span:first-child { color: var(--accent); }
.hero-film {
  max-width: 384px;
  justify-self: end;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(225,251,232,.28);
  border-radius: 36px;
  background: var(--glass-fill);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -1px 0 rgba(230,255,240,.08), 0 32px 75px rgba(0,0,0,.32);
}
.film-heading, .film-footer { padding: 12px 12px 17px; display: flex; justify-content: space-between; gap: 12px; font: 8px/1.5 var(--mono); letter-spacing: .04em; }
.film-heading span:last-child { color: var(--accent); }
.film-footer { padding: 18px 12px 10px; }
.film-footer span:last-child { color: var(--muted); }
.hero-poster { display: block; position: relative; aspect-ratio: 9/14; overflow: hidden; border-radius: 26px; background: #182720; }
.hero-poster:focus-visible { outline-offset: -4px; }
.hero-poster > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform .65s var(--ease); }
.hero-poster:hover > img { transform: scale(1.025); }
.play-label {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), transparent), rgba(15,29,22,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 24px rgba(0,0,0,.24);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  font-size: 14px;
  color: #f5f8f1;
}
.play-label small { display: block; font: 9px/1.6 var(--mono); color: #dce6dc; margin-top: 3px; }
.play-icon { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.47); border-radius: 50%; width: 44px; height: 44px; font-size: 11px; padding-left: 2px; flex-shrink: 0; background: rgba(231,255,238,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.3); }
.statement-band { border-block: 1px solid var(--rule); background: linear-gradient(90deg, rgba(173,221,189,.025), rgba(173,221,189,.07), rgba(173,221,189,.025)); }
.statement-band .wrap { display: flex; justify-content: space-between; padding-block: 23px; gap: 20px; color: var(--muted); font: 11px var(--mono); }
.statement-band span:last-child { color: var(--accent); }

/* Editorial archive. No backdrop blur per row. */
.section { padding-block: 96px; }
.section-header { display: grid; grid-template-columns: 1fr 2fr; gap: 0 32px; margin-bottom: 45px; }
.section-header .eyebrow { padding-top: 8px; }
.section-header h2 { grid-column: 2; font-weight: 450; font-size: clamp(30px,3.2vw,46px); line-height: 1.1; letter-spacing: -.045em; margin: 0; }
.section-header > p:last-child:not(.eyebrow) { grid-column: 2; color: var(--muted); font-size: 15px; margin: 18px 0 0; }
.film-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.film-row {
  border: 1px solid rgba(221,246,228,.13);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(226,255,233,.065), rgba(226,255,233,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
  padding: 18px;
  display: grid;
  grid-template-columns: 72px 1fr 44px;
  align-items: center;
  gap: 20px;
  min-width: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.film-row > img { width: 72px; height: 94px; border-radius: 14px; object-fit: cover; object-position: 50% 25%; filter: saturate(.85); }
.film-row .eyebrow { font-size: 8px; letter-spacing: .05em; display: block; margin-bottom: 9px; }
.film-row h3 { font-size: 21px; font-weight: 450; letter-spacing: -.035em; line-height: 1.2; margin: 0; }
.film-row p { color: var(--muted); font-size: 12px; margin: 8px 0 0; }
.row-play { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(225,252,233,.16); border-radius: 50%; background: rgba(225,252,233,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.1); font-size: 20px; color: var(--accent); transition: transform .25s var(--ease), background .25s var(--ease); }
.film-row:hover { border-color: rgba(224,253,232,.3); background-color: rgba(187,230,200,.055); transform: translateY(-2px); }
.film-row:hover .row-play { background: rgba(218,250,228,.14); transform: rotate(5deg); }
.film-row:hover h3 { color: var(--accent); }
.people-section { background: radial-gradient(ellipse at 50% 70%, rgba(90,137,108,.11), transparent 75%), rgba(17,29,23,.38); border-block: 1px solid rgba(219,247,227,.08); padding-block: 80px; }
.cast { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.cast figure { margin: 0; min-width: 0; padding: 9px 9px 22px; border: 1px solid rgba(226,249,234,.16); border-radius: 30px; background: linear-gradient(145deg, rgba(231,255,237,.065), rgba(231,255,237,.018)); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 12px 30px rgba(0,0,0,.08); }
.cast img { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 25%; filter: saturate(.8); border-radius: 21px; }
.cast figcaption { padding: 20px 12px 0; }
.cast figcaption > span { font-size: 22px; letter-spacing: -.03em; }
.cast small { display: block; color: var(--muted); font-size: 12px; margin-top: 5px; }

.invitation { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; padding-block: 110px; }
.invitation h2 { font-size: clamp(50px,6vw,82px); line-height: 1.02; font-weight: 450; letter-spacing: -.06em; margin: 0; }
.invitation h2 span { color: var(--accent); }
.join-copy { color: var(--muted); font-size: 20px; line-height: 1.4; margin: 25px 0 0; }
.signup-panel { padding: 34px; border: 1px solid var(--glass-edge); border-radius: 32px; background: var(--glass-fill); box-shadow: var(--glass-shadow); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); }
.signup-panel > p:not(.eyebrow) { font-size: 19px; line-height: 1.5; }
.signup-panel label { display: block; font-size: 12px; margin: 28px 0 10px; }
.signup-fields { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
.signup-fields input { width: 100%; min-width: 0; padding: 13px 15px; border: 1px solid rgba(219,246,225,.2); border-radius: 16px; background: rgba(6,15,10,.48); color: var(--muted); font-size: 14px; min-height: 50px; box-shadow: inset 0 2px 5px rgba(0,0,0,.08); }
.signup-fields input::placeholder { color: var(--muted); }
.signup-fields button { border: 1px solid rgba(214,246,222,.2); border-radius: 16px; color: #b5c6b9; background: #263c2e; padding: 12px 18px; min-height: 50px; }
.signup-panel .button { margin-top: 24px; }
.signup-panel > p.signup-note { font: 13px/1.6 var(--mono); color: var(--muted); margin: 16px 0 0; }
footer { border-top: 1px solid var(--rule); padding-block: 40px 24px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-top p { font-size: 12px; color: var(--muted); }
.footer-top > a:last-child { font-size: 12px; min-height: 44px; display: flex; align-items: center; }
.footer-bottom { border-top: 1px solid var(--rule); margin-top: 40px; padding-top: 24px; display: flex; align-items: center; gap: 60px; justify-content: space-between; color: var(--muted); font: 10px/1.7 var(--mono); }
.footer-bottom p { max-width: 720px; margin: 0; }
.footer-bottom span { white-space: nowrap; }

/* Native top-layer dialog preserves focus trapping and playback behavior. */
.player-dialog { padding: 8px; background: linear-gradient(145deg, rgba(255,255,255,.06), transparent), #14221b; color: var(--ink); border: 1px solid rgba(228,252,234,.32); border-radius: 30px; box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 40px 100px rgba(0,0,0,.45); width: min(460px,calc(100% - 28px)); max-height: calc(100dvh - 28px); overflow: auto; }
.player-dialog::backdrop { background: rgba(3,10,6,.80); }
.player-head { padding: 7px 8px 14px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.player-head h2 { font-size: 15px; font-weight: 500; margin: 0; }
.close-player { color: var(--ink); background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.025)); border: 1px solid rgba(233,255,239,.25); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); border-radius: 50%; width: 44px; height: 44px; font-size: 24px; }
.player-dialog video { display: block; width: 100%; max-height: calc(100dvh - 190px); aspect-ratio: 9/16; background: #030805; border-radius: 18px; }
.player-help { font-size: 11px; color: var(--muted); margin: 8px 14px 2px; }
.player-help a { text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; min-height: 44px; }
.player-error { margin: 12px 16px; color: var(--accent); font-size: 13px; }
body:has(.player-dialog[open]) { overflow: hidden; }

@media (min-width: 1500px) {
  .hero { padding-block: 80px; }
  .hero-film { max-width: 404px; }
}
@media (max-width: 1050px) {
  .wrap { width: calc(100% - 64px); }
  .hero { gap: 36px; grid-template-columns: 1.2fr .85fr; }
  h1 { font-size: clamp(42px,5.3vw,62px); }
  .hero .eyebrow { font-size: 8px; white-space: normal; }
  .hero-footnote { gap: 16px; margin-top: 36px; font-size: 8px; }
  .film-list { gap: 14px; }
  .film-row { grid-template-columns: 60px 1fr 40px; gap: 13px; padding: 15px; }
  .film-row > img { width: 60px; height: 84px; }
  .film-row h3 { font-size: 19px; }
  .film-row p { font-size: 11px; }
  .row-play { width: 40px; height: 40px; }
  .invitation { gap: 40px; }
  .signup-panel { padding: 26px; }
  .section-header { grid-template-columns: .9fr 2fr; }
  .play-label { gap: 9px; padding: 11px; inset-inline: 10px; }
  .play-label small { font-size: 8px; }
}
@media (max-width: 767px) {
  .wrap { width: calc(100% - 40px); }
  .preview-notice { font-size: 8px; padding: 8px 14px; }
  .preview-notice span { margin-left: 8px; }
  .site-header { width: calc(100% - 24px); min-height: 70px; gap: 12px; padding: 8px 12px 8px 18px; margin-top: 12px; top: 10px; border-radius: 36px; }
  .wordmark { font-size: 25px; }
  .site-header nav { gap: 12px; font-size: 11px; }
  .site-header nav > a:nth-child(2) { display: none; }
  .nav-cta { padding: 9px 13px; gap: 12px; }
  .hero { grid-template-columns: 1fr; gap: 38px; padding-block: 46px 48px; }
  .hero .eyebrow { font-size: 8px; margin-bottom: 25px; }
  h1 { font-size: clamp(40px,9vw,68px); letter-spacing: -.064em; }
  .hero-intro { font-size: 16px; margin-bottom: 26px; }
  .hero-footnote { margin-top: 32px; justify-content: space-between; font-size: 8px; }
  .hero-film { max-width: 430px; justify-self: center; border-radius: 32px; }
  .hero-poster { aspect-ratio: 9/12; border-radius: 23px; }
  .film-heading, .film-footer { font-size: 8px; }
  .play-label { gap: 12px; padding: 12px; inset-inline: 12px; }
  .play-label small { font-size: 9px; }
  .statement-band .wrap { flex-wrap: wrap; justify-content: center; gap: 15px 22px; padding-block: 20px; font-size: 9px; }
  .section { padding-block: 62px; }
  .section-header { display: block; margin-bottom: 30px; }
  .section-header .eyebrow { margin-bottom: 18px; }
  .section-header h2 { font-size: 32px; }
  .section-header > p:last-child:not(.eyebrow) { font-size: 14px; }
  .film-list { grid-template-columns: 1fr; gap: 12px; }
  .film-row { grid-template-columns: 62px 1fr 38px; gap: 14px; padding: 14px; border-radius: 23px; }
  .film-row > img { width: 62px; height: 84px; }
  .film-row h3 { font-size: 20px; }
  .film-row p { font-size: 12px; }
  .film-row .eyebrow { font-size: 7px; }
  .row-play { width: 38px; height: 38px; }
  .people-section { padding-block: 60px; }
  .cast { grid-template-columns: 1fr; gap: 16px; }
  .cast figure { display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: center; padding: 8px 16px 8px 8px; border-radius: 26px; }
  .cast img { aspect-ratio: 3/4; border-radius: 18px; }
  .cast figcaption { padding: 0; }
  .cast small { line-height: 1.5; }
  .invitation { grid-template-columns: 1fr; gap: 36px; }
  .invitation h2 { font-size: 62px; }
  .signup-panel { padding: 26px; border-radius: 28px; }
  .footer-top { flex-wrap: wrap; gap: 12px 25px; }
  .footer-top p { margin-left: auto; }
  .footer-bottom { display: block; margin-top: 25px; }
  .footer-bottom > span { display: block; margin-top: 18px; }
}
@media (max-width: 360px) {
  .site-header nav > a:first-child { display: none; }
  .hero .eyebrow { font-size: 7px; }
  .hero-footnote { gap: 10px; }
  .film-row { grid-template-columns: 48px 1fr 30px; gap: 10px; padding: 12px; }
  .film-row > img { width: 48px; height: 72px; border-radius: 10px; }
  .film-row h3 { font-size: 18px; }
  .film-row p { font-size: 11px; }
  .film-row .eyebrow { font-size: 6px; }
  .row-play { width: 30px; height: 30px; font-size: 17px; }
  .signup-panel { padding: 20px; }
  .cast figure { grid-template-columns: 92px 1fr; gap: 14px; }
  .cast figcaption > span { font-size: 20px; }
  .footer-top p { margin-left: 0; }
  .invitation h2 { font-size: 54px; }
  .play-label { font-size: 12px; gap: 9px; padding: 10px; }
  .play-label small { font-size: 8px; }
}

/* Glass is an enhancement, never a dependency for readable UI. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header, .play-label, .signup-panel { background: #182720; }
}
@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  .site-header, .play-label, .signup-panel, .hero-film, .film-row, .film-row:hover, .cast figure, .player-dialog {
    background: #182720;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header, .hero-film, .film-row, .film-row:hover, .cast figure, .signup-panel, .player-dialog { border-color: #819d87; }
  .nav-cta, .nav-cta:hover, .play-icon, .row-play, .film-row:hover .row-play, .close-player { background: #263c2e; }
  .player-dialog::backdrop { background: #080f0d; }
  body { background: var(--bg); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .button:hover, .button:active, .nav-cta:active, .film-row:hover, .film-row:hover .row-play, .hero-poster:hover > img { transform: none; }
}
@media (forced-colors: active) {
  .site-header, .hero-film, .film-row, .cast figure, .signup-panel, .player-dialog, .play-label { border: 1px solid CanvasText; }
  .button, .nav-cta, .close-player { border: 1px solid ButtonText; }
}
