/** Shopify CDN: Minification failed

Line 409:12 Expected identifier but found whitespace
Line 409:17 Unexpected ";"
Line 576:0 Unexpected "}"
Line 599:27 Unexpected "*"
Line 1267:11 Expected identifier but found whitespace
Line 1267:12 Unexpected "linear-gradient("
Line 1349:0 Unexpected "<"
Line 1672:0 Unexpected "<"
Line 1727:2 Unexpected "}"
Line 1733:0 Unexpected "}"
... and 5 more hidden warnings

**/
/* ===== MV ELITE CLEAN SYSTEM ===== */

/* ============================= */
/* 🌌 GLOBAL BACKGROUND */
/* ============================= */
body {
  background: linear-gradient(-45deg, #0b1f1a, #1a0b2e, #0b1f1a, #1a0b2e);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: white;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================= */
/* 🔤 GLOBAL TEXT */
/* ============================= */
h1, h2, h3, h4, h5, h6,
p, span, li, a {
  color: white;
}

/* ============================= */
/* 🧱 SECTION SPACING */
/* ============================= */
.section {
  margin: 120px 0;
}

@media (max-width: 749px) {
  .section {
    margin: 80px 0;
  }
}

/* ============================= */
/* 🔝 HEADER */
/* ============================= */
.header-wrapper {
  background: rgba(0,0,0,0.4) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header {
  padding: 8px 40px !important;
}

.header__heading-link,
.header__menu-item,
.header__icon {
  color: white !important;
}

/* ============================= */
/* 🔘 BUTTONS */
/* ============================= */
.button, button {
  padding: 14px 36px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: white;
  transition: all 0.3s ease;
}

.button:hover, button:hover {
  background: linear-gradient(90deg, #00ffc8, #8c00ff);
  color: black;
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(0,255,200,0.25),
    0 0 20px rgba(140,0,255,0.25);
}

/* ============================= */
/* 🛍 PRODUCT */
/* ============================= */
.product__title h1 {
  font-size: 32px;
}

.product__description {
  opacity: 0.8;
}

.product-form__submit {
  width: 100%;
  padding: 16px;
}

/* ============================= */
/* 🖼 IMAGE EFFECTS */
/* ============================= */
.card img {
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* ============================= */
/* 🎬 SCROLL FADE SYSTEM */
/* ============================= */
.fade-scroll {
  transition: all 0.8s cubic-bezier(0.22,1,0.36,1);
}

.fade-scroll.hidden {
  opacity: 0;
  transform: translateY(40px);
}

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

/* ============================= */
/* 🎥 .header {
  position: relative;
  z-index: 99999 !important;
} TEXT */
/* ============================= */
.cinematic-title {
  font-size: 56px;
  letter-spacing: 12px;
  line-height: 1.5;
  text-align: center;

  text-shadow:
    0 0 10px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);
}

.cinematic-title span {
  display: block;
}

/* ============================= */
/* ✨ LIGHT SWEEP BASE */
/* ============================= */
.line-real {
  position: relative;
  overflow: hidden;
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 768px) {
  .cinematic-title {
    font-size: 28px;
    letter-spacing: 6px;
  }
}

/* ============================= */
/* 🚫 REMOVE GAPS */
/* ============================= */
footer, main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.shopify-section:last-child {
  margin-bottom: 0 !important;
}

/* ============================= */
/* 🎯 UTILITY */
/* ============================= */
* {
  -webkit-font-smoothing: antialiased;
}

img {
  border-radius: 2px;
}
/* ============================= */
/* ✨ LIGHT SWEEP (FINAL CLEAN) */
/* ============================= */

.sweep-line {
  position: relative;
  display: block;
  overflow: hidden;
}

/* REAL LIGHT BAR */
.sweep-bar {
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
}
/* ===== CINEMATIC TEXT ===== */

.cinematic-text {
  color: white;
  font-size: 48px;
  letter-spacing: 10px;
  line-height: 1.4;
  text-align: center;
}

/* EACH LINE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

/* REVEAL */
.cinematic-text.active span {
  animation: revealUp 1s ease forwards;
}

/* STAGGER */
.cinematic-text span:nth-child(1) { animation-delay: 0.2s; }
.cinematic-text span:nth-child(2) { animation-delay: 0.6s; }
.cinematic-text span:nth-child(3) { animation-delay: 1s; }

/* REVEAL ANIMATION */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PREMIUM CINEMATIC TEXT ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  line-height: 1.4;
  text-align: center;

  /* subtle luxury glow */
  text-shadow:
    0 0 10px rgba(64,224,208,0.15),
    0 0 25px rgba(138,43,226,0.12);
}

/* LINE BASE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(50px) scale(0.96);
}

/* REVEAL */
.cinematic-text.active span {
  animation: revealUp 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* STAGGER */
.cinematic-text span:nth-child(1) { animation-delay: 0.2s; }
.cinematic-text span:nth-child(2) { animation-delay: 0.6s; }
.cinematic-text span:nth-child(3) { animation-delay: 1s; }

/* REVEAL ANIMATION */
@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== INSANE SWEEP SYSTEM ===== */

.cinematic-text span {
  position: relative;
  overflow: hidden;
}

/* LIGHT ELEMENT (JS CONTROLLED) */
.sweep-glow {
  position: absolute;
  top: -20%;
  left: -150%;
  width: 160%;
  height: 140%;
  pointer-events: none;
  z-index: 3;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(64,224,208,0.6),
    rgba(255,255,255,1),
    rgba(138,43,226,0.6),
    transparent
  );

  filter: blur(10px);
  transform: skewX(-20deg);

  opacity: 0.9;
  transition: left 0.15s linear, opacity 0.3s ease;
}

/* TRAIL FADE */
.sweep-glow.fade {
  opacity: 0.2;
}
.cinematic-text {
  color: white;
  font-size: 48px;
  letter-spacing: 10px;
  text-align: center;
}

.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* ===== PREMIUM SWEEP ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  text-align: center;

  /* subtle glow */
  text-shadow:
    0 0 8px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);
}

.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    red 40%,
    yellow 50%,
    red 60%,
    transparent 100%
  );

  transform: skewX(-20deg);
  opacity: 1 !important;
  filter: none !important;
}

  animation: none;
}

/* STAGGER */
.cinematic-text span:nth-child(1)::after { animation-delay: 0s; }
.cinematic-text span:nth-child(2)::after { animation-delay: 0.4s; }
.cinematic-text span:nth-child(3)::after { animation-delay: 0.8s; }

@keyframes premiumSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* MOBILE */
@media (max-width: 768px) {
  .cinematic-text {
    font-size: 28px;
    letter-spacing: 6px;
  }
}
/* TRIGGERED STATE */
.cinematic-text.active span::after {
  animation: premiumSweep 2.2s ease;
}
/* ===== CINEMATIC POLISHED ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);

  transition: opacity 0.6s ease, transform 0.6s ease;

  text-shadow:
    0 0 8px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);
}

/* ACTIVE STATE (fade in) */
.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* LINE BASE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* ===== SWEEP ===== */

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -150%;
  width: 150%;
  height: 120%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(64,224,208,0.4),
    rgba(255,255,255,1),
    rgba(138,43,226,0.4),
    transparent 100%
  );

  transform: skewX(-20deg);
  filter: blur(6px);

  animation: none;
}

