* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(17, 17, 132, 0.25) 100%
  );
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0.6rem 1.8rem;
  width: 90%;
  margin: 40px auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-logo {
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}

.nav-logo img {
  max-height: 2rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}
.navbar .right a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: black;
  font-size: 0.85rem;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

.logoTalrop {
  height: 2.5rem;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.main-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  text-align: center;
  padding: 0px 1rem 6rem;
  max-width: 1200px;
  margin: 0px auto;
}

.main-image {
  margin-bottom: 2rem;
}
.glow-strip {
  position: absolute;
  width: 7px;
  height: 450px;
  top: 0;
  pointer-events: none;
  z-index: 0;
  background: none;
}
.strip-a {
  left: 28%;
}
.strip-n {
  left: 50%;
}

.main-image img {
  max-width: 590px;
  width: 100%;
  height: auto;
  animation: 1s ease-out 0s 1 normal forwards running fadeUp;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.description p {
  font-size: 1.15rem;
  color: rgb(68, 68, 68);
  margin-bottom: 15px;
  line-height: 1.5em;
  animation: 1s ease-out 0s 1 normal forwards running fadeUp;
  padding: 0px;
  box-sizing: border-box;
}

.launch-heading {
  font-family: "Poppins", Georgia, serif;
  font-size: 95px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2rem;
  background: radial-gradient(50% 75% at 50% 50%, #5a5aa3 0%, #111184 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------------------- RESPONSIVE -------------------- */

/* ✅ Tablets: iPad / mid screens */
@media (max-width: 1024px) and (min-width: 600px) {
  .navbar {
    margin: 24px;
    padding: 0.6rem 1.2rem;
  }

  .nav-logo {
    height: 52px;
    padding: 0.4rem 0.8rem;
  }

  .main-content {
    margin-top: 2.5rem;
    padding: 0 1.5rem 5rem;
  }

  .main-image img {
    max-width: 480px;
  }

  .description p {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .launch-heading {
    font-size: clamp(60px, 5vw, 3.5rem);
  }
}

/* ✅ Large Mobiles: 480px–600px */
@media (max-width: 600px) and (min-width: 390px) {
  .navbar {
    margin: 18px;
    padding: 0.5rem 1rem;
  }

  .nav-logo {
    height: 48px;
  }

  .nav-logo img {
    max-height: 2em;
  }

  .main-image img {
    max-width: 320px;
  }

  .description p {
    font-size: 1rem;
    line-height: 1.4em;
  }

  .launch-heading {
    font-size: clamp(40px, 8vw, 3rem);
    margin-top: 1.2rem;
  }
}

/* ✅ Small Mobiles: below 390px */
@media (max-width: 390px) {
  .navbar {
    margin: 17px 16px;
    padding: 0.5rem 0.8rem;
    gap: 6px;
  }

  .nav-logo {
    height: 47px;
    padding: 0.3rem 0.6rem;
  }

  .nav-logo img {
    max-height: 1.2em;
    width: 80px;
  }

  .main-image img {
    max-width: 260px;
    margin: 1.2em;
  }

  .description p {
    font-size: 0.8rem;
    line-height: 1.3em;
    margin-bottom: 12px;
  }

  .launch-heading {
    font-size: 32px;
    margin-top: 1rem;
  }
}


/* --- NAV LOGO IMPROVEMENTS --- */
.nav-logo img {
  max-height: 1.8rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  display: block;
}

.logoTalrop {
  height: 2.5rem;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

/* --- RESPONSIVE IMPROVEMENTS --- */
@media (max-width: 600px) {
  .navbar {
    margin: 14px;
    padding: 0.5rem 0.8rem;
    gap: 6px;
  }
  .nav-logo {
    height: 44px;
    padding: 0.3rem 0.6rem;
  }
  .nav-logo img,
  .logoTalrop {
    max-height: 2rem;
    max-width: 70px;
    height: auto;
    width: auto;
  }
  .main-image img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }
  .description p {
    font-size: 0.85rem;
    line-height: 1.3em;
    margin-bottom: 12px;
  }
  .launch-heading {
    font-size: 28px;
    margin-top: 1rem;
  }
}

/* -------------------- BASE STATES FOR ANIMATION-------------------- */
body {
  opacity: 0;
}

.navbar,
.main-image img,
.launch-heading,
.description p,
.glow-strip {
  opacity: 0;
  transform: translateY(0);
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bgReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* -------------------- APPLY ANIMATIONS -------------------- */
body {
  animation: bgReveal 0.5s ease-in forwards;
}

.navbar {
  animation: slideDown 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.4s;
}

.main-image img,
.launch-heading,
.description p {
  animation: popUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.4s;
}

.glow-strip {
  animation: bgReveal 1s ease-in forwards;
  animation-delay: 0.9s;
}
