
:root {
  --bg: #090608;
  --bg-soft: #161013;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fff7f0;
  --muted: #ddd0c3;
  --muted-2: #a89b92;
  --accent: #ff9a33;
  --accent-2: #ff6f1e;
  --accent-blue: #37a8ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(55, 168, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(255, 111, 30, 0.14), transparent 30%),
    linear-gradient(180deg, #0b0709 0%, #0a090c 45%, #0d0c0f 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { border: none; }
textarea { resize: vertical; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; position: relative; z-index: 1; }

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.fx-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 170, 90, 0.9);
  box-shadow: 0 0 12px rgba(255, 132, 0, 0.45);
  opacity: 0;
  animation: floatParticle linear infinite;
}
.fx-particle.blue {
  background: rgba(95, 180, 255, 0.8);
  box-shadow: 0 0 12px rgba(55, 168, 255, 0.4);
}
@keyframes floatParticle {
  0% { transform: translate3d(0, 20px, 0) scale(0.7); opacity: 0; }
  8% { opacity: 1; }
  70% { opacity: 0.7; }
  100% { transform: translate3d(var(--drift-x), -120vh, 0) scale(1.15); opacity: 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(11, 8, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 6px 18px rgba(255, 111, 30, 0.25));
}
.brand-copy { display: flex; flex-direction: column; }
.brand-title { font-size: 1rem; font-weight: 900; letter-spacing: 0.04em; }
.brand-subtitle { color: var(--muted-2); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: var(--muted); font-weight: 700; font-size: 0.92rem; }
.main-nav a:hover { color: var(--text); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); color: white; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: white; border-radius: 999px; display: block; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 6, 0.54), rgba(8, 5, 6, 0.88)),
    radial-gradient(circle at 20% 35%, rgba(55, 168, 255, 0.16), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(255, 111, 30, 0.23), transparent 24%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 72px; }
.hero-card {
  width: min(700px, 100%);
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 11, 13, 0.82), rgba(14, 10, 12, 0.68));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.eyebrow,
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  padding: 8px 14px; border: 1px solid rgba(255, 154, 51, 0.22); border-radius: 999px;
  background: rgba(255, 154, 51, 0.12); color: #ffd2aa; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 900;
}
.hero h1,
.section-copy h2,
.section-head h2,
.cta-copy h2,
.contact-copy h2,
.modal-card h3 {
  margin: 0; line-height: 0.95; letter-spacing: -0.05em; font-weight: 900;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
.hero-text { margin: 22px 0 0; max-width: 58ch; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.7; }
.hero-actions,
.cta-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none;
}
.hero-points li {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: 0.92rem; font-weight: 700;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 16px; border: 1px solid transparent; font-weight: 800; letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #180c06; box-shadow: 0 16px 34px rgba(255, 111, 30, 0.28); }
.button-secondary { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--line); }
.button-secondary:hover { background: rgba(255,255,255,0.1); }

.section-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 54px; align-items: center; }
.section-reverse { grid-template-columns: 0.96fr 1.04fr; }
.section-copy h2,
.section-head h2,
.cta-copy h2,
.contact-copy h2 { font-size: clamp(2.1rem, 4.4vw, 3.9rem); }
.section-copy p,
.section-head p,
.cta-copy p,
.contact-copy p,
.modal-note { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.section-media { position: relative; }
.rounded-image, .product-card, .gallery-card, .feature-card, .cta-panel, .contact-panel, .modal-card {
  box-shadow: var(--shadow);
}
.rounded-image { width: 100%; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08); }
.stat-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px;
}
.stat-grid article,
.feature-card,
.gallery-card,
.product-card,
.cta-panel,
.contact-panel,
.modal-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}
.stat-grid article { padding: 18px; border-radius: 22px; }
.stat-grid strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.stat-grid span { color: var(--muted-2); line-height: 1.55; font-size: 0.95rem; }
.section-head { max-width: 780px; margin-bottom: 34px; }

.trailer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}
.video-wrap {
  position: relative; width: 100%; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.video-wrap::before { content: ""; display: block; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-copy {
  padding: 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.trailer-copy h3 { margin: 0 0 16px; font-size: 1.4rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { padding: 22px; border-radius: 24px; }
.feature-icon {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 154, 51, 0.22), rgba(55, 168, 255, 0.16));
  border: 1px solid rgba(255,255,255,0.08); font-size: 1.4rem;
}
.feature-card h3 { margin: 18px 0 10px; font-size: 1.1rem; }
.feature-card p { margin: 0; color: var(--muted-2); line-height: 1.65; }

.bullet-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.bullet-list.compact { margin-top: 14px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); line-height: 1.65; }
.bullet-list span {
  width: 10px; height: 10px; border-radius: 999px; flex: 0 0 auto; margin-top: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue)); box-shadow: 0 0 18px rgba(255, 111, 30, 0.35);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card {
  position: relative; overflow: hidden; padding: 0; border-radius: 24px; cursor: pointer; text-align: left; background: none;
}
.gallery-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.28s ease; }
.gallery-card span {
  position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(10, 8, 9, 0.78);
  border: 1px solid rgba(255,255,255,0.08); font-weight: 800; color: var(--text);
}
.gallery-card:hover img { transform: scale(1.04); }

.merch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { overflow: hidden; border-radius: 24px; }
.product-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: linear-gradient(180deg, #e8e8e8, #cecece);
}
.product-body { padding: 20px; }
.product-body h3 { margin: 0 0 8px; font-size: 1.2rem; }
.product-body p { margin: 0; color: var(--muted-2); line-height: 1.6; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px;
}
.product-footer strong { font-size: 1.25rem; color: var(--text); }

.cta-panel, .contact-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 34px; border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(55, 168, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
}
.cta-copy, .contact-copy { max-width: 720px; }
.cta-actions.wide { width: auto; }

.site-footer { padding: 26px 0 42px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-title { font-weight: 900; margin: 0 0 6px; }
.footer-text, .footer-meta { color: var(--muted-2); margin: 0; }

.lightbox, .modal {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(9, 7, 8, 0.92); z-index: 60;
}
.lightbox.open, .modal.open { display: flex; }
.lightbox-figure { margin: 0; width: min(1200px, 100%); }
.lightbox-figure img {
  width: 100%; max-height: 82vh; object-fit: contain; border-radius: 22px; border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-figure figcaption { margin-top: 12px; color: var(--muted); text-align: center; }
.lightbox-close, .modal-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); color: white; font-size: 2rem; cursor: pointer;
}
.modal-card {
  position: relative; width: min(620px, 100%); padding: 28px; border-radius: 26px;
}
.order-form { display: grid; gap: 14px; margin-top: 18px; }
.order-form label { display: grid; gap: 8px; font-weight: 700; color: var(--text); }
.order-form input, .order-form textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); color: var(--text);
}
.modal-note { margin-top: 14px; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .section-grid, .section-reverse, .trailer-shell, .cta-panel, .contact-panel { grid-template-columns: 1fr; display: grid; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px;
    border-radius: 18px; background: rgba(18, 12, 15, 0.95); border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-card { padding: 24px; }
  .section { padding: 64px 0; }
  .stat-grid, .feature-grid, .gallery-grid, .merch-grid { grid-template-columns: 1fr; }
  .footer-wrap, .cta-panel, .contact-panel { display: flex; flex-direction: column; align-items: flex-start; }
  .cta-actions, .hero-actions, .contact-actions, .product-footer { width: 100%; flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .product-footer { align-items: stretch; }
}


/* V2.2 — visible depth effect */
.depth-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 28%, rgba(55, 168, 255, 0.10), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 111, 30, 0.13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 154, 51, 0.06), transparent 35%);
}

