@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-main: #0e1311;
  --text-main: #f5f7f6;
  --text-muted: #aab4b0;
  --accent: #c8a24d;
  --border: #1f2a26;
}

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

html, body {
  height: 100%;
  background-color: var(--bg-main);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-main);
}

/* Page */
.page {
  position: relative;
  min-height: 100svh;
  padding: 72px 64px;
  display: grid;
  grid-template-rows: 1fr auto;
}

/* Background */
.background {
  position: absolute;
  inset: 0;
  background:
          radial-gradient(
                  700px 700px at 20% 15%,
                  rgba(200, 162, 77, 0.15),
                  transparent 70%
          ),
          radial-gradient(
                  600px 600px at 80% 70%,
                  rgba(200, 162, 77, 0.1),
                  transparent 75%
          ),
          linear-gradient(
                  to bottom right,
                  transparent 35%,
                  rgba(20, 27, 24, 0.95)
          );
  z-index: 0;
}

/* Main grid */
.content-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100%;
}

/* LEFT */
.left {
  display: flex;
  align-items: center;
}

.coming-soon {
  display: flex;
  gap: 0.08em;

  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--accent);
}

.coming-soon span {
  display: inline-block;
  transform-origin: center;
  animation: letterBreath 3.5s ease-in-out infinite;
}

.coming-soon span:nth-child(1)  { animation-delay: 0s; }
.coming-soon span:nth-child(2)  { animation-delay: 0.2s; }
.coming-soon span:nth-child(3)  { animation-delay: 0.4s; }
.coming-soon span:nth-child(4)  { animation-delay: 0.6s; }
.coming-soon span:nth-child(5)  { animation-delay: 0.8s; }
.coming-soon span:nth-child(6)  { animation-delay: 1s; }
.coming-soon span:nth-child(8)  { animation-delay: 1.2s; }
.coming-soon span:nth-child(9)  { animation-delay: 1.4s; }
.coming-soon span:nth-child(10) { animation-delay: 1.6s; }
.coming-soon span:nth-child(11) { animation-delay: 1.8s; }

@keyframes letterBreath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}


@media (prefers-reduced-motion: reduce) {
  .coming-soon {
    animation: none;
  }
}


/* RIGHT */
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.logo-hero {
  max-width: 380px;
  width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
}

.tagline {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 2;
}

.tagline span {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* Footer */
.footer {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .right {
    display: none;
  }

  .coming-soon {
    font-size: 3.8rem;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 48px 24px;
  }

  .coming-soon {
    font-size: 3.2rem;
  }
}
