/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 37:13 Expected identifier but found whitespace
Line 38:4 Unexpected "linear-gradient("
Line 39:5 Expected identifier but found "%"
Line 40:6 Expected identifier but found "url("
Line 41:4 Unexpected "{"
Line 41:5 Expected identifier but found "%"
Line 42:6 Expected identifier but found "url("
Line 43:4 Unexpected "{"
Line 43:5 Expected identifier but found "%"
... and 1 more hidden warnings

**/
<style>
/* HERO SCROLL LOCK */
.yuga-hero-scroll {
  position: relative;
  height: 220vh;
  background: #000;
}

.yuga-hero {
  position: sticky;
  top: 0;
}

/* HERO BASE */
.yuga-hero {
  height: 100vh;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    {% if section.settings.bg_image != blank %}
      url('{{ section.settings.bg_image | image_url: width: 2400 }}') center/cover no-repeat;
    {% else %}
      url('{{ "image(3).png" | asset_url }}') center/cover no-repeat;
    {% endif %}
}

/* VIDEO */
.yuga-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== GLOBAL NAVBAR — APPEARS IN EVERY SECTION ===== */
.yuga-nav {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 clamp(24px, 4vw, 70px);

  pointer-events: none;

  opacity: 0;
  transform: translateY(-18px);
  animation: navAppear 0.9s 0.25s ease forwards;
}

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

.yuga-logo {
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
  transition:
    color 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.yuga-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter 0.35s ease;
}

