/* ExitLag — premium gaming-tech product identity */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ops-ink: #0c1017;
  --ops-char: #12161e;
  --ops-steel: #1a1f2a;
  --ops-panel: #151922;
  --ops-bone: #eef1f6;
  --ops-paper: #f0f2f6;
  --ops-mist: #f5f6f8;
  --ops-red: #e53935;
  --ops-red-hot: #ff4d4d;
  --ops-red-deep: #c62828;
  --ops-red-dark: #8b1e1e;
  --ops-cyan: var(--ops-red);
  --ops-blue: var(--ops-red-hot);
  --ops-violet: var(--ops-red-deep);
  --ops-mute: #94a3b8;
  --ops-ink-soft: #1e293b;
  --ops-line: rgba(229, 57, 53, 0.28);
  --ops-display: "Space Grotesk", "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ops-body: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ops-max: 1240px;
  --ops-nav-h: 3.25rem;
  --ops-radius: 12px;
  --ops-radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ops-body {
  margin: 0;
  background: var(--ops-ink);
  color: var(--ops-bone);
  font-family: var(--ops-body);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

.ops-skip {
  position: absolute; left: -999px; top: 0;
}
.ops-skip:focus {
  left: 1rem; top: 1rem; z-index: 200;
  padding: 0.75rem 1.1rem;
  border-radius: var(--ops-radius-sm);
  background: var(--ops-red); color: #fff; font-weight: 700;
}

/* —— Slim floating navbar —— */
.ops-bar {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(calc(100% - 1.5rem), calc(var(--ops-max) + 1.5rem));
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: var(--ops-nav-h);
  padding: 0.35rem 0.7rem 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(12, 16, 23, 0.72);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}
.ops-bar.is-solid {
  position: fixed;
  top: 0.65rem;
  background: rgba(12, 16, 23, 0.92);
  border-color: rgba(229, 57, 53, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.ops-brand {
  display: flex; align-items: center; gap: 0.55rem;
  flex-shrink: 0;
}
.ops-brand img { height: 1.55rem; width: auto; }
.ops-nav {
  display: none; align-items: center; gap: 0.15rem;
}
.ops-nav a {
  position: relative;
  padding: 0.4rem 0.85rem;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.01em;
  color: rgba(238, 243, 251, 0.72);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.ops-nav a:hover { color: #fff; background: rgba(229, 57, 53, 0.12); }
.ops-nav a.is-on {
  color: #fff;
  background: rgba(229, 57, 53, 0.16);
}
.ops-bar-actions {
  display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
}
.ops-login {
  display: none;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(238, 243, 251, 0.75);
}
.ops-login:hover { color: #fff; }
.ops-menu {
  display: inline-flex; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(18, 24, 38, 0.65);
}
.ops-drawer {
  display: none; position: fixed; inset: 0; z-index: 50;
  background: rgba(12, 16, 23, 0.98); padding: 5rem 1.5rem 2rem;
}
.ops-drawer.is-open { display: block; }
.ops-drawer nav { display: grid; gap: 0.25rem; }
.ops-drawer a {
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  font-family: var(--ops-display);
  font-size: 1.35rem; font-weight: 600;
}

/* —— Buttons —— */
.ops-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.45rem;
  min-height: 2.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--ops-body);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.ops-btn--fire {
  color: #fff;
  background: linear-gradient(120deg, var(--ops-red-hot) 0%, var(--ops-red) 45%, var(--ops-red-deep) 100%);
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.38);
}
.ops-btn--fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 77, 77, 0.42);
}
.ops-btn--ghost {
  color: var(--ops-bone);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(18, 24, 38, 0.55);
}
.ops-btn--ghost:hover {
  border-color: rgba(229, 57, 53, 0.55);
  background: rgba(229, 57, 53, 0.08);
}
.ops-btn--nav {
  min-height: 2.15rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
}
.ops-btn--ink {
  background: var(--ops-ink); color: var(--ops-bone);
}

/* —— Product hero 50 / 50 —— */
.cine-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 55% at 88% 42%, rgba(229, 57, 53, 0.18), transparent 62%),
    radial-gradient(ellipse 36% 42% at 12% 72%, rgba(139, 30, 30, 0.16), transparent 55%),
    linear-gradient(165deg, #12161e 0%, var(--ops-ink) 48%, #0a0d12 100%);
  padding: calc(var(--ops-nav-h) + 2.75rem) 0 2.35rem;
}
.cine-hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.cine-hero__net {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.6;
}
.cine-hero__net svg { width: 100%; height: 100%; }
.cine-hero__particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.cine-hero__particles span {
  position: absolute; width: 4px; height: 4px; border-radius: 999px;
  background: var(--ops-red-hot);
  box-shadow: 0 0 12px rgba(229, 57, 53, 0.75);
  opacity: 0.45;
  animation: net-drift 14s ease-in-out infinite;
}
.cine-hero__particles span:nth-child(1) { left: 18%; top: 28%; }
.cine-hero__particles span:nth-child(2) { left: 42%; top: 62%; animation-delay: -3s; width: 3px; height: 3px; }
.cine-hero__particles span:nth-child(3) { left: 68%; top: 22%; animation-delay: -6s; background: var(--ops-red); }
.cine-hero__particles span:nth-child(4) { left: 78%; top: 58%; animation-delay: -2s; }
.cine-hero__particles span:nth-child(5) { left: 30%; top: 78%; animation-delay: -8s; background: var(--ops-red-deep); }

.cine-hero__frame {
  position: relative; z-index: 2;
  width: min(100% - 2.25rem, var(--ops-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  min-height: clamp(30rem, 72vh, 42rem);
}
.cine-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 34rem;
  padding: 0.25rem 0;
}
.cine-hero__accent {
  position: relative;
  z-index: 2;
  justify-self: stretch;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  pointer-events: none;
}
.cine-hero__accent::before {
  content: "";
  position: absolute;
  width: 82%; height: 78%;
  right: 2%; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 77, 77, 0.32), rgba(198, 40, 40, 0.14) 45%, transparent 72%);
  filter: blur(22px);
  z-index: 0;
}
.cine-hero__accent img {
  position: relative;
  z-index: 1;
  width: min(108%, 46rem);
  max-width: none;
  height: auto;
  max-height: min(82vh, 48rem);
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.5));
  animation: cine-float 12s ease-in-out infinite alternate;
}
.cine-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 0 1.15rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 57, 53, 0.4);
  background: rgba(229, 57, 53, 0.1);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ops-red-hot);
}
.cine-kicker::before {
  content: "";
  width: 0.4rem; height: 0.4rem; border-radius: 999px;
  background: var(--ops-red);
  box-shadow: 0 0 10px var(--ops-red-hot);
}
.cine-title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--ops-display);
  font-size: clamp(2.45rem, 4.8vw, 3.85rem);
  font-weight: 700;
  line-height: 1.05; letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
}
.cine-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--ops-red-hot), var(--ops-red) 50%, var(--ops-red-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cine-deck {
  margin: 1.25rem 0 0;
  max-width: 30rem;
  font-family: var(--ops-body);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.82);
}
.cine-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.85rem;
}
.cine-meta {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex; flex-wrap: wrap; gap: 0.85rem 1.75rem;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(148, 163, 184, 0.95);
}
.cine-meta strong {
  color: var(--ops-red-hot);
  font-family: var(--ops-display);
  font-weight: 700;
}
.cine-note {
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.55);
  max-width: 28rem;
}
.cine-latency {
  margin-top: 1.35rem;
  padding: 0.8rem 1rem;
  border-radius: var(--ops-radius);
  border: 1px solid var(--ops-line);
  background: rgba(18, 22, 30, 0.7);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  max-width: 22rem;
}
.cine-latency small {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ops-mute);
}
.cine-latency b {
  font-family: var(--ops-display);
  font-size: 1.15rem; color: var(--ops-red-hot);
}
.cine-latency svg { width: 100%; height: 36px; }
.cine-scroll { display: none; }
.cine-hero__art,
.cine-hero__shade,
.cine-hero__watermark { display: none !important; }

