:root {
  --bg: #000;
  --card: #111;
  --red: #d21919;
  --red-d: #a80f0f;
  --gold: #d4af37;
  --muted: #9b9b9b;
  --light: #f2f2f2;
  --r: 18px;
  --top: 62px;
  --dock: 70px;
  --w: 430px;
  --font: "Montserrat", system-ui, sans-serif;
  --display: "Unbounded", "Montserrat", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
[hidden] { display: none !important; }

.app {
  width: min(100%, var(--w));
  margin: 0 auto;
  min-height: 100svh;
  background: var(--bg);
  padding-bottom: calc(var(--dock) + 12px);
  position: relative;
}

@media (min-width: 860px) {
  :root { --w: 460px; }
  body {
    background:
      radial-gradient(ellipse 50% 40% at 50% 0%, rgba(210,25,25,.2), transparent),
      #050505;
  }
  .app { box-shadow: 0 0 80px rgba(0,0,0,.6); }
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  background: #000;
  border-bottom: 1.5px solid var(--red);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.logo img { width: 38px; height: 38px; object-fit: contain; flex: none; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.logo strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.logo em { font-style: normal; color: var(--red); }
.logo small {
  font-size: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 155px;
}
.logo small b { color: var(--red); font-weight: 800; }

.nav { display: flex; gap: 10px; }
.nav a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}
.burger span { display: block; height: 2px; background: #fff; border-radius: 1px; }

@media (max-width: 390px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--top);
    left: 0; right: 0;
    flex-direction: column;
    background: #0a0a0a;
    border-bottom: 1px solid var(--red);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 12px; }
  .burger { display: flex; }
}

/* SECTIONS */
.sec { padding: 10px 12px 4px; }
.sec--light { background: #eaeaea; }

.card {
  border-radius: var(--r);
  padding: 14px;
  overflow: hidden;
}
.card--dark {
  background: #101010;
  border: 1px solid rgba(210,25,25,.32);
  box-shadow: 0 0 28px rgba(210,25,25,.1);
}
.card--light {
  background: #f5f5f5;
  color: #111;
}
.card--pad0 { padding: 0; }
.card--system {
  background:
    radial-gradient(circle at 88% 12%, rgba(210,25,25,.28), transparent 42%),
    linear-gradient(165deg, #151515, #0a0a0a);
  border: 1px solid rgba(210,25,25,.28);
  border-radius: var(--r);
  padding: 14px;
  overflow: hidden;
  position: relative;
}
.pad { padding: 16px 14px 14px; }

/* POSTER + CAST */
.poster {
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
}
.poster img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  object-position: center top;
}

.sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sec-title span {
  flex: 1;
  height: 1px;
  background: rgba(210,25,25,.55);
  max-width: 64px;
}

.cast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.cast__item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(210,25,25,.55);
  box-shadow: 0 0 12px rgba(210,25,25,.22);
  background: #0a0a0a;
  text-align: center;
}
.cast__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.cast__item h3 {
  margin: 6px 3px 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.2;
}
.cast__item p {
  margin: 0 3px 7px;
  font-size: 7px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
}

.quote {
  margin: 14px 0 0;
  padding: 18px 14px;
  border-radius: 12px;
  background: #1a1a1a;
  text-align: center;
}
.quote__q {
  display: block;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: .4;
  margin-bottom: 10px;
}
.quote p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* AI */
.ai {
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  cursor: pointer;
  text-align: left;
}
.ai--dark {
  background: #141414;
  border-color: #2c2c2c;
  color: #fff;
}
.ai__ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(210,25,25,.12);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  flex: none;
}
.ai__txt {
  flex: 1;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
}
.ai__arr { color: #888; font-size: 22px; line-height: 1; }

/* TRAILER */
.h1 {
  margin: 2px 0 6px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
}
.sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.card--light .sub { color: #666; }

.player {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(210,25,25,.3);
  background: #000;
}
.player video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hint {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #e42424, #b50f0f);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(210,25,25,.35);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

/* HERO FILM / CHAMPS */
.hero-film {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.hero-film__bg {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center bottom;
}
.hero-film__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 55%, rgba(16,16,16,.95) 100%);
}
.hero-film__copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 16px 18px;
  text-align: center;
}
.hero-film__copy p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
}
.hero-film__copy em {
  font-style: normal;
  color: var(--red);
}
.hero-film__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 9vw, 38px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.hero-film__copy h2 span { color: var(--red); }

.raised {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ddd;
}
.goldline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 14px;
}
.goldline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .02em;
}

.champs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.champs figure { margin: 0; text-align: center; }
.champs .ph {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  border: 1px solid rgba(212,175,55,.45);
  background: #1a1a1a center/cover no-repeat;
}
.champs figcaption {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ddd;
}

