/* ==========================================================================
   KARYON — Coming Soon Homepage
   ========================================================================== */

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

html, body {
  width: 100%;
  min-height: 100%;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 64px);
}

.artwork-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.karyon-artwork {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 8px;
}

.coming-soon-heading {
  font-family: 'Permanent Marker', 'Sedgwick Ave', cursive;
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.15;
  color: #ffffff;
  text-transform: capitalize;
  text-shadow: 
    0 0 1px rgba(255, 255, 255, 0.9),
    0 0 8px rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  body {
    padding: 24px 16px;
  }
  
  .karyon-artwork {
    max-width: 92vw;
  }
  
  .coming-soon-heading {
    font-size: 38px;
    letter-spacing: 2px;
  }
}