.depth-glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.28;
  z-index: 2;
  mix-blend-mode: screen;
  animation: slowPulse 9s ease-in-out infinite;
}

.depth-glow-left {
  left: -18vw;
  top: 24vh;
  background: rgba(55, 168, 255, 0.24);
}

.depth-glow-right {
  right: -18vw;
  top: 10vh;
  background: rgba(255, 111, 30, 0.26);
  animation-delay: -3s;
}

@keyframes slowPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.18; }
  50% { transform: scale(1.04); opacity: 0.32; }
}

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-layer-back { z-index: 1; }
.fx-layer-front { z-index: 35; }

.fx-particle {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 176, 82, 0.95);
  box-shadow: 0 0 16px rgba(255, 120, 25, 0.72);
  opacity: 0;
  animation: floatParticle linear infinite;
}

.fx-particle.blue {
  background: rgba(95, 185, 255, 0.92);
  box-shadow: 0 0 16px rgba(55, 168, 255, 0.72);
}

.fx-layer-front .fx-particle {
  filter: blur(0.2px);
  box-shadow: 0 0 22px rgba(255, 140, 45, 0.9);
}

@keyframes floatParticle {
  0% { transform: translate3d(0, 24px, 0) scale(0.55); opacity: 0; }
  10% { opacity: 1; }
  70% { opacity: 0.9; }
  100% { transform: translate3d(var(--drift-x), -125vh, 0) scale(1.25); opacity: 0; }
}

.hero-media img {
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.hero-card,
.trailer-copy,
.feature-card,
.product-card,
.gallery-card,
.contact-panel,
.cta-panel {
  position: relative;
  z-index: 3;
}

.trailer-poster {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #0c090a;
}

.trailer-poster img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.trailer-poster:hover img {
  transform: scale(1.04);
}

.poster-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 111, 30, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(8,5,6,0.25), rgba(8,5,6,0.80));
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #150804;
  font-size: 2rem;
  box-shadow: 0 0 50px rgba(255, 111, 30, 0.45);
}

.poster-copy {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 4px;
}

.poster-copy strong {
  font-size: 1.35rem;
}

.poster-copy em {
  color: var(--muted);
  font-style: normal;
}

.trailer-button {
  margin-top: 20px;
}

.micro-note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-panel-form {
  align-items: flex-start;
}

.contact-form {
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  outline: none;
}

.contact-form select option {
  color: #130c0c;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 154, 51, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 154, 51, 0.10);
}

@media (max-width: 780px) {
  .trailer-poster,
  .trailer-poster img {
    min-height: 260px;
  }

  .play-badge {
    width: 70px;
    height: 70px;
  }

  .fx-layer-front .fx-particle {
    display: none;
  }
}


/* V2.3 — YouTube plays directly in the site */
.youtube-direct {
  background: linear-gradient(135deg, rgba(255, 154, 51, 0.10), rgba(55, 168, 255, 0.08));
}

.youtube-direct iframe {
  background: #161616;
}


/* V2.4 — stronger scroll-depth particles + configurable gallery */
.scroll-depth-field {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  min-height: var(--doc-height, 100vh);
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.scroll-dot {
  position: absolute;
  border-radius: 999px;
  opacity: 0.36;
  background: rgba(255, 170, 90, 0.72);
  box-shadow: 0 0 18px rgba(255, 128, 30, 0.48);
}

.scroll-dot.blue {
  background: rgba(85, 175, 255, 0.68);
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.44);
}

.fx-layer-fast {
  z-index: 30;
}

.fx-particle.fast {
  opacity: 0;
  filter: blur(0.7px);
  background: rgba(255, 188, 110, 0.48);
  box-shadow: 0 0 18px rgba(255, 125, 30, 0.35);
}

.fx-particle.fast.blue {
  background: rgba(120, 200, 255, 0.42);
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.33);
}

@keyframes floatParticle {
  0% { transform: translate3d(0, 24px, 0) scale(0.55); opacity: 0; }
  10% { opacity: var(--max-opacity, 1); }
  70% { opacity: calc(var(--max-opacity, 1) * 0.82); }
  100% { transform: translate3d(var(--drift-x), -125vh, 0) scale(1.25); opacity: 0; }
}

.gallery-help {
  margin-top: 18px;
}

.gallery-help strong {
  color: var(--text);
}

.contact-form input[readonly] {
  opacity: 0.82;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 780px) {
  .fx-layer-fast {
    display: none;
  }
}


/* V2.5 — scroll-only depth particles, no autonomous animation */
.fx-layer,
.fx-layer-back,
.fx-layer-fast,
.fx-layer-front,
.scroll-depth-field {
  display: none !important;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

.parallax-particles {
  position: fixed;
  left: 0;
  top: -28vh;
  width: 100%;
  height: 156vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  will-change: transform;
}

.layer-far {
  z-index: 1;
  opacity: 0.45;
}

.layer-mid {
  z-index: 18;
  opacity: 0.62;
}

.layer-near {
  z-index: 36;
  opacity: 0.70;
}

.parallax-dot {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 166, 76, 0.42);
  box-shadow: 0 0 14px rgba(255, 118, 22, 0.30);
  transform: translateZ(0);
}

.parallax-dot.blue {
  background: rgba(95, 178, 255, 0.38);
  box-shadow: 0 0 14px rgba(55, 168, 255, 0.28);
}

.layer-near .parallax-dot {
  filter: blur(0.2px);
  background: rgba(255, 174, 92, 0.50);
  box-shadow: 0 0 20px rgba(255, 118, 22, 0.42);
}

.layer-near .parallax-dot.blue {
  background: rgba(105, 190, 255, 0.45);
  box-shadow: 0 0 20px rgba(55, 168, 255, 0.38);
}

.site-footer {
  margin-bottom: 0 !important;
}

body::after {
  content: none !important;
}

@media (max-width: 780px) {
  .layer-near {
    display: none;
  }
}


/* V2.6 — Netlify form + stronger visible scroll-depth particles */
.hidden-field {
  display: none !important;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  width: min(720px, 100%);
  text-align: center;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(55, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.success-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(255, 111, 30, 0.32));
}

.success-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.success-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px auto 0;
}

.success-card .button {
  margin-top: 28px;
}

.parallax-dot {
  opacity: var(--dot-opacity, 0.34);
  transition: opacity 0.12s linear, filter 0.12s linear, box-shadow 0.12s linear;
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.55 !important;
  filter: brightness(1.45);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.78 !important;
  filter: brightness(1.75);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.05) blur(0.1px);
  box-shadow: 0 0 26px rgba(255, 128, 35, 0.72);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 26px rgba(55, 168, 255, 0.72);
}


/* V2.7 — products are Coming Soon */
.button-disabled {
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 247, 240, 0.62);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.075);
}