/* TRIGGER SWEEP */
.cinematic-text.active span:nth-child(1)::after {
  animation: premiumSweep 2.4s cubic-bezier(0.22,1,0.36,1) forwards 0.3s;
}

.cinematic-text.active span:nth-child(2)::after {
  animation: premiumSweep 2.2s cubic-bezier(0.22,1,0.36,1) forwards 0.6s;
}

.cinematic-text.active span:nth-child(3)::after {
  animation: premiumSweep 2s cubic-bezier(0.22,1,0.36,1) forwards 0.9s;
}

/* SWEEP MOTION */
@keyframes premiumSweep {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* MOBILE */
@media (max-width: 768px) {
  .cinematic-text {
    font-size: 28px;
    letter-spacing: 6px;
  }
}
/* ===== GLOW PULSE (PREMIUM) ===== */

.cinematic-text {
  animation: glowPulse 4s ease-in-out infinite;
}

/* GLOW BREATHING */
@keyframes glowPulse {

  0% {
    text-shadow:
      0 0 6px rgba(64,224,208,0.12),
      0 0 12px rgba(138,43,226,0.08);
  }

  50% {
    text-shadow:
      0 0 14px rgba(64,224,208,0.25),
      0 0 28px rgba(138,43,226,0.2);
  }

  100% {
    text-shadow:
      0 0 6px rgba(64,224,208,0.12),
      0 0 12px rgba(138,43,226,0.08);
  }
}
/* ===== REMOVE SECTION GAPS ===== */

/* kill default spacing */
.shopify-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* remove inner spacing */
.section {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* remove spacing between sections */
.shopify-section + .shopify-section {
  margin-top: -1px; /* prevents tiny line gaps */
}
/* ===== UNIFY BACKGROUND ===== */

body,
/* 🎬 BASE CINEMATIC BACKGROUND */
body {
  background: linear-gradient(
    135deg,
    #0b1f1a,
    #0a0f2c,
    #2a0a3d
  );
  background-attachment: fixed;
}
}

/* remove section backgrounds */
.shopify-section,
.section,
.color-background-1,
.color-background-2 {
  background: transparent !important;
}
/* ===== CONTROLLED SPACING ===== */

.section-spacing {
  padding: 100px 20px;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 20px;
  }
}
/* ===== FIX TOP GAP ON CUSTOM LIQUID ===== */

/* remove built-in section padding */
#shopify-section-template--* .shopify-section,
.shopify-section {
  padding-top: 0 !important;
}

/* remove ONLY top padding from first section */
.shopify-section:first-child {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* remove Dawn default spacing variable */
:root {
  --spacing-sections-desktop: 0px !important;
  --spacing-sections-mobile: 0px !important;
}
#cinematic-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ===== MOBILE HERO FIX ===== */

@media (max-width: 768px) {

  .cinematic-text,
  .cinematic-title {
    font-size: 28px !important;
    letter-spacing: 4px !important;
    line-height: 1.3;
  }

  .cinematic-text span,
  .cinematic-title span {
    margin-bottom: 6px;
  }

}
/* ===== FIX BUTTON OVERLAP (MOBILE) ===== */

@media (max-width: 768px) {

  .project-buttons {
    display: flex;
    flex-direction: column;   /* STACK */
    align-items: center;
    gap: 12px;               /* space between buttons */
  }

  .project-btn {
    width: 100%;             /* full width */
    max-width: 320px;        /* keeps it clean */
    text-align: center;
  }

}
@media (max-width: 768px) {

  .project-btn.primary {
    width: 100%;
  }

  .project-btn.secondary {
    width: 100%;
    opacity: 0.85;
  }

}
/* ===== FORCE BUTTON STACK FIX ===== */

@media (max-width: 768px) {

  .project-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100%;
  }

  .project-buttons a {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .project-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

}
/* ===== PERFECT BUTTON CENTER (MOBILE) ===== */

@media (max-width: 768px) {

  .project-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
  }

  .project-btn {
    width: 90% !important;
    max-width: 320px !important;
    margin: 0 auto !important;   /* 🔥 THIS CENTERS IT */
    text-align: center !important;
  }

}
/* 🌫 CINEMATIC LIGHT ATMOSPHERE */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(64,224,208,0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(138,43,226,0.15), transparent 60%);

  filter: blur(80px);
  animation: ambientMove 20s ease-in-out infinite;
}

@keyframes ambientMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 20px); }
  100% { transform: translate(0, 0); }
}
.banner__media img {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.cinematic-text {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(64,224,208,0.15),
      0 0 20px rgba(138,43,226,0.12);
  }
  50% {
    text-shadow:
      0 0 20px rgba(64,224,208,0.3),
      0 0 40px rgba(138,43,226,0.25);
  }
}
/* 🌫 CINEMATIC LIGHT CLOUDS */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(64,224,208,0.12), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(138,43,226,0.12), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 70%);

  filter: blur(80px);
  animation: ambientMove 25s ease-in-out infinite;
}

@keyframes ambientMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 30px); }
  100% { transform: translate(0, 0); }
}
/* 🎥 DARK EDGE FOCUS */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(
    circle at center,
    transparent 60%,
    rgba(0,0,0,0.6) 100%
  );
}
/* 🎞 FILM GRAIN */
#MainContent::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.12'/%3E%3C/svg%3E");

  opacity: 0.12;
  mix-blend-mode: overlay;
}
.banner__media img {
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
#MainContent,
.header-wrapper,
footer {
  position: relative;
  z-index: 3;
}
/* ✨ GOD RAYS */
.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(circle at 30% 10%, rgba(64,224,208,0.08), transparent 70%),
    radial-gradient(circle at 70% 15%, rgba(138,43,226,0.08), transparent 70%);

  filter: blur(60px);
  opacity: 0.6;
}
/* 🎥 PARALLAX FEEL */
.banner__media img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
/* 🎬 FILM REVEAL */
.cine-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(8px);

  transition:
    opacity 1.2s cubic-bezier(0.22,1,0.36,1),
    transform 1.2s cubic-bezier(0.22,1,0.36,1),
    filter 1.2s ease;
}

.cine-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* 🌫 LIGHT SHIFT */
body::before {
  animation: ambientMove 25s ease-in-out infinite;
  transition: opacity 1s ease;
}

body.scrolled::before {
  opacity: 0.6;
}
/* SECTION */
.events-section {
  text-align: center;
  padding: 120px 20px;
}

/* TITLE */
.events-title {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.events-sub {
  opacity: 0.7;
  margin-bottom: 60px;
}

/* GRID */
.events-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.event-card {
  width: 260px;
  padding: 30px;

  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;

  backdrop-filter: blur(10px);

  transition: all 0.4s ease;
}

/* HOVER */
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.3);

  box-shadow:
    0 0 20px rgba(64,224,208,0.15),
    0 0 30px rgba(138,43,226,0.1);
}

