:root {
  --bg: #050a13;
  --bg-soft: #0a1323;
  --panel: rgba(13, 26, 45, 0.84);
  --panel-solid: #0d1a2d;
  --text: #e8f1ff;
  --muted: #aebdd3;
  --line: rgba(148, 190, 255, 0.24);
  --cyan: #63d9ff;
  --blue: #74a9ff;
  --violet: #c697ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 20px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(3, 8, 16, 0.84), rgba(3, 8, 16, 0.94)),
    url("abkgd.jpg") center top / cover fixed;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

video {
  width: 100%;
  background: #000;
}

a {
  color: var(--cyan);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: #fff;
}

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

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0.25em;
  font-size: clamp(3rem, 8vw, 6.4rem);
  letter-spacing: -0.045em;
  text-shadow: 0 0 36px rgba(99, 217, 255, 0.22);
}

h2 {
  margin-bottom: 0.55em;
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  color: #dcebff;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.45em;
  font-size: 1.45rem;
  color: #edf5ff;
}

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 870px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: #05101c;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 16, 0.76);
  backdrop-filter: blur(16px);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 112px;
  padding-block: 16px;
}

.brand {
  display: block;
  width: min(540px, 52vw);
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  color: #e4efff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: -20% auto auto 55%;
  width: 620px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(82, 160, 255, 0.25), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tagline {
  margin-bottom: 20px;
  color: var(--violet);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

.intro,
.lead {
  color: #d1def1;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  color: #edf6ff;
  border: 1px solid rgba(148, 190, 255, 0.44);
  border-radius: 999px;
  background: rgba(11, 24, 43, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(26, 56, 91, 0.94);
  transform: translateY(-2px);
}

.button-primary {
  color: #03111e;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #020b13;
  background: linear-gradient(135deg, #9aebff, #9cbdff);
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.hero-media,
.clip-card,
.notes-panel,
.watch-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media {
  overflow: hidden;
}

.hero-media video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-caption {
  margin: 0;
  padding: 11px 16px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(7, 15, 28, 0.76);
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.feature-strip span {
  padding: 7px 13px;
  color: #c7d7ec;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 21, 38, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 760px;
  margin: 46px auto 0;
}

.clip-card {
  overflow: hidden;
  padding: 26px 0 30px;
}

.clip-title,
.clip-card video,
.clip-copy {
  width: 75%;
  margin-inline: auto;
}

.clip-title {
  margin-bottom: 18px;
}

.clip-card video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.clip-copy {
  padding-top: 20px;
}

.clip-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.production-intro {
  max-width: 760px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 42px;
}

.notes-panel {
  overflow: hidden;
  margin: 0;
}

.notes-panel img {
  width: 100%;
  height: auto;
}

.notes-panel figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.watch-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
}

.watch-box {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 44px;
  padding: clamp(34px, 5vw, 60px);
  background:
    linear-gradient(125deg, rgba(18, 44, 74, 0.92), rgba(29, 17, 55, 0.9)),
    var(--panel-solid);
}

.watch-box h2 {
  margin-bottom: 0.35em;
}

.watch-box p:last-child {
  margin-bottom: 0;
  color: #c7d5e8;
}

.watch-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.site-footer {
  padding: 44px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(2, 7, 14, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
}

.footer-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a {
  font-size: 0.9rem;
  text-decoration: none;
}

.copyright {
  margin-top: 32px;
  padding-top: 20px;
  color: #7f90a8;
  border-top: 1px solid rgba(148, 190, 255, 0.12);
  font-size: 0.78rem;
}

.copyright p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(680px, 100%);
  }

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

  .hero-grid,
  .watch-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .watch-actions {
    align-items: flex-start;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
    background-attachment: scroll;
  }

  .site-header .shell {
    min-height: 0;
  }

  .site-nav {
    gap: 8px 14px;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .clip-copy {
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.title-year {
  display: block;
  margin-top: 0.12em;
  color: var(--cyan);
  font-size: 0.34em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.movie-overview {
  background:
    radial-gradient(circle at 15% 30%, rgba(99, 217, 255, 0.08), transparent 28%),
    rgba(3, 9, 18, 0.46);
}

.story-question {
  margin: 38px 0;
  padding: 24px 28px;
  color: #f0e9ff;
  border: 0;
  border-left: 4px solid var(--violet);
  background: rgba(22, 18, 47, 0.58);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
}

.character-intro {
  max-width: 900px;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.character-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 22, 39, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.character-card-primary {
  background:
    linear-gradient(145deg, rgba(24, 63, 92, 0.92), rgba(15, 25, 50, 0.92));
}

.character-type {
  margin-bottom: 26px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.character-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.world-terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.world-terms article {
  padding: 22px 24px;
  border-top: 1px solid rgba(99, 217, 255, 0.42);
  background: rgba(4, 11, 21, 0.54);
}

.world-terms h3 {
  color: var(--violet);
  font-size: 1.14rem;
  letter-spacing: 0.05em;
}

.world-terms p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.clips-section {
  background: rgba(4, 10, 19, 0.46);
}

.creator-notes-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.96), rgba(17, 13, 37, 0.9));
}

.creator-notes-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.creator-notes-heading {
  position: sticky;
  top: 28px;
}

.creator-notes-copy {
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid rgba(148, 190, 255, 0.22);
}

.creator-notes-copy p {
  color: #c8d6e9;
}

.creator-notes-copy p:first-child {
  color: #e1ebf9;
  font-size: 1.1rem;
}

.creator-signature {
  margin-top: 34px;
  color: var(--cyan) !important;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem !important;
  font-weight: 800;
}

.credits-section {
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(72, 114, 172, 0.14), transparent 48%),
    rgba(3, 8, 16, 0.72);
}

.billing-block {
  max-width: 980px;
  margin: 38px auto 0;
  padding: clamp(30px, 5vw, 52px);
  border-block: 1px solid rgba(148, 190, 255, 0.28);
}

.billing-cast {
  margin-bottom: 24px;
  color: #eef5ff;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.billing-credit {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.info-grid a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 19px 15px;
  color: #edf5ff;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 19, 34, 0.75);
  text-decoration: none;
}

.info-grid a:hover,
.info-grid a:focus-visible {
  border-color: var(--cyan);
  background: rgba(18, 42, 69, 0.88);
}

.info-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-grid strong {
  align-self: end;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

@media (max-width: 1000px) {
  .character-grid,
  .world-terms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .creator-notes-grid {
    grid-template-columns: 1fr;
  }

  .creator-notes-heading {
    position: static;
  }

  .creator-notes-copy {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .character-grid,
  .world-terms,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .billing-cast {
    letter-spacing: 0.045em;
  }
}

@media (max-width: 560px) {
  .clip-title,
  .clip-card video,
  .clip-copy {
    width: 88%;
  }
}