/* ============================================================
   Stalin's Army of Apes — site styles
   Black + crimson, cinematic poster aesthetic
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-deep: #000000;
  --surface: #111111;
  --surface-2: #161616;
  --fg: #f5f2ee;
  --fg-dim: #a39f98;
  --fg-faint: #5a5651;
  --rule: #1f1d1b;
  --rule-2: #2a2724;

  --red: #d62828;
  --red-deep: #9a1515;
  --red-blood: #6a0d0d;
  --red-flare: #ff3a2e;
  --bone: #ede7dc;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-display: "Anton", "Geist", sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  /* subtle film grain */
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 40, 40, 0.06), transparent 55%),
    var(--bg-deep);
}

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

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---- Grain overlay (subtle, doesn't cover trailer) ----------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0,0,0,0.4) 2px 3px
  );
  mix-blend-mode: multiply;
}

/* Mobile: drop the heavy overlays entirely for performance */
@media (max-width: 720px) {
  .grain, .scanlines { display: none; }
}

/* ---- NAV ---------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg);
}

.nav-brand .mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-brand .word {
  display: flex;
  gap: 6px;
}
.nav-brand .word span { color: var(--fg); }
.nav-brand .word .dot { color: var(--red); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--fg-dim);
  transition: color 200ms var(--ease);
}

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

.nav-links a::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 3px; height: 3px;
  background: var(--red);
  transform: translateY(-50%) scale(0);
  transition: transform 200ms var(--ease);
}

.nav-links a:hover::before { transform: translateY(-50%) scale(1); }

.nav-cta {
  border: 1px solid var(--red);
  color: var(--bone);
  padding: 8px 14px;
  letter-spacing: 0.15em;
  transition: all 200ms var(--ease);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--red);
  color: var(--bone);
}

/* ---- HERO --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Stenciled giant backdrop text */
.hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-backdrop .stencil {
  font-family: var(--font-display);
  font-size: clamp(200px, 32vw, 520px);
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 40, 40, 0.12);
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateY(10%);
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  align-items: center;
}

.hero-meta .tick {
  width: 6px; height: 6px;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Kinetic title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: var(--bone);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word-stack {
  display: inline-block;
  position: relative;
}

.hero-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: -0.01em;
  text-transform: none;
  position: relative;
  padding: 0 0.08em;
}

.hero-title .accent::before,
.hero-title .accent::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.15em;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}
.hero-title .accent::before { left: -0.02em; }
.hero-title .accent::after { right: -0.02em; }

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: center;
  max-width: 640px;
  margin: 0;
}

.hero-tagline .sep {
  color: var(--red);
  margin: 0 10px;
}

/* Trailer frame */
.trailer-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 18px;
}

.trailer-wrap::before,
.trailer-wrap::after,
.trailer-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--red);
  content: "";
}

.trailer-wrap::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.trailer-wrap::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.trailer-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; top: auto; }
.trailer-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; top: auto; }

.trailer-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--rule-2);
}

.trailer-frame video,
.trailer-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Trailer placeholder (cinematic) */
.trailer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 40, 40, 0.25), transparent 60%),
    #0a0a0a;
  cursor: pointer;
  transition: all 300ms var(--ease);
}

.trailer-placeholder:hover {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 40, 40, 0.4), transparent 60%),
    #0a0a0a;
}

.trailer-placeholder .play {
  width: 84px;
  height: 84px;
  border: 2px solid var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 300ms var(--ease);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.trailer-placeholder:hover .play {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.08);
}

.trailer-placeholder .play svg {
  width: 28px; height: 28px;
  fill: var(--bone);
  margin-left: 4px;
}

.trailer-placeholder .play-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
}

.trailer-placeholder .play-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}

.trailer-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.trailer-meta-bar .left,
.trailer-meta-bar .right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.trailer-meta-bar .rec {
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trailer-meta-bar .rec::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin-top: 40px;
  background: rgba(0,0,0,0.5);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 400;
}

.marquee-track span.red { color: var(--red); font-family: var(--font-serif); font-style: italic; text-transform: none; }
.marquee-track .star { color: var(--red); }

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

/* ---- SECTION COMMON ---------------------------------------- */
section { position: relative; }

.sec-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px;
  position: relative;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 32px;
}

.sec-label .num {
  color: var(--red);
}

.sec-label .bar {
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 120px;
}

.sec-h {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 48px;
}

.sec-h .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
  font-weight: 400;
}

