@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap");

:root {
  --color-paper: #f9f9f8;
  --color-surface: #f3f4f6;
  --color-surface-muted: #d6d9e0;
  --color-ink: #10161d;
  --color-ink-soft: #263847;
  --color-navy: #1f2d48;
  --color-navy-light: #2d4050;
  --color-night: #101923;
  --color-night-soft: #111c2c;
  --color-text-muted: #69748c;
  --color-rule: #d6d9e0;
  --color-brand: #00c7db;
  --color-brand-soft: #d9f9fc;
  --color-brand-pale: #9ff4ff;
  --color-brand-hover: #00a4b6;
  --color-action: #007f8c;
  --color-action-hover: #006d78;
  --color-on-action: #ffffff;
  --color-on-dark: #ffffff;
  --color-on-dark-soft: #e4e9ee;
  --color-on-dark-muted: #d6d9e0;
  --color-focus: #00c7db;
  --color-focus-on-light: #10161d;
  --color-focus-on-dark: #ffffff;
  --color-disabled: #69748c;
  --color-placeholder-art: #24364d;
  --color-accent: var(--color-brand);
  --color-accent-ink: var(--color-ink);

  --font-display: "Jost", system-ui, -apple-system, sans-serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-md: 1.25rem;
  --text-lg: 1.5625rem;
  --text-xl: 1.953rem;
  --text-2xl: 2.441rem;
  --text-3xl: 3.052rem;
  --text-display: clamp(2.65rem, 7vw, 5.25rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.25rem;
  --radius-control: 0.625rem;
  --radius-card: 0.75rem;
  --radius-panel: 1.125rem;
  --radius-pill: 9999px;

  --rule-thin: 1px;
  --rule-strong: 2px;

  --dur-micro: 120ms;
  --dur-short: 220ms;
  --dur-long: 420ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 200;
}

.coc-prototype,
.coc-prototype *,
.coc-prototype *::before,
.coc-prototype *::after,
.coc-campaign,
.coc-campaign *,
.coc-campaign *::before,
.coc-campaign *::after {
  box-sizing: border-box;
}

.coc-prototype {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.coc-prototype button,
.coc-prototype input,
.coc-campaign button { font: inherit; }
.coc-prototype button,
.coc-campaign button { cursor: pointer; }
.coc-prototype img,
.coc-campaign img { display: block; max-width: 100%; }

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

.frm-shell-announcement {
  position: relative;
  min-height: 3rem;
  display: grid;
  place-items: center;
  padding: 0.65rem 3.5rem 0.65rem 1rem;
  color: #ffffff;
  background: #171717;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.frm-shell-announcement p { margin: 0; }

.frm-shell-announcement button {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.frm-shell-announcement[hidden] { display: none; }

.frm-shell-header {
  position: relative;
  z-index: var(--z-sticky);
  color: #ffffff;
  background: #00c7db;
}

.frm-shell-nav {
  width: min(calc(100% - 2rem), 78rem);
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-inline: auto;
}

.frm-shell-brand {
  width: 7rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.frm-shell-brand img { width: 100%; height: 100%; object-fit: contain; }

.frm-shell-menu {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 1rem;
}

.frm-shell-links,
.frm-shell-actions { display: flex; align-items: center; }
.frm-shell-links { gap: clamp(0.6rem, 1.25vw, 1.25rem); }

.frm-shell-links a,
.frm-shell-actions a {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.frm-shell-links a { padding-block: 1.75rem; }
.frm-shell-links a:hover,
.frm-shell-actions a:hover { color: #102031; }

.frm-shell-links span {
  display: inline-block;
  margin-left: 0.1rem;
  font-size: 1rem;
  transform: translateY(-0.1rem);
}

.frm-shell-actions { gap: 0.5rem; }

.frm-shell-search {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.frm-shell-search svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.frm-shell-signin,
.frm-shell-join {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
}

.frm-shell-join { color: #121820 !important; background: #ffffff; }

.frm-shell-menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  place-items: center;
  margin-left: auto;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
}

.frm-shell-menu-toggle svg {
  width: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.frm-shell-menu-close { display: none; }
.frm-shell-menu-toggle[aria-expanded="true"] .frm-shell-menu-open { display: none; }
.frm-shell-menu-toggle[aria-expanded="true"] .frm-shell-menu-close { display: block; }

.coc-page,
.coc-campaign {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.62;
}

.coc-container { width: min(calc(100% - 2rem), 74rem); margin-inline: auto; }

.coc-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-on-dark);
  background: var(--color-night);
  border-bottom: 0.3rem solid var(--color-brand);
}

.coc-hero__wall {
  position: absolute;
  inset: 0;
  display: block;
}

.coc-hero__wall img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coc-hero__wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(4 10 17 / 86%) 0%, rgb(4 10 17 / 65%) 39%, rgb(4 10 17 / 17%) 68%, rgb(4 10 17 / 30%) 100%),
    linear-gradient(180deg, rgb(3 9 15 / 18%), transparent 58%, rgb(3 8 13 / 42%));
  pointer-events: none;
}

.coc-hero__grid {
  position: relative;
  z-index: var(--z-base);
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.coc-hero__copy { max-width: 42rem; }

.coc-campaign h1,
.coc-campaign h2,
.coc-trailer-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.coc-hero h1 { max-width: 13ch; font-size: clamp(3rem, 5.15vw, 4.75rem); }
.coc-hero h1 em { color: var(--color-brand-pale); font-style: normal; }

.coc-hero__lede {
  max-width: 40rem;
  margin: 1.55rem 0 1.75rem;
  color: var(--color-on-dark-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.coc-button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform var(--dur-micro) var(--ease-out), background var(--dur-short) var(--ease-out);
}

.coc-button--primary { color: var(--color-ink); background: var(--color-brand); }
.coc-button--primary:hover { background: var(--color-brand-pale); transform: translateY(-2px); }

.coc-poster-case {
  position: relative;
  isolation: isolate;
  width: min(100%, 20rem);
  align-self: start;
  justify-self: center;
  margin: 0;
}

.coc-poster-case::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7% -13%;
  background: radial-gradient(ellipse at center, rgb(255 252 226 / 38%), rgb(117 226 238 / 11%) 50%, transparent 74%);
  filter: blur(0.5rem);
  pointer-events: none;
}

.coc-poster-case::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -11rem;
  left: -24%;
  width: 148%;
  height: 17rem;
  background: linear-gradient(180deg, rgb(243 250 255 / 44%), rgb(219 245 249 / 16%) 58%, transparent 100%);
  clip-path: polygon(43% 0, 57% 0, 82% 100%, 18% 100%);
  filter: blur(0.55rem);
  opacity: 0.78;
  pointer-events: none;
}

.coc-poster-case__light {
  position: relative;
  z-index: 1;
  padding: 0.72rem;
  background: linear-gradient(145deg, #30363b 0%, #090c0f 46%, #1b2126 100%);
  box-shadow:
    0 0 0 0.18rem #040608,
    0 0 1.3rem rgb(227 252 255 / 36%),
    0.65rem 0.8rem 0 -0.1rem #05080a,
    0 1.75rem 2.25rem rgb(0 0 0 / 52%);
  transform: perspective(70rem) rotateY(-1.8deg) rotateX(0.5deg);
  transform-origin: center;
}

.coc-poster-case__light::before {
  content: "";
  position: absolute;
  inset: 0.25rem;
  box-shadow: inset 0.1rem 0.1rem 0 rgb(255 255 255 / 18%), inset -0.16rem -0.16rem 0 rgb(0 0 0 / 55%);
  pointer-events: none;
}

.coc-poster-case__marquee {
  min-height: 3.45rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
  padding: 0.55rem 1rem;
  color: var(--color-brand-pale);
  background: #070c11;
  box-shadow: inset 0 0 1rem rgb(0 199 219 / 12%);
}

.coc-poster-case__marquee span {
  position: relative;
  display: block;
  width: 100%;
  padding-block: 0.34rem;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 0.75rem rgb(0 199 219 / 72%);
}

.coc-poster-case__marquee span::before,
.coc-poster-case__marquee span::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 0.12rem;
  background: var(--color-brand);
  box-shadow: 0 0 0.5rem rgb(0 199 219 / 62%);
}

.coc-poster-case__marquee span::before { top: 0; }
.coc-poster-case__marquee span::after { bottom: 0; }

.coc-poster-case__art {
  position: relative;
  padding: 0.32rem;
  background: #f4f7f7;
  box-shadow: inset 0 0 1.2rem rgb(176 239 246 / 24%);
  overflow: hidden;
}

.coc-poster-case__art::after {
  content: "";
  position: absolute;
  inset: 0.32rem;
  background: linear-gradient(122deg, rgb(255 255 255 / 20%) 0%, transparent 29%, transparent 66%, rgb(255 255 255 / 8%) 100%);
  pointer-events: none;
}

.coc-poster-case__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 1334;
  object-fit: contain;
  background: #f8f0d4;
}

.coc-film {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  color: var(--color-on-dark);
  background: var(--color-night);
}

.coc-film__copy {
  max-width: 47rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.coc-film__copy h2 { color: var(--color-on-dark); }

.coc-film__copy p {
  max-width: 62ch;
  margin: 1rem auto 0;
  color: var(--color-on-dark-muted);
  font-size: 1.12rem;
  text-wrap: pretty;
}

.coc-trailer-screen {
  width: min(100%, 65rem);
  margin-inline: auto;
  padding: clamp(0.5rem, 1.2vw, 0.85rem);
  background: linear-gradient(145deg, #313942 0%, #080c11 42%, #1a222a 100%);
  box-shadow:
    0 0 0 0.25rem #05080c,
    0 0.8rem 0 #05080c,
    0 1.75rem 2.5rem rgb(0 0 0 / 38%);
}

.coc-trailer-trigger {
  width: 100%;
  display: block;
  padding: 0;
  color: #ffffff;
  background: #05080c;
  border: 0;
  text-align: left;
}

.coc-trailer-artwork {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.coc-trailer-artwork img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transition: filter var(--dur-long) var(--ease-out);
}

.coc-trailer-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(4.5rem, 8vw, 5.75rem);
  height: clamp(4.5rem, 8vw, 5.75rem);
  display: grid;
  place-items: center;
  color: var(--color-ink);
  background: var(--color-brand);
  border: 0.28rem solid rgb(255 255 255 / 94%);
  border-radius: 50%;
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 44%);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-short) var(--ease-out), background var(--dur-short) var(--ease-out);
}

.coc-trailer-play svg { width: 52%; fill: currentColor; }

.coc-trailer-trigger:hover img { filter: brightness(0.82); }
.coc-trailer-trigger:hover .coc-trailer-play { background: var(--color-brand-pale); transform: translate(-50%, -50%) scale(1.07); }

.coc-film h2,
.coc-impact h2,
.coc-final h2 { font-size: clamp(2.3rem, 3.8vw, 3.65rem); }

.coc-impact__copy > p,
.coc-final__copy p {
  max-width: 54ch;
  margin: 1.35rem 0 0;
  font-size: 1.12rem;
  text-wrap: pretty;
}

.coc-impact {
  position: relative;
  min-height: clamp(34rem, 52vw, 44rem);
  display: grid;
  overflow: hidden;
  background: var(--color-night);
}

.coc-impact::after {
  content: "";
  position: absolute;
  z-index: var(--z-base);
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 10 16 / 94%) 0%, rgb(5 10 16 / 82%) 36%, rgb(5 10 16 / 31%) 68%, rgb(5 10 16 / 18%) 100%),
    linear-gradient(180deg, rgb(5 10 16 / 16%) 0%, rgb(5 10 16 / 38%) 100%);
  pointer-events: none;
}

.coc-impact__content {
  position: relative;
  z-index: var(--z-raised);
  min-height: inherit;
  display: flex;
  align-items: center;
}

.coc-impact__copy {
  width: min(100%, 42rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.coc-impact__image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.coc-impact__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.coc-impact__copy h2 { max-width: 17ch; color: var(--color-on-dark); text-wrap: balance; }
.coc-impact__copy > p { max-width: 50ch; color: var(--color-on-dark-muted); }

.coc-final { padding-block: clamp(3.5rem, 6vw, 5rem); background: var(--color-paper); }

.coc-final__panel {
  width: min(calc(100% - 2rem), 64rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  background: var(--color-navy);
  border-top: 0.3rem solid var(--color-brand);
  border-radius: var(--radius-card);
  text-align: center;
}

.coc-final__copy h2 { max-width: 20ch; margin-inline: auto; color: #ffffff; }
.coc-final__copy p { max-width: 48ch; margin-inline: auto; color: var(--color-on-dark-muted); }

.coc-button--dark { color: var(--color-ink); background: var(--color-brand); }
.coc-button--dark:hover { background: var(--color-brand-pale); transform: translateY(-2px); }

.frm-shell-footer {
  padding: 3rem max(1rem, calc((100% - 74rem) / 2));
  color: #ffffff;
  background: #111c2c;
}

.frm-shell-footer__bar {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.frm-shell-footer__bar > img { width: 7rem; height: 3.5rem; object-fit: contain; }
.frm-shell-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.frm-shell-footer a { color: inherit; }
.frm-shell-footer nav a { font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.frm-shell-footer__bar p { margin: 0; color: #bdc6cf; font-size: 0.82rem; }

.frm-shell-signup {
  max-width: 46rem;
  margin: 3.5rem auto 1rem;
  text-align: center;
}

.frm-shell-signup h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.frm-shell-signup > p { max-width: 42rem; margin: 1rem auto 1.75rem; color: #d6d9e0; font-size: 1.03rem; }
.frm-shell-signup form { position: relative; max-width: 37.5rem; margin-inline: auto; }

.frm-shell-signup input {
  width: 100%;
  height: 3.5rem;
  padding: 0.75rem 9.5rem 0.75rem 1.25rem;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: var(--radius-pill);
  font-size: 1rem;
}

.frm-shell-signup button {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  height: 3rem;
  padding: 0.55rem 1.2rem;
  color: #ffffff;
  background: var(--color-brand);
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.coc-donorbox-close-proxy {
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: calc(50% + 205px);
  width: 48px;
  height: 48px;
  padding: 0;
  transform: translateX(-50%);
  appearance: none;
  color: transparent;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.coc-donorbox-close-proxy[hidden] { display: none; }
.coc-donorbox-close-proxy:focus-visible { outline: 3px solid var(--color-brand-pale); outline-offset: -4px; }

@media (max-width: 450px) {
  .coc-donorbox-close-proxy {
    left: auto;
    right: 0;
    transform: none;
  }
}

.coc-trailer-dialog {
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.coc-trailer-dialog {
  width: calc(100% - 2rem);
  max-width: 70rem;
  color: var(--color-on-dark);
  background: var(--color-night);
}

.coc-trailer-dialog__header {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem 0.6rem 1.5rem;
}

.coc-trailer-dialog__header h2 { font-size: 1.25rem; }

.coc-trailer-close {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.coc-trailer-close { color: var(--color-on-dark); border: 1px solid rgb(255 255 255 / 32%); }
.coc-trailer-close:hover { color: var(--color-ink); background: var(--color-brand); border-color: var(--color-brand); }
.coc-video-frame { aspect-ratio: 16 / 9; background: #000000; }
.coc-video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }

.coc-trailer-dialog::backdrop { background: rgb(7 13 22 / 78%); backdrop-filter: blur(4px); }

.coc-prototype :focus-visible,
.coc-campaign :focus-visible,
.coc-trailer-dialog :focus-visible { outline: 3px solid var(--color-focus); outline-offset: 4px; }

.coc-final :focus-visible {
  outline-color: var(--color-brand-pale);
}

.frm-shell-header :focus-visible { outline-color: var(--color-ink); }

@media (max-width: 1100px) {
  .frm-shell-menu-toggle { display: grid; }
  .frm-shell-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem max(1rem, calc((100% - 74rem) / 2)) 1.5rem;
    color: #ffffff;
    background: #00aabb;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 20%);
  }
  .frm-shell-menu.is-open { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 1.5rem; }
  .frm-shell-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .frm-shell-links a { padding: 0.75rem; }
  .frm-shell-actions { padding-top: 0.35rem; }
}

@media (max-width: 820px) {
  .coc-hero__grid { grid-template-columns: 1fr; }
  .coc-hero__grid { gap: 3.5rem; }
  .coc-hero__copy { max-width: 42rem; }
  .coc-poster-case { width: min(78vw, 20rem); align-self: center; }
  .coc-poster-case__light { transform: none; }
  .coc-impact { min-height: 38rem; }
  .coc-impact::after {
    background:
      linear-gradient(90deg, rgb(5 10 16 / 91%) 0%, rgb(5 10 16 / 72%) 62%, rgb(5 10 16 / 33%) 100%),
      linear-gradient(180deg, rgb(5 10 16 / 12%) 0%, rgb(5 10 16 / 64%) 100%);
  }
  .coc-final .coc-button { width: fit-content; }
  .frm-shell-footer__bar { grid-template-columns: 7rem 1fr; }
  .frm-shell-footer__bar p { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .frm-shell-announcement { min-height: 3.6rem; padding-left: 0.75rem; font-size: 0.78rem; text-align: left; }
  .frm-shell-nav,
  .coc-container { width: calc(100% - 1.5rem); }
  .frm-shell-nav { min-height: 4.25rem; }
  .frm-shell-brand { width: 6rem; height: 3.25rem; }
  .frm-shell-menu.is-open { grid-template-columns: 1fr; }
  .frm-shell-links { grid-template-columns: 1fr; }
  .frm-shell-actions { justify-content: flex-start; }
  .coc-hero h1 { font-size: clamp(2.55rem, 12vw, 3.45rem); }
  .coc-hero__wall::after {
    background: linear-gradient(180deg, rgb(3 8 14 / 80%) 0%, rgb(3 8 14 / 58%) 42%, rgb(3 8 14 / 18%) 72%, rgb(3 8 14 / 36%) 100%);
  }
  .coc-hero__grid { gap: 3rem; padding-block: 3.25rem 4.25rem; }
  .coc-poster-case { width: min(80vw, 18.5rem); }
  .coc-poster-case::after { top: -8.5rem; height: 14rem; opacity: 0.68; }
  .coc-film { padding-block: 3.5rem 4rem; }
  .coc-film__copy { text-align: left; }
  .coc-film__copy p { margin-inline: 0; }
  .coc-trailer-screen {
    width: calc(100% - 0.25rem);
    padding: 0.35rem;
    box-shadow: 0 0 0 0.18rem #05080c, 0 0.45rem 0 #05080c, 0 1.1rem 1.75rem rgb(0 0 0 / 38%);
  }
  .coc-trailer-play { width: 4.25rem; height: 4.25rem; }
  .coc-impact { min-height: 36rem; }
  .coc-impact::after {
    background:
      linear-gradient(180deg, rgb(5 10 16 / 25%) 0%, rgb(5 10 16 / 51%) 38%, rgb(5 10 16 / 94%) 100%),
      linear-gradient(90deg, rgb(5 10 16 / 62%) 0%, rgb(5 10 16 / 24%) 100%);
  }
  .coc-impact__content { align-items: flex-end; }
  .coc-impact__copy { padding-block: 4rem; }
  .coc-impact__image img { object-position: 52% center; }
  .coc-final__panel { width: calc(100% - 1.5rem); padding: 2.5rem 1.25rem; }
  .coc-button,
  .coc-final .coc-button { width: 100%; }
  .frm-shell-footer { padding-block: 2.5rem; }
  .frm-shell-footer__bar { grid-template-columns: 1fr; gap: 1.25rem; }
  .frm-shell-footer__bar p { grid-column: auto; }
  .frm-shell-footer nav { gap: 0.75rem 1.25rem; }
  .frm-shell-signup { margin-top: 2.5rem; text-align: left; }
  .frm-shell-signup form { display: grid; gap: 0.75rem; }
  .frm-shell-signup input { padding-right: 1.25rem; }
  .frm-shell-signup button { position: static; width: 100%; }
  .coc-trailer-dialog { width: calc(100% - 1rem); }
  .coc-trailer-dialog__header { padding-left: 1rem; }
  .coc-trailer-dialog__header h2 { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* Public, unlisted Colors of Character viewing page */
.coc-watch-page,
.coc-watch,
.coc-watch *,
.coc-watch *::before,
.coc-watch *::after {
  box-sizing: border-box;
}

.coc-watch-page,
.coc-watch {
  margin: 0;
  color: var(--color-on-dark);
  background: #05080c;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.62;
}

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

.coc-watch-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-night);
  border-bottom: 0.3rem solid var(--color-brand);
}

.coc-watch-hero__wall {
  position: absolute;
  inset: 0;
  display: block;
}

.coc-watch-hero__wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coc-watch-hero__wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 8 14 / 28%) 0%, rgb(3 8 14 / 55%) 40%, rgb(3 8 14 / 90%) 76%, rgb(3 8 14 / 96%) 100%),
    linear-gradient(180deg, rgb(3 8 14 / 8%), rgb(3 8 14 / 52%));
}

.coc-watch-hero__grid {
  position: relative;
  z-index: var(--z-base);
  min-height: clamp(42rem, 76vh, 52rem);
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(4rem, 8vw, 6rem);
}

.coc-watch-poster {
  position: relative;
  isolation: isolate;
  width: min(100%, 19.5rem);
  justify-self: center;
  margin: 0;
}

.coc-watch-poster::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8% -15%;
  background: radial-gradient(ellipse at center, rgb(255 252 226 / 34%), rgb(117 226 238 / 12%) 52%, transparent 74%);
  filter: blur(0.55rem);
}

.coc-watch-poster::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -10rem;
  left: -24%;
  width: 148%;
  height: 16rem;
  background: linear-gradient(180deg, rgb(243 250 255 / 42%), rgb(219 245 249 / 14%) 58%, transparent 100%);
  clip-path: polygon(43% 0, 57% 0, 82% 100%, 18% 100%);
  filter: blur(0.55rem);
  opacity: 0.72;
}

.coc-watch-hero__copy { max-width: 43rem; }

.coc-watch h1,
.coc-watch h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.coc-watch h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.25rem);
}

.coc-watch h1 em {
  color: var(--color-brand-pale);
  font-style: normal;
}

.coc-watch-hero__lede {
  max-width: 56ch;
  margin: 1.5rem 0 0;
  color: var(--color-on-dark-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.coc-watch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin: 2rem 0;
}

.coc-watch-meta div { min-width: 7rem; }
.coc-watch-meta dt { color: var(--color-brand-pale); font-size: 0.88rem; font-weight: 800; }
.coc-watch-meta dd { margin: 0.18rem 0 0; color: #fff; font-weight: 650; }

.coc-viewer-section {
  scroll-margin-top: 2rem;
  overflow: hidden;
  padding: 0;
  background: #05080c;
}

.coc-theatre-row {
  --coc-screen-top: 22.42%;
  --coc-screen-left: 20.33%;
  --coc-screen-width: 59.21%;
  --coc-screen-height: 50.69%;
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #060e17;
}

.coc-theatre-screen {
  position: absolute;
  z-index: 1;
  isolation: isolate;
  top: var(--coc-screen-top);
  left: var(--coc-screen-left);
  width: var(--coc-screen-width);
  height: var(--coc-screen-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 1.8vw, 1.7rem) clamp(1.25rem, 3vw, 3rem) clamp(0.75rem, 1.5vw, 1.35rem);
  color: #fff;
  background:
    radial-gradient(ellipse at 50% -8%, rgb(0 199 219 / 19%), transparent 55%),
    linear-gradient(145deg, #071a2b, #09172a 68%, #06111e);
  box-shadow: inset 0 0 0 1px rgb(159 244 255 / 20%), inset 0 -1.4rem 2rem rgb(0 0 0 / 17%), 0 0 2rem rgb(0 199 219 / 13%);
  text-align: center;
}

.coc-theatre-screen::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.55rem;
  background:
    radial-gradient(ellipse at 50% -8%, rgb(0 199 219 / 19%), transparent 55%),
    linear-gradient(145deg, #071a2b, #09172a 68%, #06111e);
}

.coc-theatre-intro {
  width: 100%;
  max-width: 46rem;
}

.coc-theatre-intro p {
  margin: 0 0 clamp(0.25rem, 0.55vw, 0.5rem);
  color: var(--color-brand-pale);
  font-size: clamp(0.55rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.1;
}

.coc-theatre-intro h2 {
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(1.25rem, 2.6vw, 3.1rem);
  line-height: 1.02;
}

.coc-theatre-intro h2 span { color: var(--color-brand-pale); }

.coc-theatre-steps {
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(0.65rem, 1.4vw, 1.3rem) 0 clamp(0.45rem, 0.9vw, 0.8rem);
  padding: 0;
  list-style: none;
}

.coc-theatre-step {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.35rem, 0.75vw, 0.65rem);
  padding: clamp(0.35rem, 0.8vw, 0.7rem) clamp(0.7rem, 1.45vw, 1.4rem);
}

.coc-theatre-step + .coc-theatre-step::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgb(159 244 255 / 30%) 24%, rgb(159 244 255 / 30%) 76%, transparent);
}

.coc-theatre-step__number {
  width: clamp(1.55rem, 2.5vw, 2.15rem);
  height: clamp(1.55rem, 2.5vw, 2.15rem);
  display: grid;
  place-items: center;
  color: var(--color-ink);
  background: var(--color-brand);
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: clamp(0.62rem, 1.2vw, 0.88rem);
  font-weight: 800;
  line-height: 1;
}

.coc-theatre-step__copy {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coc-theatre-step h3 {
  margin: 0 0 clamp(0.2rem, 0.6vw, 0.45rem);
  color: #fff;
  font: 800 clamp(0.67rem, 1.25vw, 1.02rem)/1.12 var(--font-display);
  letter-spacing: -0.02em;
}

.coc-theatre-step p {
  max-width: 26ch;
  margin: 0;
  color: #d6e0e8;
  font-size: clamp(0.56rem, 0.95vw, 0.77rem);
  line-height: 1.4;
  text-wrap: pretty;
}

.coc-theatre-step em { color: #fff; font-style: italic; }

.coc-theatre-button,
.coc-theatre-passcode button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem clamp(0.65rem, 1vw, 0.9rem);
  color: var(--color-ink);
  background: var(--color-brand);
  border: 0;
  border-radius: var(--radius-sm);
  font: 800 clamp(0.62rem, 0.78vw, 0.76rem)/1.1 var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.coc-theatre-button { width: min(100%, 15rem); }
.coc-theatre-button:hover,
.coc-theatre-passcode button:hover { background: var(--color-brand-pale); }

.coc-copy-label-short { display: none; }

.coc-theatre-passcode {
  width: min(100%, 15rem);
  display: inline-flex;
  align-items: stretch;
  gap: 0.25rem;
  margin-inline: auto;
  padding: 0.22rem;
  color-scheme: dark;
  --bulma-code: #fff;
  --bulma-code-background: transparent;
  background: #061421;
  border: 1px solid rgb(159 244 255 / 22%);
  border-radius: var(--radius-sm);
}

.coc-theatre-passcode code {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-inline: 0.35rem;
  background: transparent;
  color: #fff;
  font: 700 clamp(0.62rem, 0.82vw, 0.72rem)/1 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.01em;
  text-align: center;
  text-overflow: ellipsis;
}

.coc-theatre-passcode button { width: auto; flex: 0 0 auto; }

.coc-theatre-status {
  display: block;
  min-height: 0.9rem;
  margin-top: 0.15rem;
  color: var(--color-brand-pale);
  font-size: clamp(0.48rem, 0.8vw, 0.62rem);
  line-height: 1.1;
}

.coc-theatre-note {
  max-width: 68ch;
  margin: 0;
  color: #b9c7d2;
  font-size: clamp(0.53rem, 0.82vw, 0.75rem);
  line-height: 1.35;
  text-align: center;
}

.coc-theatre-note a {
  color: var(--color-brand-pale);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.coc-theatre-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.coc-watch :focus-visible {
  outline: 3px solid var(--color-brand-pale);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .coc-watch-hero__wall::after {
    background: linear-gradient(180deg, rgb(3 8 14 / 72%) 0%, rgb(3 8 14 / 40%) 52%, rgb(3 8 14 / 86%) 100%);
  }

  .coc-watch-hero__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-block: 3.5rem 4.5rem;
  }

  .coc-watch-hero__copy { order: -1; }
  .coc-watch-poster { width: min(72vw, 19rem); }
  .coc-watch-poster .coc-poster-case__light { transform: none; }
  .coc-theatre-screen { padding-inline: clamp(0.75rem, 1.8vw, 1.4rem); }
}

@media (min-width: 601px) and (max-width: 1100px) {
  .coc-theatre-step { padding-inline: clamp(0.35rem, 1vw, 0.6rem); }
  .coc-theatre-passcode { width: 100%; gap: 0.15rem; padding: 0.15rem; }
  .coc-theatre-passcode code { padding-inline: 0.2rem; }
  .coc-theatre-passcode button { padding-inline: 0.55rem; }
  .coc-copy-label-long { display: none; }
  .coc-copy-label-short { display: inline; }
}

@media (max-width: 600px) {
  .coc-watch h1 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  .coc-watch-meta { gap: 0.8rem 1.25rem; }
  .coc-watch-poster { width: min(78vw, 18rem); }
  .coc-viewer-section { padding: 3.5rem 0; }
  .coc-theatre-row {
    width: min(calc(100% - 1.5rem), 31rem);
    aspect-ratio: auto;
    margin-inline: auto;
    padding: 0.85rem;
    background: linear-gradient(145deg, #1d2b3d, #070e17 52%, #0d1825);
    box-shadow: 0 0 0 0.22rem #05080c, 0 0.7rem 0 #05080c, 0 1.25rem 2rem rgb(0 0 0 / 42%);
  }
  .coc-theatre-frame { display: none; }
  .coc-theatre-screen {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 1.35rem 1rem 1rem;
    background: linear-gradient(145deg, #071422, #0a1b2d);
    border: 1px solid rgb(159 244 255 / 32%);
    box-shadow: inset 0 0 0 0.45rem #0e1b2b;
  }
  .coc-theatre-screen::before { display: none; }
  .coc-theatre-intro p { margin-bottom: 0.45rem; font-size: 0.72rem; }
  .coc-theatre-intro h2 { font-size: clamp(2rem, 9.6vw, 2.65rem); }
  .coc-theatre-steps { grid-template-columns: 1fr; gap: 0; margin: 1rem 0 0.65rem; }
  .coc-theatre-step { display: flex; align-items: center; gap: 0.7rem; padding: 1rem 0.5rem; }
  .coc-theatre-step + .coc-theatre-step::before {
    top: 0;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(159 244 255 / 30%) 24%, rgb(159 244 255 / 30%) 76%, transparent);
  }
  .coc-theatre-step__number { width: 2rem; height: 2rem; font-size: 0.85rem; }
  .coc-theatre-step h3 { margin-bottom: 0.45rem; font-size: 1rem; }
  .coc-theatre-step p { font-size: 0.88rem; }
  .coc-theatre-button { width: min(100%, 17rem); font-size: 0.78rem; }
  .coc-theatre-passcode { max-width: 17rem; }
  .coc-theatre-passcode code { font-size: 0.72rem; }
  .coc-theatre-status { min-height: 1rem; font-size: 0.62rem; }
  .coc-theatre-note { margin-top: 0.2rem; font-size: 0.78rem; line-height: 1.45; }
}
