:root {
  --ink: #171725;
  --muted: #666577;
  --paper: #ffffff;
  --wash: #f5f6f8;
  --line: #e1e2e8;
  --teal: #087f83;
  --coral: #ef614b;
  --gold: #f2be32;
  --lime: #a7d94e;
  --indigo: #262254;
  --shadow: 0 18px 52px rgba(24, 22, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.masthead {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #191727;
}

.masthead > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masthead-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 34, 0.08), rgba(20, 17, 34, 0.58));
}

.masthead-inner {
  position: absolute;
  inset: 0;
  width: min(1260px, calc(100% - 48px));
  margin: auto;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.masthead-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 760px;
}

.masthead-nav a {
  color: white;
  font-size: 0.82rem;
  text-decoration: none;
}

.masthead-nav a:hover {
  color: var(--gold);
}

.studio-logo {
  width: 150px;
  max-height: 70px;
  object-fit: contain;
  object-position: left top;
}

.press-shell {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 48px));
  margin: -86px auto 0;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
  min-width: 0;
}

.identity-rail {
  position: sticky;
  top: 24px;
  min-width: 0;
  padding-bottom: 30px;
  overflow-wrap: anywhere;
}

.library-header {
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: cover;
  display: block;
  border: 6px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--wash);
}

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

h1 {
  margin: 26px 0 8px;
  font-size: 2rem;
}

h2 {
  margin: 0 0 18px;
  font-size: 1.55rem;
}

h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.byline {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.rail-summary {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.primary-downloads {
  display: grid;
  gap: 8px;
  margin-bottom: 42px;
}

.button,
.pill,
.download-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 8px;
  color: white;
  background: var(--indigo);
  font-weight: 900;
  text-align: center;
}

.button.download {
  background: var(--coral);
}

.button.secondary {
  background: var(--teal);
}

.press-content {
  min-width: 0;
  padding-top: 112px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.facts-panel {
  min-width: 0;
  overflow-wrap: anywhere;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.organization {
  margin-bottom: 24px;
}

.organization p {
  margin: 0;
}

.organization .pill {
  margin-top: 10px;
}

.link-group {
  margin-bottom: 22px;
}

.pill-list {
  display: grid;
  gap: 7px;
}

.pill {
  justify-content: flex-start;
  border-radius: 999px;
  background: var(--indigo);
  font-size: 0.84rem;
}

.pill:nth-child(3n + 2) {
  background: var(--teal);
}

.pill:nth-child(3n + 3) {
  background: var(--coral);
}

.facts {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.facts div {
  margin-bottom: 18px;
}

dt {
  font-weight: 950;
}

dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.editorial-panel {
  min-width: 0;
  overflow-wrap: anywhere;
}

.content-section {
  margin-bottom: 34px;
}

.content-section p {
  margin-top: 0;
}

.lead-section {
  padding: 24px 26px;
  border-left: 6px solid var(--gold);
  background: #fff9e9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.feature-list p {
  margin: 0;
}

.release-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.wide-section {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.text-link {
  white-space: nowrap;
}

.video-grid,
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}

.video-frame,
.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.video-frame iframe,
.video-frame video,
.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 0;
}

.external-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--indigo);
  color: white;
}

.caption {
  margin: 0;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.download-grid a {
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--indigo);
}

.download-grid a:nth-child(3n + 2) {
  background: var(--teal);
}

.download-grid a:nth-child(3n + 3) {
  background: var(--coral);
}

.team-section {
  max-width: 760px;
}

.footer {
  width: min(1260px, calc(100% - 48px));
  margin: 54px auto 0;
  padding: 24px 0 42px 422px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .masthead {
    height: 240px;
  }

  .press-shell {
    margin-top: -58px;
    grid-template-columns: 1fr;
  }

  .identity-rail {
    position: static;
  }

  .library-header {
    max-width: 460px;
  }

  .press-content {
    padding-top: 0;
  }

  .footer {
    padding-left: 0;
  }

  .masthead-inner {
    align-items: flex-start;
    gap: 20px;
  }

  .masthead-nav {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .masthead-inner,
  .press-shell,
  .footer {
    width: min(100% - 28px, 1260px);
  }

  .video-grid,
  .image-grid,
  .download-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .masthead {
    height: 285px;
  }

  .masthead-inner {
    flex-direction: column;
    justify-content: flex-start;
  }

  .masthead-nav {
    justify-content: flex-start;
    gap: 7px 14px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