@keyframes cine-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -10px, 0); }
}
@keyframes net-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.25; }
  50% { transform: translate3d(10px, -18px, 0); opacity: 0.7; }
}

/* —— Promo band —— */
.slash {
  position: relative;
  padding: 1.25rem 1.25rem;
  background: linear-gradient(90deg, var(--ops-red-dark) 0%, var(--ops-red-deep) 35%, var(--ops-red) 70%, #b71c1c 100%);
  color: #fff;
  z-index: 4;
  border-block: 1px solid rgba(255, 77, 77, 0.28);
}
.slash__inner {
  width: min(100% - 1rem, var(--ops-max));
  margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 2rem;
}
.slash h2 {
  margin: 0;
  font-family: var(--ops-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700; letter-spacing: -0.01em;
}
.slash p {
  margin: 0;
  font-size: 0.95rem; font-weight: 500;
  opacity: 0.92;
}

/* —— Sections —— */
.ops-section {
  position: relative;
  padding: clamp(3.25rem, 6.5vw, 5.25rem) 0;
}
.ops-section--ink { background: var(--ops-ink); color: var(--ops-bone); }
.ops-section--char { background: var(--ops-char); color: var(--ops-bone); }
.ops-section--bone { background: var(--ops-paper); color: var(--ops-ink-soft); }
.ops-section--paper { background: var(--ops-mist); color: var(--ops-ink-soft); }
.ops-section--angled {
  clip-path: polygon(0 2.25rem, 100% 0, 100% calc(100% - 2.25rem), 0 100%);
  padding-top: calc(clamp(3.25rem, 6.5vw, 5.25rem) + 1.25rem);
  padding-bottom: calc(clamp(3.25rem, 6.5vw, 5.25rem) + 1.25rem);
  margin-top: -1.25rem; margin-bottom: -1.25rem;
  z-index: 2;
}
.ops-wrap {
  width: min(100% - 2rem, var(--ops-max));
  margin-inline: auto;
}
.ops-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ops-cyan);
}
.ops-section--bone .ops-eyebrow,
.ops-section--paper .ops-eyebrow { color: #e53935; }
.ops-h2 {
  margin: 0;
  font-family: var(--ops-display);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em;
  text-transform: none;
  max-width: 18ch;
}
.ops-lede {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ops-mute);
}
.ops-section--bone .ops-lede,
.ops-section--paper .ops-lede { color: #64748b; }

.ops-rise {
  opacity: 0; transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ops-rise.is-in { opacity: 1; transform: none; }

/* Features timeline */
.loadout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
  margin-top: 2.25rem;
}
.loadout__sticky { position: sticky; top: 6.5rem; }
.loadout__rail {
  position: relative;
  display: grid; gap: 0;
  border-left: 2px solid rgba(229, 57, 53, 0.35);
  padding-left: 1.6rem;
}
.loadout__item {
  position: relative;
  margin: 0.15rem 0;
  padding: 1.15rem 1.1rem 1.35rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.95rem;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(229, 57, 53, 0.08), transparent 55%),
    rgba(18, 22, 30, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.loadout__item:last-child { border-bottom: 1px solid rgba(148, 163, 184, 0.1); }
.loadout__item:hover {
  border-color: rgba(229, 57, 53, 0.4);
  transform: translateX(4px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(229, 57, 53, 0.16), transparent 55%),
    rgba(24, 28, 38, 0.85);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(229, 57, 53, 0.1);
}
.loadout__item::before {
  content: "";
  position: absolute; left: -1.95rem; top: 1.55rem;
  width: 0.7rem; height: 0.7rem; border-radius: 999px;
  background: var(--ops-cyan);
  box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.loadout__item:hover::before {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(229, 57, 53, 0.22), 0 0 14px rgba(229, 57, 53, 0.45);
}
.loadout__mark {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.loadout__mark svg { width: 1.65rem; height: 1.65rem; color: var(--ops-blue); flex-shrink: 0; }
.loadout__mark span {
  font-family: var(--ops-display);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--ops-mute);
}
.loadout__item h3 {
  margin: 0;
  font-family: var(--ops-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.loadout__item p {
  margin: 0.45rem 0 0;
  max-width: 38rem;
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.98rem;
}

/* Comparison */
.war-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.war-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #000;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}
.war-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 57, 53, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35), 0 0 26px rgba(229, 57, 53, 0.14);
}
.war-panel video,
.war-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.war-panel--on { box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.35), 0 20px 50px rgba(0,0,0,0.25); }
.war-panel--off { margin-left: 0; }
.war-panel__tag {
  position: absolute; left: 1rem; top: 1rem; z-index: 2;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(12, 16, 23, 0.85); color: var(--ops-bone);
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.war-panel--on .war-panel__tag {
  background: rgba(75, 20, 20, 0.9); color: #ffc9c9;
  border-color: rgba(229, 57, 53, 0.45);
}
.war-panel__stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; gap: 0;
  background: linear-gradient(transparent, rgba(8, 12, 20, 0.92));
  padding: 2.5rem 1.1rem 1.1rem;
}
.war-panel__stats div { flex: 1; }
.war-panel__stats small {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(203,213,225,0.65);
}
.war-panel__stats b {
  display: block; margin-top: 0.15rem;
  font-family: var(--ops-display); font-size: 1.65rem; font-weight: 700; color: #fff;
}
.war-bars {
  margin-top: 1.5rem;
  display: grid; gap: 0.85rem;
}
.war-bar {
  display: grid; grid-template-columns: 9.5rem 1fr auto; gap: 0.85rem; align-items: center;
}
.war-bar span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.war-bar i {
  display: block; height: 8px; border-radius: 999px;
  background: rgba(148, 163, 184, 0.25); overflow: hidden;
}
.ops-section--bone .war-bar i { background: rgba(30, 41, 59, 0.12); }
.war-bar i em {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--ops-cyan), var(--ops-blue), var(--ops-violet));
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.war-bar.is-in i em { width: var(--w, 70%); }
.war-bar b { font-family: var(--ops-display); font-size: 1rem; font-weight: 700; color: var(--ops-blue); }

/* Games filmstrip */
.film-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem;
  margin-bottom: 1.35rem;
}
.film-track {
  display: flex; gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ops-red) transparent;
}
.film-track.is-auto {
  scroll-snap-type: none;
  cursor: grab;
}
.film-track.is-auto:active { cursor: grabbing; }
.film-track::-webkit-scrollbar { height: 5px; }
.film-track::-webkit-scrollbar-thumb { background: var(--ops-red); border-radius: 999px; }
.film-card {
  position: relative;
  flex: 0 0 min(52vw, 200px);
  aspect-ratio: 3/4;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #000;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.3s ease;
}
.film-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 2;
}
.film-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(229, 57, 53, 0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 24px rgba(229, 57, 53, 0.18);
}
.film-card:hover::after { transform: translateX(130%); }
.film-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.film-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.25rem 0.85rem 0.8rem;
  background: linear-gradient(transparent, rgba(8, 12, 20, 0.94));
  font-family: var(--ops-display);
  font-size: 1rem; font-weight: 650;
}

