/* ============================================================
   SLANDS — style.css
   ============================================================ */

/* ── Custom properties ── */
:root {
  --red:       #FF3B30;
  --orange:    #FF9500;
  --bg:        #0A0A0A;
  --card-bg:   #121212;
  --border:    #262626;
  --white:     #FFFFFF;
  --muted:     rgba(255,255,255,0.4);
  --body-muted:rgba(255,255,255,0.6);
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  --max-w:     1280px;
  --section-pad: 8rem;
  --radius:    16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, canvas { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.grayB {
  background: rgba(18, 18, 18, 0.78);
  border-radius: 6px;
  padding: 0.18em 0.55em;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Mission body needs extra line-height so pills have breathing room */
.mission-body .grayB {
  line-height: 2.1;
}

/* Hero grayB pills start hidden and fade in after expansion finishes */
#hero-content .grayB {
  background: rgba(18, 18, 18, 0);
  transition: background 0.5s ease;
}
#hero-sticky.hero-text-revealed #hero-content .grayB {
  background: rgba(18, 18, 18, 0.78);
}

/* ── Noise texture overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Fixed background particle canvas ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Mission/vr-frame WebGL shader canvas ── */
#mission-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

/* ── Section canvas (particle text background) ── */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── SVG filters (hidden) ── */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ── Utility: shared section wrapper ── */
.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── Shared typography tokens ── */
.tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.h2-white { color: var(--white); display: block; }
.h2-muted { color: var(--muted); display: block; }

section h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-hdr { margin-bottom: 4rem; }
.section-hdr.centered { text-align: center; }

.body-text {
  color: var(--body-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ── Shared card ── */
.card {
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover {
  border-color: rgba(255, 59, 48, 0.4);
  transform: translateY(-6px);
}

/* ── Red accent ── */
.red { color: var(--red); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-pill {
  background: var(--red);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5625rem 1.25rem;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.cta-pill:hover { background: #e0332a; transform: translateY(-1px); }

.hamburger {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: rgba(255,59,48,0.5); }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.mobile-menu {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { max-height: 420px; }
.mobile-menu ul {
  padding: 1.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta {
  display: inline-block;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700 !important;
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ============================================================
   SECTION 1 — HERO (scroll-expansion)
   ============================================================ */
#hero {
  position: relative;
  background: var(--bg);
}

/* Tall scroll area: gives the expand animation room */
.hero-scroll-area {
  height: 220vh;
  position: relative;
}

/* Sticky inner: what you see in the viewport */
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Spotlight */
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Robot */
.hero-robot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 72%;
  z-index: 1;
  pointer-events: none;
}
.hero-robot spline-viewer {
  width: 100%;
  height: 100%;
  --spline-viewer-bg: transparent;
}

/* Expand outer: full-size overlay, centers the frame */
.hero-expand-outer {
  position: absolute;
  inset: 0 0 0 0; /* only the upper 60% so it stays above text */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

/* The expanding frame itself */
.hero-expand-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  will-change: width, height, border-radius;
  transition: none;
  /* JS sets width/height on scroll */
}

.hero-expand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-expand-dark {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: none;
}

/* Readability overlay — fades in via JS as the image expands */
.hero-read-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

/* Split text (slides left/right as frame expands) */
.hero-split-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  pointer-events: none;
  z-index: 3;
}
.hero-split-text span {
  font-size: clamp(1rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  will-change: transform, opacity;
  transition: none;
}

/* Scroll hint inside frame */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  pointer-events: none;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  animation: scroll-bob 1.8s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.3; }
}

/* Bottom content grid */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: end;
  padding: 0 3.5rem 4.5rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero-h1 {
  font-size: clamp(1.875rem, 4.25vw, 4.125rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.h1-white { display: block; color: var(--white); }
.h1-gradient {
  display: block;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-right-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-bullets {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-bullets li {
  font-size: 0.9375rem;
  color: var(--body-muted);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0EBE3;
  color: #0A0A0A;
  border-radius: 9999px;
  padding: 0.875rem 0.875rem 0.875rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.btn-hero-cta:hover { background: #fff; transform: translateY(-2px); }
.arrow-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #0A0A0A;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-secondary {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-secondary:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   SECTION 2 — MISSION
   ============================================================ */
#mission {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.floating-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
}
.shape.s1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -120px; left: -120px;
  animation: float 28s infinite ease-in-out;
}
.shape.s2 {
  width: 350px; height: 350px;
  background: var(--orange);
  bottom: -60px; right: 5%;
  animation: float 22s infinite ease-in-out reverse;
  animation-delay: -10s;
}
.shape.s3 {
  width: 280px; height: 280px;
  background: var(--red);
  top: 40%; left: 60%;
  animation: float 35s infinite ease-in-out;
  animation-delay: -18s;
}
@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%      { transform: translate(40px,-30px) rotate(120deg); }
  66%      { transform: translate(-25px,20px) rotate(240deg); }
}

.mission-inner { max-width: 860px; }

/* Gooey host replaces the h2 content area */
.gooey-host {
  display: block;
  position: relative;
  height: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 2rem;
  overflow: visible;
}
.gooey-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gooey-span {
  position: absolute;
  white-space: nowrap;
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
}

.mission-body {
  color: var(--body-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto;
}

/* ============================================================
   VIDEO REVEAL — scroll-scale section
   ============================================================ */
#video-reveal {
  position: relative;
  background: var(--bg);
}
.vr-scroll-area {
  height: 200vh;
  position: relative;
}
.vr-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vr-frame-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.vr-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
  will-change: transform;
  transition: none;
  /* JS drives the scale */
}
.vr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.vr-overlay-content { text-align: left; }
.vr-title {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.vr-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ============================================================
   SECTION 3 — ROI / VIDEO CARDS (5-card 3+2 grid)
   ============================================================ */
#roi { padding: var(--section-pad) 0; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin: 0 0 3rem;
}
/* 3-over-2 pyramid layout */
.video-card:nth-child(1) { grid-column: 1 / 3; }
.video-card:nth-child(2) { grid-column: 3 / 5; }
.video-card:nth-child(3) { grid-column: 5 / 7; }
.video-card:nth-child(4) { grid-column: 2 / 4; }
.video-card:nth-child(5) { grid-column: 4 / 6; }

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--card-bg);
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: rgba(255,59,48,0.4); transform: translateY(-4px); }

.video-thumb-wrap {
  position: absolute;
  inset: 0;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb,
.video-card.tapped .video-thumb { transform: scale(1.06); }

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0.12) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.video-card:hover .video-overlay,
.video-card.tapped .video-overlay { opacity: 1; }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,59,48,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
  padding-left: 3px;
}
.video-card:hover .video-play-btn,
.video-card.tapped .video-play-btn {
  transform: translate(-50%,-50%) scale(1);
  background: var(--red);
}

.video-person { flex: 1; }
.video-person h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.video-person p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.video-hint {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Shorts overlay ── */
.short-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.short-overlay.visible {
  background: rgba(0, 0, 0, 0.88);
}
.short-container {
  position: relative;
  height: min(88vh, 560px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  background: #000;
}
.short-overlay.visible .short-container {
  transform: scale(1);
}
.short-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.short-close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.short-close:hover {
  background: rgba(255, 59, 48, 0.8);
}

.roi-tagline {
  text-align: center;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SECTION 4 — HOW IT WORKS
   ============================================================ */
#how {
  padding: var(--section-pad) 0;
  position: relative;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}
.step {
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover {
  border-color: rgba(255,59,48,0.4);
  transform: translateY(-5px);
}
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 700;
}
.step h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.875rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--body-muted);
  line-height: 1.65;
}
.step-connector {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,59,48,0.35), rgba(255,149,0,0.35));
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.875rem;
  color: rgba(255,59,48,0.5);
  background: var(--bg);
  padding: 0 6px;
}

/* ============================================================
   SECTION 5 — PROMISE
   ============================================================ */
#promise { padding: var(--section-pad) 0; }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.promise-grid .card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.promise-grid .card p {
  font-size: 0.9375rem;
  color: var(--body-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS TRANSITION — fullscreen scroll FX (§5 → §6)
   ============================================================ */
#process-transition {
  height: 500vh;
  position: relative;
}

.pft-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Backgrounds */
.pft-bgs {
  position: absolute;
  inset: 0;
}
.pft-bg {
  position: absolute;
  inset: -5%;          /* slight overdraw for parallax headroom */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  filter: brightness(0.55);
}
.pft-bg.active { opacity: 1; }

.pft-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Section panels — above overlay */
.pft-sections {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.pft-section {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.pft-section.active {
  opacity: 1;
  pointer-events: auto;
}
.pft-section section {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
}
/* Tighten vertical padding so content fits in 100vh panels */
.pft-sections #how,
.pft-sections #promise,
.pft-sections #about,
.pft-sections #faq {
  padding: 3rem 0;
}

/* HOW section: compact header + steps so everything fits on screen */
.pft-sections #how .section-hdr {
  margin-bottom: 1.75rem;
}
.pft-sections #how .steps-row {
  margin-top: 0;
}
.pft-sections #how .step {
  padding: 1.75rem 1.5rem;
}
.pft-sections #how .step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.pft-sections #how .step p {
  font-size: 0.875rem;
}

