/* ── Reset & base ─────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ─────────────────────────────────────────────── */

.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
}

.landing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
  width: 100%;
  animation: fade-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Typography ─────────────────────────────────────────── */

.landing__brand {
  font-size: clamp(2.75rem, 10vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.landing__headline {
  margin-top: clamp(3rem, 10vw, 5.5rem);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #000000;
}

.landing__status {
  margin-top: clamp(2.5rem, 7vw, 4rem);
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.45;
}

.landing__soon {
  margin-top: clamp(2rem, 5vw, 3rem);
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
}

/* ── Pulse dot ──────────────────────────────────────────── */

.landing__dot {
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-left: 0.35em;
  vertical-align: middle;
  background-color: #000000;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

/* ── Animations ─────────────────────────────────────────── */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.25;
    transform: scale(0.85);
  }
}

/* ── Reduced motion ─────────────────────────────────────── */

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

  .landing__dot {
    animation: none;
  }
}
