:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #111;
  --panel-2: #181818;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.36);
  --line: rgba(255, 255, 255, 0.1);
  --lime: #c8ff1a;
  --lime-text: #121900;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 44px);
  background: rgba(0, 0, 0, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.links a:hover {
  color: var(--lime);
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 6vw, 84px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 124px);
  line-height: 0.88;
  letter-spacing: 0;
  font-style: italic;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--lime-text);
  font-size: 14px;
  font-weight: 900;
}

.button.secondary {
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--line);
}

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

.film-card {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
}

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

.film-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: 42px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.section h2,
.doc h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.doc {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 88px) 0 72px;
}

.updated {
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.doc section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.doc h2 {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc p,
.doc li {
  color: var(--muted);
  font-size: 15px;
}

.doc ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.footer {
  margin-top: auto;
  padding: 34px clamp(18px, 6vw, 84px);
  background: var(--lime);
  color: var(--lime-text);
  font-size: 13px;
  font-weight: 800;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .film-strip {
    grid-template-columns: 1fr;
  }

  .film-card {
    min-height: 260px;
  }

  .footer-inner,
  .links {
    flex-wrap: wrap;
  }
}