.product-footer strong::after {
  content: " target price";
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* V2.8 — no visible product/game prices */
.hidden-field {
  display: none !important;
}

.product-footer strong::after {
  content: none !important;
}

.product-footer {
  align-items: center;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  width: min(720px, 100%);
  text-align: center;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(55, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.success-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(255, 111, 30, 0.32));
}

.success-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.success-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px auto 0;
}

.success-card .button {
  margin-top: 28px;
}

/* Particles stronger while scrolling */
.parallax-dot {
  opacity: var(--dot-opacity, 0.34);
  transition: opacity 0.12s linear, filter 0.12s linear, box-shadow 0.12s linear;
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.55 !important;
  filter: brightness(1.45);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.78 !important;
  filter: brightness(1.75);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.05) blur(0.1px);
  box-shadow: 0 0 26px rgba(255, 128, 35, 0.72);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 26px rgba(55, 168, 255, 0.72);
}


/* V2.9 — inline Netlify form status, no success-page redirect */
.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 750;
}

.form-status.success {
  color: #9dffb2;
}

.form-status.error {
  color: #ffb09b;
}


/* V3.1 — aligned merch cards and stronger scroll-depth particles */
.product-grid {
  align-items: stretch;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-copy p {
  flex: 1 1 auto;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-height: 56px;
}

.product-footer strong {
  display: none !important;
}

.product-footer .button {
  min-width: 152px;
  text-align: center;
}

.button-disabled {
  min-width: 152px;
}

/* Stronger particles */
.parallax-particles {
  top: -35vh;
  height: 170vh;
}

.parallax-dot {
  opacity: var(--dot-opacity, 0.42);
  filter: brightness(1.12);
}

.layer-far {
  opacity: 0.62;
}

.layer-mid {
  opacity: 0.82;
}

.layer-near {
  opacity: 0.92;
}

.layer-far .parallax-dot {
  box-shadow: 0 0 18px rgba(255, 118, 22, 0.34);
}

.layer-mid .parallax-dot {
  box-shadow: 0 0 22px rgba(255, 118, 22, 0.42);
}

.layer-near .parallax-dot {
  box-shadow: 0 0 28px rgba(255, 118, 22, 0.56);
}

.layer-far .parallax-dot.blue {
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.34);
}

.layer-mid .parallax-dot.blue {
  box-shadow: 0 0 22px rgba(55, 168, 255, 0.42);
}

.layer-near .parallax-dot.blue {
  box-shadow: 0 0 28px rgba(55, 168, 255, 0.56);
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.70 !important;
  filter: brightness(1.65);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.0);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 1 !important;
  filter: brightness(2.3) blur(0.15px);
  box-shadow: 0 0 34px rgba(255, 128, 35, 0.92);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 34px rgba(55, 168, 255, 0.92);
}


/* V3.3 — custom PNG depth particles with stronger 3D scroll feeling */
.parallax-particles {
  top: -42vh;
  height: 190vh;
  will-change: transform;
  transition: opacity 0.12s linear;
}

.parallax-sprite {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--sprite-size, 88px);
  height: auto;
  object-fit: contain;
  opacity: var(--sprite-opacity, 0.38);
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.layer-far {
  z-index: 1;
  opacity: 0.58;
}

.layer-mid {
  z-index: 18;
  opacity: 0.84;
}

.layer-near {
  z-index: 36;
  opacity: 1;
}

.layer-far .parallax-sprite {
  filter:
    blur(0.8px)
    saturate(0.95)
    brightness(0.95)
    drop-shadow(0 0 10px rgba(0,0,0,0.26));
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.2px)
    saturate(1.05)
    brightness(1.04)
    drop-shadow(0 0 14px rgba(0,0,0,0.28));
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.15)
    brightness(1.08)
    drop-shadow(0 0 20px rgba(0,0,0,0.34));
}

html.scrolling-depth .layer-far .parallax-sprite {
  opacity: 0.56 !important;
  filter:
    blur(0.6px)
    saturate(1.0)
    brightness(1.08)
    drop-shadow(0 0 14px rgba(255, 125, 30, 0.22));
}

html.scrolling-depth .layer-mid .parallax-sprite {
  opacity: 0.72 !important;
  filter:
    blur(0.1px)
    saturate(1.15)
    brightness(1.16)
    drop-shadow(0 0 20px rgba(255, 125, 30, 0.26));
}

html.scrolling-depth .layer-near .parallax-sprite {
  opacity: 0.92 !important;
  filter:
    saturate(1.25)
    brightness(1.24)
    drop-shadow(0 0 28px rgba(255, 125, 30, 0.34));
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -24vh;
    height: 150vh;
  }

  .layer-near .parallax-sprite {
    display: none;
  }
}


/* V3.4 — fewer / bigger PNG depth particles, behind the text */
.parallax-particles {
  top: -38vh;
  height: 190vh;
  z-index: 0 !important;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.layer-far,
.layer-mid,
.layer-near {
  z-index: 0 !important;
  opacity: 1 !important;
}

.parallax-sprite {
  opacity: var(--sprite-opacity, 0.26) !important;
  transition: none !important;
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 10px rgba(0,0,0,0.20));
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.35px)
    saturate(1)
    brightness(1)
    drop-shadow(0 0 14px rgba(0,0,0,0.22));
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 0 18px rgba(0,0,0,0.26));
}

/* Remove the opacity / glow boost while scrolling */
html.scrolling-depth .layer-far .parallax-sprite,
html.scrolling-depth .layer-mid .parallax-sprite,
html.scrolling-depth .layer-near .parallax-sprite {
  opacity: var(--sprite-opacity, 0.26) !important;
  filter: none !important;
}

html.scrolling-depth .layer-far .parallax-sprite {
  filter:
    blur(1px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 10px rgba(0,0,0,0.20)) !important;
}

html.scrolling-depth .layer-mid .parallax-sprite {
  filter:
    blur(0.35px)
    saturate(1)
    brightness(1)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

html.scrolling-depth .layer-near .parallax-sprite {
  filter:
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 0 18px rgba(0,0,0,0.26)) !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -24vh;
    height: 150vh;
  }
}


/* V3.7 — prevent PNG robot parts from being visually cut too much */
.parallax-particles {
  overflow: visible !important;
}

.layer-near .parallax-sprite {
  opacity: var(--sprite-opacity, 0.36) !important;
  filter:
    saturate(1.18)
    brightness(1.18)
    drop-shadow(0 0 22px rgba(0,0,0,0.34)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.2px)
    saturate(1.05)
    brightness(1.10)
    drop-shadow(0 0 16px rgba(0,0,0,0.28)) !important;
}


/* V3.8 — more big pieces, full-page visibility, stronger 3D parallax */
.parallax-particles {
  top: -70vh !important;
  height: 320vh !important;
  overflow: visible !important;
  z-index: 0 !important;
  pointer-events: none;
}

.layer-far,
.layer-mid,
.layer-near {
  z-index: 0 !important;
  opacity: 1 !important;
}

.parallax-sprite {
  transition: none !important;
  opacity: var(--sprite-opacity, 0.24) !important;
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1.2px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 8px rgba(0,0,0,0.18)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.28px)
    saturate(1.04)
    brightness(1.06)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.14)
    brightness(1.12)
    drop-shadow(0 0 22px rgba(0,0,0,0.28)) !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -34vh !important;
    height: 210vh !important;
  }
}


