/* ==========================================================================
   STRAY 2 — site styles
   Palette + layout derived from the approved home-page mockup.
   ========================================================================== */

@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CatsFont";
  src: url("../fonts/CatsFont-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "HorrorBrush";
  src: url("../fonts/HorrorBrush.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "BrushstrokeHorror";
  src: url("../fonts/BrushstrokeHorror.otf") format("opentype");
  font-display: swap;
}

:root {
  --red:        #e50914;
  --red-bright: #ff2020;
  --red-dim:    #8a0a10;
  --bg:         #060606;
  --bg-panel:   rgba(8, 8, 8, 0.72);
  --text:       #e8e8e8;
  --text-dim:   #9a9a9a;
  --hairline:   rgba(255, 255, 255, 0.12);

  --ui: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;

  --shell: 1600px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: #fff; }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 28px;
}

.lede { color: var(--text-dim); max-width: 62ch; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 26px rgba(229, 9, 20, 0.55);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.is-stuck {
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 27px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.brand .brand-stray {
  font-family: "HorrorBrush", var(--ui);
  color: #f2f2f2;
  text-shadow: 0 0 18px rgba(255,255,255,.18);
}
.brand .brand-two {
  font-family: "HorrorBrush", var(--ui);
  color: var(--red);
  text-shadow: 0 0 20px rgba(229,9,20,.75);
}

/* Centred on the header itself, not on the space left over beside the
   brand — so it stays put regardless of what else sits in the bar. */
.main-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 44px);
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d6d6d6;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a.is-active { color: var(--red); }
.main-nav a.is-active::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}


.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-cat-foliage.jpg") center 55% / cover no-repeat;
  transform: scale(1.06);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 62%, rgba(0,0,0,.92) 100%),
    linear-gradient(to right, rgba(0,0,0,.88) 0%, rgba(0,0,0,.15) 28%, rgba(0,0,0,.15) 72%, rgba(0,0,0,.88) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 24%, rgba(0,0,0,0) 70%, rgba(0,0,0,.9) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: var(--header-h) var(--gutter) 90px;
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr minmax(200px, 300px);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
}

/* --- countdown (center column) --- */

.countdown-block {
  grid-column: 2;
  text-align: center;
  align-self: start;
  margin-top: clamp(10px, 6vh, 70px);
}

.countdown-label {
  font-family: "HorrorBrush", var(--ui);
  font-size: clamp(24px, 3.2vw, 42px);
  letter-spacing: 0.3em;
  color: var(--red-bright);
  text-shadow: 0 0 18px rgba(255,32,32,.9), 0 0 46px rgba(229,9,20,.55);
  margin: 0 0 6px;
  text-transform: lowercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(4px, 0.9vw, 14px);
}
.cd-unit { min-width: clamp(64px, 8vw, 128px); }
.cd-num {
  font-family: var(--ui);
  font-weight: 800;
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: #ff3b3b;
  text-shadow:
    0 0 10px rgba(255,60,60,.95),
    0 0 34px rgba(255,20,20,.8),
    0 0 76px rgba(229,9,20,.55);
  font-variant-numeric: tabular-nums;
}
.cd-word {
  display: block;
  margin-top: 8px;
  font-size: clamp(9px, 0.78vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e06b6b;
}
.cd-colon {
  font-weight: 800;
  font-size: clamp(38px, 6vw, 96px);
  line-height: 1;
  color: #ff3b3b;
  text-shadow: 0 0 18px rgba(255,32,32,.8);
  padding-top: .06em;
  animation: cd-pulse 2s ease-in-out infinite;
}
@keyframes cd-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.countdown-live {
  display: none;
  font-family: "HorrorBrush", var(--ui);
  font-size: clamp(40px, 7vw, 104px);
  color: var(--red-bright);
  text-shadow: 0 0 26px rgba(255,32,32,.9), 0 0 70px rgba(229,9,20,.6);
  letter-spacing: .12em;
}
.countdown-block.is-live .countdown,
.countdown-block.is-live .countdown-label { display: none; }
.countdown-block.is-live .countdown-live { display: block; }

/* --- side panels --- */

.hero-panel { align-self: center; }
.hero-panel--left  { grid-column: 1; }
.hero-panel--right { grid-column: 3; }

.hero-panel h2 {
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 20px;
  color: #f0f0f0;
}
.hero-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
  margin: 0 0 26px;
  text-shadow: 0 1px 12px rgba(0,0,0,.9);
}

.news-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.news-item:last-of-type { border-bottom: 0; }
.news-item time {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.news-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 3px;
  color: #f0f0f0;
}
.news-item p {
  font-size: 13.5px;
  color: #a8a8a8;
  margin: 0;
  line-height: 1.5;
}
.hero-panel--right .btn { margin-top: 22px; }

/* --- scroll cue --- */

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #d8d8d8;
}
.scroll-cue span {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.mouse {
  width: 21px; height: 33px;
  border: 1.6px solid #e0e0e0;
  border-radius: 11px;
  margin: 0 auto;
  position: relative;
}
.mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 6px;
  width: 2.5px; height: 6px;
  background: #e0e0e0;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: wheel 1.7s ease-in-out infinite;
}
@keyframes wheel {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}