.yuga-nav-box {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 10px 8px 26px;
  border-radius: 999px;

  background: rgba(30, 42, 30, 0.58);
  border: 1px solid rgba(255,255,255,0.16);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 42px rgba(0,0,0,0.22);

  pointer-events: auto;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.yuga-nav-box a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  padding: 12px 18px;
  border-radius: 999px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.yuga-nav-box a:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

/* NAV SMALL BUTTON */
.yuga-nav-box .yuga-btn.small {
  margin-top: 0;
  padding: 14px 26px;
  font-size: 13px;

  color: #fff;
  background: linear-gradient(135deg, #ff5f2a, #ff7a3c);

  box-shadow:
    0 0 28px rgba(255,95,42,0.50),
    0 0 70px rgba(255,95,42,0.18),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.yuga-nav-box .yuga-btn.small:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #ff5520, #ff864d);
  box-shadow:
    0 0 42px rgba(255,95,42,0.72),
    0 0 95px rgba(255,95,42,0.30),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* NAV THEME ON LIGHT SECTIONS */
.yuga-nav.is-light .yuga-logo {
  color: #10290d;
}

.yuga-nav.is-light .yuga-logo img {
  filter: brightness(0) saturate(100%);
}

.yuga-nav.is-light .yuga-nav-box {
  background: rgba(88, 96, 82, 0.38);
  border-color: rgba(16,41,13,0.12);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 18px 42px rgba(20,30,20,0.10);
}

.yuga-nav.is-light .yuga-nav-box a {
  color: rgba(255,255,255,0.88);
}

.yuga-nav.is-light .yuga-nav-box a:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.yuga-nav.is-light .yuga-nav-box .yuga-btn.small {
  color: #fff;
  background: linear-gradient(135deg, #ff5f2a, #ff7a3c);
}

/* HIDE DUPLICATE NAVBARS FROM OTHER SECTIONS */
.y3-nav,
.yug-state-nav,
.yuga-guide-nav,
.yuga-guide-science-nav,
.yug-off-nav {
  display: none !important;
}

/* ===== HERO CONTENT ===== */
.yuga-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  text-align: center;
  z-index: 4;

  max-width: 700px;
  width: 90%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SCENE 1 */
.hero-scene-main {
  opacity: 0;
  transform: translate(-50%, -45%);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  pointer-events: none;
  filter: blur(8px);
}

.hero-scene-main.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  filter: blur(0);
}

/* TEXT */
.tagline {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.7;
  text-align: center;
}

.subtag {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 20px;
  text-align: center;
}

.yuga-content h1 {
  font-size: 64px;
  line-height: 1.1;
  text-align: center;
}

/* HIGHLIGHT */
.highlight {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #c8a6ff;
  font-size: 60px;
}

/* ===== BUTTON ===== */
.yuga-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 40px;
  border-radius: 40px;
  background: #ff6a2f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* HOVER */
.yuga-btn:hover {
  transform: scale(1.05);
  background: #ff7a45;
}

/* GLOW */
.yuga-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(255,106,47,0.6) 0%, transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.yuga-btn:hover::before {
  opacity: 1;
  animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* ===== WAVE LINE ===== */
.wave-line {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

.wave-line svg {
  width: 100%;
  height: 150px;
}

.wave-line path {
  fill: none;
  stroke: #ff6a2f;
  stroke-width: 2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawWave 6s linear infinite;
}

@keyframes drawWave {
  0% { stroke-dashoffset: 2000; }
  100% { stroke-dashoffset: 0; }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,106,47,0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 1;
}

/* ===== PARTICLES ===== */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ff6a2f;
  border-radius: 50%;
  animation: floatDots 8s infinite linear;
}

.particles::after {
  left: 70%;
  animation-delay: 4s;
}

@keyframes floatDots {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  50% { opacity: 1; }
  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* RESET SCENE */
.hero-scene-s {
  position: absolute;
  inset: 0;
  z-index: 6;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  pointer-events: none;
  filter: blur(8px);
}

.hero-scene-s.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  filter: blur(0);
}

/* Typography styles */
.hero-reset-label {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.mini-reset {
  color: #FF6B35;
  font-weight: 700;
}

.mini-already {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  opacity: 0.8;
}

.hero-reset-big {
  font-size: clamp(100px, 15vw, 240px);
  font-weight: 900;
  color: #F5EFE6;
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
}

.hero-reset-ghost {
  color: rgba(245, 239, 230, 0.6);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 239, 230, 0.3);
  padding-bottom: 4px;
  transition: 0.3s;
}

.hero-reset-ghost:hover {
  color: #fff;
  border-color: #fff;
}

/* CUBE */
.yuga-cube-wrap {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 90px;
  height: 90px;
  perspective: 800px;
  z-index: 8;
}

.yuga-cube {
  position: relative;
  width: 70px;
  height: 70px;
  transform-style: preserve-3d;
  animation: yugaCubeFloat 5.5s ease-in-out infinite;
}

.cube-face {
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 255, 150, 0.25);
  background: rgba(34, 70, 22, 0.58);
  color: rgba(210,255,185,0.78);
  font-size: 32px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  box-shadow:
    inset 0 0 24px rgba(150,255,120,0.08),
    0 0 20px rgba(110,255,90,0.14);
}

.cube-front  { transform: rotateY(0deg) translateZ(35px); }
.cube-back   { transform: rotateY(180deg) translateZ(35px); }
.cube-right  { transform: rotateY(90deg) translateZ(35px); }
.cube-left   { transform: rotateY(-90deg) translateZ(35px); }
.cube-top    { transform: rotateX(90deg) translateZ(35px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(35px); }

@keyframes yugaCubeFloat {
  0%, 100% {
    transform: rotateX(-16deg) rotateY(32deg) translateY(0);
  }
  50% {
    transform: rotateX(-8deg) rotateY(70deg) translateY(-12px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .yuga-nav {
    top: 18px;
    padding: 0 20px;
  }

  .yuga-nav-box {
    gap: 4px;
    padding: 6px;
    transform: scale(0.78);
    transform-origin: top right;
    margin-right: -42px;
  }

  .yuga-nav-box a {
    font-size: 12px;
    padding: 9px 10px;
  }

  .yuga-nav-box .yuga-btn.small {
    padding: 10px 14px;
  }

  .yuga-logo {
    font-size: 16px;
  }

  .yuga-logo img {
    height: 30px;
  }

  .yuga-content h1 {
    font-size: 42px;
  }

  .highlight {
    font-size: 38px;
  }

  .hero-reset-big {
    font-size: clamp(88px, 22vw, 150px);
  }

  .yuga-cube-wrap {
    right: 20px;
    bottom: 24px;
    transform: scale(0.75);
  }
}

@media (max-width: 560px) {
  .yuga-nav-box {
    display: none;
  }

  .yuga-logo {
    font-size: 16px;
  }
}


.yuga-hero-scroll .yuga-nav,
.yitem-section .yitem-nav,
.y3-section .y3-nav,
.yuga-guide-section .yuga-guide-nav,
.yfaq .yfaq__nav {
  display: none !important;
}

</style>
