@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-pr.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-pr.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Fallback";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Helvetica Neue Bold"), local("Roboto Bold");
  font-weight: 700 800;
  size-adjust: 83.9%;
  ascent-override: 110.8%;
  descent-override: 32.2%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Figtree Fallback";
  src: local("Arial"), local("ArialMT"), local("Helvetica Neue"), local("Roboto");
  font-weight: 400 600;
  size-adjust: 100.3%;
  ascent-override: 94.7%;
  descent-override: 24.9%;
  line-gap-override: 0%;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--c-paper);
  scroll-padding-top: calc(var(--qz-top) + 18px);
}

body {
  margin: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.62;
}

img,
svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

p { margin: 0 0 1em; }

a {
  color: var(--c-pond);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { color: var(--c-pond-deep); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--qz-ring, var(--c-ink));
  outline-offset: 3px;
}

.qz-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.qz-shell > main { flex: 1 0 auto; }

.qz-gate {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 16px;
}

.qz-opening,
.qz-sheet,
.qz-reel,
.qz-board,
.qz-lines,
.qz-script { overflow-x: clip; }
.qz-sheet,
.qz-opening { overflow: clip; }

.qz-hop {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--c-ink);
  color: #fff;
  font-weight: 600;
}
.qz-hop:focus { top: 12px; color: #fff; }

.qz-vh {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.qz-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.qz-ticket {
  --qz-edge: var(--c-ink);
  --qz-fill: var(--c-pond);
  --qz-fill-on: var(--c-pond-deep);
  --qz-edge-on: var(--c-ink);
  --qz-label: #fff;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0.78em 1.5em;
  border: 0;
  background: none;
  color: var(--qz-label);
  font: 600 1rem/1.2 var(--f-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease;
}
.qz-ticket::before,
.qz-ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(var(--qz-cut) 0, 100% 0, 100% calc(100% - var(--qz-cut)), calc(100% - var(--qz-cut)) 100%, 0 100%, 0 var(--qz-cut));
  transition: background-color 0.18s ease;
}
.qz-ticket::before { background: var(--qz-edge); }
.qz-ticket::after {
  inset: 2px;
  background: var(--qz-fill);
  clip-path: polygon(calc(var(--qz-cut) - 1px) 0, 100% 0, 100% calc(100% - var(--qz-cut) + 1px), calc(100% - var(--qz-cut) + 1px) 100%, 0 100%, 0 calc(var(--qz-cut) - 1px));
}
.qz-ticket svg { flex: none; width: 1em; height: 1em; }
.qz-ticket:hover {
  color: var(--qz-label);
  transform: translateX(2px);
}
.qz-ticket:hover::before { background: var(--qz-edge-on); }
.qz-ticket:hover::after { background: var(--qz-fill-on); }
.qz-ticket:active { transform: translate(1px, 1px); }

.qz-ticket--outline {
  --qz-edge: var(--c-pond);
  --qz-fill: var(--c-paper);
  --qz-fill-on: var(--c-mist);
  --qz-edge-on: var(--c-pond-deep);
  --qz-label: var(--c-pond);
}
.qz-ticket--outline::after {
  inset: 2px;
  clip-path: polygon(calc(var(--qz-cut) - 1px) 0, 100% 0, 100% calc(100% - var(--qz-cut) + 1px), calc(100% - var(--qz-cut) + 1px) 100%, 0 100%, 0 calc(var(--qz-cut) - 1px));
}
.qz-ticket--outline:hover { color: var(--c-pond-deep); }

.qz-slate {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-height: 30px;
  padding: 0.3em 0.85em;
  background: var(--c-mist);
  color: var(--c-ink);
  font: 600 0.84rem/1.25 var(--f-body);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.qz-slate svg { width: 14px; height: 14px; color: var(--c-pond); }

.qz-sheet__scroll {
  width: 100%;
  overflow-x: auto;
  background: var(--c-paper);
  overscroll-behavior-x: contain;
}
.qz-sheet__scroll:focus-visible {
  outline: 3px solid var(--c-pond);
  outline-offset: 4px;
}
.qz-sheet__table {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
  font-size: 0.97rem;
  line-height: 1.5;
}
.qz-sheet__table--compact { min-width: 42rem; }
.qz-sheet__table caption {
  caption-side: top;
  padding: 0 0 14px;
  text-align: left;
  color: var(--c-reed);
  font-size: 0.92rem;
}
.qz-sheet__table th,
.qz-sheet__table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}
.qz-sheet__table thead th {
  border-bottom: 2px solid var(--c-ink);
  font: 600 0.78rem/1.3 var(--f-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.qz-sheet__table tbody tr:nth-child(odd) { background: var(--c-mist); }
.qz-sheet__table tbody th {
  font: 700 1.06rem/1.25 var(--f-head);
  letter-spacing: -0.01em;
}
.qz-sheet__table code {
  font: 600 0.92em/1.4 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
.qz-sheet__game {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 11rem;
}
.qz-sheet__game img {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.qz-sheet__mode {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5em;
}
.qz-sheet__mode svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0.22em;
  color: var(--c-pond);
}
.qz-sheet__time {
  font-weight: 600;
  white-space: nowrap;
}

.qz-film {
  --qz-h: 260px;
  --qz-ratio: 9 / 16;
  position: relative;
  padding-block: 28px;
  background: var(--c-film);
  border-radius: 4px;
}
.qz-film::before,
.qz-film::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='10'%3E%3Crect x='5' y='1' width='12' height='8' rx='2.5' fill='%23F1F3FA' fill-opacity='.82'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 22px 10px;
  pointer-events: none;
}
.qz-film::before { top: 9px; }
.qz-film::after { bottom: 9px; }
.qz-film--wide {
  --qz-h: 170px;
  --qz-ratio: 2 / 1;
}
.qz-film__track {
  display: flex;
  gap: 12px;
  padding: 0 16px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  overscroll-behavior-x: contain;
}
.qz-film__track:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}
/* Remsans höjd är låst i px i stället för att följa bildernas egen storlek:
   lazy-bilderna får rätt plats direkt och texten under hoppar inte när de laddas. */
.qz-frame {
  flex: 0 0 auto;
  height: var(--qz-h);
  aspect-ratio: var(--qz-ratio);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #2A2D35;
  scroll-snap-align: start;
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.qz-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qz-marquee {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-paper);
}
.qz-marquee__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--qz-top);
}
.qz-marquee__brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--c-ink);
  font: 800 1.55rem/1 var(--f-head);
  letter-spacing: -0.045em;
  text-decoration: none;
}
.qz-marquee__brand:hover { color: var(--c-ink); }
.qz-marquee__accent { color: var(--c-pond); }

