:root {
  color-scheme: dark;
  --bg: #060607;
  --bg-soft: #0b0b0d;
  --panel: #121215;
  --panel-soft: #1a1a1f;
  --text: #f7f7f2;
  --muted: #a7a7af;
  --line: #2a2a31;
  --line-strong: #3c3c45;
  --accent: #e50914;
  --accent-bright: #ff3944;
  --success: #2dd4bf;
  --warn: #f5b642;
  --danger: #ff6b75;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.1), transparent 320px),
    var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

a {
  color: var(--text);
}

.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;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 7, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent-bright);
  border-left: 6px solid var(--accent);
  background: #050505;
}

.links {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 13px;
}

.links a {
  color: #d8d8de;
  text-decoration: none;
  white-space: nowrap;
}

.links a:hover {
  color: #ffffff;
}

.application-page {
  display: grid;
  gap: 0;
}

.cinema-page {
  display: grid;
  gap: 28px;
}

.cinema-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 46px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.2) 100%),
    url("/assets/mock-covers/cover-4.svg"),
    #080809;
  background-position: center right;
  background-size: cover;
  box-shadow: var(--shadow);
}

.cinema-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, transparent 46%);
}

.cinema-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 18px;
  width: min(720px, 100%);
  padding: 44px;
}

.cinema-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.12;
}

.cinema-hero__lead {
  max-width: 620px;
  margin: 0;
  color: #d8d8dc;
  font-size: 16px;
  line-height: 1.85;
}

.ad-disclosure {
  max-width: 680px;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding: 9px 12px;
  background: rgba(229, 9, 20, 0.1);
  color: #f0d6d8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.cinema-hero__meta,
.cinema-strip,
.cinema-section__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cinema-hero__meta > span,
.provider-logo,
.cinema-section__meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.cinema-hero__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cinema-hero__actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cinema-hero__actions a:hover {
  border-color: rgba(229, 9, 20, 0.72);
  background: rgba(229, 9, 20, 0.2);
}

.cinema-hero__poster {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 1;
  width: min(270px, 28vw);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54);
}

.cinema-search-panel {
  width: min(760px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 10, 11, 0.76);
  backdrop-filter: blur(12px);
}

.cinema-search-panel .search-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.cinema-strip {
  padding: 0 2px;
}

.cinema-section {
  display: grid;
  gap: 14px;
}

.cinema-section__head {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}

.cinema-section__head h2 {
  font-size: 32px;
}

.product-hero {
  padding: 46px 0 34px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 28px;
  align-items: center;
}

.product-hero__grid > * {
  min-width: 0;
}

.product-hero__copy {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.22;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 28px;
}

h3 {
  margin: 0;
  font-size: 18px;
}

.lead,
.section-lead {
  min-width: 0;
  max-width: 700px;
  margin: 0;
  color: #dadade;
  font-size: 16px;
  line-height: 1.85;
}

.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.button,
button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover,
button:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
}

.notice {
  min-width: 0;
  max-width: 760px;
  margin: 0;
  border: 1px solid rgba(255, 107, 117, 0.32);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 90, 102, 0.1);
  color: #ffd2d6;
  font-size: 13px;
  font-weight: 800;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-strip div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.metric-strip dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.app-surface {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #09090b;
  box-shadow: var(--shadow);
}

.surface-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  background: #111114;
}

.surface-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3f3f46;
}

.surface-bar span:first-child {
  background: var(--accent);
}

.surface-bar strong {
  min-width: 0;
  margin-left: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.surface-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

input {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  font: inherit;
}

.filter-pills {
  grid-column: 1 / -1;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.filter-pills span,
.chips span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #dcdce2;
  font-size: 12px;
  font-weight: 800;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.poster-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(176px, 210px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
}

.poster-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  scroll-snap-align: start;
}

.poster-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #17171a;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.poster-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.poster-card:hover .poster-card__media img {
  transform: scale(1.045);
}

.poster-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, transparent 38%, rgba(5, 5, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, transparent 45%);
  pointer-events: none;
}