/* Three-column grid */
.pft-content {
  position: relative;
  z-index: 3;
  pointer-events: none;   /* let clicks reach sections below */
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 3rem;
  height: 60vh;
}

/* Columns */
.pft-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.pft-col-l { justify-content: flex-start; }
.pft-col-r { justify-content: flex-end; }

/* Scrolling label tracks */
.pft-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.pft-label {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  padding: 10px 0;
  transition: color 0.4s, opacity 0.4s;
  white-space: nowrap;
}
.pft-label.active {
  color: rgba(255,255,255,0.9);
}
.pft-col-r .pft-track { text-align: right; }

/* Center slides */
.pft-col-c {
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.pft-slides {
  position: relative;
  height: clamp(4rem, 10vw, 9rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pft-slide {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}
.pft-slide h3 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.pft-slide.active {
  opacity: 1;
  transform: none;
}
.pft-slide.leaving {
  opacity: 0;
  transform: translateY(-30px);
}

/* Progress row */
.pft-progress-row {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.pft-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
}
.pft-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--white);
  transition: width 0.6s ease;
}

/* Scroll cue */
.pft-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.5s;
}

/* ============================================================
   SECTION 6 — ABOUT
   ============================================================ */
#about {
  padding: var(--section-pad) 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left .tag { margin-bottom: 1.25rem; }