/* V3.9 — better particle distribution across the whole page */
.parallax-particles {
  top: -85vh !important;
  height: 460vh !important;
  overflow: visible !important;
  z-index: 0 !important;
  pointer-events: none;
}

.layer-far,
.layer-mid,
.layer-near {
  z-index: 0 !important;
  opacity: 1 !important;
}

.parallax-sprite {
  transition: none !important;
  opacity: var(--sprite-opacity, 0.24) !important;
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1.1px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 8px rgba(0,0,0,0.18)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.24px)
    saturate(1.05)
    brightness(1.08)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.16)
    brightness(1.14)
    drop-shadow(0 0 22px rgba(0,0,0,0.28)) !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -38vh !important;
    height: 260vh !important;
  }
}


/* V4.1 — more random rotation + more small/mid pieces + fewer big ones */
.layer-far .parallax-sprite {
  opacity: var(--sprite-opacity, 0.14) !important;
}

.layer-mid .parallax-sprite {
  opacity: var(--sprite-opacity, 0.22) !important;
}


/* V4.4 — stronger 3D particle feeling */
.parallax-particles {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.parallax-sprite {
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1.4px)
    saturate(0.88)
    brightness(0.88)
    drop-shadow(0 0 7px rgba(0,0,0,0.16)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.35px)
    saturate(1.02)
    brightness(1.04)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.18)
    brightness(1.14)
    drop-shadow(0 0 24px rgba(0,0,0,0.32)) !important;
}


/* V4.7 — merch lifestyle image + product mockup hover swap */
.product-card {
  overflow: hidden;
}

.product-image-swap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 154, 51, 0.12), transparent 34%),
    linear-gradient(180deg, #e9e9e9, #cfcfcf);
}

.product-image-swap::after {
  content: "Hover";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(9, 7, 8, 0.68);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255, 247, 240, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-image-swap::after {
  opacity: 1;
  transform: translateY(0);
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition:
    opacity 0.55s ease,
    transform 0.65s ease,
    filter 0.65s ease;
}

.product-image-main {
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
}

.product-image-hover {
  object-fit: contain;
  padding: 20px;
  opacity: 0;
  transform: scale(1.04);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.85), transparent 44%),
    linear-gradient(180deg, #efefef, #d5d5d5);
  filter: contrast(1.02) saturate(1.03);
}

.product-card:hover .product-image-main {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(0.5px) brightness(0.88);
}

.product-card:hover .product-image-hover {
  opacity: 1;
  transform: scale(1);
}

/* On touch devices there is no real hover, so the two versions cycle gently. */
@media (hover: none) {
  .product-image-swap::after {
    content: "Preview";
    opacity: 0.9;
    transform: translateY(0);
  }

  .product-image-main {
    animation: merchMainSwap 7.5s ease-in-out infinite;
  }

  .product-image-hover {
    animation: merchHoverSwap 7.5s ease-in-out infinite;
  }

  .product-card:nth-child(2) .product-image-main,
  .product-card:nth-child(2) .product-image-hover {
    animation-delay: 1.2s;
  }

  .product-card:nth-child(3) .product-image-main,
  .product-card:nth-child(3) .product-image-hover {
    animation-delay: 2.4s;
  }

  .product-card:nth-child(4) .product-image-main,
  .product-card:nth-child(4) .product-image-hover {
    animation-delay: 3.6s;
  }

  .product-card:nth-child(5) .product-image-main,
  .product-card:nth-child(5) .product-image-hover {
    animation-delay: 4.8s;
  }

  .product-card:nth-child(6) .product-image-main,
  .product-card:nth-child(6) .product-image-hover {
    animation-delay: 6s;
  }

  @keyframes merchMainSwap {
    0%, 42% {
      opacity: 1;
      transform: scale(1);
      filter: none;
    }
    54%, 88% {
      opacity: 0;
      transform: scale(1.06);
      filter: blur(0.5px) brightness(0.88);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
    }
  }

  @keyframes merchHoverSwap {
    0%, 42% {
      opacity: 0;
      transform: scale(1.04);
    }
    54%, 88% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1.04);
    }
  }
}


/* V4.9 — remove white/grey hover outline around merch mockups */
.product-image-hover {
  object-fit: contain;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 154, 51, 0.20), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(55, 168, 255, 0.10), transparent 42%),
    linear-gradient(180deg, #181111 0%, #0d0a0b 100%) !important;
  filter:
    contrast(1.05)
    saturate(1.06)
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
}

.product-card:hover .product-image-hover {
  opacity: 1;
  transform: scale(0.98);
}

.product-image-swap {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 154, 51, 0.16), transparent 34%),
    linear-gradient(180deg, #161011, #0b0809) !important;
}


/* V5.0 — fix merch hover image cropping */
.product-image-swap {
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
}

.product-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.product-image-main {
  object-fit: cover !important;
}

.product-image-hover {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 42px !important;
  box-sizing: border-box !important;
  transform: scale(0.92) !important;
}

.product-card:hover .product-image-hover {
  transform: scale(0.92) !important;
}

.product-card:hover .product-image-main {
  opacity: 0;
  transform: scale(1.03) !important;
  filter: blur(0.5px) brightness(0.88);
}

@media (hover: none) {
  .product-image-swap {
    aspect-ratio: 1 / 1 !important;
  }

  @keyframes merchHoverSwap {
    0%, 42% {
      opacity: 0;
      transform: scale(0.92);
    }
    54%, 88% {
      opacity: 1;
      transform: scale(0.92);
    }
    100% {
      opacity: 0;
      transform: scale(0.92);
    }
  }
}


/* V5.1 — restore original grey-background merch mockups on hover */
.product-image-hover {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 34px !important;
  box-sizing: border-box !important;
  transform: scale(0.92) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.95), rgba(245,245,245,0.92) 32%, rgba(224,224,224,0.82) 56%, rgba(205,205,205,0.72) 74%, rgba(188,188,188,0.62) 100%),
    linear-gradient(180deg, #efefef 0%, #d9d9d9 100%) !important;
  filter: contrast(1.02) saturate(1.02) !important;
}

.product-card:hover .product-image-hover {
  opacity: 1;
  transform: scale(0.92) !important;
}

.product-image-swap {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 154, 51, 0.12), transparent 34%),
    linear-gradient(180deg, #141011, #0b0809) !important;
}


/* V5.2 — hero title split into three clean lines */
.hero-title span {
  display: block;
}


/* V5.4 — cleaner manual line breaks */
h1 br,
h2 br,
h3 br,
p br,
.section-kicker br {
  display: block;
}


/* V5.7 — reduce hero title size and keep each line intact */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  line-height: 0.98 !important;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2rem, 7vw, 3.1rem) !important;
  }
}


/* V5.8 — fixed bottom robot buddies */
.fixed-bottom-robots {
  position: fixed;
  right: clamp(8px, 2vw, 34px);
  bottom: -24px;
  width: min(38vw, 620px);
  z-index: 18;
  pointer-events: none;
  opacity: 0.92;
  transform: translateY(10%);
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 18px rgba(55, 168, 255, 0.14));
}

.fixed-bottom-robots::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 2%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 168, 255, 0.16), transparent 68%);
  filter: blur(18px);
  z-index: -1;
}