/* Voices / quotes */
#voices .voice-head,
#voices > .ops-wrap > .ops-rise:first-child {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
#voices .voice-head .ops-h2,
#voices > .ops-wrap > .ops-rise:first-child .ops-h2 {
  max-width: none;
  margin-inline: auto;
}
#voices .voice-head .ops-lede,
#voices > .ops-wrap > .ops-rise:first-child .ops-lede {
  margin-inline: auto;
}

.quote-stage {
  position: relative;
  margin-top: 0.5rem;
}
.quote-stack {
  position: relative;
  min-height: 11.5rem;
  display: grid;
}
.quote-banner {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) 1fr;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(229, 57, 53, 0.14);
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 80% 90% at 0% 0%, rgba(229, 57, 53, 0.08), transparent 55%),
    #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.quote-banner.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.quote-banner.is-active:hover {
  border-color: rgba(229, 57, 53, 0.4);
  box-shadow: 0 20px 48px rgba(229, 57, 53, 0.14);
  transform: translateY(-3px);
}
.quote-banner__who {
  font-family: var(--ops-display);
  font-size: 1.15rem; font-weight: 700;
  color: #0f172a;
}
.quote-banner__who span {
  display: block; margin-top: 0.35rem;
  font-family: var(--ops-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ops-red); text-transform: uppercase;
}
.quote-banner blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.4; font-weight: 550;
  color: #1e293b;
}
.quote-banner blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--ops-display);
  font-size: 2rem; line-height: 1;
  color: rgba(229, 57, 53, 0.45);
}
.quote-dots {
  display: flex; justify-content: center; gap: 0.45rem;
  margin-top: 1.15rem;
}
.quote-dots button {
  width: 0.55rem; height: 0.55rem; padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(148, 163, 184, 0.45);
  transition: width 0.25s ease, background 0.25s ease;
}
.quote-dots button.is-on {
  width: 1.45rem;
  background: var(--ops-red);
}
.trust-ribbon {
  margin-top: 1.85rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.trust-ribbon div {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 0.9rem;
  border-radius: var(--ops-radius);
  border: 1px solid rgba(229, 57, 53, 0.14);
  background: #fff;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.25s ease;
}
.trust-ribbon div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(229, 57, 53, 0.08) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.trust-ribbon div:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 57, 53, 0.4);
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.14);
}
.trust-ribbon div:hover::after { transform: translateX(130%); }
.trust-ribbon b {
  display: block;
  font-family: var(--ops-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem); font-weight: 700;
  color: var(--ops-red);
}
.trust-ribbon span {
  display: block; margin-top: 0.2rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #64748b;
}