/* ---- ABOUT -------------------------------------------------- */
.about {
  border-top: 1px solid var(--rule);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--red);
  transform: translate(12px, 12px);
  pointer-events: none;
  z-index: 0;
}

.about-photo .img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: grid;
  place-items: center;
  filter: grayscale(0.3) contrast(1.05);
}

.about-photo .placeholder-svg {
  width: 60%;
  opacity: 0.4;
}

.about-photo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo .tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--red);
  padding: 5px 10px;
}

.about-photo .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.about-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 20px;
  max-width: 56ch;
  text-wrap: pretty;
}

.about-copy p.lead {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--bone);
  font-style: italic;
  margin-bottom: 32px;
}

.about-copy p .red { color: var(--red); font-weight: 500; }

.about-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.about-stats .stat {
  padding: 20px 0;
  border-right: 1px solid var(--rule);
}
.about-stats .stat:last-child { border-right: 0; }

.about-stats .k {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--bone);
  font-weight: 400;
}

.about-stats .k .red { color: var(--red); }

.about-stats .v {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 6px;
}

/* ---- INTRO VIDEO -------------------------------------------- */
.intro {
  border-top: 1px solid var(--rule);
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-video {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: #000;
  border: 1px solid var(--rule-2);
  overflow: hidden;
}

.intro-video .player {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 40, 40, 0.15), transparent 60%),
    #0a0a0a;
  cursor: pointer;
}

.intro-video .player .play {
  width: 64px; height: 64px;
  border: 2px solid var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.5);
  transition: all 300ms var(--ease);
}
.intro-video .player:hover .play {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}
.intro-video .player .play svg {
  width: 20px; height: 20px;
  fill: var(--bone);
  margin-left: 3px;
}

.intro-video .player .label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  justify-content: space-between;
}

.intro-video .corners .c {
  position: absolute;
  width: 20px; height: 20px;
  border: 1px solid var(--red);
  z-index: 2;
}
.intro-video .corners .tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.intro-video .corners .tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.intro-video .corners .bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.intro-video .corners .br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.intro-copy .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.intro-copy h2 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
}

.intro-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0 0 16px;
  max-width: 48ch;
}

.intro-pts {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.intro-pts .pt {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.intro-pts .pt:last-child { border-bottom: 1px solid var(--rule); }

.intro-pts .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
}

.intro-pts .t {
  font-size: 15px;
  color: var(--bone);
}

/* ---- PRESS -------------------------------------------------- */
.press {
  border-top: 1px solid var(--rule);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid var(--rule);
  background: var(--surface);
  transition: all 300ms var(--ease);
}

.press-card:hover {
  border-color: var(--red);
  background: var(--surface-2);
  transform: translateY(-2px);
}

.press-card .mark {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 4px 10px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.press-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.5;
  color: var(--red);
  margin-bottom: 12px;
  font-style: italic;
}

.press-card .quote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--bone);
  margin: 0 0 24px;
  font-style: italic;
  text-wrap: pretty;
}

.press-card .src {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.press-card .src .outlet { color: var(--bone); }

/* Logos strip */
.press-logos {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.press-logos .logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-faint);
  opacity: 0.7;
  transition: all 200ms var(--ease);
}
.press-logos .logo:hover { color: var(--bone); opacity: 1; }

.press-logos .logo.serif {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* ---- MANIFESTO ---------------------------------------------- */
.manifesto {
  border-top: 1px solid var(--rule);
  background: #000;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(214, 40, 40, 0.1), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(154, 21, 21, 0.1), transparent 50%);
  pointer-events: none;
}

.manifesto-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 32px;
  position: relative;
  z-index: 1;
}

.manifesto-copy {
  max-width: 980px;
}

.manifesto-copy .big {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 40px;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.manifesto-copy .big .red { color: var(--red); }
.manifesto-copy .big .italic {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: var(--red);
}
.manifesto-copy .big .strike {
  position: relative;
  display: inline-block;
}
.manifesto-copy .big .strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 4px;
  background: var(--red);
  transform: rotate(-2deg);
}

.manifesto-copy .body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 62ch;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.manifesto-copy .body .hi { color: var(--bone); }

.manifesto-sig {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.manifesto-sig .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  transform: rotate(-3deg);
}

.manifesto-sig .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Vertical ticker on side */
.manifesto-ticker {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  border-left: 1px solid var(--rule);
  overflow: hidden;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 40px 0;
}

.manifesto-ticker .inner {
  display: flex;
  gap: 40px;
  animation: tickerV 30s linear infinite;
}

