
:root {
  --gap: 2px;
  --tile-size: 127px;
  /* --glow-color: rgb(161, 89, 255); */
  --glow-color:rgba(133, 53, 231, 0.497);
  --static-glow-color:rgb(255, 115, 0);
  --static-semi-glow-color:rgba(255, 145, 0, 0.927);
  --tile-color: #181818;
  --one-color: #994cff;
  --accent-color:rgb(215, 215, 215);
  --section-title:linear-gradient(45deg, #ad49ff, #ffffff);
}

.section-title{
    font-size: 2.5rem;
  margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ad49ff, #ffffff);
  background-clip: text;
  color: transparent;
}

/* ===================== Base ===================== */
*{
  font-family: 'Outfit', sans-serif;
}

body {
  margin: 0;
  background: var(--tile-color);
  color: white;
  box-sizing: border-box;
  
}

/* ===================== Hero Section ===================== */

.hero-section {
  position: relative;
  height: 100svh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

/* ===================== Glow Follower ===================== */

.mouse-glow {
  position: absolute;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ===================== Grid Tiles ===================== */

.tile-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--tile-size), 1fr));
  grid-template-rows: repeat(auto-fill, var(--tile-size));
  gap: var(--gap);
  z-index: 1;
  pointer-events: none;
}

.tile-grid div {
  background-color: var(--tile-color);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* ===================== Hero Content ===================== */


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centers main content vertically */
  text-align: center;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  
    font-family: "Audiowide", sans-serif;

  
}
#hero-heading{
  color: rgb(255, 255, 255);
  font-weight:200;
   font-size: clamp(1.7rem, 4.5vw, 4.5rem);
}




.title-slogan {
  position: absolute;
  bottom: 4rem; /* above the scroll icon */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.text-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.solid-text {
  color: var(--accent-color);
}


 .outline-text {
  color: var(--one-color); 
  font-weight: 800;
}


.different-font {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}


/* Tagline */
.tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ccc;
  margin-top: .5rem;
  margin-bottom: 4rem;
  font-weight: 400;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-width: 80vw;
  /* background-color: #e48500; */
}


.journey-line {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 500;
  color: #eee;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.word-slider {
  display: inline-block;
  min-width: 240px; /* Wide enough to hold 'Discovered' or 'Beautiful' */
  text-align: center;
  white-space: nowrap;
}
/* .word-slider::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #a259ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
} */

.word-slider.animate::after {
  transform: scaleX(1);
}

.word-slider.fade {
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.transformation-line {
  font-size: clamp(2rem, 4.5vw, 5.2rem);
  margin-top: 3rem;
  font-weight: 600;
  color: #e9cdff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: "Outfit", sans-serif;
  height: 3rem;
}

.transformation-line .word,
.transformation-line .arrow {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
}

.transformation-line .show {
  opacity: 1;
  transform: translateY(0);
}

.arrow {
  color: white;
  font-weight: 800;
  font-size: 1.8rem;
}



.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #c3c2c4;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.3rem;
  font-family: "Segoe UI", sans-serif;
}



.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}







.get-started-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background-color: #851ffa;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 20px rgba(162, 89, 255, 0.4);
}

.get-started-btn:hover {
  background-color: #e48500;
  color: #ffffff;
  transform: translateX(-50%) scale(1);
}

.arrow-icon {
  font-size: 1.2rem;
  animation: arrow-bounce 1.6s infinite ease-in-out;
  display: inline-block;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}







#mouse-glow {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#mouse-glow.active {
  opacity: 1;
}


@keyframes glow-breathe {
  0%, 100% {
    transform: scale(1) translate(-50%, 50%);
    opacity: 0;
  }
  50% {
    transform: scale(1.08) translate(-50%, 50%);
    opacity: 1;
  }
}
@keyframes glow-breathe-2 {
  0%, 100% {
    transform: scale(1) translate(50%, 50%);
    opacity: 0;
  }
  50% {
    transform: scale(1.08) translate(50%, 50%);
    opacity: 1;
  }
}





/* 


#mouse-glow-1 {
  position: absolute;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--static-glow-color) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(70px);
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 0;
  animation: glow-move-left 6s ease-in-out infinite;
}

#mouse-glow-2 {
  position: absolute;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--static-glow-color) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(70px);
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  pointer-events: none;
  z-index: 0;
  animation: glow-move-right 6s ease-in-out infinite;
}

@keyframes glow-move-left {
  0%, 100% {
    transform: translate(-50%, 50%);
  }
  50% {
    transform: translate(20%, 60%);
  }
}

@keyframes glow-move-right {
  0%, 100% {
    transform: translate(50%, 50%);
  }
  50% {
    transform: translate(-20%, 60%);
  }
} */


/* Base styles — Large screens (≥ 550px) use default left/right animation */
#mouse-glow-1,
#mouse-glow-2 {
  position: absolute;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--static-glow-color) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  bottom: 0;
}

#mouse-glow-1 {
  left: 0;
  transform: translate(-50%, 50%);
  animation: glow-move-left 6s ease-in-out infinite;
}

#mouse-glow-2 {
  right: 0;
  transform: translate(50%, 50%);
  animation: glow-move-right 6s ease-in-out infinite;
}

/* Original animations */
@keyframes glow-move-left {
  0%, 100% {
    transform: translate(-50%, 50%);
  }
  50% {
    transform: translate(20%, 60%);
  }
}

@keyframes glow-move-right {
  0%, 100% {
    transform: translate(50%, 50%);
  }
  50% {
    transform: translate(-20%, 60%);
  }
}

/* 🔻 Mobile-specific animation override (less than 550px) */
@media screen and (max-width: 549px) {
  #mouse-glow-1,
  #mouse-glow-2 {
    background: radial-gradient(
      circle,
      var(--static-semi-glow-color) 0%,   /* <-- Lighter version of --static-glow-color */
      transparent 60%
    );
    filter: blur(60px); /* slightly lighter blur */
  }

  #mouse-glow-1 {
    transform: translate(-50%, 50%);
    animation: glow-up-left 4s ease-in-out infinite;
  }

  #mouse-glow-2 {
    transform: translate(50%, 50%);
    animation: glow-up-right 4s ease-in-out infinite;
  }

  @keyframes glow-up-left {
    0%, 100% {
      transform: translate(-65%, 70%);
    
    }
    50% {
      transform: translate(-60%, 55%);

    }
  }

  @keyframes glow-up-right {
    0%, 100% {
      transform: translate(65%, -75%);
    }
    50% {
      transform: translate(65%, -55%);
    }
  }


   .center-mobile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgb(161, 89, 255) 0%, transparent 80%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }


}














.highlighted-text {
  color: #a259ff;
  text-shadow: 0 0 10px rgba(162, 89, 255, 0.3);
}







.badge.below-heading {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  color: #ccc;
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 999px;
  margin-top: 1rem;
  display: inline-block;

  /* New additions */

    box-shadow: 0 0 10px rgba(255, 167, 3, 0.5);
  border:2px solid rgba(255, 166, 0, 0.855);
  transition: transform 0.3s ease;
   animation: floatBadge 3s ease-in-out infinite;
}

.badge.below-heading:hover {
  transform: scale(.95);

}

/* Optional twinkle for emoji inside the badge */
.badge.below-heading .sparkle {
  display: inline-block;
  animation: sparkleTwinkle 2s ease-in-out infinite;
}

@keyframes floatBadge {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}


@keyframes sparkleTwinkle {
  0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
  50% { opacity: 1; transform: rotate(15deg) scale(1.1); }
}