.fixed-bottom-robots img {
  width: 100%;
  height: auto;
  display: block;
  animation: bottomRobotsFloat 5.8s ease-in-out infinite;
}

@keyframes bottomRobotsFloat {
  0%, 100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.4deg);
  }
}

@media (max-width: 900px) {
  .fixed-bottom-robots {
    width: min(58vw, 440px);
    right: -28px;
    bottom: -18px;
    opacity: 0.78;
  }
}

@media (max-width: 620px) {
  .fixed-bottom-robots {
    width: min(76vw, 360px);
    right: -56px;
    bottom: -16px;
    opacity: 0.64;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-bottom-robots img {
    animation: none;
  }
}


/* V5.9 — robot buddies only at the bottom of the site, bottom-left */
.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.fixed-bottom-robots {
  position: absolute !important;
  left: clamp(-70px, -3vw, -24px) !important;
  right: auto !important;
  bottom: -34px !important;
  width: min(34vw, 520px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.86 !important;
  transform: none !important;
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 18px rgba(55, 168, 255, 0.14));
}

.fixed-bottom-robots img {
  width: 100%;
  height: auto;
  display: block;
  animation: bottomRobotsFloat 5.8s ease-in-out infinite;
}

.footer-wrap {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .site-footer {
    min-height: 220px;
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .fixed-bottom-robots {
    width: min(50vw, 380px) !important;
    left: -78px !important;
    bottom: -28px !important;
    opacity: 0.72 !important;
  }
}

@media (max-width: 620px) {
  .site-footer {
    min-height: 190px;
  }

  .fixed-bottom-robots {
    width: min(70vw, 320px) !important;
    left: -92px !important;
    bottom: -24px !important;
    opacity: 0.58 !important;
  }
}


/* V6.0 — footer robot in foreground without covering footer text */
.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.fixed-bottom-robots {
  position: absolute !important;
  left: clamp(-24px, -1vw, 0px) !important;
  bottom: -28px !important;
  width: min(28vw, 430px) !important;
  z-index: 4 !important; /* foreground */
  pointer-events: none !important;
  opacity: 0.96 !important;
  filter:
    drop-shadow(0 20px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 16px rgba(55, 168, 255, 0.16));
}

.fixed-bottom-robots img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-wrap {
  position: relative;
  z-index: 2;
  padding-left: min(30vw, 440px) !important; /* keep text clear from robot */
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 270px;
  }

  .fixed-bottom-robots {
    width: min(30vw, 360px) !important;
    left: -16px !important;
    bottom: -18px !important;
    opacity: 0.9 !important;
  }

  .footer-wrap {
    padding-left: min(30vw, 360px) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 250px;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .fixed-bottom-robots {
    width: min(42vw, 250px) !important;
    left: -16px !important;
    bottom: -12px !important;
    opacity: 0.84 !important;
  }

  .footer-wrap {
    padding-left: min(40vw, 240px) !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 220px;
  }

  .fixed-bottom-robots {
    width: min(44vw, 190px) !important;
    left: -12px !important;
    bottom: -8px !important;
    opacity: 0.78 !important;
  }

  .footer-wrap {
    padding-left: min(42vw, 180px) !important;
  }
}


/* V6.3 — true bigger footer robots using cropped PNG */
.site-footer {
  position: relative !important;
  overflow: hidden !important;
  min-height: 520px !important;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.site-footer .fixed-bottom-robots {
  position: absolute !important;
  left: -18px !important;
  bottom: -32px !important;
  width: clamp(620px, 70vw, 1180px) !important;
  max-width: none !important;
  z-index: 5 !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none !important;
  filter:
    drop-shadow(0 28px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 22px rgba(55, 168, 255, 0.18)) !important;
}

.site-footer .fixed-bottom-robots img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 6 !important;
  padding-left: clamp(440px, 56vw, 900px) !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 440px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(500px, 68vw, 760px) !important;
    left: -18px !important;
    bottom: -26px !important;
  }

  .site-footer .footer-wrap {
    padding-left: clamp(360px, 54vw, 640px) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 330px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(360px, 82vw, 520px) !important;
    left: -22px !important;
    bottom: -18px !important;
    opacity: 0.94 !important;
  }

  .site-footer .footer-wrap {
    padding-left: clamp(230px, 58vw, 360px) !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 280px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(270px, 78vw, 360px) !important;
    left: -18px !important;
    bottom: -12px !important;
  }

  .site-footer .footer-wrap {
    padding-left: clamp(170px, 48vw, 230px) !important;
  }
}


/* V6.4 — footer robot slightly smaller/higher + cleaner footer layout */
.site-footer {
  min-height: 430px !important;
  padding-top: 64px !important;
  padding-bottom: 46px !important;
}

.site-footer .fixed-bottom-robots {
  left: -10px !important;
  bottom: 8px !important;            /* move robot upward */
  width: clamp(520px, 56vw, 900px) !important;  /* slightly smaller */
  z-index: 5 !important;
  opacity: 0.98 !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 6 !important;
  margin-left: auto !important;
  width: min(540px, 100%) !important;
  padding-left: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto !important;
  align-items: start !important;
  gap: 20px 28px !important;
}

.site-footer .footer-title {
  font-size: 1.34rem !important;
  line-height: 1.05 !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.02em !important;
}

.site-footer .footer-text {
  max-width: 320px !important;
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
  color: rgba(255,255,255,0.74) !important;
  margin: 0 !important;
}

.site-footer .footer-meta {
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,0.56) !important;
  white-space: nowrap !important;
  align-self: start !important;
  justify-self: end !important;
  margin-top: 10px !important;
  margin-right: 8px !important;
  text-align: right !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 380px !important;
    padding-top: 54px !important;
    padding-bottom: 38px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(430px, 50vw, 700px) !important;
    left: -10px !important;
    bottom: 8px !important;
  }

  .site-footer .footer-wrap {
    width: min(480px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 310px !important;
    padding-top: 40px !important;
    padding-bottom: 28px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(300px, 58vw, 430px) !important;
    left: -8px !important;
    bottom: 2px !important;
    opacity: 0.92 !important;
  }

  .site-footer .footer-wrap {
    width: min(300px, 100%) !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .site-footer .footer-text {
    max-width: 240px !important;
    font-size: 0.9rem !important;
  }

  .site-footer .footer-meta {
    justify-self: start !important;
    text-align: left !important;
    margin-top: 0 !important;
    white-space: normal !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 250px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(220px, 52vw, 290px) !important;
    left: -6px !important;
    bottom: 2px !important;
  }

  .site-footer .footer-wrap {
    width: min(240px, 100%) !important;
  }

  .site-footer .footer-title {
    font-size: 1.16rem !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
  }
}


/* V6.5 — cleaner footer + better robot placement */
.site-footer {
  position: relative !important;
  overflow: hidden !important;
  min-height: 350px !important;
  padding-top: 34px !important;
  padding-bottom: 26px !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}

.site-footer .fixed-bottom-robots {
  position: absolute !important;
  left: -10px !important;
  bottom: 10px !important;
  width: clamp(430px, 44vw, 720px) !important;
  max-width: none !important;
  z-index: 2 !important;
  opacity: 0.96 !important;
  pointer-events: none !important;
  filter:
    drop-shadow(0 20px 30px rgba(0, 0, 0, 0.40))
    drop-shadow(0 0 16px rgba(55, 168, 255, 0.12)) !important;
}

.site-footer .fixed-bottom-robots img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 5 !important;
  margin-left: auto !important;
  width: min(520px, 100%) !important;
  padding: 18px 22px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(16,18,26,0.42), rgba(14,10,13,0.30)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 1fr) auto !important;
  gap: 18px 22px !important;
  align-items: center !important;
}