/* ==========================================================================
   PAGE SHELL (inner pages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) var(--gutter) 70px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,6,.6), rgba(6,6,6,.97));
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: "HorrorBrush", var(--ui);
  font-size: clamp(40px, 6.5vw, 86px);
  margin: 0 0 14px;
  letter-spacing: 0.06em;
  color: #f4f4f4;
  text-shadow: 0 0 30px rgba(0,0,0,.9);
}
.page-hero p {
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 15px;
}

.page-hero--plain .page-hero__bg { display: none; }
.page-hero--plain {
  padding-top: calc(var(--header-h) + 110px);
  padding-bottom: 100px;
}

.section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--gutter);
}

/* ---------- airy body copy (About page) ---------- */

.prose {
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 2.05;
  letter-spacing: 0.012em;
  color: #d2d2d2;
  max-width: 68ch;
  margin: 0;
  font-weight: 300;
}
.prose--justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
}

.section-title--airy {
  font-size: clamp(24px, 2.7vw, 34px);
  letter-spacing: 0.28em;
  margin-bottom: 40px;
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.world-grid img { border: 1px solid var(--hairline); }
.world-grid .prose { max-width: none; padding-top: 4px; }

.teaser-block { padding-bottom: clamp(70px, 10vw, 130px); }

@media (max-width: 900px) {
  .world-grid { grid-template-columns: 1fr; }
  .prose--justify { text-align: left; }
}
.section + .section { border-top: 1px solid var(--hairline); }
.section--tight { padding-top: clamp(34px, 5vw, 56px); }

/* ==========================================================================
   HOME — below the fold
   ========================================================================== */

.keyart {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.keyart img { border: 1px solid var(--hairline); }

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.strip a, .strip figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--hairline);
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
}
.strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
  opacity: .86;
}
.strip a:hover img, .strip figure:hover img { transform: scale(1.06); opacity: 1; }

.trailer-cta {
  position: relative;
  display: block;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.trailer-cta img { width: 100%; opacity: .78; transition: opacity .35s ease, transform .6s ease; }
.trailer-cta:hover img { opacity: 1; transform: scale(1.02); }
.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play-badge span {
  width: 86px; height: 86px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 40px rgba(229,9,20,.5);
  transition: transform .3s ease, background .3s ease;
}
.trailer-cta:hover .play-badge span { transform: scale(1.09); background: rgba(229,9,20,.3); }
.play-badge svg { width: 26px; height: 26px; fill: var(--red); margin-left: 5px; }

/* ---------- platforms ---------- */

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  justify-content: center;
}
.platforms a {
  opacity: .7;
  transition: opacity .25s ease, transform .25s ease;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  padding: 12px 24px;
}
.platforms a:hover { opacity: 1; transform: translateY(-2px); border-color: var(--red); color: var(--red); }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--hairline);
  overflow: hidden;
  background: #0b0b0b;
  cursor: pointer;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .88;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); opacity: 1; }
.gallery-grid figcaption {
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid var(--hairline);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.95);
  display: none;
  place-items: center;
  padding: 40px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 22px; right: 30px;
  background: none; border: 0;
  color: #fff; font-size: 34px;
  cursor: pointer; line-height: 1;
}

/* ==========================================================================
   TRAILER
   ========================================================================== */

.player-wrap {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  background: #000;
  box-shadow: 0 0 70px rgba(229,9,20,.16);
}
.player-wrap video { width: 100%; display: block; }

/* responsive external embed (Odysee, BitChute, Rumble) */
.embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.rating-card {
  max-width: 520px;
  margin: 40px auto 0;
  border: 1px solid var(--hairline);
}

/* ---------- stacked video blocks ---------- */

.video-block { margin: 0 auto clamp(60px, 8vw, 100px); }
.video-block:last-child { margin-bottom: 0; }

.video-block__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 8px;
  font-weight: 600;
}
.video-block__date {
  text-align: center;
  color: #cfcfcf;
  font-size: 15px;
  margin: 0 0 22px;
}

/* ---------- locked video ---------- */

.locked {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--red);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.locked__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) saturate(.75) brightness(.5);
  transform: scale(1.08);
}
.locked__veil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
  padding: 24px;
}
.locked__lock {
  width: clamp(56px, 7vw, 92px);
  height: auto;
  fill: var(--red-bright);
  filter: drop-shadow(0 0 14px rgba(255, 32, 32, .85))
          drop-shadow(0 0 42px rgba(229, 9, 20, .6));
}
.locked__note {
  margin: 0;
  color: #e4e4e4;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: .04em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .95);
}