.qz-cue__toggle {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-ink);
  cursor: pointer;
}
.qz-cue__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--c-ink);
  clip-path: polygon(var(--qz-cut) 0, 100% 0, 100% calc(100% - var(--qz-cut)), calc(100% - var(--qz-cut)) 100%, 0 100%, 0 var(--qz-cut));
}
.qz-cue__toggle::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: var(--c-mist);
  clip-path: polygon(calc(var(--qz-cut) - 1px) 0, 100% 0, 100% calc(100% - var(--qz-cut) + 1px), calc(100% - var(--qz-cut) + 1px) 100%, 0 100%, 0 calc(var(--qz-cut) - 1px));
  transition: background-color 0.18s ease;
}
.qz-cue__toggle:hover::after { background: #E2E6F3; }
.qz-cue__icon { width: 22px; height: 22px; }
.qz-cue__icon--close { display: none; }
.qz-cue__toggle[aria-expanded="true"] .qz-cue__icon--open { display: none; }
.qz-cue__toggle[aria-expanded="true"] .qz-cue__icon--close { display: block; }

.qz-cue__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  margin: 0;
  padding: 8px 16px 24px;
  list-style: none;
  background: var(--c-paper);
  box-shadow: 0 22px 36px -18px rgba(18, 18, 18, 0.28);
}
.qz-cue__list--open { display: block; }
.qz-cue__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: var(--c-ink);
  font: 700 1.3rem/1.2 var(--f-head);
  text-decoration: none;
}
.qz-cue__link:hover { color: var(--c-pond); }