.site-footer .footer-title {
  margin: 0 0 6px !important;
  font-size: 1.2rem !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

.site-footer .footer-text {
  margin: 0 !important;
  max-width: 290px !important;
  font-size: 0.90rem !important;
  line-height: 1.45 !important;
  color: rgba(255,255,255,0.72) !important;
}

.site-footer .footer-meta {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,0.56) !important;
  white-space: nowrap !important;
  text-align: right !important;
  justify-self: end !important;
  align-self: center !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 320px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(380px, 42vw, 600px) !important;
    left: -8px !important;
    bottom: 4px !important;
  }

  .site-footer .footer-wrap {
    width: min(470px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 250px !important;
    padding-top: 26px !important;
    padding-bottom: 18px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(250px, 48vw, 360px) !important;
    left: -6px !important;
    bottom: 0 !important;
    opacity: 0.90 !important;
  }

  .site-footer .footer-wrap {
    width: min(280px, 100%) !important;
    padding: 14px 16px !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .site-footer .footer-title {
    font-size: 1.02rem !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    max-width: 220px !important;
  }

  .site-footer .footer-meta {
    white-space: normal !important;
    text-align: left !important;
    justify-self: start !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 220px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(190px, 44vw, 260px) !important;
    left: -4px !important;
  }

  .site-footer .footer-wrap {
    width: min(230px, 100%) !important;
  }
}


/* V6.6 — footer robot smaller, overlapping above the footer line, cleaner right card */
.site-footer {
  position: relative !important;
  overflow: visible !important; /* allow hands/head to rise above the footer line */
  min-height: 265px !important;
  padding-top: 22px !important;
  padding-bottom: 18px !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}

.site-footer .fixed-bottom-robots {
  position: absolute !important;
  left: -8px !important;
  bottom: -6px !important;
  width: clamp(360px, 35vw, 590px) !important; /* smaller */
  max-width: none !important;
  z-index: 4 !important;
  opacity: 0.97 !important;
  pointer-events: none !important;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 14px rgba(55, 168, 255, 0.10)) !important;
}

.site-footer .fixed-bottom-robots img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 6 !important;
  margin-left: auto !important;
  width: min(420px, 100%) !important;
  padding: 16px 18px !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(16,18,26,0.56), rgba(14,10,13,0.42)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: grid !important;
  grid-template-columns: minmax(190px, 1fr) auto !important;
  gap: 14px 18px !important;
  align-items: start !important;
}

.site-footer .footer-title {
  margin: 0 0 6px !important;
  font-size: 1.08rem !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

.site-footer .footer-text {
  margin: 0 !important;
  max-width: 240px !important;
  font-size: 0.84rem !important;
  line-height: 1.42 !important;
  color: rgba(255,255,255,0.72) !important;
}

.site-footer .footer-meta {
  margin: 0 !important;
  font-size: 0.84rem !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,0.54) !important;
  white-space: nowrap !important;
  text-align: right !important;
  justify-self: end !important;
  align-self: start !important;
  padding-top: 2px !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 235px !important;
    padding-top: 18px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(320px, 34vw, 500px) !important;
    left: -8px !important;
    bottom: -4px !important;
  }

  .site-footer .footer-wrap {
    width: min(380px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 205px !important;
    padding-top: 14px !important;
    padding-bottom: 12px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(220px, 42vw, 320px) !important;
    left: -6px !important;
    bottom: -2px !important;
    opacity: 0.92 !important;
  }

  .site-footer .footer-wrap {
    width: min(250px, 100%) !important;
    padding: 12px 14px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .site-footer .footer-title {
    font-size: 0.96rem !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    max-width: 190px !important;
    font-size: 0.76rem !important;
    line-height: 1.34 !important;
  }

  .site-footer .footer-meta {
    white-space: normal !important;
    text-align: left !important;
    justify-self: start !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 180px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(170px, 38vw, 240px) !important;
    left: -4px !important;
  }

  .site-footer .footer-wrap {
    width: min(210px, 100%) !important;
  }
}


/* V6.7 — robots 1.5x bigger + scrollbar cleanup */
html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body {
  position: relative !important;
}

.site-footer {
  overflow-x: hidden !important;
  overflow-y: visible !important; /* keep hands/head rising above divider */
  min-height: 300px !important;
}

.site-footer .fixed-bottom-robots {
  left: -10px !important;
  bottom: -6px !important;
  width: clamp(500px, 49vw, 820px) !important; /* about 1.5x bigger */
  z-index: 4 !important;
}

.site-footer .footer-wrap {
  width: min(390px, 100%) !important;
  margin-right: 10px !important;
}

.site-footer .footer-title {
  font-size: 1.02rem !important;
}

.site-footer .footer-text {
  max-width: 220px !important;
  font-size: 0.80rem !important;
  line-height: 1.4 !important;
}

.site-footer .footer-meta {
  font-size: 0.80rem !important;
  line-height: 1.2 !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 270px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(420px, 46vw, 640px) !important;
    left: -10px !important;
    bottom: -4px !important;
  }

  .site-footer .footer-wrap {
    width: min(360px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 215px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(280px, 52vw, 420px) !important;
    left: -6px !important;
    bottom: -2px !important;
  }

  .site-footer .footer-wrap {
    width: min(240px, 100%) !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 190px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(210px, 46vw, 300px) !important;
    left: -4px !important;
  }

  .site-footer .footer-wrap {
    width: min(205px, 100%) !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.74rem !important;
  }
}


/* V6.8 — bring robots back above the footer line without the bad scroll behavior */
html {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important; /* single page scroll */
}

body {
  position: relative !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: visible !important; /* avoid double-scroll feel */
}

.site-footer {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: visible !important; /* allow robot to rise above divider again */
  min-height: 290px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.site-footer .fixed-bottom-robots {
  position: absolute !important;
  left: -12px !important;
  bottom: -4px !important;
  width: clamp(560px, 53vw, 860px) !important; /* keep the 1.5x bigger feel */
  max-width: none !important;
  z-index: 7 !important;
  transform: translateY(-68px) !important; /* raise them above the footer line */
  opacity: 0.98 !important;
  pointer-events: none !important;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 14px rgba(55, 168, 255, 0.10)) !important;
}

.site-footer .fixed-bottom-robots img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 6 !important;
  width: min(390px, 100%) !important;
  margin-left: auto !important;
  margin-right: 10px !important;
}

@media (max-width: 1100px) {
  .site-footer {
    min-height: 265px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(470px, 50vw, 700px) !important;
    left: -10px !important;
    transform: translateY(-54px) !important;
  }

  .site-footer .footer-wrap {
    width: min(360px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 220px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(300px, 54vw, 460px) !important;
    left: -8px !important;
    transform: translateY(-28px) !important;
  }

  .site-footer .footer-wrap {
    width: min(240px, 100%) !important;
  }
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 190px !important;
  }

  .site-footer .fixed-bottom-robots {
    width: clamp(220px, 48vw, 320px) !important;
    left: -6px !important;
    transform: translateY(-16px) !important;
  }

  .site-footer .footer-wrap {
    width: min(205px, 100%) !important;
  }
}


