:root {
  --bg: #070708;
  --bg2: #101014;
  --card: #16161c;
  --line: rgba(255,255,255,.08);
  --text: #f4f1ee;
  --muted: #9a948e;
  --coral: #e25b3a;
  --coral2: #ff7a55;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

header.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  background: linear-gradient(to bottom, #070708 70%, transparent);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .02em; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
nav.links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
nav.links a:hover { color: #fff; }

.hero {
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 80px 0 64px;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(226,91,58,.28), transparent 55%),
    radial-gradient(700px 380px at 10% 90%, rgba(226,91,58,.12), transparent 50%),
    linear-gradient(180deg, transparent 40%, #070708 100%),
    var(--bg);
}
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral2);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 9vw, 92px);
  line-height: .9;
  max-width: 14ch;
  margin-bottom: 18px;
}
.hero p.lead {
  max-width: 36rem;
  color: #d6d0cb;
  font-size: 18px;
  margin-bottom: 28px;
}
.cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
}
.btn-main { background: var(--coral); color: #fff; }
.btn-ghost { border: 1px solid var(--line); color: #fff; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.row { padding: 8px 0 56px; }
.row h2 {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  nav.links { display: none; }
}
.poster {
  aspect-ratio: 9/14;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--card);
  isolation: isolate;
}
.poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
}
.p1 { background: linear-gradient(160deg, #3a1510, #12080a 55%, #e25b3a); }
.p2 { background: linear-gradient(160deg, #1c1428, #0b0a10 50%, #8a4a3a); }
.p3 { background: linear-gradient(160deg, #10201c, #080b0c 50%, #3d6b5c); }
.p4 { background: linear-gradient(160deg, #241810, #0c0a08 50%, #c4a574); }
.p5 { background: linear-gradient(160deg, #1a2030, #0a0c12 50%, #e07a5f); }
.poster .meta {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1;
}
.poster .age {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.35);
  padding: 2px 6px; border-radius: 4px; margin-bottom: 8px;
}
.poster h3 { font-size: 16px; line-height: 1.2; }

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.plan.featured { border-color: rgba(226,91,58,.55); }
.plan .price { font-family: "Bebas Neue", sans-serif; font-size: 42px; margin: 8px 0; }
.plan span { color: var(--muted); font-size: 14px; }

.legal-page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 80px;
  color: #e8e4e0;
}
.legal-page h1 { font-size: 2rem; margin: 12px 0 8px; }
.legal-page h2 {
  font-size: 1.05rem;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.legal-page p, .legal-page li { color: #cfc9c4; margin: 10px 0; }
.legal-page ul, .legal-page ol { padding-left: 1.2rem; }
.legal-page a { color: var(--coral2); }
.muted { color: var(--muted); font-size: .92rem; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}
footer.site .legal-nav { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }
footer.site .legal-nav a:hover { color: #fff; }
.tiny { font-size: 12px; opacity: .7; margin-top: 8px; }
.box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
}
