@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --display-font: "Playfair Display", "Times New Roman", serif;
  --bg: #060811;
  --bg-soft: #0d1222;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f6f8ff;
  --muted: #b7bfd7;
  --primary: #7c5cff;
  --secondary: #1ecbff;
  --accent: #ff4fd8;
  --ok: #25d366;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 40px rgba(5, 11, 27, 0.45);
  --shadow-glow: 0 0 35px rgba(30, 203, 255, 0.24);
  --gold: #f3c77a;
  --curtain: #05070f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 10% -10%, rgba(124, 92, 255, 0.35), transparent 45%),
    radial-gradient(circle at 90% -20%, rgba(255, 79, 216, 0.24), transparent 45%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.01) 0 1px,
      transparent 1px 68px
    );
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(243, 199, 122, 0.08), transparent 24%);
}

.luxury-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(124, 92, 255, 0.36), rgba(255, 79, 216, 0.3), rgba(30, 203, 255, 0.3)),
    var(--curtain);
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-curtain.is-active {
  transform: translateY(0);
}

.luxury-loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255, 79, 216, 0.3), transparent 42%),
    #05070f;
  z-index: 2000;
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.luxury-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.luxury-loader-content {
  text-align: center;
}

.luxury-loader-logo-wrap {
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  border-radius: 30px;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 50px rgba(243, 199, 122, 0.28);
}

.luxury-loader-logo-wrap::before,
.luxury-loader-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 34px;
  border: 1px solid rgba(243, 199, 122, 0.36);
  animation: pulseLogo 1.9s ease-out infinite;
}

.luxury-loader-logo-wrap::after {
  animation-delay: 0.9s;
}

.luxury-loader-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 22px;
  animation: logoFloat 2.2s ease-in-out infinite;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.luxury-loader h2 {
  margin: 0;
  letter-spacing: 1px;
  font-size: 1.15rem;
}

.luxury-loader p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #d8deee;
}

nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(6, 8, 18, 0.58) !important;
  backdrop-filter: blur(16px);
}

nav.scrolled {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  background: rgba(7, 10, 20, 0.86) !important;
  box-shadow: var(--shadow-soft);
}

.logo img {
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(243, 199, 122, 0.2);
}

nav ul li a {
  color: var(--muted) !important;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

nav ul li a:hover {
  color: var(--text) !important;
}

nav ul li a:hover::after,
nav ul li a.is-active::after {
  transform: scaleX(1);
}

.hero,
.cta {
  position: relative;
  overflow: hidden;
}

.hero::after,
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 5, 10, 0.82), rgba(3, 5, 10, 0.2));
  pointer-events: none;
}

.hero::before,
.cta::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(
    from 20deg,
    rgba(124, 92, 255, 0.2),
    rgba(30, 203, 255, 0.18),
    rgba(255, 79, 216, 0.2),
    rgba(124, 92, 255, 0.2)
  );
  animation: spinAura 26s linear infinite;
  opacity: 0.45;
}

.hero > *,
.cta > * {
  position: relative;
  z-index: 1;
}

.dance-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
  z-index: 0;
  animation: floatOrb 8s ease-in-out infinite;
}

.dance-orb-one {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 79, 216, 0.8), rgba(255, 79, 216, 0.08));
}

.dance-orb-two {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: 4%;
  background: radial-gradient(circle at 40% 40%, rgba(30, 203, 255, 0.8), rgba(30, 203, 255, 0.08));
  animation-delay: 1.2s;
}

.dance-grid-glow {
  position: absolute;
  inset: auto 10% -50px 10%;
  height: 170px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to top, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(420px) rotateX(65deg);
  opacity: 0.35;
  z-index: 0;
}

.morph-blob {
  position: absolute;
  border-radius: 42% 58% 64% 36% / 40% 38% 62% 60%;
  filter: blur(8px);
  opacity: 0.45;
  z-index: 0;
  animation: morphBlob 11s ease-in-out infinite;
}

