.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  padding: 40px 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* =============================================
   BACKGROUND AMBIENT BLOBS
   ============================================= */

.splash-bg-top {
  position: absolute;
  top: -5%;
  right: -8%;
  width: 55%;
  height: 38%;
  background: radial-gradient(ellipse at 60% 40%, rgba(11, 128, 67, 0.16) 0%, rgba(11, 128, 67, 0.04) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.splash-bg-bottom-left {
  position: absolute;
  bottom: 18%;
  left: -12%;
  width: 55%;
  height: 32%;
  background: radial-gradient(ellipse at 30% 60%, rgba(242, 111, 33, 0.14) 0%, rgba(242, 111, 33, 0.03) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   VISIBLE DECORATIVE CURVES (Mockup Style)
   ============================================= */

/* Top-right — large green arc */
.splash-curve-1 {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 4px solid rgba(11, 128, 67, 0.55);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 0;
}

/* Top-right — inner smaller green arc */
.splash-curve-2 {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid rgba(11, 128, 67, 0.35);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left — large orange arc */
.splash-curve-3 {
  position: absolute;
  bottom: 20%;
  left: -32px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 4px solid rgba(242, 111, 33, 0.52);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-right — green arc */
.splash-curve-4 {
  position: absolute;
  bottom: 22%;
  right: -22px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(11, 128, 67, 0.42);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left — small orange inner arc */
.splash-curve-5 {
  position: absolute;
  bottom: 17%;
  left: 28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(242, 111, 33, 0.35);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(40deg);
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   CONTENT AREA
   ============================================= */

.splash-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
  margin-top: 30px;
}

/* === BIGGER LOGO === */
.splash-logo-container {
  width: 265px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0);
  animation: logoZoomIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.splash-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === BIGGER SLOGAN === */
.splash-slogan {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(30px);
  animation: sloganSlideUp 0.8s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  letter-spacing: -0.3px;
}

.slogan-highlight {
  color: var(--primary-green);
  font-size: 34px;
  font-weight: 800;
}

.slogan-line-1 {
  display: block;
  margin-bottom: 2px;
  font-size: 34px;
  font-weight: 800;
}

.slogan-renovate {
  color: var(--dark-charcoal);
  font-size: 34px;
  font-weight: 800;
}

.slogan-rest {
  color: var(--dark-charcoal);
  display: block;
  font-size: 34px;
  font-weight: 800;
}

/* =============================================
   PROGRESS BAR
   ============================================= */

.splash-progress-wrapper {
  width: 80%;
  max-width: 260px;
  margin-bottom: 36px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.5s 0.6s forwards;
}

.splash-progress-track {
  width: 100%;
  height: 5px;
  background-color: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.splash-progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--primary-green2);
  border-radius: 10px;
  transition: width 0.1s linear;
}

/* =============================================
   CITY SKYLINE
   ============================================= */

.splash-skyline-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.splash-skyline-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes logoZoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sloganSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* =============================================
   DESKTOP RESPONSIVE
   ============================================= */

@media (min-width: 768px) {
  .splash-logo-container {
    width: 320px;
    margin-bottom: 28px;
    /* Same animation, just larger size */
  }

  .splash-slogan {
    font-size: 34px;
    margin-top: 28px;
  }

  .slogan-highlight {
    font-size: 34px;
  }

  .slogan-line-1 {
    font-size: 34px;
  }

  .slogan-renovate {
    font-size: 34px;
  }

  .slogan-rest {
    font-size: 34px;
  }

  .splash-curve-1 {
    width: 290px;
    height: 290px;
    top: -50px;
    right: -50px;
  }

  .splash-curve-2 {
    width: 175px;
    height: 175px;
    top: 28px;
    right: 28px;
  }

  .splash-curve-3 {
    width: 260px;
    height: 260px;
    bottom: 18%;
    left: -45px;
  }

  .splash-curve-4 {
    width: 190px;
    height: 190px;
    bottom: 20%;
    right: -32px;
  }

  .splash-curve-5 {
    width: 140px;
    height: 140px;
    bottom: 14%;
    left: 50px;
  }
}
