* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #071a2c, #0b2240);
  color: #fff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8rem 2rem 2rem;
  min-height: 100vh;
  gap: 2rem;
  flex-wrap: wrap;
}

.content {
  flex: 1 1 45%;
  max-width: 600px;
  z-index: 1;
}

/* Logo styling */
.logo-img {
  display: block;
  max-width: 260px;
  width: 70%;
  height: auto;
  margin: 0 0 1.25rem 0;
  filter: drop-shadow(0 6px 24px rgba(36, 100, 236, 0.22));
}

.content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #2464ec, #5aa3ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* Badge/Begron yang lebih rapi untuk nama PT */
.brand-title {
  color: #d8e8ff;
  -webkit-text-fill-color: initial;
  display: inline-block;
  width: fit-content;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  line-height: 1.25;
  padding: 0.4rem 0.75rem 0.45rem 1.25rem;
  border-radius: 12px;
  position: relative;
  margin-bottom: 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(36, 100, 236, 0.06)
  );
  border: 1px solid rgba(36, 100, 236, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(6px);
  white-space: nowrap; /* satu baris */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* padding kiri sudah digabungkan ke aturan utama .brand-title */

/* Judul Coming Soon lebih besar dengan aksen halus */
.coming-soon-title {
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  margin-bottom: 0.85rem;
}

.content p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.buttons button {
  background: transparent;
  border: 2px solid #2464ec;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #2464ec, #5aa3ff);
  transition: width 0.3s ease;
  z-index: -1;
}

.buttons button:hover::before {
  width: 100%;
}

.buttons button:first-child {
  background: linear-gradient(135deg, #2464ec, #f7b500);
  box-shadow: 0 4px 15px rgba(36, 100, 236, 0.35);
}

.buttons button:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 100, 236, 0.55);
}

/* removed: .social-icons (tidak dipakai) */

.bg-main-container {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  max-width: 600px;
}

.bg-main {
  width: 100%;
  height: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
}

spline-viewer {
  width: 100%;
  user-select: none;
  pointer-events: none;
  height: 500px;
}

/* removed: .background-elements (tidak dipakai) */

/* removed: .hamburger (tidak dipakai) */

/* removed: .mobile-menu (tidak dipakai) */

/* removed: .close-btn (tidak dipakai) */

/* removed: .overlay (tidak dipakai) */

@media (max-width: 992px) {
  .content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 6rem;
  }

  .bg-main-container,
  .content {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .bg-main {
    width: 100%;
    height: 238px;
  }

  spline-viewer {
    margin-left: 70px;
    width: 100%;
    height: 350px;
  }

  .buttons {
    justify-content: center;
  }

  .content h1 {
    font-size: 2.5rem;
  }

  .logo-img {
    margin: 0 auto 1rem;
    max-width: 220px;
    width: 65%;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .buttons button {
    width: 100%;
  }

  spline-viewer {
    height: 250px;
  }

  .logo-img {
    max-width: 200px;
    width: 70%;
  }
}