.qz-lines__list {
  display: grid;
  gap: 10px;
}
.qz-lines__item {
  background: var(--c-mist);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.qz-lines__q {
  margin: 0;
  font: inherit;
  letter-spacing: 0;
}
.qz-lines__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 68px;
  padding: 16px 18px 16px 20px;
  border: 0;
  background: none;
  color: var(--c-ink);
  font: 700 clamp(1.05rem, 0.98rem + 0.4vw, 1.28rem)/1.3 var(--f-head);
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.qz-lines__toggle:hover { color: var(--c-pond); }
.qz-lines__toggle:focus-visible {
  outline: 3px solid var(--c-pond);
  outline-offset: -6px;
}
.qz-lines__mark {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  background: var(--c-ink);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.qz-lines__mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: var(--c-paper);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transition: background-color 0.2s ease;
}
.qz-lines__mark svg {
  width: 16px;
  height: 16px;
  color: var(--c-pond);
  transition: transform 0.25s ease, color 0.2s ease;
}
.qz-lines__toggle[aria-expanded="true"] .qz-lines__mark::before { background: var(--c-pond); }
.qz-lines__toggle[aria-expanded="true"] .qz-lines__mark svg {
  color: #fff;
  transform: rotate(45deg);
}
.qz-lines__a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease, visibility 0s;
}
.qz-lines__inner {
  min-height: 0;
  overflow: hidden;
}
.qz-lines__inner p {
  max-width: 52em;
  margin: 0;
  padding: 0 20px 24px;
}
.qz-asking .qz-lines__a:not(.qz-lines__a--open) {
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.3s ease, visibility 0s linear 0.3s;
}

.qz-stars {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 4px 10px;
}
.qz-stars__svg { width: 100px; height: 20px; }
.qz-stars__empty { fill: #CDD2E0; }
.qz-stars__full { fill: var(--c-pond); }
.qz-stars__num {
  font: 700 1.2rem/1 var(--f-head);
}
.qz-stars__count {
  color: var(--c-reed);
  font-size: 0.92rem;
}
.qz-stars__src {
  grid-column: 1 / -1;
  color: var(--c-reed);
  font-size: 0.8rem;
}

.qz-ripple {
  position: absolute;
  aspect-ratio: 1;
  pointer-events: none;
}
.qz-ripple svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}
.qz-ripple__ring {
  opacity: 0;
  transform: scale(0.3);
}