/* DATE */
.event-date {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 10px;
}

/* BUTTON */
.event-btn {
  display: inline-block;
  margin-top: 20px;

  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.4);

  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;

  transition: all 0.3s ease;
}

.event-btn:hover {
  background: white;
  color: black;
}
/* 🔥 FORCE SECTION ABOVE BACKGROUND */
.events-section {
  position: relative;
  z-index: 5; /* IMPORTANT */

  padding: 120px 20px;
  text-align: center;
}

/* CONTAINER */
.events-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TEXT FIX */
.events-title {
  font-size: 32px;
  letter-spacing: 4px;
  color: white; /* FORCE COLOR */
}

.events-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
}

/* GRID */
.events-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.event-card {
  width: 260px;
  padding: 30px;

  background: rgba(0,0,0,0.5); /* 🔥 THIS MAKES IT VISIBLE */
  border-radius: 10px;
  backdrop-filter: blur(10px);

  color: white;

  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}
/* 🔥 SECTION FIX */
.events-section {
  position: relative;
  z-index: 10;
  padding: 120px 20px;
}

/* WRAPPER = VISIBILITY LAYER */
.events-wrapper {
  max-width: 1100px;
  margin: 0 auto;

  background: rgba(0, 0, 0, 0.55); /* 🔥 THIS FIXES EVERYTHING */
  border-radius: 16px;
  padding: 60px 30px;

  backdrop-filter: blur(20px);
}

/* TEXT */
.events-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 4px;
  color: white;
}

.events-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
}

/* GRID */
.events-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.event-card {
  width: 260px;
  padding: 25px;
  border-radius: 10px;

  background: rgba(255,255,255,0.05);
  color: white;

  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* DATE */
.event-date {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}

/* BUTTON */
.event-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  border: 1px solid white;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: white;
}
body::before,
body::after,
#MainContent::after {
  z-index: 0 !important;
}
#MainContent,
.shopify-section,
.events-section {
  position: relative;
  z-index: 10 !important;
}
/* 🎬 CINEMATIC HEADER */
.cine-header {
  text-align: center;
  margin-bottom: 60px;
}

/* TITLE */
.cine-title {
  font-size: 42px;
  letter-spacing: 10px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* LINES */
.cine-title span {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

/* ANIMATION */
.cine-title.active span {
  animation: riseFade 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* STAGGER */
.cine-title span:nth-child(1) { animation-delay: 0.2s; }
.cine-title span:nth-child(2) { animation-delay: 0.6s; }

/* RISE EFFECT */
@keyframes riseFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ LIGHT SWEEP */
.cine-title span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transform: skewX(-20deg);
}

.cine-title.active span:nth-child(1)::after {
  animation: sweep 1.5s ease forwards 0.8s;
}

.cine-title.active span:nth-child(2)::after {
  animation: sweep 1.5s ease forwards 1.2s;
}

/* SWEEP ANIMATION */
@keyframes sweep {
  from { left: -120%; }
  to { left: 120%; }
}

/* ✨ GLOW */
.cine-title {
  text-shadow:
    0 0 10px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);

  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(64,224,208,0.15),
      0 0 20px rgba(138,43,226,0.12);
  }
  50% {
    text-shadow:
      0 0 20px rgba(64,224,208,0.3),
      0 0 40px rgba(138,43,226,0.25);
  }
}
.cine-title {
  font-size: 42px;
  letter-spacing: 10px;
  color: white;

  opacity: 0;
  transform: translateY(40px);

  animation: cineFade 1.2s ease forwards;
}

@keyframes cineFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ LIGHT SWEEP */
.cine-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transform: skewX(-20deg);
  animation: sweep 1.8s ease forwards 1s;
}

@keyframes sweep {
  from { left: -120%; }
  to { left: 120%; }
}
/* ✨ GLOBAL LIGHT SWEEP (REUSABLE) */
.light-sweep {
  position: relative;
  overflow: hidden;
}

.light-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  transform: skewX(-20deg);
  opacity: 0;

  animation: sweepPass 1.6s ease forwards;
}

/* SWEEP ANIMATION */
@keyframes sweepPass {
  0% {
    left: -120%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
background: linear-gradient(
  120deg,
  transparent 0%,
  rgba(255,255,255,0.9) 50%,
  transparent 100%
);
/* INITIAL STATE */
.light-sweep-trigger {
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.light-sweep-trigger.active {
  opacity: 1;
  transform: translateY(0);
}

/* SWEEP BAR */
.light-sweep-trigger::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
}

/* RUN ANIMATION */
.light-sweep-trigger.active::after {
  animation: sweepMove 1.2s ease;
}

@keyframes sweepMove {
  from { left: -150%; }
  to { left: 150%; }
}
.light-sweep-trigger.active::after {
  animation: sweepMove 1.2s ease 0.3s;
}
/* CENTER HEADER PERFECTLY */
.cine-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CENTER TEXT + FIX WIDTH */
.cine-title {
  text-align: center;
  margin: 0 auto;
}
.project-policy {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

.project-policy a {
  color: white;
  text-decoration: underline;
}

.project-policy a:hover {
  opacity: 0.7;
}
<div class="policy-check">
  <label>
    <input type="checkbox" required>
    I agree to the Terms & Conditions
  </label>
</div>
/* 🎬 CINEMATIC BUTTON */
button,
input[type="submit"] {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  letter-spacing: 2px;
  font-size: 12px;
  border-radius: 6px;

  transition: all 0.3s ease;
}

/* ✨ HOVER GLOW */
button:hover,
input[type="submit"]:hover {
  background: white;
  color: black !important;

  box-shadow:
    0 0 20px rgba(64,224,208,0.3),
    0 0 30px rgba(138,43,226,0.2);
}
/* 🎬 CINEMATIC BUTTON */
button,
input[type="submit"] {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  letter-spacing: 2px;
  font-size: 12px;
  border-radius: 6px;

  transition: all 0.3s ease;
}

/* ✨ HOVER GLOW */
button:hover,
input[type="submit"]:hover {
  background: white;
  color: black !important;

  box-shadow:
    0 0 20px rgba(64,224,208,0.3),
    0 0 30px rgba(138,43,226,0.2);
}
/* 🔥 FORCE SUBMIT BUTTON STYLE */
input[type="submit"] {
  display: block;
  width: 100%;

  background: white !important;
  color: black !important;

  padding: 16px 20px;
  font-size: 14px;
  letter-spacing: 2px;

  border: none;
  border-radius: 6px;

  cursor: pointer;
}

/* ✨ HOVER */
input[type="submit"]:hover {
  background: linear-gradient(135deg, #40e0d0, #8a2be2);
  color: white !important;
}
input[type="submit"] {
  background: red !important;
  color: yellow !important;
}
/* 🔥 FORCE BUTTON TEXT VISIBLE */
button span {
  color: black !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* FORM WRAPPER */
form {
  max-width: 700px;
  margin: 0 auto;
}

/* INPUTS + TEXTAREA + SELECT */
form input,
form textarea,
form select {
  width: 100%;
  padding: 16px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;

  color: white;
  font-size: 14px;

  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* PLACEHOLDER */
form input::placeholder,
form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
/* FOCUS GLOW */
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;

  border-color: rgba(64,224,208,0.6);

  box-shadow:
    0 0 0 1px rgba(64,224,208,0.4),
    0 0 20px rgba(64,224,208,0.2);

  background: rgba(255,255,255,0.08);
}
/* LABELS */
form label {
  display: block;
  margin-bottom: 8px;

  letter-spacing: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
/* FIELD SPACING */
form > * {
  margin-bottom: 24px;
}
/* SUBMIT BUTTON */
form button {
  width: 100%;
  padding: 16px;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;

  color: white !important;
  letter-spacing: 3px;

  transition: all 0.3s ease;
}

/* HOVER */
form button:hover {
  background: white;

  box-shadow:
    0 0 20px rgba(64,224,208,0.3),
    0 0 30px rgba(138,43,226,0.2);
}

form button:hover span {
  color: black !important;
}
/* 🌐 TOGGLE WRAPPER */
.policy-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

/* BUTTONS */
.policy-toggle button {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 2px;

  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* ACTIVE */
.policy-toggle button.active {
  background: white;
  color: black;
}

/* HOVER */
.policy-toggle button:hover {
  background: white;
  color: black;
}
.policy-content {
  animation: fadeLang 0.4s ease;
}

@keyframes fadeLang {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* WRAP EVERYTHING */
#content-es,
#content-en {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;

  color: white;
  line-height: 1.7;
}

/* TITLE FIX */
#content-es h2,
#content-en h2 {
  font-size: 32px;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 30px;
}

/* PARAGRAPHS */
#content-es p,
#content-en p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* LIST */
#content-es li,
#content-en li {
  margin-bottom: 15px;
}

/* TOGGLE POSITION */
.policy-toggle {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
/* HERO TITLE */
.banner__heading {
  font-size: 48px;
  letter-spacing: 8px;
  color: white;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .banner__heading {
    font-size: 28px;
    letter-spacing: 4px;
  }
}
/* REMOVE EXTRA SECTION SPACING */
.shopify-section {
  margin: 0 !important;
  padding: 0 !important;
}
#cinematic-section + * {
  margin-top: 0 !important;
}
.cinematic-text {
  margin: 0 !important;
}
#cinematic-section {
  padding: 60px 20px !important;
}
#cinematic-section {
  height: auto !important;
  min-height: unset !important;
}
#cinematic-section {
  display: inline-block;
  width: 100%;
}
/* REMOVE SHOPIFY WRAPPER SPACING */
#cinematic-section {
  margin: 0 !important;
}

#cinematic-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* TARGET THE SECTION WRAPPER */
#cinematic-section {
  display: block;
}

