:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f2f2f2;
  --muted: rgba(255, 255, 255, 0.48);
  --soft: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Metropolis,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

.soon-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 32px 20px;
  isolation: isolate;
}

.soon-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(0, 0, 0, 0.4));
}

.background-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, black 48%, transparent 82%);
}

.soft-light {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
}

.soft-light-a {
  top: -180px;
  left: 8%;
  background: rgba(255, 255, 255, 0.12);
}

.soft-light-b {
  right: -160px;
  bottom: -180px;
  background: rgba(170, 170, 170, 0.11);
}

.hero {
  width: min(100%, 860px);
  text-align: center;
  animation: hero-in 700ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  user-select: none;
  -webkit-user-drag: none;
}

h1 {
  margin: 18px auto 0;
  max-width: 780px;
  color: var(--text);
  font-size: clamp(46px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.lead {
  margin: 24px auto 0;
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.primary-button {
  background: rgba(255, 255, 255, 0.92);
  color: #101010;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.14);
}

.primary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: white;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.2);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

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

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .soon-page {
    min-height: 100svh;
  }

  .logo {
    width: 66px;
    height: 66px;
  }
}

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