.about-left h2 { margin-bottom: 2rem; }
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--body-muted);
}
.info-dot { color: var(--red); font-size: 0.75rem; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,59,48,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  z-index: 2;
  min-width: 220px;
}
.badge-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.badge-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   SECTION 7 — FAQ
   ============================================================ */
#faq {
  padding: var(--section-pad) 0;
  width: 100%;
  min-height: 100%;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.faq-a p {
  color: var(--body-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.faq-a[hidden] { display: none; }

/* ============================================================
   TESTIMONIALS (vertical marquee — lives inside #contact right col)
   ============================================================ */
.testimonials-wrap {
  position: relative;
  height: 560px;
  overflow: hidden;
  perspective: 600px;
}

.testimonials-stage {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  transform: translateX(-40px) translateY(0px) translateZ(-60px) rotateX(20deg) rotateY(-10deg) rotateZ(20deg);
  transform-style: preserve-3d;
}

.marquee-col {
  flex: 0 0 340px;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}

.marquee-down .marquee-inner  { animation: t-scroll-down 32s linear infinite; }
.marquee-up   .marquee-inner  { animation: t-scroll-up   32s linear infinite; }
.marquee-col:hover .marquee-inner { animation-play-state: paused; }

@keyframes t-scroll-down {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes t-scroll-up {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* Testimonial card */
.t-card {
  background: rgba(18, 18, 18, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 0.875rem;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.t-card:hover { border-color: rgba(255,59,48,0.35); }

.t-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.t-body { flex: 1; min-width: 0; }

.t-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.125rem;
}
.t-loc { font-size: 0.7rem; font-weight: 400; color: var(--muted); }

.t-handle {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--red);
  margin-bottom: 0.625rem;
}

.t-card blockquote {
  font-size: 0.875rem;
  color: var(--body-muted);
  line-height: 1.6;
  margin: 0;
}

/* Top & bottom fade */
.t-fade {
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 2;
  height: 100px;
}
.t-fade-top    { top: 0;    background: linear-gradient(to bottom, var(--bg), transparent); }
.t-fade-bottom { bottom: 0; background: linear-gradient(to top,    var(--bg), transparent); }

/* Portfolio button */
.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-right .tag {
  margin-bottom: 1rem;
}

.btn-portfolio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 40px rgba(255,59,48,0.25);
}
.btn-portfolio:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(255,59,48,0.4);
  filter: brightness(1.08);
}
.portfolio-arrow {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 8 — CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 700px at 50% 50%, rgba(255,59,48,0.06), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 { margin-bottom: 1.5rem; }

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.c-icon { font-size: 1.125rem; margin-top: 2px; flex-shrink: 0; }
.c-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-row a,
.contact-row span:not(.c-label) {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-row a:hover { color: var(--red); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0.875rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.field { width: 100%; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field select option[disabled],
.field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field select { color: rgba(255,255,255,0.35); cursor: pointer; }
.field select:valid { color: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--red); }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-submit:hover { background: #e0332a; transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }

.form-status {
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
  transition: color 0.2s;
}
.form-status.success { color: #30d158; }
.form-status.error   { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg);
  border-top: 1px solid #161616;
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim-slide-left,
.anim-slide-right,
.anim-rise,
.anim-zoom,
.anim-pop,
.anim-slide-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-slide-left  { transform: translateX(-60px); }
.anim-slide-right { transform: translateX(60px); }
.anim-rise        { transform: translateY(70px); }
.anim-zoom        { transform: scale(0.9); }
.anim-pop         { transform: scale(0.88); transition-duration: 0.6s; }
.anim-slide-up    { transform: translateY(45px); transition-duration: 0.65s; }

.anim-slide-left.in-view,
.anim-slide-right.in-view,
.anim-rise.in-view,
.anim-zoom.in-view,
.anim-pop.in-view,
.anim-slide-up.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-robot {
    width: 90%;
    height: 65%;
  }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-connector { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* 5-card grid: 2+2+1 on tablet */
  .video-grid { grid-template-columns: repeat(4, 1fr); }
  .video-card:nth-child(1) { grid-column: 1 / 3; }
  .video-card:nth-child(2) { grid-column: 3 / 5; }
  .video-card:nth-child(3) { grid-column: 1 / 3; }
  .video-card:nth-child(4) { grid-column: 3 / 5; }
  .video-card:nth-child(5) { grid-column: 2 / 4; }

  /* Process transition: hide labels on medium screens */
  .pft-content { grid-template-columns: 0 1fr 0; }
  .pft-col-l,
  .pft-col-r { display: none; }

  /* Keep steps 3-column inside process panel even on tablet */
  .pft-sections #how .steps-row {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    gap: 0;
  }
  .pft-sections #how .step-connector { display: block; }

  .hero-expand-outer { inset: 0 0 05% 0; }
}

/* ── Tablet navigation ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ── Narrow tablet / large phone (691px – 900px) ── */
@media (max-width: 900px) and (min-width: 691px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .hero-h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
  section h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .section-hdr { margin-bottom: 2rem; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .pft-sections #how,
  .pft-sections #promise,
  .pft-sections #about,
  .pft-sections #faq { padding: 2rem 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤690px)
   ============================================================ */
@media (max-width: 690px) {
  :root { --section-pad: 3rem; }

  /* ── Hero ── */
  .hero-scroll-area { height: 160vh; }
  .hero-sticky { min-height: 560px; }
  .hero-robot { width: 100%; height: 48%; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
    gap: 1.5rem;
  }
  .hero-h1 { font-size: clamp(1.375rem, 7.5vw, 2rem); line-height: 1.0; }
  .hero-expand-outer { inset: 0 0 0 0; }
  .hero-split-text span { font-size: clamp(0.7rem, 4vw, 1.25rem); }
  .hero-right-label { font-size: 0.6rem; }
  .hero-bullets li { font-size: 0.8125rem; }
  .btn-hero-cta { font-size: 0.8125rem; padding: 0.75rem 0.75rem 0.75rem 1.125rem; }
  .hero-secondary { font-size: 0.75rem; }

  /* ── Shared typography ── */
  section h2 { font-size: clamp(1.25rem, 6.5vw, 1.875rem); }
  .section-hdr { margin-bottom: 1.5rem; }
  .section-inner { padding: 0 1rem; }
  .card { padding: 1rem; }
  .tag { font-size: 0.7rem; margin-bottom: 0.75rem; }

  /* ── Video grid ── */
  .video-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .video-card:nth-child(n) { grid-column: auto; }

  /* ── Process FX panels ── */
  .pft-sections #how,
  .pft-sections #promise,
  .pft-sections #about,
  .pft-sections #faq { padding: 1rem 0; }

  .steps-row { gap: 0.625rem; }
  .step { padding: 1rem; }
  .step h3 { font-size: 1rem; margin-bottom: 0.375rem; }
  .step p { font-size: 0.775rem; }
  .step-num { font-size: 0.7rem; margin-bottom: 0.625rem; }

  /* Steps: single column on mobile */
  .pft-sections #how .steps-row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
  .pft-sections #how .step-connector { display: none; }
  .pft-sections #how .section-hdr { margin-bottom: 0.875rem; }
  .pft-sections #how .step { padding: 0.875rem 1rem; }
  .pft-sections #how .step h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
  .pft-sections #how .step p { font-size: 0.8rem; line-height: 1.5; }
  .pft-sections #how .step-num { font-size: 0.65rem; margin-bottom: 0.375rem; }

  /* Mission inside vr-frame */
  .mission-inner { padding: 0 1.25rem; max-width: 100%; }
  .gooey-host { height: clamp(2rem, 9vw, 3rem); margin-bottom: 0.875rem; }
  .gooey-span { font-size: clamp(1.125rem, 6.5vw, 2rem); }
  .mission-body { font-size: 0.8125rem; line-height: 1.6; }
  .mission-body .grayB { line-height: 1.9; }

  .promise-grid { grid-template-columns: 1fr; gap: 0.625rem; }
  .promise-grid .card h3 { font-size: 0.875rem; margin-bottom: 0.25rem; }
  .promise-grid .card p { font-size: 0.8125rem; }

  .about-grid { gap: 1.25rem; }
  .about-right { display: none; }
  .body-text { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.875rem; }

  .faq-list { max-width: 100%; }
  .faq-q { font-size: 0.8125rem; padding: 1rem 0; gap: 0.875rem; }
  .faq-a p { font-size: 0.8125rem; }
  .faq-icon { font-size: 1.125rem; }

  /* ── Form ── */
  .form-row-2 { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }

  /* ── Nav ── */
  .cta-pill { font-size: 0.7rem; padding: 0.4375rem 0.875rem; }
}

/* ── Testimonials + portfolio responsive ── */
@media (max-width: 1100px) {
  /* Contact stacks: testimonials below contact info */
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .testimonials-wrap { height: 420px; }
  .testimonials-stage {
    transform: translateX(0) translateY(0) translateZ(-40px) rotateX(12deg) rotateY(-6deg) rotateZ(10deg);
  }
}
@media (max-width: 900px) {
  .marquee-col { flex: 0 0 260px; }
  .testimonials-wrap { height: 400px; }
}
@media (max-width: 690px) {
  .marquee-col { flex: 0 0 calc(50vw - 1.25rem); }
  .testimonials-wrap { height: 360px; }
  .testimonials-stage { gap: 0.75rem; transform: none; }
  .btn-portfolio { font-size: 1rem; padding: 1.25rem 1.5rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .shape { animation: none; }
  .scroll-dot { animation: none; }
  .marquee-inner { animation: none !important; }
  .anim-slide-left,
  .anim-slide-right,
  .anim-rise,
  .anim-zoom,
  .anim-pop,
  .anim-slide-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