/* 🔥 THIS IS THE KEY LINE */
#cinematic-section {
  height: auto !important;
}

/* KILL PARENT SPACING */
#cinematic-section {
  position: relative;
}

/* 👇 MOST IMPORTANT */
#cinematic-section {
  max-height: fit-content !important;
}
/* FORCE REMOVE SECTION SPACING */
.shopify-section:has(#cinematic-section) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}
<div class="hero-overlay-text">

  <h1 class="cinematic-title">
    <span>EL ARTE DE DIOS</span>
    <span>EN LA TIERRA</span>
  </h1>

</div>

<style>
/* POSITION OVER BANNER */
.hero-overlay-text {
  position: relative;
  margin-top: -60vh; /* pulls it over the banner */
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

/* TEXT STYLE */
.cinematic-title {
  margin: 0;
  color: white;
  font-weight: 700;
  letter-spacing: 8px;
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;

  text-shadow:
    0 0 12px rgba(64,224,208,0.2),
    0 0 30px rgba(138,43,226,0.2);
}

/* ANIMATION */
.cinematic-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.cinematic-title.active span {
  animation: reveal 1.2s ease forwards;
}

.cinematic-title.active span:nth-child(1) { animation-delay: 0.2s; }
.cinematic-title.active span:nth-child(2) { animation-delay: 0.6s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  }

  .cinematic-title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
</style>

  }

}
@media (max-width: 768px) {

  .cinematic-text {
    font-size: 20px !important;
    letter-spacing: 2px !important;
    line-height: 1.2 !important;
  }

}
body {
  margin: 0 !important;
  padding: 0 !important;
}

main {
  margin-bottom: 0 !important;
}

.shopify-section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.hero-overlay-text {
  position: absolute !important;
}
/* REMOVE EXTRA FOOTER SPACE */
.footer {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* REMOVE SHOPIFY DEFAULT SPACING */
.footer__content-bottom {
  padding-bottom: 0 !important;
}

/* FORCE FOOTER TO FIT CONTENT ONLY */
.shopify-section.footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.footer,
.footer__content-bottom,
.footer__content-bottom-wrapper,
.shopify-section.footer {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* FORCE FOOTER TO SHRINK TO CONTENT */
.shopify-section.footer {
  height: auto !important;
  min-height: unset !important;
  display: block !important;
}

/* REMOVE FLEX STRETCHING */
.footer {
  display: block !important;
  height: auto !important;
  min-height: unset !important;
}

/* CLEAN INNER WRAPPERS */
.footer__content-top,
.footer__content-bottom,
.footer__content-bottom-wrapper {
  height: auto !important;
  min-height: unset !important;
}
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* STOP BACKGROUND FROM EXTENDING */
body {
  min-height: auto !important;
  height: auto !important;
}

/* MAKE FOOTER END THE PAGE VISUALLY */
footer {
  position: relative;
  z-index: 2;
  background: inherit;
}

/* CUT OFF EXTRA VISUAL SPACE */
html, body {
  overflow-x: hidden;
}
body {
  background: gradient...
}
/* WRAP MAIN CONTENT ONLY */
#MainContent {
  background: inherit;
}

/* REMOVE BACKGROUND FROM BELOW FOOTER */
footer::after {
  content: "";
  display: block;
  height: 0;
}
footer {
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}
/* FORCE PAGE TO FIT CONTENT */
html, body {
  height: auto !important;
  min-height: auto !important;
}

/* STOP FLEX STRETCHING */
body {
  display: block !important;
}

/* MAIN CONTENT SHOULD NOT STRETCH */
#MainContent {
  min-height: auto !important;
}

/* FOOTER SHOULD NOT FILL SPACE */
footer {
  margin-top: 0 !important;
}

/* REMOVE ANY EXTRA SECTION SPACE */
.shopify-section {
  margin-bottom: 0 !important;
}
body {
  display: block !important;
}
  grid-template-rows: auto auto 1fr auto;
}
/* STOP BACKGROUND FROM OVERFLOWING */
.hero-rays {
  position: fixed !important;
  inset: 0;
  height: 100vh !important;
  pointer-events: none;
  z-index: -1;
}
.hero-rays {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
.hero-rays {
  display: none !important;
}
.hero-overlay-text {
  position: absolute !important;
  height: auto !important;
}
#cinematic-section:last-of-type {
  display: none !important;
}
#cinematic-section {
  position: relative;
  z-index: 5;
}
#cinematic-section {
  background: red !important;
}
#cinematic-section {
  position: relative;
  z-index: 50;
}
/* FORCE PROPER CONTAINER */
#mv-cinematic .mv-title span {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.sweep-line {
  position: relative;
  display: block;
  overflow: hidden;
}

