/* MovieMap landing — white · red · black */
:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --red: #e50914;
  --red-soft: rgba(229, 9, 20, 0.12);
  --red-mid: rgba(229, 9, 20, 0.22);
  --black: #0a0a0a;
  --black-soft: #141414;
  --gray: #5c5c5c;
  --gray-light: #e5e5e5;
  --radius: 18px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.75), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
}

.site-nav__logo:hover {
  text-decoration: none;
  color: var(--red);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 520px) {
  .site-nav__links a:not(.btn) {
    display: none;
  }
}

.site-nav__links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
}

.site-nav__links a:not(.btn):hover {
  color: var(--red);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 0 var(--black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--black);
  text-decoration: none;
  color: var(--white);
}

.btn--ghost {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}

.btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
  text-decoration: none;
  color: var(--white);
}

/* ——— Marquee ——— */
.marquee {
  margin-top: 4.5rem;
  padding: 0.65rem 0;
  background: var(--white);
  color: var(--black);
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--gray-light);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marqueeScroll 38s linear infinite;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 3rem;
}

.marquee__track span {
  opacity: 0.88;
}

.marquee__track span:nth-child(odd) {
  color: var(--red);
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 2.5rem 1.25rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  top: -8%;
  right: -15%;
  background: radial-gradient(circle, var(--red-mid) 0%, transparent 68%);
  animation: blobMove 18s ease-in-out infinite alternate;
}

.hero__blob--2 {
  width: min(70vw, 380px);
  height: min(70vw, 380px);
  top: 40%;
  left: -20%;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.06) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, 4%) scale(1.08);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(var(--gray-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-light) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 75% 70% at 70% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 70% 30%, black 20%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding-top: 1rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  animation: fadeUp 0.75s ease both;
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--black);
  margin: 0 0 1.25rem;
  animation: fadeUp 0.75s ease 0.06s both;
}

.hero__title .hero__accent {
  color: var(--red);
  display: inline-block;
  position: relative;
}

.hero__title .hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.28em;
  background: var(--red-soft);
  z-index: -1;
  transform: skewX(-8deg);
}

.hero__lead {
  font-size: clamp(1.0625rem, 2.2vw, 1.2rem);
  max-width: 36ch;
  margin: 0 0 1.75rem;
  color: var(--gray);
  animation: fadeUp 0.75s ease 0.12s both;
}

.hero__lead strong {
  color: var(--black);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.75s ease 0.18s both;
}

.hero__note {
  font-size: 0.8125rem;
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--black);
  color: var(--gray);
  max-width: 34ch;
  animation: fadeUp 0.75s ease 0.24s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Map device ——— */
.map-stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  animation: fadeUp 0.9s ease 0.2s both;
}

.map-frame {
  position: absolute;
  inset: 6%;
  border-radius: 28px;
  background: var(--white);
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 var(--black), 0 28px 64px rgba(10, 10, 10, 0.12);
  overflow: hidden;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, var(--red-soft), transparent 55%);
}

.map-lines {
  position: absolute;
  inset: 10%;
  opacity: 0.5;
  background: repeating-linear-gradient(
      -20deg,
      transparent,
      transparent 16px,
      rgba(10, 10, 10, 0.04) 16px,
      rgba(10, 10, 10, 0.04) 17px
    ),
    repeating-linear-gradient(
      48deg,
      transparent,
      transparent 20px,
      rgba(10, 10, 10, 0.035) 20px,
      rgba(10, 10, 10, 0.035) 21px
    );
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px var(--white), 3px 3px 0 var(--black);
  animation: pinPulse 2.2s ease-in-out infinite;
}

.pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background: linear-gradient(to bottom, var(--black), transparent);
  border-radius: 1px;
}

.pin--1 {
  top: 30%;
  left: 36%;
  animation-delay: 0s;
}
.pin--2 {
  top: 46%;
  left: 58%;
  animation-delay: 0.45s;
}
.pin--3 {
  top: 56%;
  left: 26%;
  animation-delay: 0.9s;
}

@keyframes pinPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.film-strip {
  position: absolute;
  bottom: 12%;
  right: 2%;
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--red);
  animation: floatY 4.5s ease-in-out infinite;
}

.film-strip span {
  width: 16px;
  height: 22px;
  border-radius: 2px;
  background: var(--white);
  border: 1px solid var(--gray-light);
}