.poster-card__badges {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  z-index: 1;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.poster-card__badges span,
.poster-card__deal {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.poster-card__badges span {
  padding: 4px 8px;
}

.poster-card__badges span:first-child {
  color: var(--accent-bright);
}

.poster-card__deal {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
}

.poster-card__deal > span:first-child {
  color: #d8d8dc;
  font-size: 10px;
}

.poster-card__body {
  display: grid;
  gap: 6px;
}

.poster-card__title {
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-card__sub {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-card__tags {
  display: flex;
  gap: 5px;
  min-height: 24px;
  overflow: hidden;
}

.poster-card__tags span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 2px 7px;
  color: #d9d9dd;
  font-size: 11px;
  white-space: nowrap;
}

.poster-card__price {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.badge {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(229, 9, 20, 0.48);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(229, 9, 20, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.badge.warn {
  border-color: rgba(245, 182, 66, 0.45);
  background: rgba(245, 182, 66, 0.14);
  color: var(--warn);
}

.badge.neutral {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #d8d8dc;
}

.compare-panel,
.table-card,
.timeline-card,
.work-card,
.panel,
.page article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.compare-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.panel-head strong {
  color: #ffffff;
  font-size: 13px;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  background: var(--panel-soft);
}

.offer-row.is-best {
  border-color: rgba(229, 9, 20, 0.45);
  background: rgba(229, 9, 20, 0.08);
}

.offer-row span {
  overflow: hidden;
  color: #d8d8dc;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-row strong {
  font-variant-numeric: tabular-nums;
}

.offer-row em {
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.trend-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.trend-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.trend-card strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 14px;
}

.mini-chart,
.line-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 70px;
}

.mini-chart span,
.line-chart span {
  display: block;
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-bright), #7f1d1d);
}

.chart-bar--82 {
  height: 82%;
}

.chart-bar--76 {
  height: 76%;
}

.chart-bar--68 {
  height: 68%;
}

.chart-bar--54 {
  height: 54%;
}

.chart-bar--49 {
  height: 49%;
}

.chart-bar--38 {
  height: 38%;
}

.surface-note {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.surface-note--inline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--surface {
  background: var(--bg-soft);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel {
  padding: 20px;
}

.panel p {
  margin: 10px 0 0;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.work-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.work-card h3 {
  margin-top: 10px;
}

.work-card p {
  margin: 10px 0 0;
}

.detail-link {
  width: fit-content;
  margin-top: 14px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.work-page {
  display: grid;
  gap: 22px;
  padding: 42px 0 58px;
}

.work-hero {
  display: grid;
  gap: 18px;
}

.work-hero__title {
  display: grid;
  gap: 10px;
  max-width: 840px;
}

.work-hero__title h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.14;
}

.work-hero__title p {
  margin: 0;
  color: #dedee2;
}

.work-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.work-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.work-gallery__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #080809;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.work-gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
}

.work-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.work-gallery__item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(5, 5, 5, 0.64);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.work-conversion {
  display: grid;
  gap: 16px;
  align-content: center;
  border-color: rgba(229, 9, 20, 0.28);
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(18, 18, 20, 0.94);
}

.work-conversion__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.work-conversion__copy > span {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-conversion__copy strong {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.25;
}

.work-conversion__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.work-conversion__price {
  display: grid;
  gap: 2px;
}

.work-conversion__price > span:first-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.work-conversion__price strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.work-hero__facts {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.work-hero__facts span {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-section {
  display: grid;
  gap: 14px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.detail-facts {
  margin-top: 14px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.related-link {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}

.related-link:hover {
  border-color: rgba(229, 9, 20, 0.48);
  background: rgba(229, 9, 20, 0.08);
}

.related-link strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.related-link span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.work-hero-chart {
  width: 100%;
  min-height: 160px;
  display: block;
}

.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.table-card,
.timeline-card {
  overflow-x: auto;
  padding: 16px;
}

.timeline-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px 8px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

td {
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.line-chart {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: var(--panel-soft);
}

.facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  background: var(--panel);
  color: #e9e9ee;
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.info-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt,
.info-list dd {
  margin: 0;
  padding: 14px 16px;
}

.info-list dt {
  background: var(--panel-soft);
  color: #ffffff;
  font-weight: 900;
}

.info-list dd {
  color: #e9e9ee;
}

.page {
  padding: 56px 0;
}

.page article {
  padding: 28px;
}

.page article h1 {
  font-size: 34px;
}

.page article h2 {
  margin-top: 28px;
  font-size: 22px;
}

.page article p {
  color: #dedee5;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #080809;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .product-hero__grid,
  .preview-layout,
  .work-detail-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .cinema-hero {
    min-height: 620px;
  }

  .cinema-hero__poster {
    width: 200px;
  }

  .work-gallery {
    grid-auto-columns: minmax(220px, 48vw);
  }

  .product-hero__copy {
    max-width: 760px;
  }

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: 12px 0;
  }

  .links {
    min-width: 0;
    width: min(352px, calc(100vw - 24px));
    max-width: min(352px, calc(100vw - 24px));
    gap: 10px 12px;
    justify-content: flex-start;
    line-height: 1.5;
  }

  .links a {
    white-space: normal;
  }

  h1 {
    width: min(352px, calc(100vw - 24px));
    max-width: min(352px, calc(100vw - 24px));
    font-size: 30px;
    line-height: 1.28;
    word-break: break-all;
  }

  .cinema-hero {
    width: min(100% - 24px, 1180px);
    min-height: auto;
    margin-top: 24px;
    background-position: center;
  }

  .cinema-hero__content {
    width: 100%;
    padding: 24px 16px 20px;
  }

  .cinema-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 32px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .cinema-hero__lead,
  .ad-disclosure,
  .cinema-hero .notice,
  .cinema-search-panel {
    width: 100%;
    max-width: 100%;
  }

  .cinema-hero__poster {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(210px, 64vw);
    margin: 0 16px 24px;
  }

  .cinema-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-rail {
    grid-auto-columns: minmax(168px, 74vw);
  }

  .work-page {
    padding-top: 24px;
  }

  .work-hero__title h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .work-gallery {
    grid-auto-columns: minmax(210px, 68vw);
  }

  .lead,
  .notice,
  .section-lead {
    width: min(352px, calc(100vw - 24px));
    max-width: min(352px, calc(100vw - 24px));
    word-break: break-all;
  }

  .product-hero__grid,
  .product-hero__copy,
  .metric-strip,
  .app-surface {
    width: min(352px, calc(100vw - 24px));
    max-width: min(352px, calc(100vw - 24px));
  }

  .product-hero__grid {
    justify-items: start;
    margin-left: 0;
    margin-right: auto;
  }

  .product-hero__copy {
    justify-self: start;
    text-align: left;
  }

  h2 {
    font-size: 24px;
  }

  .product-hero {
    padding-top: 28px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .surface-body {
    padding: 12px;
  }

  .surface-bar strong {
    white-space: normal;
  }

  .metric-strip,
  .grid,
  .related-links,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .search-panel,
  .trend-card,
  .work-card,
  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-row {
    align-items: start;
  }

  .info-list div {
    grid-template-columns: 1fr;
  }

  .info-list dt {
    border-bottom: 1px solid var(--line);
  }
}