/* REAL LIGHT BAR */
.sweep-bar {
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
}
/* ===== CINEMATIC TEXT ===== */

.cinematic-text {
  color: white;
  font-size: 48px;
  letter-spacing: 10px;
  line-height: 1.4;
  text-align: center;
}

/* EACH LINE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

/* REVEAL */
.cinematic-text.active span {
  animation: revealUp 1s ease forwards;
}

/* STAGGER */
.cinematic-text span:nth-child(1) { animation-delay: 0.2s; }
.cinematic-text span:nth-child(2) { animation-delay: 0.6s; }
.cinematic-text span:nth-child(3) { animation-delay: 1s; }

/* REVEAL ANIMATION */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PREMIUM CINEMATIC TEXT ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  line-height: 1.4;
  text-align: center;

  /* subtle luxury glow */
  text-shadow:
    0 0 10px rgba(64,224,208,0.15),
    0 0 25px rgba(138,43,226,0.12);
}

/* LINE BASE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(50px) scale(0.96);
}

/* REVEAL */
.cinematic-text.active span {
  animation: revealUp 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* STAGGER */
.cinematic-text span:nth-child(1) { animation-delay: 0.2s; }
.cinematic-text span:nth-child(2) { animation-delay: 0.6s; }
.cinematic-text span:nth-child(3) { animation-delay: 1s; }

/* REVEAL ANIMATION */
@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== INSANE SWEEP SYSTEM ===== */

.cinematic-text span {
  position: relative;
  overflow: hidden;
}

/* LIGHT ELEMENT (JS CONTROLLED) */
.sweep-glow {
  position: absolute;
  top: -20%;
  left: -150%;
  width: 160%;
  height: 140%;
  pointer-events: none;
  z-index: 3;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(64,224,208,0.6),
    rgba(255,255,255,1),
    rgba(138,43,226,0.6),
    transparent
  );

  filter: blur(10px);
  transform: skewX(-20deg);

  opacity: 0.9;
  transition: left 0.15s linear, opacity 0.3s ease;
}

/* TRAIL FADE */
.sweep-glow.fade {
  opacity: 0.2;
}
.cinematic-text {
  color: white;
  font-size: 48px;
  letter-spacing: 10px;
  text-align: center;
}

.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* ===== PREMIUM SWEEP ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  text-align: center;

  /* subtle glow */
  text-shadow:
    0 0 8px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);
}

.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* LIGHT SWEEP */
.cinematic-text span::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -150%;
  width: 150%;
  height: 120%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(64,224,208,0.4),
    rgba(255,255,255,1),
    rgba(138,43,226,0.4),
    transparent 100%
  );

  transform: skewX(-20deg);
  filter: blur(6px); /* 👈 THIS makes it look expensive */

  animation: none;
}

/* STAGGER */
.cinematic-text span:nth-child(1)::after { animation-delay: 0s; }
.cinematic-text span:nth-child(2)::after { animation-delay: 0.4s; }
.cinematic-text span:nth-child(3)::after { animation-delay: 0.8s; }

@keyframes premiumSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* MOBILE */
@media (max-width: 768px) {
  .cinematic-text {
    font-size: 28px;
    letter-spacing: 6px;
  }
}
/* TRIGGERED STATE */
.cinematic-text.active span::after {
  animation: premiumSweep 2.2s ease;
}
/* ===== CINEMATIC POLISHED ===== */

.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);

  transition: opacity 0.6s ease, transform 0.6s ease;

  text-shadow:
    0 0 8px rgba(64,224,208,0.15),
    0 0 20px rgba(138,43,226,0.12);
}

/* ACTIVE STATE (fade in) */
.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* LINE BASE */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* ===== SWEEP ===== */

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -150%;
  width: 150%;
  height: 120%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(64,224,208,0.4),
    rgba(255,255,255,1),
    rgba(138,43,226,0.4),
    transparent 100%
  );

  transform: skewX(-20deg);
  filter: blur(6px);

  animation: none;
}

/* TRIGGER SWEEP */
.cinematic-text.active span:nth-child(1)::after {
  animation: premiumSweep 2.4s cubic-bezier(0.22,1,0.36,1) forwards 0.3s;
}

.cinematic-text.active span:nth-child(2)::after {
  animation: premiumSweep 2.2s cubic-bezier(0.22,1,0.36,1) forwards 0.6s;
}

.cinematic-text.active span:nth-child(3)::after {
  animation: premiumSweep 2s cubic-bezier(0.22,1,0.36,1) forwards 0.9s;
}

/* SWEEP MOTION */
@keyframes premiumSweep {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* MOBILE */
@media (max-width: 768px) {
  .cinematic-text {
    font-size: 28px;
    letter-spacing: 6px;
  }
}
/* ===== GLOW PULSE (PREMIUM) ===== */

.cinematic-text {
  animation: glowPulse 4s ease-in-out infinite;
}

/* GLOW BREATHING */
@keyframes glowPulse {

  0% {
    text-shadow:
      0 0 6px rgba(64,224,208,0.12),
      0 0 12px rgba(138,43,226,0.08);
  }

  50% {
    text-shadow:
      0 0 14px rgba(64,224,208,0.25),
      0 0 28px rgba(138,43,226,0.2);
  }

  100% {
    text-shadow:
      0 0 6px rgba(64,224,208,0.12),
      0 0 12px rgba(138,43,226,0.08);
  }
}
.cinematic-text span::after {
  animation: testSweep 2s linear infinite;
}

@keyframes testSweep {
  from { left: -150%; }
  to { left: 150%; }
}.cinematic-text span {
  position: relative;
  overflow: visible !important;
}
.cinematic-text span::after {
  z-index: 9999 !important;
}
.TEST-CHECK {
  background: red !important;
  color: white !important;
}
.cinematic-text,
.cinematic-text span {
  opacity: 1 !important;
  transform: none !important;
}
.cinematic-wrap {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 5;
}

/* TEXT */
.cinematic-text {
  color: white;
  font-size: 56px;
  letter-spacing: 12px;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(40px);

  transition: all 0.8s cubic-bezier(0.22,1,0.36,1);

  text-shadow:
    0 0 10px rgba(64,224,208,0.15),
    0 0 25px rgba(138,43,226,0.12);
}

/* ACTIVE */
.cinematic-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* LINES */
.cinematic-text span {
  display: block;
  position: relative;
  overflow: hidden;
}

/* ✨ PREMIUM SWEEP */
.cinematic-text span::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -150%;
  width: 150%;
  height: 120%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(64,224,208,0.5),
    rgba(255,255,255,1),
    rgba(138,43,226,0.5),
    transparent
  );

  transform: skewX(-20deg);
  filter: blur(6px);

  opacity: 0;
}