.usps {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}
.usps article {
  padding: 12px 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.usps h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
}
.usps h3 b {
  color: var(--gold);
  font-size: 26px;
}
.usps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.usps .ico {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  font-weight: 900;
}

@media (min-width: 420px) {
  .usps {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .usps article {
    border-top: 0;
    text-align: left;
    padding: 8px 4px;
  }
  .usps h3 b { font-size: 16px; }
  .usps .ico { margin: 0 0 8px; }
}

/* SYSTEM */
.sys {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 6px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.sys__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sys__info h2 {
  margin: 2px 0 4px;
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.sys__name {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.sys__name b { color: var(--red); }
.sys__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sys__info li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
}
.sys__info i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--red);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  font-style: normal;
  font-size: 10px;
}
.sys__info span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.25;
}
.sys__photo {
  min-height: 210px;
  position: relative;
}
.sys__photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}

.wcards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.wcards article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  color: #111;
}
.wico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(210,25,25,.3);
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 900;
  position: relative;
}
.wico::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: var(--red);
}
.wcards h3 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
}
.wcards h3 b { color: var(--red); }
.wcards p {
  margin: 0;
  color: #555;
  font-size: 11px;
  line-height: 1.35;
}

/* RESULTS */
.res-head { text-align: center; margin-bottom: 14px; }
.res-head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
}
.res-head h2 b { color: var(--red); }
.res-head p {
  margin: 0;
  color: #666;
  font-size: 12px;
}
.orn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.orn i {
  width: 54px;
  height: 1px;
  background: rgba(210,25,25,.45);
  position: relative;
}
.orn i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--red);
}

.story {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  min-height: 148px;
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.story--dark {
  background: #1a1a1a;
  color: #fff;
  grid-template-columns: 1fr 118px;
}
.story__img img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
}
.story__txt {
  padding: 12px 10px 12px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story--dark .story__txt { padding: 12px 2px 12px 12px; }
.trophy {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  font-size: 12px;
  margin-bottom: 6px;
}
.story h3 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 800;
}
.from {
  margin: 0 0 6px;
  color: #777;
  font-size: 11px;
}
.story--dark .from { color: #aaa; }
.win {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.3;
}
.time {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}
.story--dark .time,
.story--dark .time strong { color: #fff; }

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.stat b {
  font-size: 56px;
  line-height: .85;
  color: var(--red);
  font-weight: 900;
}
.stat i {
  width: 2px;
  height: 42px;
  background: var(--red);
}
.stat span {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
}

/* PRICES / ADDR / FORM */
.prices { display: grid; gap: 10px; }
.prices article {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: #0c0c0c;
}
.prices__hit {
  border-color: rgba(210,25,25,.55);
  box-shadow: 0 0 20px rgba(210,25,25,.18);
}
.prices h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.price {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.prices ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}
.prices li::before { content: "✓ "; color: var(--red); font-weight: 900; }

.addr { display: grid; gap: 12px; }
.addr h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
}
.addr p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}
.tel {
  display: block;
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 15px;
}
.addr iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(.2) contrast(1.05);
}

.form { display: grid; gap: 10px; }
.form label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a0a0a;
  color: #fff;
  outline: none;
}
.form textarea { min-height: 84px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: rgba(210,25,25,.7); }
.ok {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  color: #f0d77a;
  font-size: 12px;
}

/* DOCK */
.dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(100%, var(--w));
  height: var(--dock);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: rgba(0,0,0,.96);
  border-top: 1px solid rgba(210,25,25,.4);
  backdrop-filter: blur(10px);
}
.dock__logo { line-height: 1; }
.dock__logo strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}
.dock__logo em { font-style: normal; color: var(--red); }
.dock__logo small {
  font-size: 8px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dock__cta {
  min-height: 42px;
  font-size: 11px;
  border-radius: 10px;
}
.dock__call {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  display: grid;
  place-items: center;
}

@media (max-width: 360px) {
  .dock__logo { display: none; }
  .dock { grid-template-columns: 1fr auto; }
  .cast { grid-template-columns: repeat(2, 1fr); }
  .champs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0,0,0,.72);
}
.modal__box {
  width: min(400px, 100%);
  max-height: 86vh;
  overflow: auto;
  padding: 18px;
  border-radius: 16px;
  background: #121212;
  border: 1px solid rgba(210,25,25,.4);
}
.modal__x {
  float: right;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.modal__box h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}
.modal__box > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.modal__opts { display: grid; gap: 8px; margin-bottom: 12px; }
.modal__opts button {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a0a0a;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.modal__opts button:hover {
  border-color: var(--red);
  background: rgba(210,25,25,.12);
}
.modal__res {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  font-size: 13px;
}
.modal__res strong { display: block; margin-bottom: 6px; }