@keyframes tickerV {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

/* ---- FAQ ---------------------------------------------------- */
.faq {
  border-top: 1px solid var(--rule);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.faq-side h2 {
  margin: 0 0 24px;
}

.faq-side p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 32ch;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.faq-item:hover {
  padding-left: 12px;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.faq-q .text {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.3;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.faq-q .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  flex-shrink: 0;
}

.faq-q .toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 200ms var(--ease);
}

.faq-item:hover .toggle { border-color: var(--red); }

.faq-item.open .toggle { background: var(--red); border-color: var(--red); }

.faq-q .toggle::before {
  content: "+";
  font-family: var(--font-mono);
  color: var(--fg-dim);
  font-size: 18px;
  line-height: 1;
  transition: transform 200ms var(--ease);
}

.faq-item.open .toggle::before {
  content: "−";
  color: var(--bone);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease), margin-top 300ms var(--ease);
  margin-top: 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
}

.faq-a p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 60ch;
  margin: 0;
}

/* ---- CONTACT ------------------------------------------------ */
.contact {
  border-top: 1px solid var(--rule);
  background: #000;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "APES";
  position: absolute;
  left: -5vw;
  bottom: -12vw;
  font-family: var(--font-display);
  font-size: 40vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 40, 40, 0.08);
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  z-index: 0;
}

.contact-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 32px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 32px;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--bone);
}

.contact-left h2 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
}

.contact-left p {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 52ch;
  margin: 0 0 48px;
  line-height: 1.55;
}

.contact-channels {
  display: grid;
  gap: 12px;
}

.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border: 1px solid var(--rule);
  background: var(--surface);
  transition: all 200ms var(--ease);
  text-decoration: none;
  color: inherit;
}

.channel:hover {
  border-color: var(--red);
  background: var(--surface-2);
  transform: translateX(4px);
}

.channel .left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.channel .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.channel:hover .icon { border-color: var(--red); background: var(--red); color: var(--bone); }

.channel .icon svg { width: 20px; height: 20px; stroke-width: 1.6; }

.channel .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.channel .v {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--bone);
  font-weight: 500;
}

.channel .arrow {
  color: var(--fg-faint);
  font-family: var(--font-mono);
  transition: all 200ms var(--ease);
}

.channel:hover .arrow {
  color: var(--red);
  transform: translateX(4px);
}

/* Newsletter */
.contact-right {
  padding: 40px;
  border: 1px solid var(--rule);
  background: var(--surface);
  position: relative;
}

.contact-right::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.contact-right::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.contact-right .stamp {
  display: inline-block;
  padding: 6px 10px;
  background: var(--red);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-right h3 {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bone);
}

.contact-right h3 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
}

.contact-right p {
  font-size: 14px;
  color: var(--fg-dim);
  margin: 0 0 24px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--rule-2);
  background: #000;
  transition: border-color 200ms var(--ease);
}

.newsletter-form:focus-within { border-color: var(--red); }

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--fg-faint); }

.newsletter-form button {
  background: var(--red);
  color: var(--bone);
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms var(--ease);
}

.newsletter-form button:hover { background: var(--red-flare); }

.newsletter-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.newsletter-note .dot {
  color: var(--red);
  margin: 0 6px;
}

/* Social icons in contact */
.social-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 10px;
}

.social-row .s {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  color: var(--fg-dim);
  transition: all 200ms var(--ease);
}
.social-row .s:hover {
  border-color: var(--red);
  color: var(--bone);
  background: var(--red);
}
.social-row .s svg { width: 16px; height: 16px; }

.social-row .label {
  margin-right: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  align-self: center;
}

/* ---- FOOTER ------------------------------------------------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 40px 32px 32px;
  background: #000;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.footer-inner .fbrand {
  color: var(--fg-dim);
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-inner .fbrand .red { color: var(--red); }

.footer-coords {
  display: flex;
  gap: 24px;
}

.footer-coords .c span { color: var(--fg-dim); }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .sec-wrap, .manifesto-wrap, .contact-wrap { padding: 80px 20px; }
  .about-grid, .intro-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .press-grid { grid-template-columns: 1fr; }
  .manifesto-ticker { display: none; }
  .contact::before { font-size: 80vw; }
}

@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stats .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .about-stats .stat:last-child { border-bottom: 0; }
  .hero-meta { flex-direction: column; gap: 6px; }
  .trailer-wrap { padding: 10px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Fade-in on scroll ------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
