:root {
  --ink: #090b12;
  --paper: #f2f0e9;
  --cobalt: #1f4dff;
  --crimson: #d81935;
  --turquoise: #2de2d0;
  --muted: #a6a9b4;
  --line: rgba(242, 240, 233, .18);
  --reel: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(45, 226, 208, .16) 50%, transparent 50.06%),
    var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(31, 77, 255, .08), transparent 34%, transparent 68%, rgba(216, 25, 53, .08));
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--turquoise);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.reading-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(242, 240, 233, .08);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--turquoise);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 10px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 18, .94);
  backdrop-filter: blur(14px);
}

.brand img,
.site-footer > img {
  width: 122px;
  height: auto;
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px 18px;
  align-items: center;
}

.site-header nav a {
  color: #d9d8d3;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--turquoise);
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  padding: 8px 11px;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
}

main {
  overflow: clip;
}

.reel-section {
  position: relative;
  width: var(--reel);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) clamp(40px, 8vw, 118px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reel-section::before,
.reel-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  content: "";
  background:
    radial-gradient(circle, var(--ink) 0 5px, transparent 5.5px) center top / 22px 34px repeat-y,
    var(--paper);
}

.reel-section::before {
  left: 0;
}

.reel-section::after {
  right: 0;
}

.chapter-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.chapter-copy::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--turquoise);
  content: "";
}

.title-slate {
  padding-top: clamp(78px, 10vw, 142px);
  padding-bottom: clamp(54px, 7vw, 94px);
}

.title-slate .chapter-copy {
  max-width: 970px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  max-width: 860px;
  margin-bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.7vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
}

p {
  margin-bottom: 1.25em;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.title-slate p {
  max-width: 920px;
  color: #d2d2cf;
  font-size: clamp(1.04rem, 1.6vw, 1.3rem);
}

.cut-left .chapter-copy {
  margin-right: auto;
}

.cut-right .chapter-copy {
  width: 88%;
  margin-left: auto;
}

.cut-wide .chapter-copy {
  max-width: 950px;
  margin-inline: auto;
}

.continuation {
  margin-top: clamp(42px, 6vw, 76px);
}

.band-light {
  color: var(--ink);
  background: var(--paper);
}

.band-light .reel-section::before,
.band-light .reel-section::after {
  background-color: var(--ink);
}

.band-light .chapter-copy::before {
  background: var(--crimson);
}

.band-cobalt {
  background: var(--cobalt);
}

.band-crimson {
  background: var(--crimson);
}

.band-cobalt .chapter-copy::before,
.band-crimson .chapter-copy::before {
  background: var(--paper);
}

.cinema-frame {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px) 0;
  background: var(--ink);
}

.cinema-frame::before,
.cinema-frame::after {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
}

.cinema-frame::before {
  top: 0;
}

.cinema-frame::after {
  bottom: 0;
}

.frame-cobalt::before,
.frame-cobalt::after {
  background: var(--cobalt);
}

.frame-crimson::before,
.frame-crimson::after {
  background: var(--crimson);
}

.frame-turquoise::before,
.frame-turquoise::after {
  background: var(--turquoise);
}

.cinema-frame img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.reel-section > .cinema-frame {
  z-index: 3;
  width: calc(100% + clamp(80px, 16vw, 236px));
  max-width: none;
  margin-top: clamp(42px, 6vw, 74px);
  margin-left: calc(clamp(40px, 8vw, 118px) * -1);
}

figure {
  margin: clamp(48px, 7vw, 88px) 0 0;
  border-top: 4px solid var(--crimson);
}

figure img {
  width: 100%;
}

figcaption {
  padding: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.operations-reel {
  position: relative;
}

.operations-reel::before {
  position: absolute;
  z-index: 4;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--turquoise);
  opacity: .46;
}

.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.faq-section .chapter-copy {
  max-width: 960px;
  margin-inline: auto;
}

.faq-section .chapter-copy::before {
  background: var(--cobalt);
}

.faq-item {
  border-top: 1px solid rgba(9, 11, 18, .28);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(9, 11, 18, .28);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 24px 56px 24px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: translateY(-32%) rotate(225deg);
}

.faq-answer {
  padding: 0 44px 24px 0;
}

.faq-answer p {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 40px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #05060a;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
}

.site-footer a {
  font-size: .8rem;
}

.cookie-notice {
  position: fixed;
  z-index: 95;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(180px, 360px) auto;
  gap: 18px;
  align-items: center;
  max-width: calc(100% - 36px);
  padding: 16px;
  border: 1px solid var(--turquoise);
  color: var(--paper);
  background: #10131d;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .45);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
}

.cookie-notice button,
.home-link a {
  border: 0;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--turquoise);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.policy-page {
  background-color: var(--ink);
}

.policy-reel {
  width: var(--reel);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 124px) clamp(40px, 9vw, 132px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.policy-reel article {
  max-width: 880px;
  margin-inline: auto;
}

.policy-title {
  margin-bottom: clamp(60px, 8vw, 110px);
  padding-bottom: 36px;
  border-bottom: 5px solid var(--cobalt);
}

.policy-title h1 {
  margin-bottom: 24px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--turquoise);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.policy-reel section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.policy-reel section:nth-of-type(3n + 2) {
  margin-left: 8%;
}

.policy-reel section:nth-of-type(3n) {
  margin-right: 8%;
}

.policy-reel h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.home-link {
  margin-top: 46px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: #10131d;
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    padding: 9px 7px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --reel: calc(100% - 16px);
  }

  .reel-section {
    padding: 62px 34px;
  }

  .reel-section::before,
  .reel-section::after {
    width: 14px;
    background-size: 14px 26px;
  }

  .cut-right .chapter-copy {
    width: 100%;
  }

  .reel-section > .cinema-frame {
    width: calc(100% + 68px);
    margin-left: -34px;
  }

  .operations-reel::before {
    left: 18px;
  }

  .policy-reel {
    padding: 64px 28px;
  }

  .policy-reel section:nth-of-type(n) {
    margin-inline: 0;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