/* TRIGGER SWEEP */
.cinematic-text.active span:nth-child(1)::after {
  animation: luxurySweep 2.2s cubic-bezier(0.22,1,0.36,1) forwards 0.3s;
}

.cinematic-text.active span:nth-child(2)::after {
  animation: luxurySweep 2.2s cubic-bezier(0.22,1,0.36,1) forwards 0.6s;
}

.cinematic-text.active span:nth-child(3)::after {
  animation: luxurySweep 2.2s cubic-bezier(0.22,1,0.36,1) forwards 0.9s;
}

/* SWEEP MOTION */
@keyframes luxurySweep {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}
/* SCROLL PROGRESS EFFECT */
.cinematic-text {
  --progress: 0;

  opacity: calc(0.2 + var(--progress));
  transform: translateY(calc(40px - (40px * var(--progress))));
}
body::before,
body::after,
.hero-rays {
  pointer-events: none !important;
}
.header-wrapper {
  position: relative;
  z-index: 9999 !important;
}
/* 🔥 ALLOW CLICKS THROUGH OVERLAYS */
body::before,
body::after,
.hero-rays {
  pointer-events: none !important;
}
.hero-rays {
  display: none !important;
}
/* ============================= */
/* 🔥 CLEAN CENTERED MOBILE MENU */
/* ============================= */

@media (max-width: 990px) {

  /* SHOW DESKTOP MENU */
  .header__inline-menu {
    display: block !important;
    text-align: center;
  }

  /* HIDE HAMBURGER */
  .header__icon--menu {
    display: none !important;
  }

  /* REMOVE DRAWER */
  .menu-drawer {
    display: none !important;
  }

  /* STACK MENU */
  .header__menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
  }

  /* 🔥 THIS IS THE FIX */
  .header__menu-item {
    width: auto !important;          /* ← NOT 100% */
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* CENTER LINKS */
  .header__menu-item a,
  .header__menu-item summary {
    display: inline-block !important;
    text-align: center !important;
    padding: 0 !important;
  }

  /* CENTER HEADER */
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__heading {
    text-align: center;
  }

}
/* 🔥 FORCE CENTER MOBILE MENU (NUCLEAR FIX) */

@media (max-width: 990px) {

  .header__inline-menu {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .header__menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  /* 🔥 OVERRIDE SHOPIFY DEFAULT */
  .list-menu--inline {
    justify-content: center !important;
    width: 100% !important;
  }

  /* 🔥 FORCE ITEMS TO SHRINK */
  .header__menu-item {
    width: fit-content !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* 🔥 FORCE LINK CENTER */
  .header__menu-item a,
  .header__menu-item summary {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

}
/* ============================= */
/* 🔥 FIX DROPDOWN ON MOBILE */
/* ============================= */

@media (max-width: 990px) {

  /* parent needs positioning context */
  .header__menu-item {
    position: relative;
  }

  /* dropdown container */
  .header__submenu,
  .menu-drawer__submenu,
  details[open] > .header__submenu {
    position: absolute !important;

    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* 🔥 CENTER IT */

    width: max-content !important;
    min-width: 200px;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    padding: 10px 0;

    z-index: 99999;
  }

  /* submenu items */
  .header__submenu li {
    text-align: center;
    padding: 8px 20px;
  }

}
.header__submenu {
  white-space: nowrap;
}
.header__submenu {
  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    0 0 20px rgba(64,224,208,0.1);
}
/* ============================= */
/* 🔥 STACK DROPDOWN ITEMS (MOBILE) */
/* ============================= */

@media (max-width: 990px) {

  /* FORCE COLUMN LAYOUT */
  .header__submenu ul,
  .header__submenu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* EACH ITEM FULL WIDTH + CENTERED */
  .header__submenu li {
    width: 100% !important;
    text-align: center !important;
  }

  /* LINKS */
  .header__submenu li a {
    display: block !important;
    width: 100%;
    padding: 12px 20px;
  }

}
.header__submenu li {
  padding: 6px 0;
}
/* ============================= */
/* 🔥 FIX DROPDOWN WIDTH + CENTER */
/* ============================= */

@media (max-width: 990px) {

  .header__submenu {
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 90vw !important;       /* 🔥 fits screen */
    max-width: 280px !important;  /* keeps it clean */
    
    padding: 10px 0;
  }

  /* stack properly */
  .header__submenu ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .header__submenu li {
    width: 100%;
    text-align: center;
  }

  .header__submenu li a {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

}
/* ============================= */
/* 🔥 FIX DROPDOWN CUT OFF (FINAL) */
/* ============================= */

@media (max-width: 990px) {

  /* 🚫 REMOVE CLIPPING FROM HEADER */
  .header-wrapper,
  .header,
  .header__inner,
  .header__inline-menu {
    overflow: visible !important;
  }

  /* 🔥 ALLOW DROPDOWN TO EXPAND */
  .header__menu-item {
    position: relative;
    overflow: visible !important;
  }

  /* 🔥 ENSURE DROPDOWN IS ABOVE EVERYTHING */
  .header__submenu {
    position: absolute !important;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    z-index: 999999 !important;

    max-height: none !important;
  }

}
.header-wrapper {
  position: relative;
  z-index: 100;
}
/* ============================= */
/* 🔥 MOBILE DROPDOWN = INLINE (FIX CUT OFF) */
/* ============================= */

@media (max-width: 990px) {

  /* REMOVE FLOATING BEHAVIOR */
  .header__submenu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;

    width: 100% !important;
    max-width: 100% !important;

    margin-top: 10px;
    padding: 10px 0;

    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* STACK ITEMS */
  .header__submenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__submenu li {
    width: 100%;
    text-align: center;
  }

  .header__submenu li a {
    display: block;
    padding: 10px 0;
  }

}
/* ============================= */
/* 🔥 STICKY HIDE/SHOW HEADER */
/* ============================= */

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;

  transition: transform 0.35s ease;
}

/* HIDDEN STATE */
.header-hidden {
  transform: translateY(-100%);
}

/* OPTIONAL: smooth background */
.header-wrapper {
  backdrop-filter: blur(12px);
}/* ============================= */
/* 🔥 PREMIUM HEADER (SHRINK + BLUR) */
/* ============================= */

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;

  transition:
    transform 0.4s cubic-bezier(0.22,1,0.36,1),
    backdrop-filter 0.3s ease,
    background 0.3s ease,
    padding 0.3s ease;

  backdrop-filter: blur(6px);
}

/* SCROLLED STATE */
.header-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(0,0,0,0.6);
}

/* SHRINK INNER HEADER */
.header-scrolled .header {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  transform: scale(0.96);
}

/* HIDE STATE */
.header-hidden {
  transform: translateY(-100%);
}
/* ============================= */
/* 🍏 iOS STYLE DROPDOWN */
/* ============================= */

.header__submenu {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

/* OPEN STATE */
details[open] > .header__submenu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ITEM STAGGER */
.header__submenu li {
  opacity: 0;
  transform: translateY(8px);
}

details[open] .header__submenu li {
  animation: iosFade 0.4s ease forwards;
}

.header__submenu li:nth-child(1) { animation-delay: 0.05s; }
.header__submenu li:nth-child(2) { animation-delay: 0.1s; }
.header__submenu li:nth-child(3) { animation-delay: 0.15s; }
.header__submenu li:nth-child(4) { animation-delay: 0.2s; }

@keyframes iosFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🔥 FORCE WHITE HEADER TEXT ON FAQ PAGE */
.template-page .header,
.template-page .header * {
  color: white !important;
}
/* 🔥 FAQ PAGE ONLY */
.page-faqs .header,
.page-faqs .header * {
  color: white !important;
}
/* 🔥 FAQ PAGE TITLE FIX */
.page-faqs h1,
.page-faqs .title,
.page-faqs .main-page-title {
  color: #ffffff !important;
}
/* 🔥 FORCE ALL FAQ TEXT WHITE */
.page-faqs,
.page-faqs * {
  color: #ffffff !important;
}
/* 🔥 FORCE ALL HEADINGS WHITE ON PAGES ONLY */
.template-page h1,
.template-page h2,
.template-page h3,
.template-page h4,
.template-page h5,
.template-page h6 {
  color: #ffffff !important;
}
.template-page .title,
.template-page .main-page-title,
.template-page .rich-text__heading {
  color: #ffffff !important;
}
.template-page h1,
.template-page h2 {
  text-shadow:
    0 0 10px rgba(64,224,208,0.2),
    0 0 20px rgba(138,43,226,0.15);
}
/* 🔥 FORCE WHITE HEADINGS ON ALL PAGES (Dawn override) */
.template-page .color-background-1 h1,
.template-page .color-background-1 h2,
.template-page .color-background-1 h3,
.template-page .color-background-1 h4,
.template-page .color-background-1 h5,
.template-page .color-background-1 h6,
.template-page .main-page-title,
.template-page .title {
  color: #ffffff !important;
}
/* 🔥 HARD OVERRIDE */
.template-page h1,
.template-page h2,
.template-page h3,
.template-page h4,
.template-page h5,
.template-page h6 {
  color: #fff !important;
}
/* 🔥 FORCE WHITE HEADINGS ON ALL PAGES (ULTIMATE OVERRIDE) */

body.template-page h1,
body.template-page h2,
body.template-page h3,
body.template-page h4,
body.template-page h5,
body.template-page h6,
body.template-page .title,
body.template-page .main-page-title {
  color: #ffffff !important;
}
/* 🚨 NUCLEAR FIX (overrides EVERYTHING) */

body.template-page * {
  color: #ffffff !important;
}
/* 🔥 FORCE WHITE TEXT ON ALL PAGES (Dawn variable override) */
.template-page,
.template-page .color-background-1,
.template-page .color-background-2 {
  --color-foreground: 255,255,255 !important;
}
/* White header on FAQ page */
body.template-page-faqs .header-wrapper,
body.template-page-faqs header {
  background-color: #ffffff !important;
}

/* White header on Policy pages */
body.template-policy .header-wrapper,
body.template-policy header {
  background-color: #ffffff !important;
}
/* 🔥 FORCE WHITE TEXT INSIDE POLICY TOGGLE */

#content-en,
#content-es {
  color: #ffffff !important;
}

/* HEADINGS */
#content-en h1,
#content-en h2,
#content-en h3,
#content-en h4,
#content-en h5,
#content-en h6,
#content-es h1,
#content-es h2,
#content-es h3,
#content-es h4,
#content-es h5,
#content-es h6 {
  color: #ffffff !important;
}

