:root { --bg: #0b0a12; --card: #16131f; --ink: #f4ede1; --muted: #c9bfae; --gold: #ffcf80; --line: rgba(255,207,128,.22); }
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Rounded", system-ui, sans-serif; }
a { color: var(--gold); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
header.hero { position: relative; min-height: 88vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
header.hero::before { content: ""; position: absolute; inset: 0; background: url(media/key-wide.jpg) center/cover no-repeat; filter: saturate(1.05); }
header.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,10,18,.55), rgba(11,10,18,.25) 40%, var(--bg)); }
.hero .inner { position: relative; z-index: 1; padding: 80px 20px; }
.hero img.icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
h1 { font-size: clamp(64px, 12vw, 120px); line-height: 1; margin: 18px 0 6px; color: var(--gold); letter-spacing: -.02em; text-shadow: 0 0 40px rgba(255,190,110,.35); }
.tag { text-transform: uppercase; letter-spacing: .2em; font-size: 14px; color: var(--muted); }
.lead { font-size: 21px; max-width: 560px; margin: 18px auto 28px; }
.badge { display: inline-block; padding: 14px 26px; border-radius: 14px; background: var(--gold); color: #1f1406; font-weight: 700; text-decoration: none; }
.badge.soon { background: transparent; color: var(--gold); border: 1px solid var(--line); }
section { padding: 70px 0; }
h2 { font-size: 34px; margin: 0 0 18px; color: var(--gold); }
.trailer { display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 40px; align-items: center; }
.trailer video { width: 100%; border-radius: 26px; border: 1px solid var(--line); background: #000; }
ul.features { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
ul.features li { padding: 14px 16px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.shots { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.shots img { height: 460px; border-radius: 20px; border: 1px solid var(--line); scroll-snap-align: start; }
footer { padding: 40px 0 60px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
footer a { margin-right: 16px; }
.page { max-width: 720px; margin: 0 auto; padding: 60px 20px; }
.page h1 { font-size: 44px; }
@media (max-width: 720px) { .trailer { grid-template-columns: 1fr; } .shots img { height: 380px; } }