.qz-note {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
  background: var(--c-ink);
  color: #fff;
  --qz-ring: #fff;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.qz-note[hidden] { display: none; }
.qz-note__copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.qz-note__copy a {
  color: #fff;
  text-decoration: underline;
}
.qz-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qz-note .qz-ticket--outline {
  --qz-edge: #fff;
  --qz-edge-on: #fff;
  --qz-fill: var(--c-ink);
  --qz-fill-on: #2A2D35;
  --qz-label: #fff;
}
.qz-note .qz-ticket--outline:hover { color: #fff; }
.qz-note .qz-ticket { min-width: 7.5rem; }
.qz-note .qz-ticket--primary,
.qz-opening .qz-ticket--primary {
  --qz-edge: #fff;
  --qz-edge-on: #fff;
}

.qz-rewind {
  --qz-edge: var(--c-pond);
  --qz-fill: var(--c-ink);
  --qz-edge-on: var(--c-ink);
  --qz-fill-on: var(--c-pond);
  position: fixed;
  right: 16px;
  bottom: calc(16px + var(--qz-note-lift, 0px));
  z-index: 40;
  width: 48px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.qz-rewind svg { width: 20px; height: 20px; }
.qz-rewind--on {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
.qz-rewind--on:hover { transform: translateX(2px); }

.qz-opening {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--qz-top));
  min-height: calc(100svh - var(--qz-top));
  padding-block: 64px 96px;
  background: var(--c-ink);
  color: #fff;
  text-align: center;
  --qz-ring: #fff;
}
.qz-opening__still,
.qz-opening__still img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.qz-opening__still { display: block; }
.qz-opening__still img {
  object-fit: cover;
  object-position: 50% 42%;
}
.qz-opening__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 26, 0.62) 0%, rgba(9, 12, 26, 0.66) 55%, rgba(9, 12, 26, 0.8) 100%);
}
.qz-opening .qz-ripple {
  top: 50%;
  left: 50%;
  width: min(100vw, 980px);
  color: rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%);
}
.qz-opening__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.qz-opening__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  margin: 0;
  font: 600 0.8rem/1.2 var(--f-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.qz-opening__eyebrow svg { width: 22px; height: 22px; }
.qz-word { display: inline-block; }
.qz-opening__title {
  max-width: 12.5em;
  font-size: clamp(2.3rem, 1.35rem + 4.6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.qz-opening__copy {
  max-width: 35em;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.qz-opening__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
.qz-opening .qz-ticket--outline {
  --qz-edge: #fff;
  --qz-edge-on: #fff;
  --qz-fill: var(--c-ink);
  --qz-fill-on: #262A33;
  --qz-label: #fff;
}
.qz-opening .qz-ticket--outline:hover { color: #fff; }
.qz-opening__credit {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  color: #E4E7F0;
  font-size: 0.78rem;
}

.qz-intro .qz-opening__still img { animation: qz-drift 1.45s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.qz-intro .qz-opening .qz-ripple__still { animation: qz-bloom 1.3s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.qz-intro .qz-opening__eyebrow { animation: qz-lift 0.6s 0.12s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.qz-intro .qz-opening__title .qz-word {
  animation: qz-lift 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(0.24s + var(--qz-w, 0) * 50ms);
}
.qz-intro .qz-opening__copy { animation: qz-lift 0.6s 0.66s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.qz-intro .qz-opening__actions { animation: qz-lift 0.6s 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.qz-intro .qz-opening__credit { animation: qz-fade 0.5s 1s ease both; }

.qz-sheet {
  position: relative;
  padding-block: 88px 64px;
  background: var(--c-paper);
}
.qz-sheet .qz-ripple {
  top: -190px;
  right: 0;
  width: 560px;
  color: #D5DBEE;
}
.qz-sheet__head {
  position: relative;
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}
.qz-sheet__kicker,
.qz-reel__kicker,
.qz-board__kicker,
.qz-lines__kicker {
  margin: 0;
  color: var(--c-pond);
  font: 600 0.8rem/1.2 var(--f-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.qz-sheet__title { font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.1rem); }
.qz-sheet__copy {
  max-width: 34em;
  margin: 0;
  color: var(--c-reed);
}
.qz-sheet__hint {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0 0 12px;
  color: var(--c-reed);
  font-size: 0.88rem;
}
.qz-sheet__hint svg { width: 18px; height: 18px; }
.qz-sheet__note {
  max-width: 46em;
  margin: 22px 0 0;
  color: var(--c-reed);
  font-size: 0.95rem;
}

.qz-reel {
  padding-block: 40px 64px;
  background: var(--c-paper);
}
.qz-reel__head {
  display: grid;
  gap: 14px;
  margin-bottom: 52px;
}
.qz-reel__title { font-size: clamp(2.2rem, 1.3rem + 3.4vw, 3.9rem); }
.qz-reel__copy {
  max-width: 38em;
  margin: 0;
  color: var(--c-reed);
}
.qz-reel__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 76px;
}

.qz-take {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
}
.qz-take__bar {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.qz-take__badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
.qz-take__name { font-size: clamp(1.5rem, 1.15rem + 1.3vw, 2.1rem); }
.qz-take__studio {
  margin: 4px 0 0;
  color: var(--c-reed);
  font-size: 0.95rem;
}
.qz-take__score,
.qz-take__cta { grid-column: 1 / -1; }
.qz-take__cta { justify-self: start; }
.qz-take__notes {
  display: grid;
  gap: 22px;
}
.qz-take__slates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qz-take__label {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.qz-take__col p { margin: 0; }
.qz-take--lead .qz-film { --qz-h: 340px; }

.qz-board {
  position: relative;
  padding-block: 64px 88px;
  background: var(--c-paper);
}
.qz-board__head {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}
.qz-board__title { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem); }
.qz-board__copy {
  max-width: 36em;
  margin: 0;
  color: var(--c-reed);
}
.qz-board__stage { position: relative; }
.qz-board__arc { display: none; }
.qz-board__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qz-scene {
  display: grid;
  grid-template-columns: minmax(0, 36%) minmax(0, 1fr);
  grid-template-areas: "still time" "still text";
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-items: start;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.qz-scene__time {
  grid-area: time;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin: 0 0 8px;
  color: var(--c-pond);
  font: 600 0.78rem/1.2 var(--f-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.qz-scene__time svg {
  flex: none;
  width: 30px;
  height: 30px;
}
.qz-scene__still {
  grid-area: still;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-film);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.qz-scene__still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qz-scene__text { grid-area: text; }
.qz-scene__title { font-size: clamp(1.3rem, 1.15rem + 0.5vw, 1.5rem); }
.qz-scene__game {
  margin: 4px 0 8px;
  color: var(--c-reed);
  font-size: 0.9rem;
  font-weight: 600;
}
.qz-scene__copy {
  margin: 0;
  font-size: 0.97rem;
}

.qz-lines {
  padding-block: 24px 56px;
  background: var(--c-paper);
}
.qz-lines__head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.qz-lines__title { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); }
.qz-lines__copy {
  margin: 0;
  color: var(--c-reed);
}

.qz-credits {
  padding-block: 80px 28px;
  background: var(--c-paper);
}
.qz-credits__grid {
  display: grid;
  gap: 44px;
}
.qz-credits__contact {
  position: relative;
  padding: 34px 24px 30px;
  background: var(--c-mist);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.qz-credits__title {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem);
}
.qz-credits__mail {
  display: inline-block;
  padding-block: 6px;
  font: 700 clamp(1.15rem, 1rem + 0.6vw, 1.4rem)/1.3 var(--f-head);
  overflow-wrap: anywhere;
}
.qz-credits__operator {
  margin: 14px 0 0;
  color: var(--c-reed);
  font-size: 0.95rem;
}
.qz-credits__operator a { color: var(--c-ink); }
.qz-credits__model h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.qz-credits__model p {
  margin: 0;
  color: var(--c-reed);
  font-size: 0.97rem;
}
.qz-credits__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.qz-credits__label {
  margin: 0 0 6px;
  font: 600 0.78rem/1.3 var(--f-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-reed);
}
.qz-credits__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.qz-credits__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--c-ink);
  text-decoration: none;
}
.qz-credits__links a:hover {
  color: var(--c-pond);
  text-decoration: underline;
}
.qz-credits__fine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 60px;
  color: var(--c-reed);
  font-size: 0.86rem;
}
.qz-credits__fine p { margin: 0; }

.qz-script {
  padding-block: 56px 96px;
  background: var(--c-paper);
}
.qz-script__top {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-bottom: 40px;
}
.qz-script__title { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.6rem); }
.qz-script__meta {
  margin: 0;
  color: var(--c-reed);
}
.qz-script__lead {
  max-width: 44em;
  margin: 0;
  font-size: 1.12rem;
}
.qz-script__toc {
  margin: 0 0 52px;
  padding: 22px 24px 18px;
  background: var(--c-mist);
}
.qz-script__toc p {
  margin: 0 0 8px;
  font: 600 0.78rem/1.3 var(--f-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-reed);
}
.qz-script__toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  columns: 2 16em;
  column-gap: 40px;
}
.qz-script__toc li { padding-block: 3px; }
.qz-script__body > h2 {
  max-width: 32em;
  margin: 46px 0 12px;
  font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.65rem);
}
.qz-script__body > h2:first-child { margin-top: 0; }
.qz-script__body > h3 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
}
.qz-script__body > p,
.qz-script__body > ul,
.qz-script__body > ol { max-width: 46em; }
.qz-script__body ul { padding-left: 1.25em; }
.qz-script__body li { margin-bottom: 6px; }
.qz-script__body .qz-sheet__scroll { margin: 18px 0 20px; }
.qz-script__box {
  max-width: 46em;
  margin: 0 0 1em;
  padding: 18px 22px;
  background: var(--c-mist);
  font-style: normal;
}
.qz-script__lost {
  display: grid;
  justify-items: start;
  gap: 18px;
  min-height: 46vh;
  align-content: center;
}

[data-qz-reveal="rise"],
[data-qz-reveal="settle"] {
  transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.qz-rolling [data-qz-reveal="rise"]:not(.qz-in) {
  opacity: 0;
  transform: translateY(28px);
}
.qz-rolling [data-qz-reveal="settle"]:not(.qz-in) {
  opacity: 0;
  transform: scale(0.98);
}
.qz-rolling [data-qz-reveal="film"]:not(.qz-in) .qz-frame {
  opacity: 0;
  transform: translateX(64px);
}
.qz-in .qz-frame { transition-delay: calc(var(--qz-i, 0) * 60ms); }
.qz-rolling [data-qz-reveal="arc"]:not(.qz-in) .qz-scene {
  opacity: 0;
  transform: translateY(40px);
}
.qz-in .qz-scene { transition-delay: calc(var(--qz-i, 0) * 90ms); }

.qz-locked { overflow: hidden; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--c-paper); }
::-webkit-scrollbar-thumb {
  background: #C3C9D8;
  border: 3px solid var(--c-paper);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-reed); }
.qz-sheet__scroll::-webkit-scrollbar { height: 10px; }
.qz-sheet__scroll::-webkit-scrollbar-track { background: var(--c-mist); }
.qz-sheet__scroll::-webkit-scrollbar-thumb {
  background: #A9B0C3;
  border: 2px solid var(--c-mist);
  border-radius: 6px;
}
.qz-film__track::-webkit-scrollbar { height: 8px; }
.qz-film__track::-webkit-scrollbar-track { background: #262930; border-radius: 4px; }
.qz-film__track::-webkit-scrollbar-thumb {
  background: #8B92A3;
  border: 2px solid #262930;
  border-radius: 4px;
}
.qz-film__track::-webkit-scrollbar-thumb:hover { background: #C3C9D8; }

@keyframes qz-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes qz-lift {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes qz-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes qz-bloom {
  from { opacity: 0; transform: scale(0.35); }
  to { opacity: 1; transform: none; }
}
@keyframes qz-spread {
  0% { opacity: 0; transform: scale(0.3); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: scale(1); }
}

:root {
  --c-ink: #121212;
  --c-pond: #2446C7;
  --c-pond-deep: #1A3496;
  --c-mist: #F1F3FA;
  --c-reed: #555B66;
  --c-paper: #FFFFFF;
  --c-film: #16181D;
  --f-head: "Bricolage Grotesque", "Bricolage Fallback", "Arial Narrow", Arial, sans-serif;
  --f-body: "Figtree", "Figtree Fallback", Arial, sans-serif;
  --qz-top: 64px;
  --qz-cut: 10px;
}

@media (min-width: 640px) {
  .qz-gate { padding-inline: 28px; }
  .qz-film { --qz-h: 290px; }
  .qz-film--wide { --qz-h: 200px; }
  .qz-take--lead .qz-film { --qz-h: 380px; }
  .qz-film__track { padding-inline: 22px; scroll-padding-inline: 22px; }
  .qz-credits__contact { padding: 40px 36px 34px; }
  .qz-note {
    left: 24px;
    right: auto;
    bottom: 24px;
    width: 30rem;
    padding: 20px 22px 18px;
  }
  .qz-rewind { right: 24px; bottom: 24px; }
  .qz-scene {
    grid-template-columns: 220px minmax(0, 1fr);
    column-gap: 28px;
  }
  .qz-lines__toggle { padding: 18px 22px 18px 26px; }
  .qz-lines__inner p { padding: 0 26px 26px; }
}

@media (min-width: 960px) {
  :root { --qz-top: 76px; }
  .qz-gate { padding-inline: 40px; }
  .qz-cue__toggle { display: none; }
  .qz-cue__list {
    position: static;
    display: flex;
    gap: 6px;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .qz-cue__link {
    min-height: 48px;
    padding-inline: 14px;
    font: 600 1rem/1.2 var(--f-body);
  }
  .qz-cue__link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.35em;
  }
  .qz-opening__copy { font-size: 1.2rem; }
  .qz-opening__credit { right: 40px; bottom: 20px; }
  .qz-sheet { padding-block: 112px 72px; }
  .qz-sheet__head {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: end;
    column-gap: 56px;
  }
  .qz-sheet__kicker { grid-column: 1 / -1; }
  .qz-sheet__hint { display: none; }
  .qz-reel { padding-block: 56px 72px; }
  .qz-reel__list { gap: 96px; }
  .qz-take__bar {
    grid-template-columns: 72px minmax(0, 1fr) 15rem auto;
    gap: 24px;
  }
  .qz-take__badge { width: 72px; height: 72px; border-radius: 18px; }
  .qz-take__score,
  .qz-take__cta { grid-column: auto; }
  .qz-take__cta { justify-self: end; }
  .qz-film { --qz-h: 320px; }
  .qz-film--wide { --qz-h: 230px; }
  .qz-take--lead .qz-film { --qz-h: 440px; }
  .qz-film__track { gap: 16px; padding-inline: 28px; scroll-padding-inline: 28px; }
  .qz-take__notes {
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 26px;
  }
  .qz-take__slates { grid-column: 1 / -1; }
  .qz-credits { padding-block: 96px 32px; }
  .qz-credits__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 0.8fr);
    column-gap: 56px;
    align-items: start;
  }
  .qz-credits__links { grid-template-columns: 1fr; }
  .qz-script { padding-block: 72px 112px; }
  .qz-board { padding-block: 72px 104px; }
  .qz-board__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    column-gap: 56px;
    margin-bottom: 56px;
  }
  .qz-board__kicker { grid-column: 1 / -1; }
  .qz-board__arc {
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 170px;
    color: #BCC6E6;
    pointer-events: none;
  }
  .qz-board__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 24px;
    padding-top: 28px;
  }
  .qz-scene {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "time" "still" "text";
    grid-template-rows: auto auto 1fr;
    row-gap: 14px;
  }
  .qz-scene__time { margin: 0; }
  .qz-scene--morgon { margin-top: 104px; }
  .qz-scene--lunch { margin-top: 0; }
  .qz-scene--buss { margin-top: 26px; }
  .qz-scene--kvall { margin-top: 70px; }
  .qz-scene--natt { margin-top: 128px; }
  .qz-lines { padding-block: 32px 80px; }
}

@media (min-width: 1280px) {
  .qz-opening__title { max-width: 11.5em; }
  .qz-take__bar { grid-template-columns: 72px minmax(0, 1fr) 16rem auto; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .qz-ripple__ring { animation: qz-spread 13s linear infinite; }
  .qz-ripple__ring:nth-child(2) { animation-delay: -4.3s; }
  .qz-ripple__ring:nth-child(3) { animation-delay: -8.6s; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
  .qz-ripple__ring { display: none; }
  .qz-rolling [data-qz-reveal]:not(.qz-in),
  .qz-rolling [data-qz-reveal]:not(.qz-in) .qz-frame,
  .qz-rolling [data-qz-reveal]:not(.qz-in) .qz-scene {
    opacity: 1;
    transform: none;
  }
}

@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-color: #C3C9D8 var(--c-paper); }
  .qz-sheet__scroll { scrollbar-color: #A9B0C3 var(--c-mist); }
  .qz-film__track {
    scrollbar-color: #8B92A3 #262930;
    scrollbar-width: thin;
  }
}