/* PARAGRAPHS + LISTS */
#content-en p,
#content-en li,
#content-es p,
#content-es li {
  color: rgba(255,255,255,0.85) !important;
}
/* 🔥 OVERRIDE DAWN VARIABLE INSIDE TOGGLE */
#content-en,
#content-es {
  --color-foreground: 255,255,255;
}
/* 🔥 OVERRIDE DAWN VARIABLE INSIDE TOGGLE */
#content-en,
#content-es {
  --color-foreground: 255,255,255;
}
/* ============================= */
/* 🔥 FIX DESKTOP DROPDOWN LAYER */
/* ============================= */

/* Make sure header is above everything */
.header-wrapper {
  position: relative;
  z-index: 99999 !important;
}

/* Ensure dropdown sits above banner */
.header__submenu {
  position: absolute !important;
  z-index: 999999 !important;
}

/* Prevent banner from covering menu */
.banner,
.banner__media,
#MainContent {
  position: relative;
  z-index: 1 !important;
}
/* ============================= */
/* ✨ CLEAN DESKTOP DROPDOWN */
/* ============================= */

.header__submenu {
  position: absolute;
  top: calc(100% + 12px); /* space below menu */
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 40px; /* spacing between items */

  padding: 18px 28px;

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);

  z-index: 999999;

  min-width: 260px;
  justify-content: center;
}

/* MENU ITEMS */
.header__submenu li {
  list-style: none;
}

.header__submenu a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;

  text-decoration: none;

  transition: all 0.25s ease;
}

/* HOVER EFFECT */
.header__submenu a:hover {
  color: #40e0d0; /* your brand turquoise */
  transform: translateY(-2px);
}
.header__submenu {
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: all 0.25s ease;
}

.header__menu-item:hover .header__submenu {
  opacity: 1;
  transform: translate(-50%, 0);
}
/* ============================= */
/* ✨ CLEAN DESKTOP DROPDOWN (FIXED) */
/* ============================= */

.header__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-wrap: wrap; /* 🔥 allows wrapping */
  justify-content: center;

  gap: 20px 40px; /* row + column spacing */

  padding: 20px 30px;

  border-radius: 14px;

  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);

  z-index: 999999;

  min-width: 320px;
  max-width: 520px; /* 🔥 prevents overflow */
}

/* ITEMS */
.header__submenu li {
  list-style: none;
  flex: 1 1 40%; /* 🔥 2-column layout */
  text-align: center;
}

/* LINKS */
.header__submenu a {
  display: block;

  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;

  padding: 8px 0;

  text-decoration: none;
  transition: all 0.25s ease;
}

/* HOVER */
.header__submenu a:hover {
  color: #40e0d0;
  transform: translateY(-2px);
}.header__submenu {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
/* ============================= */
/* 🔥 FACEBOOK BUTTON IN HEADER */
/* ============================= */

.mv-social-header {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.mv-social-header a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  color: white;

  transition: all 0.3s ease;
}

/* hover effect */
.mv-social-header a:hover {
  background: rgba(64,224,208,0.2);
  transform: scale(1.1);

}
/* ============================= */
/* ✨ SHIMMER EFFECT (FACEBOOK) */
/* ============================= */

.mv-social-header a {
  position: relative;
  overflow: hidden;
}

/* animated gradient glow */
.mv-social-header a::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.6),
    transparent 70%
  );

  transform: translateX(-120%) skewX(-20deg);
}

/* shimmer animation */
.mv-social-header a:hover::before {
  animation: shimmerSweep 1s ease forwards;
}

