:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #66727e;
  --line: #d9e0e7;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --rose: #c8554e;
  --gold: #d6ad4b;
  --night: #111827;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #f7f9fb;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.home {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.14), transparent 38%),
    linear-gradient(240deg, rgba(200, 85, 78, 0.14), transparent 34%),
    #f7f9fb;
}

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

.site-header {
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
}

.home-header .brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--rose));
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

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

.cinema-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 26px 0 50px;
}

.spotlight {
  display: grid;
  gap: 28px;
}

.title-block {
  display: grid;
  gap: 8px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(68px, 13vw, 154px);
  line-height: 0.9;
  letter-spacing: 0;
}

.player-frame {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 8px;
  background: #0d1520;
  box-shadow: 0 26px 80px rgba(25, 36, 48, 0.2);
}

.frame-top {
  display: flex;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.frame-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9e0e7;
}

.frame-top span:nth-child(2) {
  background: var(--gold);
}

.frame-top span:nth-child(3) {
  background: var(--rose);
}

.visual-stage {
  position: relative;
  min-height: clamp(280px, 44vw, 470px);
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.92), transparent 42%),
    linear-gradient(315deg, rgba(200, 85, 78, 0.72), transparent 40%),
    linear-gradient(180deg, #17202a, #0d1520);
}

.play-symbol {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(78px, 12vw, 128px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.play-symbol::after {
  position: absolute;
  inset: 50% auto auto 53%;
  width: 0;
  height: 0;
  transform: translate(-35%, -50%);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 29px solid #fff;
  content: "";
}

.rail {
  position: absolute;
  right: 26px;
  left: 26px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.rail-one {
  bottom: 54px;
}

.rail-two {
  bottom: 32px;
  width: 58%;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transform: rotate(2deg);
}

.poster-wall span {
  min-height: clamp(170px, 23vw, 270px);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.56), transparent 46%),
    linear-gradient(145deg, #d8efe9, #eef3f5 55%, #b9d4de);
  box-shadow: 0 18px 38px rgba(24, 37, 50, 0.12);
}

.poster-wall span:nth-child(2n) {
  transform: translateY(28px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.54), transparent 46%),
    linear-gradient(145deg, #f3e4d8, #edf2f7 58%, #d3dde8);
}

.poster-wall span:nth-child(3n) {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.5), transparent 48%),
    linear-gradient(145deg, #e6d9f0, #eef3f5 52%, #d6e7d8);
}

.section,
.content-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article,
.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.feature-grid p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card {
  max-width: 860px;
}

.content-card h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}

.content-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
}

.home-footer {
  border-top: 0;
  justify-content: flex-end;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .cinema-shell {
    align-items: flex-start;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .cinema-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .poster-wall {
    grid-template-columns: repeat(4, 1fr);
    transform: none;
  }

  .poster-wall span {
    min-height: 150px;
  }

  .poster-wall span:nth-child(2n) {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav,
  .site-footer nav {
    gap: 12px;
    font-size: 14px;
  }

  .poster-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}
