@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 35, 202, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(57, 20, 129, 0.22), transparent 35%),
    linear-gradient(135deg, #ffffff, #fff7fd, #f8f2ff);
  color: #241636;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.coming-soon-page {
  width: 100%;
  min-height: 100vh;
  padding: 34px;
  position: relative;
}

.bg-circle {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  filter: blur(2px);
}

.circle-one {
  width: 180px;
  height: 180px;
  top: 8%;
  left: 6%;
  background: rgba(240, 35, 202, 0.14);
}

.circle-two {
  width: 220px;
  height: 220px;
  right: 5%;
  bottom: 8%;
  background: rgba(57, 20, 129, 0.14);
}

.hero-section {
  width: 100%;
  max-width: 1180px;
  min-height: 640px;
  margin: 0 auto;
  padding: 58px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(57, 20, 129, 0.10);
  box-shadow: 0 30px 90px rgba(57, 20, 129, 0.14);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 35, 202, 0.18), rgba(57, 20, 129, 0.18));
}

.brand-area,
.category-showcase {
  position: relative;
  z-index: 2;
}

.logo {
  width: 100%;
  max-width: 340px;
  margin-bottom: 28px;
}

.tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(240, 35, 202, 0.10);
  color: #391481;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.brand-area h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #391481, #7a22d8, #f023ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-area p {
  font-size: 17px;
  line-height: 1.75;
  color: #655b70;
  max-width: 560px;
  margin-bottom: 34px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 850;
  transition: 0.25s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #391481, #f023ca);
  box-shadow: 0 16px 30px rgba(240, 35, 202, 0.28);
}

.secondary-btn {
  color: #391481;
  background: #ffffff;
  border: 1px solid rgba(57, 20, 129, 0.14);
  box-shadow: 0 14px 26px rgba(57, 20, 129, 0.08);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 172px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(57, 20, 129, 0.10);
  box-shadow: 0 18px 42px rgba(57, 20, 129, 0.10);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(57, 20, 129, 0.08), rgba(240, 35, 202, 0.12));
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(57, 20, 129, 0.15);
}

.card-large {
  min-height: 250px;
}

.card-wide {
  grid-column: span 2;
  min-height: 150px;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #391481, #f023ca);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 22px;
  box-shadow: 0 14px 26px rgba(240, 35, 202, 0.24);
}

.category-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: #2e174c;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 15px;
  font-weight: 600;
  color: #746a80;
}

.info-section {
  width: 100%;
  max-width: 1180px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.info-card {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(57, 20, 129, 0.10);
  box-shadow: 0 16px 36px rgba(57, 20, 129, 0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-card i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(240, 35, 202, 0.10);
  color: #391481;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex: 0 0 auto;
}

.info-card h4 {
  font-size: 14px;
  font-weight: 900;
  color: #2e174c;
  margin-bottom: 7px;
}

.info-card a {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #766a83;
  word-break: break-word;
}

.info-card a:hover {
  color: #f023ca;
}

/* Laptop */
@media (max-width: 1100px) {
  .hero-section {
    padding: 44px;
    gap: 36px;
  }

  .info-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .coming-soon-page {
    padding: 22px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 42px 28px;
    border-radius: 30px;
  }

  .logo {
    max-width: 310px;
  }

  .brand-area p {
    margin-left: auto;
    margin-right: auto;
  }

  .action-row {
    justify-content: center;
  }

  .category-showcase {
    max-width: 620px;
    margin: 0 auto;
  }

  .info-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .coming-soon-page {
    padding: 14px;
  }

  .hero-section {
    padding: 30px 18px;
    border-radius: 24px;
    gap: 32px;
  }

  .logo {
    max-width: 245px;
    margin-bottom: 24px;
  }

  .tag {
    font-size: 12px;
    padding: 9px 14px;
  }

  .brand-area h1 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .brand-area p {
    font-size: 15px;
    line-height: 1.65;
  }

  .action-row {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .category-showcase {
    grid-template-columns: 1fr;
  }

  .card-wide {
    grid-column: span 1;
  }

  .card-large,
  .category-card {
    min-height: 160px;
  }

  .category-card {
    border-radius: 22px;
    padding: 22px;
  }

  .category-card h3 {
    font-size: 22px;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    min-height: auto;
  }
}