:root {
  --black: #08080a;
  --charcoal: #111217;
  --panel: #18191f;
  --panel-soft: #202129;
  --bone: #f3ebdc;
  --muted: #c9bcaa;
  --red: #d83434;
  --gold: #d6b35d;
  --line: rgba(243, 235, 220, 0.14);
  --hairline: rgba(243, 235, 220, 0.09);
  --shadow: rgba(0, 0, 0, 0.18);
  --max: 1180px;
  --space-section: clamp(72px, 10vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-elevated {
  background: rgba(8, 8, 10, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 92px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--bone);
}


.header-marquee {
  --marquee-duration: 18s;
  position: relative;
  display: flex;
  overflow: hidden;
  grid-column: 1 / -1;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
}

.header-marquee__track {
  display: flex;
  gap: 20px;
  padding: 6px 20px;
  min-width: max-content;
  animation: marquee var(--marquee-duration) linear infinite;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.header-marquee__track:nth-of-type(2) {
  animation-delay: calc(var(--marquee-duration) / -2);
}

.header-marquee span,
.header-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-marquee span::before {
  content: "•";
  color: rgba(243, 235, 220, 0.28);
}

.header-marquee span:first-child::before {
  content: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #f04444;
  border-color: #f04444;
}

.button--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 82px) 66px;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/feral-hero.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8,8,10,0.96) 0%, rgba(8,8,10,0.74) 42%, rgba(8,8,10,0.24) 74%),
    linear-gradient(0deg, rgba(8,8,10,0.98) 0%, transparent 48%, rgba(8,8,10,0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.hero__lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero__actions,
.campaign-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 38px 0 0;
}

.hero__stats div {
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero__stats dt {
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.hero__stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.section {
  padding: var(--space-section) clamp(20px, 6vw, 82px);
}

.section__header {
  width: min(820px, 100%);
  margin: 0 auto 56px;
  text-align: left;
}

.intro,
.episodes,
.faq {
  background: var(--black);
}

.feature-grid,
.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature,
.reward,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.feature {
  min-height: 260px;
  padding: 0 34px 0 0;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--hairline);
}

.feature + .feature {
  padding-left: 34px;
  border-left: 1px solid var(--hairline);
}

.feature span {
  display: block;
  width: auto;
  height: auto;
  margin: 20px 0 58px;
  border: 0;
  border-radius: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
}

.feature p,
.reward span,
.team__copy p,
details p,
.trailer__copy p {
  color: var(--muted);
}

.campaign-strip {
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  border: 0;
  border-top: 1px solid rgba(216, 52, 52, 0.36);
  border-bottom: 1px solid var(--hairline);
  border-radius: 8px;
  background: transparent;
}

.campaign-strip__copy {
  max-width: 760px;
}

.campaign-strip h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 54px);
}

.trailer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.trailer__frame {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
  box-shadow: none;
}

.trailer__poster {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050506;
  object-fit: cover;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.poster-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.poster-card div {
  padding: 16px 0 0;
}

.poster-card p,
.reward p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.poster-card span {
  color: var(--muted);
  font-size: 14px;
}

.rewards,
.team {
  background: var(--charcoal);
}

.reward {
  padding: 26px 28px;
}

.reward--featured {
  border-color: rgba(216,52,52,0.62);
  background: rgba(216,52,52,0.08);
}

.team {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.team__copy,
.name-wall {
  width: min(100%, 560px);
}

.team__copy {
  justify-self: end;
}

.name-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.name-wall li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--bone);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto;
}

details {
  padding: 20px 22px;
}

summary {
  color: var(--bone);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  display: grid;
  min-height: 70svh;
  place-items: center;
  padding: 90px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(8,8,10,0.55), rgba(8,8,10,0.9)),
    url("assets/feral-hero.jpg") center / cover;
}

.final-cta h2 {
  font-size: clamp(44px, 7vw, 92px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .feature-grid,
  .reward-grid,
  .team,
  .trailer {
    grid-template-columns: 1fr;
  }

  .team__copy {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 86px;
  }

  .button--small {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 18px 42px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 46px);
    line-height: 0.98;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.7) 100%),
      linear-gradient(0deg, rgba(8,8,10,0.98) 0%, transparent 48%);
  }

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

  .section {
    padding: 64px 18px;
  }

  .campaign-strip {
    width: calc(100% - 36px);
    padding: 24px;
  }

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