#landing-view {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-color: transparent;
  z-index: 10;
  transition: opacity 0.5s ease;
  text-align: left;
  padding: 4rem;
}

#landing-view .landing-content {
  max-width: 1000px;
  padding: 0;
  border-radius: 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#landing-view h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 0;
  letter-spacing: -0.04em;
  max-width: 900px;
}
#landing-view h1 span {
  color: var(--text-primary);
}

.landing-subtitle {
  display: none;
}
.landing-desc {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1rem;
}


.float-panel {
  display: none;
}
.float-panel strong {
  font-family: var(--font-ui);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#fp-1 {
  top: 12%;
  left: 8%;
  animation: floatObj 14s infinite ease-in-out;
}
#fp-2 {
  bottom: 15%;
  left: 12%;
  animation: floatObj 18s infinite ease-in-out -4s;
}
#fp-3 {
  top: 18%;
  right: 8%;
  animation: floatObj 16s infinite ease-in-out -7s;
}
#fp-4 {
  bottom: 20%;
  right: 10%;
  animation: floatObj 15s infinite ease-in-out -2s;
}
#fp-5 {
  top: 45%;
  left: 2%;
  animation: floatObj 22s infinite ease-in-out -11s;
  opacity: 0.3;
  filter: blur(2px);
  padding: 0.75rem;
}
#fp-6 {
  top: 55%;
  right: 3%;
  animation: floatObj 19s infinite ease-in-out -8s;
  opacity: 0.3;
  filter: blur(2px);
  padding: 0.75rem;
}
#fp-7 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  animation: floatObjHero 16s infinite ease-in-out;
  opacity: 0.9;
  padding: 1.5rem;
  text-align: center;
  border-color: rgba(253, 164, 175, 0.4);
}
#fp-7 strong {
  font-size: 1rem;
  color: var(--fail-text);
}

@media (max-width: 1000px) {
  .float-panel {
    display: none;
  }
}

@media (max-width: 720px) {
  #landing-view {
    padding: 16px;
    justify-content: center;
    background-size: 30px 30px;
  }
  #landing-view h1 {
    font-size: 3.5rem;
    line-height: 1;
  }
  #landing-view .landing-content {
    gap: 1.5rem;
  }
  .btn-hero {
    width: 100%;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .landing-desc {
    max-width: 100%;
  }
}
