/* ============================================
   UQOMI — Coming Soon
   Brand colors:
     Azure Blue (base)   #38A3AB
     Brown (ECO HOME)    #7D6D5C
     Ivory (Comfort)     #FBF4D8
     Dark                #2B2B2D
   Font: Outfit
   ============================================ */

:root {
  --azure: #38A3AB;
  --azure-deep: #2C8189;
  --brown: #7D6D5C;
  --ivory: #FBF4D8;
  --ivory-soft: #F4EFE0;
  --dark: #232325;
  --dark-2: #1A1A1C;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body { height: 100%; }

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  background: var(--dark-2);
  color: var(--ivory);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient brand glow behind content */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(56,163,171,0.30), transparent 70%),
    radial-gradient(50% 60% at 80% 90%, rgba(125,109,92,0.22), transparent 70%),
    radial-gradient(40% 40% at 15% 80%, rgba(56,163,171,0.15), transparent 70%);
  animation: drift 18s var(--ease) infinite alternate;
}

@keyframes drift {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}

/* ---------- Stage ---------- */
.stage {
  position: relative;
  z-index: 1;
  width: min(680px, 90vw);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: rise 1s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Status badge ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  background: rgba(56,163,171,0.12);
  border: 1px solid rgba(56,163,171,0.35);
  padding: 8px 16px;
  border-radius: 999px;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 0 0 rgba(56,163,171,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(56,163,171,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(56,163,171,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,163,171,0); }
}

/* ---------- Logo slider ---------- */
.slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.slider-track {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Wordmark slide is wider — let it scale within the box */
.logo-wordmark {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.logo-icon {
  width: 180px;
  height: 180px;
  border-radius: 38px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  animation: float 5s var(--ease) infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* ---------- Dots ---------- */
.dots {
  display: flex;
  gap: 9px;
}

.dot {
  width: 8px; height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(251,244,216,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}

.dot.is-active {
  background: var(--azure);
  width: 24px;
  border-radius: 999px;
}

/* ---------- Copy ---------- */
.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.slogan {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.lead {
  max-width: 480px;
  font-size: clamp(15px, 2.4vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(251,244,216,0.72);
}

/* ---------- Tags ---------- */
.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.tags li {
  font-size: 13px;
  font-weight: 400;
  color: var(--ivory-soft);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- Footer ---------- */
.foot {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(251,244,216,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ig {
  color: var(--azure);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.ig:hover { color: var(--ivory); }

.sep { opacity: 0.5; }

/* ---------- Accessibility / Motion ---------- */
:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .stage { gap: 24px; padding: 32px 18px; }
  .slider-track { width: 180px; height: 180px; }
  .logo-icon { width: 150px; height: 150px; }
}