/* loop glow (optional always-on effect) */
.mv-social-header a {
  animation: subtleGlow 3s ease-in-out infinite;
}

/* animations */
@keyframes shimmerSweep {
  0% {
    transform: translateX(-120%) skewX(-20deg);
  }
  100% {
    transform: translateX(120%) skewX(-20deg);
  }
}

@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(64,224,208,0.2);
  }
  50% {
    box-shadow: 0 0 18px rgba(138,43,226,0.35);
  }
}
.mv-social-header a {
  background: linear-gradient(135deg, #40e0d0, #8a2be2);
}
background: linear-gradient(135deg, #40e0d0, #8a2be2);
/* 🔥 FIX GHOST ELEMENT TOP LEFT */

.search-modal,
.predictive-search,
.header__search,
.modal__content {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

/* ONLY SHOW WHEN ACTIVE */
.search-modal[open],
.predictive-search--open {
  opacity: 1;
  pointer-events: auto;
}
/* 🔥 HARD FIX: HIDE STRAY ELEMENTS */
body > div:not(#shopify-section-header):not(#MainContent):not(footer) {
  top: auto !important;
  left: auto !important;
}
/* 🔥 FIX SKIP LINK (HIDE PROPERLY) */
.skip-to-content-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* 🔥 KILL SHOPIFY SPARKLE EFFECT COMPLETELY */
:root {
  --sparkle: none !important;
}

/* Remove any element using sparkle */
*::before,
*::after {
  background-image: none !important;
}

/* Extra safety for hover system */
[class*="hover"],
[class*="sparkle"],
[class*="lift"] {
  background: none !important;
  box-shadow: none !important;
}
/* 🔥 FORCE REMOVE ANY STRAY TOP-LEFT ARTIFACT */
body::before,
body::after,
html::before,
html::after {
  display: none !important;
}
/* 🔥 FORCE SOLID HEADER BACKGROUND */
.header-wrapper,
.header {
  background: #000 !important;
}

/* Optional: slight transparency + blur (premium look) */
.header-wrapper {
  background: rgba(0,0,0,0.85) !important;
  backdrop-filter: blur(12px);
}
/* 🔥 REMOVE STRAY TOP-LEFT ARTIFACT (PRECISE) */

/* kill any pseudo element leaking from page containers */
body::before,
body::after,
html::before,
html::after,
.gradient::before,
.gradient::after,
.hero-rays::before,
.hero-rays::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
/* 🔥 FIX HERO RAYS LAYER */
.hero-rays {
  pointer-events: none;
  overflow: hidden;
}

.hero-rays::before,
.hero-rays::after {
  display: none !important;
}
/* 🔥 CLIP ALL BACKGROUND ARTIFACTS */
html, body {
  overflow-x: hidden !important;
}

/* 🔥 PREVENT BACKGROUND BLEED */
body {
  position: relative;
}

/* 🔥 FORCE BACKGROUND LAYERS TO STAY INSIDE */
body::before,
body::after,
#MainContent::after {
  left: 0 !important;
  right: 0 !important;
  max-width: 100vw !important;
}
/* 🔥 SINGLE SOURCE OF TRUTH FOR OVERLAY */
body::before {
  position: fixed;
  inset: 0;
  overflow: hidden;
}
/* 🔥 FORCE FACEBOOK ICON TOP RIGHT */
.mv-facebook {
  position: absolute !important;
  top: 18% !important;
  right: 20px !important;
  transform: none; !important;
  z-index: 9999;
}
/* 🔥 MAKE HEADER THE POSITIONING CONTEXT */
.header-wrapper {
  position: relative !important;
}
/* 🔥 KEEP ICON INSIDE HEADER */
.header__icons {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
/* 🔥 FACEBOOK ICON IN HEADER */
.mv-facebook {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  color: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mv-facebook:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/* 🔥 ATTACH ICON TO HEADER (NOT SCREEN) */
.mv-social-header {
  position: absolute !important;
  top: 80%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
}

/* keep it aligned nicely */
.mv-social-header svg {
  display: block;
}
/* 🔥 FORCE HEADER ABOVE BANNER */
.header-wrapper {
  position: sticky !important;
  top: 0;
  z-index: 999999 !important;
}
/* 🔥 KEEP ICON IN SAME LAYER AS HEADER */
.mv-social-header {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999999 !important;
}
/* 🔥 LOWER BANNER LAYER */
.banner,
.shopify-section,
#MainContent {
  position: relative;
  z-index: 1 !important;
}
/* 🔥 NUCLEAR FIX (guaranteed) */
.header-wrapper,
.mv-social-header {
  z-index: 2147483647 !important;
}
/* 🔥 MAKE HEADER THE REFERENCE */
.header-wrapper {
  position: relative !important;
}
/* 🔥 RESTORE CINEMATIC SWEEP */
.cinematic-text span {
  position: relative;
  overflow: hidden;
}

.cinematic-text span::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -150%;
  width: 150%;
  height: 120%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(64,224,208,0.4),
    rgba(255,255,255,1),
    rgba(138,43,226,0.4),
    transparent 100%
  );

  transform: skewX(-20deg);
  filter: blur(6px);
  opacity: 0;
}

/* trigger */
.cinematic-text.active span:nth-child(1)::after {
  animation: sweepFix 2.2s ease forwards 0.3s;
}
.cinematic-text.active span:nth-child(2)::after {
  animation: sweepFix 2.2s ease forwards 0.6s;
}
.cinematic-text.active span:nth-child(3)::after {
  animation: sweepFix 2.2s ease forwards 0.9s;
}

@keyframes sweepFix {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}
.cinematic-text span::after {
  opacity: 1 !important;
  left: 0 !important;
}
.cinematic-text span {
  position: relative;
  overflow: hidden;
}

.cinematic-text span::after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    white,
    transparent
  );

  transform: skewX(-20deg);
  z-index: 2;
}
.cinematic-text.active span::after {
  animation: sweepFix 2s ease forwards;
}

@keyframes sweepFix {
  from { left: -150%; }
  to { left: 150%; }
}
/* 🔥 HARD RESET + WORKING SWEEP */
.cinematic-text span {
  position: relative !important;
  display: inline-block !important;
  overflow: hidden !important;
}

/* FORCE PSEUDO ELEMENT TO EXIST */
.cinematic-text span::after {
  content: "" !important;
  position: absolute !important;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  ) !important;

  transform: skewX(-20deg) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

/* ANIMATION */
.cinematic-text.active span::after {
  animation: sweepFix 2s ease forwards !important;
}

@keyframes sweepFix {
  from { left: -150%; }
  to { left: 150%; }
}
/* 🔥 CLEAN WORKING SWEEP */
.cinematic-text span {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* sweep layer */
.cinematic-text span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transform: skewX(-20deg);
  pointer-events: none;
}

/* 🔥 FORCE ANIMATION */
.cinematic-text.active span::after {
  animation: sweepReal 2s ease forwards !important;
}

/* animation */
@keyframes sweepReal {
  0% { left: -120%; }
  100% { left: 120%; }
}
.cinematic-text span::after {
  animation: sweepReal 2s ease infinite !important;
}