/* V6.9 — force footer robots to render in front + remove footer clutter */
.site-footer {
  position: relative !important;
  z-index: 50 !important;            /* raise whole footer stacking context */
  isolation: isolate !important;     /* cleaner stacking */
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.site-footer .fixed-bottom-robots {
  position: absolute !important;
  z-index: 60 !important;            /* above the footer and previous section */
  left: -12px !important;
  bottom: -4px !important;
  width: clamp(560px, 53vw, 860px) !important;
  transform: translateY(-72px) !important; /* keep them rising above the line */
  pointer-events: none !important;
}

.site-footer .fixed-bottom-robots img {
  position: relative !important;
  z-index: 60 !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 61 !important;
}

@media (max-width: 1100px) {
  .site-footer .fixed-bottom-robots {
    width: clamp(470px, 50vw, 700px) !important;
    transform: translateY(-58px) !important;
  }
}

@media (max-width: 760px) {
  .site-footer .fixed-bottom-robots {
    width: clamp(300px, 54vw, 460px) !important;
    transform: translateY(-30px) !important;
  }
}

@media (max-width: 560px) {
  .site-footer .fixed-bottom-robots {
    width: clamp(220px, 48vw, 320px) !important;
    transform: translateY(-18px) !important;
  }
}


/* V7.0 — dedicated robot overlay between main and footer so it truly appears in front */
html, body {
  overflow-x: hidden !important;
}

.footer-robot-overlay {
  position: relative !important;
  height: 0 !important;
  z-index: 140 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.footer-robot-overlay img {
  position: absolute !important;
  left: -14px !important;
  top: -215px !important;
  width: clamp(560px, 53vw, 860px) !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  z-index: 140 !important;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 14px rgba(55, 168, 255, 0.10)) !important;
}

.site-footer {
  position: relative !important;
  z-index: 30 !important;
  min-height: 190px !important;
  padding-top: 16px !important;
  padding-bottom: 14px !important;
  overflow: hidden !important;
}

.site-footer .footer-wrap {
  position: relative !important;
  z-index: 31 !important;
  width: min(390px, 100%) !important;
  margin-left: auto !important;
  margin-right: 10px !important;
}

.site-footer .footer-title {
  margin: 0 0 6px !important;
  font-size: 1.02rem !important;
}

.site-footer .footer-text {
  margin: 0 !important;
  max-width: 220px !important;
  font-size: 0.80rem !important;
  line-height: 1.4 !important;
}

.site-footer .footer-meta {
  font-size: 0.80rem !important;
  line-height: 1.2 !important;
}

@media (max-width: 1100px) {
  .footer-robot-overlay img {
    width: clamp(470px, 50vw, 700px) !important;
    top: -180px !important;
    left: -10px !important;
  }
}

@media (max-width: 760px) {
  .footer-robot-overlay img {
    width: clamp(300px, 54vw, 460px) !important;
    top: -105px !important;
    left: -8px !important;
  }

  .site-footer .footer-wrap {
    width: min(240px, 100%) !important;
  }
}

@media (max-width: 560px) {
  .footer-robot-overlay img {
    width: clamp(220px, 48vw, 320px) !important;
    top: -70px !important;
    left: -6px !important;
  }

  .site-footer .footer-wrap {
    width: min(205px, 100%) !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.74rem !important;
  }
}


/* V7.1 — single scrollbar fix */
html {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important; /* one browser scrollbar */
}

body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: clip !important; /* prevent body from creating a second scrollbar */
}

/* Keep the robot overlay visible but prevent it from creating its own scroll area */
.footer-robot-overlay {
  overflow: visible !important;
  contain: layout style !important;
}

/* Do not let the big robot PNG add extra page width */
.footer-robot-overlay img {
  max-width: none !important;
}

/* Older footer rules had overflow-y: visible; keep footer itself from becoming a scroll container */
.site-footer {
  overflow: hidden !important;
}


/* V7.2 — make bottom robots about 2x larger */
.footer-robot-overlay img {
  left: -20px !important;
  top: -360px !important;
  width: clamp(980px, 86vw, 1500px) !important;
}

@media (max-width: 1100px) {
  .footer-robot-overlay img {
    left: -16px !important;
    top: -280px !important;
    width: clamp(760px, 84vw, 1100px) !important;
  }
}

@media (max-width: 760px) {
  .footer-robot-overlay img {
    left: -10px !important;
    top: -170px !important;
    width: clamp(470px, 80vw, 700px) !important;
  }
}

@media (max-width: 560px) {
  .footer-robot-overlay img {
    left: -8px !important;
    top: -110px !important;
    width: clamp(300px, 76vw, 430px) !important;
  }
}