.morph-blob-a {
  width: 300px;
  height: 300px;
  left: 10%;
  top: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 203, 255, 0.85), rgba(30, 203, 255, 0.05));
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.22));
}

.morph-blob-b {
  width: 360px;
  height: 360px;
  right: 12%;
  bottom: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 79, 216, 0.8), rgba(255, 79, 216, 0.08));
  animation-delay: 1.2s;
  transform: translateY(calc(var(--scroll-shift, 0px) * 0.16));
}

.hero-content h1,
.section-title h2,
.cta h2 {
  letter-spacing: 0.6px;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(5, 11, 27, 0.45);
}

.hero-content h1 {
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.06;
}

.hero-content p,
.section-title p,
.cta p,
p {
  color: var(--muted);
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.hero-content .btn + .hero-identity {
  margin-left: 12px;
}

@media (max-width: 900px) {
  .hero-content .btn + .hero-identity {
    margin-left: 0;
  }
}

.btn,
.filter-btn {
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  box-shadow: 0 12px 24px rgba(30, 203, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover,
.filter-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 18px 32px rgba(30, 203, 255, 0.3), 0 0 28px rgba(243, 199, 122, 0.24);
}

.btn::before,
.filter-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -34%;
  width: 36%;
  height: 330%;
  transform: rotate(22deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  transition: left 0.7s ease;
}

.btn:hover::before,
.filter-btn:hover::before {
  left: 125%;
}

.feature-card,
.class-card,
.price-card,
.value-card,
.team-card,
.stat-card,
.gallery-item,
.video-card,
.instagram-box,
.contact-info,
.contact-form,
.map-box {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
  border: 1px solid var(--surface-strong) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.feature-card:hover,
.class-card:hover,
.price-card:hover,
.value-card:hover,
.team-card:hover,
.stat-card:hover,
.video-card:hover,
.instagram-box:hover,
.contact-info:hover,
.contact-form:hover,
.map-box:hover {
  border-color: rgba(30, 203, 255, 0.46) !important;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.feature-card::before,
.class-card::before,
.price-card::before,
.value-card::before,
.stat-card::before,
.gallery-item::before,
.video-card::before,
.instagram-box::before,
.contact-info::before,
.contact-form::before,
.map-box::before,
.vibe-card::before,
.schedule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.studio-vibe,
.home-schedule,
.reels-marquee {
  padding: 96px 8%;
}

.sprung-floor {
  padding: 96px 8%;
}

.studio-vibe {
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.5), rgba(8, 12, 24, 0.1));
}

.vibe-grid,
.home-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.vibe-card,
.schedule-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.vibe-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.4), rgba(30, 203, 255, 0.35));
}

.vibe-card h3,
.schedule-card h3 {
  margin-bottom: 10px;
}

.schedule-card p {
  margin: 8px 0;
  color: var(--muted);
}

.schedule-card i {
  width: 18px;
  color: var(--secondary);
}

.schedule-card span {
  margin-top: 8px;
  display: inline-block;
  font-size: 0.92rem;
  color: #d9dded;
}

.vibe-card:hover,
.schedule-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  border-color: rgba(30, 203, 255, 0.46);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--secondary));
}

.schedule-cta {
  margin-top: 32px;
  text-align: center;
}

.reels-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.reels-embeds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 10px 0 22px;
}

.reel-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 20, 0.6);
  box-shadow: var(--shadow-soft);
}

.reel-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.reel-card {
  position: relative;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 20, 0.6);
  box-shadow: var(--shadow-soft);
}

.reel-card img,
.reel-card .reel-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card .reel-preview {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(1.03);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 5, 10, 0.9), rgba(3, 5, 10, 0.08));
}

.reel-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.reel-meta h3 {
  margin: 0;
  font-size: 1.2rem;
}

.reel-meta p {
  margin: 6px 0 0;
}

.reel-card:hover .reel-preview,
.reel-card:focus-visible .reel-preview {
  opacity: 1;
  transform: scale(1);
}