/* Briefing */
#briefing .briefing-head,
#briefing > .ops-wrap > .ops-rise:first-child {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
#briefing .briefing-head .ops-h2,
#briefing > .ops-wrap > .ops-rise:first-child .ops-h2 {
  max-width: none;
  margin-inline: auto;
}
.briefing {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
  align-items: stretch;
}
.briefing__shot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.85rem;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(229, 57, 53, 0.25);
  background: #0a0e14;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.briefing__shot img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 0.65rem;
}
.briefing__copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(229, 57, 53, 0.12), transparent 55%),
    var(--ops-panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.15rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: center;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}
.briefing__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.07) 48%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}
.briefing__copy:hover {
  border-color: rgba(229, 57, 53, 0.4);
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(229, 57, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.briefing__copy:hover::after { transform: translateX(130%); }
.briefing__copy h3 {
  margin: 0;
  font-family: var(--ops-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
}
.briefing__copy > p {
  margin: 0.85rem 0 0;
  color: rgba(203, 213, 225, 0.85);
  font-size: 1.02rem;
}
.ops-ticks {
  list-style: none; margin: 1.15rem 0 0; padding: 0;
  display: grid; gap: 0.7rem;
}
.ops-ticks li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(226, 232, 240, 0.88);
}
.ops-ticks li::before {
  content: "";
  position: absolute; left: 0; top: 0.5rem;
  width: 0.55rem; height: 0.55rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--ops-cyan), var(--ops-violet));
}

