/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { 
  height: 100%; 
  overflow: hidden; /* Non-scrollable */
}

body {
  font-family: 'Anta', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Landing Section - Full viewport, non-scrollable */
.landing-section {
  width: 100%;
  height: 100vh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.landing-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Logo */
.logo-wrap { 
  display: flex; 
  flex-direction: column; 
  align-items: center;
}

.logo-inline { 
  display: flex; 
  align-items: baseline; 
  gap: 8.5px; 
}

.logo-main {
  font-family: 'Anta', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(6px);
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateX(-24px);
}

.logo-underline {
  width: 30%;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, #00bfff, #0088ff 70%);
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0,136,255,0.12);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

/* Hero Content - Initial hidden state */
.hero-content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-title {
  font-family: 'Anta', sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0;
  margin: 0;
  max-width: 900px;
  transform: translateY(20px);
}

/* Coming Soon Text (same font as PRISM logo - Anta) */
.coming-soon-wrap {
  margin-top: 1rem;
}

.coming-soon-text {
  font-family: 'Anta', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive */
@media (max-width: 768px) {
  .landing-section {
    padding: 30px 20px;
  }

  .landing-container {
    gap: 40px;
  }

  .logo-main {
    font-size: 2rem;
  }

  .logo-sub {
    font-size: 1.6rem;
    transform: translateX(-16px);
  }

  .logo-underline {
    width: 42%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .coming-soon-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 1.8rem;
  }

  .logo-sub {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .coming-soon-text {
    font-size: 1.4rem;
  }
}