.section-divider {
  height: 88px;
  margin-top: -18px;
  margin-bottom: -18px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.divider-path-a {
  fill: rgba(124, 92, 255, 0.22);
}

.divider-path-b {
  fill: rgba(30, 203, 255, 0.16);
}

.reels-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reelsMarquee 22s linear infinite;
}

.reels-track:hover {
  animation-play-state: paused;
}

.reel-pill {
  color: #f6f8ff;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.reel-pill i {
  color: #ff76d1;
}

.reel-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 203, 255, 0.46);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.class-card img,
.team-card img,
.gallery-item img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.class-card:hover img,
.team-card:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.overlay {
  background: linear-gradient(to top, rgba(4, 8, 18, 0.95), rgba(4, 8, 18, 0.06)) !important;
}

table th {
  background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
}

table td {
  background: rgba(13, 18, 34, 0.95) !important;
}

footer {
  background: rgba(7, 10, 20, 0.94) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 203, 255, 0.16), transparent 62%);
  pointer-events: none;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.08) !important;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary)) !important;
}

.whatsapp {
  background: linear-gradient(145deg, #22c55e, #0e9f6e) !important;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.luxury-cursor,
.luxury-cursor-dot {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  z-index: 1300;
  transform: translate(-50%, -50%);
}

.luxury-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 199, 122, 0.8);
  background: rgba(243, 199, 122, 0.08);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.luxury-cursor-dot {
  width: 6px;
  height: 6px;
  background: rgba(243, 199, 122, 0.9);
}

body.cursor-hover .luxury-cursor {
  width: 48px;
  height: 48px;
  border-color: rgba(30, 203, 255, 0.9);
  background: rgba(30, 203, 255, 0.12);
}

.hero-identity {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 199, 122, 0.4);
  background: rgba(6, 8, 18, 0.44);
  color: #fce3b2;
  font-size: 0.84rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-identity::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold), var(--accent));
  box-shadow: 0 0 12px rgba(243, 199, 122, 0.6);
}

.split-line {
  display: block;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px) rotateX(-80deg) scale(0.96);
  transform-origin: bottom;
}

.split-char.is-accent {
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(243, 199, 122, 0.22);
}

.hero-sweep {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(243, 199, 122, 0.22), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  animation: heroSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 900px) {
  nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .logo img {
    height: 46px !important;
  }

  nav.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  nav ul {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    gap: 14px !important;
    padding-top: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding-top 0.25s ease;
  }

  nav.menu-open ul {
    max-height: 340px;
    opacity: 1;
    padding-top: 14px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  .hero-content {
    padding-top: 26px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-content p {
    font-size: 1rem !important;
    line-height: 1.6;
  }

  .hero-content .btn {
    width: min(420px, 100%);
  }

  .hero-identity {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title h2,
  .cta h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
  }

  section {
    padding: 78px 6% !important;
  }

  .contact-layout,
  .video-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }

  .video-card iframe {
    height: 460px !important;
  }

  .luxury-cursor,
  .luxury-cursor-dot {
    display: none;
  }
}

@media (max-width: 540px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  nav {
    padding: 14px 6% !important;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    height: 70vh !important;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero-identity {
    margin-top: 14px;
    font-size: 0.78rem;
    padding: 7px 12px;
  }

  .section-divider {
    height: 64px;
  }

  .reels-grid {
    grid-template-columns: 1fr;
  }

  .reels-embeds {
    grid-template-columns: 1fr;
  }

  .reel-embed iframe {
    height: 520px;
  }

  .reel-card {
    min-height: 300px;
  }

  .whatsapp {
    right: 16px !important;
    bottom: 16px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .gallery-item img {
    height: 260px !important;
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes spinAura {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 42% 58% 64% 36% / 40% 38% 62% 60%;
  }
  33% {
    border-radius: 65% 35% 50% 50% / 54% 63% 37% 46%;
  }
  66% {
    border-radius: 38% 62% 36% 64% / 44% 35% 65% 56%;
  }
}

@keyframes reelsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}


@keyframes heroSweep {
  0%,
  18% {
    left: -36%;
  }
  42% {
    left: 118%;
  }
  100% {
    left: 118%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
