:root {
  --bg: #070707;
  --bg-soft: #111111;
  --ink: #f7f7f4;
  --muted: #b9b5ad;
  --paper: #f7f7f4;
  --paper-ink: #151515;
  --paper-muted: #5e5a55;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --red: #e22922;
  --gold: #c99b3a;
  --teal: #16bfd2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  clip-path: polygon(12% 0, 100% 50%, 12% 100%);
  background: linear-gradient(135deg, var(--teal), #0b6c78);
}

.brand-name {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 17px;
}

.brand-name span {
  color: var(--muted);
  font-size: 11px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .nav-toggle span {
  opacity: 0;
}

.menu-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: 0;
}

.site-nav a.nav-platform {
  color: #dffaff;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}

.hero.compact {
  min-height: 500px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.home .hero-image {
  object-position: 62% center;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.92) 0%,
      rgba(7, 7, 7, 0.7) 34%,
      rgba(7, 7, 7, 0.1) 70%
    ),
    linear-gradient(
      0deg,
      rgba(7, 7, 7, 0.95),
      rgba(7, 7, 7, 0.1) 56%,
      rgba(7, 7, 7, 0.55)
    );
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.12;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.dark {
  border-color: #151515;
  background: #151515;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

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

.dark-section {
  background: var(--bg);
  color: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-header > *,
.intro-grid > *,
.split-panel > *,
.legal-layout > * {
  min-width: 0;
}

.section-header p,
.lead {
  color: inherit;
  opacity: 0.74;
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.intro-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: #161616;
  box-shadow: var(--shadow);
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.fact {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
}

.fact span {
  color: var(--paper-muted);
  font-size: 14px;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.poster-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141414;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.poster-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.poster-card:hover img {
  transform: scale(1.03);
}

.poster-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 80px 16px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.poster-info h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.poster-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.platform-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0c0c;
}

.platform-logo {
  width: 100%;
  max-width: 380px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span {
  color: var(--muted);
}

.page-intro {
  padding: 76px 0 48px;
  background: var(--paper);
  color: var(--paper-ink);
}

.page-intro h1 {
  color: var(--paper-ink);
}

.page-intro p {
  max-width: 760px;
  color: var(--paper-muted);
  font-size: 18px;
}

.production-list {
  display: grid;
  gap: 38px;
}

.production-feature {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.production-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.production-feature:nth-child(even) .production-poster {
  order: 2;
}

.production-poster {
  min-height: 420px;
}

.production-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-copy {
  display: grid;
  align-content: center;
  padding: 38px;
}

.production-copy h2 {
  margin-bottom: 8px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.banner-strip {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 8px;
}

.banner-strip img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.about-columns,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.contact-card,
.legal-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
}

.info-card h3,
.contact-card h3,
.legal-card h3 {
  margin-bottom: 10px;
}

.info-card p,
.contact-card p,
.legal-card p {
  color: var(--paper-muted);
}

.contact-card a {
  color: var(--paper-ink);
  font-weight: 800;
  word-break: break-word;
}

.contact-card a.button {
  color: #fff;
}

.map-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.address {
  margin: 0;
  color: var(--paper-muted);
  font-style: normal;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 108px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
}

.legal-aside p {
  color: var(--paper-muted);
  font-size: 14px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
}

.legal-content h2 {
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--paper-muted);
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.draft-notice {
  padding: 18px 20px;
  border: 1px solid rgba(226, 41, 34, 0.28);
  border-radius: 8px;
  background: rgba(226, 41, 34, 0.08);
  color: #74221e;
}

.legal-document-hero {
  padding: 76px 0 46px;
  background: var(--paper);
  color: var(--paper-ink);
}

.legal-document-hero h1 {
  margin-bottom: 12px;
  color: var(--paper-ink);
}

.legal-document-hero p {
  max-width: 820px;
  color: var(--paper-muted);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--paper-muted);
  font-size: 14px;
}

.legal-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #fff;
}

.legal-document {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
}

.legal-toc h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.legal-toc nav {
  display: grid;
  gap: 9px;
}

.legal-toc a {
  position: relative;
  display: block;
  padding: 5px 8px 5px 12px;
  border-left: 3px solid transparent;
  border-radius: 6px;
  color: var(--paper-muted);
  font-size: 14px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc a.active {
  border-left-color: var(--teal);
  background: rgba(27, 172, 225, 0.08);
  color: var(--paper-ink);
  outline: 0;
}

.toc-print {
  width: 100%;
  margin-top: 20px;
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #151515;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.policy-body {
  display: grid;
  gap: 26px;
  color: var(--paper-ink);
}

.policy-body section {
  scroll-margin-top: 116px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.policy-body section:last-child {
  border-bottom: 0;
}

.policy-body h2 {
  margin-bottom: 12px;
  font-size: 28px;
  color: var(--paper-ink);
}

.policy-body h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.policy-body p,
.policy-body li {
  color: var(--paper-muted);
}

.policy-body a {
  color: var(--paper-ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-lead {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060606;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.6fr));
  gap: 28px;
  padding: 54px 0;
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid address {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  outline: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
  }

  .hero,
  .hero.compact {
    min-height: 620px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section-header,
  .intro-grid,
  .split-panel,
  .legal-layout,
  .legal-document {
    grid-template-columns: 1fr;
  }

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

  .production-feature,
  .production-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .production-feature:nth-child(even) .production-poster {
    order: 0;
  }

  .production-poster {
    min-height: 560px;
  }

  .about-columns,
  .contact-grid,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-aside,
  .legal-toc {
    position: static;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .legal-document-hero {
    padding: 24px 0;
  }

  .legal-document {
    display: block;
  }

  .policy-body section {
    break-inside: avoid;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(1180px, calc(100% - 24px));
    min-height: 72px;
  }

  .site-nav {
    inset: 72px 0 auto 0;
  }

  .brand-name strong {
    font-size: 14px;
  }

  .brand-name span {
    font-size: 10px;
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .hero::after {
    background:
      linear-gradient(
        0deg,
        rgba(7, 7, 7, 0.95),
        rgba(7, 7, 7, 0.36) 72%,
        rgba(7, 7, 7, 0.66)
      ),
      linear-gradient(90deg, rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.08));
  }

  .hero.home .hero-image {
    object-position: 70% center;
  }

  .hero-content {
    width: min(1180px, calc(100% - 24px));
    padding: 88px 0 58px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-copy,
  .section-header p,
  .lead,
  .page-intro p {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .container,
  .page-intro .container {
    width: min(1180px, calc(100% - 24px));
  }

  .fact-row,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    min-height: 520px;
  }

  .poster-card img {
    min-height: 520px;
  }

  .production-copy {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}