.schedule {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  max-width: 1200px;
}
.schedule-item { text-align: center; }
.schedule-date {
  display: block;
  /* BrushstrokeHorror, NOT HorrorBrush: HorrorBrush.ttf ships blank
     glyphs for 3, 5 and 9, so dates silently lose those digits. */
  font-family: "BrushstrokeHorror", var(--ui);
  font-size: clamp(28px, 3.4vw, 46px);
  color: var(--red-bright);
  text-shadow: 0 0 18px rgba(255,32,32,.7);
  letter-spacing: .06em;
  line-height: 1.25;
}
.schedule-label {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.rating-label {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 44px 0 20px;
}
.rating-card--large {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   NEWS
   ========================================================================== */

.news-list { display: grid; gap: 20px; max-width: 1060px; }
.news-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  border: 1px solid var(--hairline);
  padding: 22px 26px;
  transition: border-color .25s ease, background .25s ease;
}
.news-card:hover { border-color: rgba(229,9,20,.5); background: rgba(229,9,20,.03); }
.news-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--hairline);
  opacity: .9;
  transition: opacity .25s ease;
}
.news-card:hover .news-card__thumb { opacity: 1; }
.news-card time {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--red);
}
.news-card h2 { font-size: 21px; font-weight: 500; margin: 8px 0 14px; }
.news-card p { margin: 0; color: var(--text-dim); font-size: 14.5px; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.news-link:hover {
  background: var(--red); color: #fff;
  box-shadow: 0 0 22px rgba(229,9,20,.5);
}
.news-link svg { width: 13px; height: 13px; fill: currentColor; }

@media (max-width: 720px) {
  .news-card { grid-template-columns: 1fr; }
}

/* home hero news panel thumbnails */
.news-item { display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: center; }
.news-item__thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border: 1px solid var(--hairline); opacity: .85;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--hairline);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { min-height: 150px; resize: vertical; }

.contact-meta dt {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-top: 22px;
}
.contact-meta dd { margin: 5px 0 0; color: #cfcfcf; }

/* ==========================================================================
   SOCIAL (header, top-right)
   ========================================================================== */

.social {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.social a {
  color: #cfcfcf;
  display: grid;
  place-items: center;
  transition: color .2s ease, transform .2s ease;
}
.social a:hover { color: var(--red); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; fill: currentColor; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 46px var(--gutter) 38px;
  background: #040404;
}
.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7c7c7c;
}
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer nav a {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #9a9a9a;
}
.site-footer nav a:hover { color: var(--red); }
.footer-disclaimer {
  max-width: var(--shell);
  margin: 26px auto 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: #5e5e5e;
}
.production-credit {
  font-family: "CatsFont", var(--ui);
  color: #8a8a8a;
  letter-spacing: .14em;
  font-size: 13px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 110px;
    gap: 40px;
  }
  .countdown-block, .hero-panel--left, .hero-panel--right { grid-column: 1; }
  .countdown-block { order: 1; margin-top: 8px; }
  .hero-panel--left { order: 2; max-width: 520px; }
  .hero-panel--right { order: 3; max-width: 520px; }
  .hero { min-height: auto; }
  .keyart, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .nav-toggle { display: block; order: 3; margin-left: auto; }
  .social { display: none; }
  .main-nav {
    /* undo the desktop absolute centring */
    position: fixed;
    left: 0;
    transform: none;
    inset: var(--header-h) 0 auto 0;
    background: rgba(6, 6, 6, .98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--hairline);
    display: none;
    margin: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px var(--gutter); border-bottom: 1px solid rgba(255,255,255,.05); }
  .main-nav a.is-active::before { display: none; }
  .cd-unit { min-width: 56px; }
  .scroll-cue { display: none; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   PRIVACY CHECK — live, computed client-side in main.js. Numbers here are
   not asserted by us; they're read from this browser's own Performance API
   and document.cookie on this page load.
   ========================================================================== */

.privacy-check {
  max-width: var(--shell);
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
.privacy-check__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  padding-top: 3px;
}
.privacy-check__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, .8);
  flex: none;
  animation: privacy-pulse 2s ease-in-out infinite;
}
@keyframes privacy-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.privacy-check__grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.privacy-check__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 84px;
}
.privacy-check__num {
  font-size: 21px;
  font-weight: 700;
  color: var(--red-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.privacy-check__label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7c7c7c;
}
.privacy-check__detail {
  font-size: 9.5px;
  color: #565656;
  max-width: 220px;
}
.privacy-check__note {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: #7c7c7c;
  flex: 1 1 240px;
  min-width: 240px;
}
.privacy-check__verify {
  color: var(--red);
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(229, 9, 20, .4);
}
.privacy-check__verify:hover { border-bottom-color: var(--red); }


/* ==========================================================================
   BUILDER CREDIT (footer signature, every page)
   ========================================================================== */

.builder-credit {
  max-width: var(--shell);
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.builder-credit__name {
  display: block;
  font-family: "Orbitron", var(--ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(255, 32, 32, .35);
}
.builder-credit__tagline {
  display: block;
  margin-top: 6px;
  font-size: 9.5px;
  letter-spacing: .04em;
  color: #5e5e5e;
  font-style: italic;
}

.rune-shuffle {
  display: inline-block;
  min-width: 5ch;
  font-size: 1.35em;
  line-height: 1;
  vertical-align: middle;
  color: rgba(255, 60, 60, .8);
  letter-spacing: .02em;
}