/* Partners / industry stamps */
#stamps > .ops-wrap,
.ops-section--bone:not(.ops-section--angled) > .ops-wrap {
  text-align: center;
}
#stamps .ops-h2,
#stamps .ops-lede,
.ops-section--bone:not(.ops-section--angled) .ops-h2,
.ops-section--bone:not(.ops-section--angled) .ops-lede {
  max-width: 36rem;
  margin-inline: auto;
}

.stamp-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
}
.stamp-row img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 5rem;
  padding: 0.95rem 1.1rem;
  margin: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(229, 57, 53, 0.08), transparent 65%),
    #12161e;
  filter: none;
  opacity: 1;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.stamp-row img:hover {
  border-color: rgba(229, 57, 53, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.drop-zone {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 55% 70% at 72% 40%, rgba(229, 57, 53, 0.18), transparent 62%),
    radial-gradient(ellipse 40% 55% at 18% 75%, rgba(198, 40, 40, 0.12), transparent 58%),
    #070b12;
}
.drop-zone__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 40rem);
  margin: 0 auto;
  padding: clamp(3.25rem, 8vh, 5rem) 0;
  text-align: center;
}
.drop-zone__copy h2 {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--ops-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.drop-zone__copy p {
  margin: 1rem auto 0;
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(226, 232, 240, 0.88);
}
.drop-zone__copy .cine-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.ops-foot {
  background: #080c14;
  color: rgba(203, 213, 225, 0.78);
  padding: 3rem 0 1.35rem;
  border-top: 1px solid rgba(229, 57, 53, 0.2);
}
.ops-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.75rem;
}
.ops-foot h4 {
  margin: 0 0 0.75rem;
  font-family: var(--ops-display);
  font-size: 0.95rem; font-weight: 700; color: #fff;
}
.ops-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.ops-foot a:hover { color: var(--ops-cyan); }
.ops-news {
  display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.ops-news input {
  flex: 1; min-width: 11rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--ops-radius-sm);
  background: rgba(18, 24, 38, 0.8); color: #fff;
  padding: 0.7rem 0.9rem; outline: none;
}
.ops-news input:focus { border-color: var(--ops-cyan); box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15); }
.ops-social { display: flex; gap: 0.55rem; margin-top: 1rem; }
.ops-social a {
  width: 2.4rem; height: 2.4rem; border-radius: var(--ops-radius-sm);
  display: grid; place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.ops-social a:hover { border-color: var(--ops-cyan); color: var(--ops-cyan); }
.ops-foot__base {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.78rem; color: #64748b;
}

.ops-fab { position: fixed; right: 1rem; bottom: 1rem; z-index: 45; }

.ops-viewer {
  position: fixed; inset: 0; z-index: 80;
  display: none; align-items: center; justify-content: center;
  background: rgba(4, 8, 16, 0.92); padding: 1rem;
}
.ops-viewer.is-open { display: flex; }
.ops-viewer img { max-height: 90vh; max-width: 100%; object-fit: contain; }
.ops-viewer__x {
  position: absolute; right: 1rem; top: 1rem;
  width: 2.6rem; height: 2.6rem; border-radius: var(--ops-radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.lang-switch, .locale-picker { position: relative; }
.lang-switch-btn, .locale-picker-btn {
  display: inline-flex; align-items: center; gap: 0.28rem;
  min-height: 2.15rem; padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.76rem; font-weight: 700;
  background: rgba(18, 24, 38, 0.7);
}
.lang-switch-menu, .locale-picker-menu {
  position: absolute; top: calc(100% + 0.4rem); right: 0;
  min-width: 10.5rem; margin: 0; padding: 0.35rem; list-style: none;
  border-radius: var(--ops-radius);
  background: #121826; border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.lang-switch-menu a, .locale-picker-menu a {
  display: block; padding: 0.55rem 0.7rem; border-radius: 8px; font-size: 0.88rem;
}
.lang-switch-menu a:hover { background: rgba(229, 57, 53, 0.12); }

@media (min-width: 980px) {
  .ops-nav { display: flex; }
  .ops-menu { display: none; }
  .ops-login { display: inline-flex; }
}

@media (max-width: 980px) {
  .loadout,
  .war-room,
  .briefing,
  .ops-foot__grid,
  .trust-ribbon { grid-template-columns: 1fr; }
  .stamp-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .briefing__shot { min-height: 0; padding: 0.65rem; }
  .quote-banner { grid-template-columns: 1fr; gap: 0.55rem; }
  .quote-stack { min-height: 13.5rem; }
  .war-bar { grid-template-columns: 1fr; gap: 0.35rem; }
  .cine-hero__frame {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 0;
  }
  .cine-hero__copy { order: 1; max-width: 40rem; }
  .cine-hero__accent {
    order: 2;
    min-height: 0;
    justify-content: center;
  }
  .cine-hero__accent img {
    width: min(96%, 32rem);
    max-height: 28rem;
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .film-card { flex-basis: 68vw; }
  .cine-hero { padding-bottom: 2rem; }
  .cine-hero__accent { min-height: 0; }
  .cine-hero__accent img { max-height: 22rem; width: min(94%, 28rem); }
  .stamp-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stamp-row img { height: 4.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cine-hero__accent img,
  .cine-hero__particles span { animation: none !important; }
  .ops-rise { opacity: 1; transform: none; transition: none; }
  .briefing__copy:hover,
  .loadout__item:hover,
  .film-card:hover,
  .trust-ribbon div:hover,
  .war-panel:hover,
  .quote-banner.is-active:hover {
    transform: none !important;
  }
  .briefing__copy::after,
  .film-card::after,
  .trust-ribbon div::after { display: none; }
}

html[dir="rtl"] .cine-hero__frame { direction: ltr; }
html[dir="rtl"] .cine-hero__copy { direction: rtl; text-align: right; }
html[dir="rtl"] .cine-hero__accent { justify-content: flex-end; }
html[dir="rtl"] .loadout__item:hover { transform: translateX(-4px); }
html[dir="rtl"] .cine-actions,
html[dir="rtl"] .cine-meta { justify-content: flex-end; }
html[dir="rtl"] .drop-zone__copy .cine-actions { justify-content: center; }
html[dir="rtl"] .loadout__rail {
  border-left: 0; border-right: 2px solid rgba(229, 57, 53, 0.35);
  padding-left: 0; padding-right: 1.6rem;
}
html[dir="rtl"] .loadout__item::before { left: auto; right: -1.95rem; }
html[dir="rtl"] .ops-ticks li { padding-left: 0; padding-right: 1.5rem; }
html[dir="rtl"] .ops-ticks li::before { left: auto; right: 0; }
html[dir="rtl"] .lang-switch-menu { right: auto; left: 0; }