.film-strip span:nth-child(2) {
  background: var(--red);
  border-color: var(--black);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

.orbit {
  position: absolute;
  width: 118%;
  height: 118%;
  top: -9%;
  left: -9%;
  border: 2px dashed var(--gray-light);
  border-radius: 50%;
  animation: orbitSpin 36s linear infinite;
  pointer-events: none;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— Stats showcase ——— */
.stats-showcase {
  background: var(--white);
  padding: 3rem 1.25rem 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.stats-showcase__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.stats-showcase__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-showcase__heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 0.5rem;
}

.stats-showcase__lede {
  margin: 0;
  font-size: 1rem;
  color: var(--gray);
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--red-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--red-mid);
}

.stat-card__art {
  width: 72px;
  height: 72px;
  margin-bottom: 0.85rem;
  color: var(--black);
}

.stat-icon {
  width: 100%;
  height: 100%;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 0.2rem;
  line-height: 1;
}

.stat-card__value--brand {
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  letter-spacing: 0.02em;
  color: var(--red);
}

.stat-card__unit {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.stat-card__hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray);
}

.stat-card__hint a {
  color: var(--black);
  font-weight: 600;
}

.stat-card__hint a:hover {
  color: var(--red);
}

/* ——— Visual collage band ——— */
.visual-collage {
  background: var(--white);
  padding: 0 1.25rem 2.5rem;
  overflow: hidden;
}

.visual-collage__inner {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
  overflow: hidden;
  background: var(--off-white);
}

.collage-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100px;
  max-height: 180px;
}

.collage-line {
  animation: collageDash 22s linear infinite;
}

@keyframes collageDash {
  to {
    stroke-dashoffset: -200;
  }
}

/* ——— Manifesto ——— */
.manifesto {
  background: var(--white);
  padding: 2rem 1.25rem 3.5rem;
  margin: 0;
}

.manifesto__card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--red-soft);
}

.manifesto__visual {
  max-width: 200px;
  margin: 0 auto 1rem;
  opacity: 0.95;
}

.manifesto__visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.manifesto__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: var(--black);
}

.manifesto__sub {
  margin: 0;
  font-size: 1rem;
  color: var(--gray);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.manifesto__accent {
  color: var(--red);
}

.manifesto__strong {
  color: var(--black);
  font-weight: 600;
}

/* ——— Bento ——— */
.section {
  padding: 4rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section__head {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

.section__head p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--gray);
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "hero hero a"
      "hero hero b"
      "c d d";
  }

  .bento__cell--hero {
    grid-area: hero;
  }

  .bento__cell--a {
    grid-area: a;
  }

  .bento__cell--b {
    grid-area: b;
  }

  .bento__cell--c {
    grid-area: c;
  }

  .bento__cell--d {
    grid-area: d;
  }
}

.bento__cell {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento__cell:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}

.bento__cell--hero {
  background: var(--white);
  color: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  border-left: 5px solid var(--red);
  position: relative;
  overflow: hidden;
}

.bento__cell--hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  pointer-events: none;
}

.bento__cell--hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .bento__cell--hero {
    min-height: 100%;
  }
}

.bento__cell--hero h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.bento__cell--hero p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.bento__cell--hero .bento__tag {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.bento__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.bento__cell--hero .bento__tag {
  background: var(--red-soft);
  color: var(--red);
}

.bento__cell h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.5rem;
}

.bento__cell p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray);
}

/* ——— Steps ——— */
.section--steps {
  background: var(--white);
  max-width: none;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.section--steps .section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 0;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid var(--gray-light);
  transition: border-color 0.2s ease;
}

.step:hover {
  border-color: var(--black);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--black);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.45rem;
}

.step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

.trust-band {
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  max-width: 640px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px dashed var(--red-mid);
}

.trust-band p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray);
}

.trust-band a {
  font-weight: 600;
  color: var(--black);
}

.trust-band a:hover {
  color: var(--red);
}

/* ——— Download ——— */
.section--download {
  background: var(--white);
  color: var(--gray);
  max-width: none;
  padding: 4rem 1.25rem;
  border-top: 1px solid var(--gray-light);
}

.section--download .section__head h2 {
  color: var(--black);
}

.section--download .section__head p {
  color: var(--gray);
}

.section--download .section__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.download-actions {
  text-align: center;
}

.download-actions .btn--primary {
  box-shadow: 0 3px 0 var(--black);
}

.download-actions .btn--primary:hover {
  box-shadow: 0 6px 0 var(--black);
}

.download-meta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.download-meta a {
  color: var(--black);
  font-weight: 600;
}

.download-meta a:hover {
  color: var(--red);
  text-decoration: none;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 1.25rem;
  background: var(--white);
  border-top: 3px solid var(--black);
  text-align: center;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.site-footer__brand span {
  color: var(--red);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--black);
  font-weight: 500;
}

.site-footer__links a:hover {
  color: var(--red);
  text-decoration: none;
}

.site-footer__copy {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