/* V7.3 — mobile-friendly pass */
@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 1120px);
  }

  .section {
    padding: 68px 0 !important;
  }

  .hero {
    min-height: auto !important;
  }

  .hero-content {
    padding: 96px 0 54px !important;
  }

  .hero-card {
    padding: 26px !important;
    border-radius: 24px !important;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 9vw, 4rem) !important;
  }

  .hero-title span {
    display: block;
    white-space: nowrap;
  }

  .hero-text {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .section-head h2,
  .section-copy h2,
  .cta-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .gallery-grid,
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .section-grid,
  .cta-panel,
  .contact-panel {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 26px !important;
  }

  .contact-form {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
  }

  .section {
    padding: 54px 0 !important;
  }

  .nav-wrap {
    padding: 10px 0 !important;
    gap: 12px !important;
  }

  .brand {
    gap: 10px !important;
    min-width: 0 !important;
  }

  .brand-logo {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }

  .brand-title {
    font-size: 0.94rem !important;
  }

  .brand-subtitle {
    font-size: 0.64rem !important;
    letter-spacing: 0.10em !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 auto !important;
  }

  .main-nav {
    gap: 12px !important;
  }

  .hero-content {
    padding: 84px 0 40px !important;
  }

  .hero-card {
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 14px !important;
    padding: 7px 12px !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.12em !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.2vw, 2.8rem) !important;
    line-height: 0.96 !important;
  }

  .hero-title span {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero-text {
    margin-top: 16px !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .button {
    width: 100% !important;
    min-height: 50px !important;
  }

  .hero-points {
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .hero-points li {
    width: 100% !important;
    font-size: 0.88rem !important;
    padding: 10px 12px !important;
  }

  .section-head h2,
  .section-copy h2,
  .cta-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem) !important;
    line-height: 1.03 !important;
  }

  .feature-grid,
  .gallery-grid,
  .merch-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .feature-card {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .gallery-card,
  .product-card {
    border-radius: 20px !important;
  }

  .gallery-card img {
    aspect-ratio: 16 / 11 !important;
  }

  .product-image-swap {
    aspect-ratio: 4 / 3 !important;
  }

  .product-image-swap::after {
    content: "Tap" !important;
    opacity: 0.82 !important;
    transform: none !important;
    font-size: 0.64rem !important;
    padding: 6px 9px !important;
  }

  .product-body {
    padding: 16px !important;
  }

  .product-body h3 {
    font-size: 1.12rem !important;
  }

  .product-body p {
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
  }

  .product-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .trailer-poster,
  .trailer-poster img,
  .youtube-direct,
  .youtube-direct iframe {
    min-height: 220px !important;
    border-radius: 20px !important;
  }

  .contact-panel {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .contact-form {
    gap: 12px !important;
  }

  .contact-form label {
    font-size: 0.92rem !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 13px !important;
    border-radius: 12px !important;
    font-size: 16px !important; /* avoids zoom on iPhone */
  }

  .footer-robot-overlay img {
    left: -6px !important;
    top: -72px !important;
    width: clamp(180px, 42vw, 260px) !important;
  }

  .site-footer {
    min-height: 150px !important;
    padding-top: 18px !important;
    padding-bottom: 14px !important;
  }

  .site-footer .footer-wrap {
    width: min(220px, calc(100% - 8px)) !important;
    margin-right: 0 !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }

  .site-footer .footer-title {
    font-size: 0.94rem !important;
    margin-bottom: 4px !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.35rem) !important;
  }

  .hero-title span {
    white-space: nowrap !important;
  }

  .footer-robot-overlay img {
    left: -4px !important;
    top: -58px !important;
    width: clamp(150px, 40vw, 210px) !important;
    opacity: 0.96 !important;
  }

  .site-footer {
    min-height: 132px !important;
  }

  .site-footer .footer-wrap {
    width: min(190px, calc(100% - 6px)) !important;
    padding: 10px 12px !important;
  }

  .site-footer .footer-text,
  .site-footer .footer-meta {
    font-size: 0.68rem !important;
  }
}


/* V7.4 — hide the bottom blue robot overlay on mobile only */
@media (max-width: 760px) {
  .footer-robot-overlay {
    display: none !important;
  }

  .site-footer {
    min-height: auto !important;
  }

  .site-footer .footer-wrap {
    width: min(100%, 320px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Merch product links */
.product-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-link:focus-visible {
  outline: 2px solid rgba(255, 154, 51, 0.95);
  outline-offset: 4px;
}

.product-link .button {
  pointer-events: none;
}



.product-coming-soon .button {
  opacity: 0.95;
}

.product-coming-soon {
  cursor: default;
}


/* V7.8 — hero background image at full strength */
.hero-media img {
  opacity: 1 !important;
  filter: none !important;
}

.hero-overlay {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* V8.5 — no-deformation + fast-scroll fix
   This version keeps the original PNG files and only changes display/loading behavior.
   It also uses a new CSS filename so the browser cannot keep the old cached stretched rules. */
html,
body {
  background-color: #090608 !important;
}

/* The reveal animation was the main reason for blank/white sections on very fast scroll. */
.reveal,
.js-enabled .reveal,
.js-enabled .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}

/* Universal safety: never stretch a normal image vertically. */
img {
  max-width: 100%;
  height: auto;
}

/* Dark placeholders while large PNG images decode, instead of white flashes. */
.hero-media,
.section-media,
.rounded-image,
.gallery-card,
.product-card,
.product-image-swap,
.video-wrap,
.trailer-copy,
.cta-panel,
.contact-panel {
  background-color: #0b0809 !important;
}

/* Normal content images keep their real ratio. */
.section-media {
  align-self: center !important;
}

.section-media > img.rounded-image,
.rounded-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: initial !important;
  object-position: center center !important;
}

/* Gallery images also keep their real ratio in this safe version. */
.gallery-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: initial !important;
}

/* Hero background is the only full-cover image by design. */
.hero-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Product cards stay square, but with object-fit so they crop/contain instead of stretching. */
.product-image-swap {
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

.product-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.product-image-main {
  object-fit: cover !important;
  object-position: center center !important;
}

.product-image-hover {
  object-fit: contain !important;
  object-position: center center !important;
}

.brand-logo,
.fixed-bottom-robots img,
.footer-robot-overlay img {
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    display: none !important;
  }
}


/* V8.6 — Privacy Policy page + footer link */
.footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
}

.footer-privacy {
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 14px !important;
  font-size: 0.9rem !important;
  white-space: nowrap !important;
}

.privacy-main {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.privacy-card {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(55, 168, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin: 0 0 24px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.privacy-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.privacy-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.privacy-email {
  display: inline-flex;
  color: #ffd2aa;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 154, 51, 0.42);
}

.privacy-updated {
  margin-top: 28px !important;
  color: rgba(255,255,255,0.55) !important;
  font-weight: 800;
}

.privacy-actions {
  margin-top: 30px;
}

@media (max-width: 760px) {
  .footer-links {
    align-items: flex-start !important;
  }

  .footer-privacy {
    min-height: 40px !important;
    font-size: 0.82rem !important;
  }

  .privacy-nav {
    display: flex !important;
    gap: 16px !important;
  }
}

/* Project S scoring / leaderboard */
.scoring-section {
  scroll-margin-top: 96px;
}

.scoring-panel {
  border: 1px solid rgba(101, 224, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(80, 220, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(12, 18, 36, 0.92), rgba(5, 8, 18, 0.92));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), inset 0 0 55px rgba(67, 189, 255, 0.08);
  padding: clamp(18px, 3vw, 32px);
}

.scoring-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.score-label {
  display: block;
  color: rgba(218, 243, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

#globalRobotsDestroyed {
  display: block;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.92;
  color: #7ff3ff;
  text-shadow: 0 0 28px rgba(127, 243, 255, 0.48);
}


#monthlyRobotsDestroyed {
  display: block;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 0.95;
  color: #ffe28a;
  text-shadow: 0 0 24px rgba(255, 226, 138, 0.34);
}

.score-total-card {
  min-width: min(100%, 340px);
}

.score-total-card-secondary {
  padding-left: clamp(0px, 2vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.leaderboard-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.leaderboard-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(240, 250, 255, 0.78);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.leaderboard-tab:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.leaderboard-tab.active {
  color: #07101f;
  background: linear-gradient(135deg, #7ff3ff, #ffe28a);
  box-shadow: 0 12px 32px rgba(127, 243, 255, 0.18);
}

.leaderboard-period-label {
  color: rgba(255, 226, 138, 0.82);
  font-weight: 800;
  margin: -4px 0 12px;
}


.leaderboard-status {
  color: rgba(218, 243, 255, 0.78);
  margin: 0 0 12px;
  min-height: 1.4em;
}

.leaderboard-status.error {
  color: #ff8795;
}

.leaderboard-scroll {
  max-height: 620px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.leaderboard-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(4, 9, 22, 0.96);
  color: #ffe28a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.leaderboard-table td {
  color: rgba(240, 250, 255, 0.92);
}

.leaderboard-table tbody tr:hover {
  background: rgba(127, 243, 255, 0.07);
}

.leaderboard-rank {
  font-weight: 900;
  color: #7ff3ff;
}

.leaderboard-name {
  font-weight: 900;
  color: #ffffff;
}

.leaderboard-number {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
  .scoring-hero {
    align-items: flex-start;
  }

  .score-total-card-secondary {
    padding-left: 0;
    border-left: 0;
  }

  .leaderboard-tabs {
    width: 100%;
  }

  .leaderboard-tab {
    flex: 1;
  }

  .leaderboard-scroll {
    max-height: 520px;
  }
}
