/* ==========================================================================
   Aiyan Landing Page Styles
   Domain: aiyan.co
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  color: #222222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.content-container {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1.5vh);
}

.logo-wrapper {
  width: 100%;
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.logo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
}

.coming-soon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
}

.divider-line {
  flex: 0 1 clamp(40px, 9vw, 96px);
  height: 1px;
  background-color: #c4c4c4;
}

.coming-soon-text {
  font-size: clamp(13px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #2a2a2a;
  padding-left: 0.38em; /* offset letter-spacing for true center alignment */
  white-space: nowrap;
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 24px 16px;
  }

  .logo-wrapper {
    margin-bottom: 36px;
  }

  .coming-soon-divider {
    gap: 12px;
  }

  .divider-line {
    flex: 0 1 32px;
  }

  .coming-soon-text {
    font-size: 13px;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
  }
}
