:root {
  color-scheme: dark;
  --background: #131218;
  --primary: #f2f2f2;
  --muted: #9a9aa8;
  --accent: #8c7bd8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--background);
  color: var(--primary);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 72px 24px 48px;
}

.intro {
  width: min(100%, 600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in 520ms ease-out both;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 34px);
  margin-bottom: clamp(12px, 3vw, 24px);
}

.logo {
  width: auto;
  height: clamp(200px, 46vw, 340px);
  max-width: 62vw;
  clip-path: inset(0 0 0 0%);
  object-fit: contain;
}

.copy {
  display: grid;
  gap: 12px;
}

h1,
p {
  margin: 0;
}

h1 {
  display: grid;
  justify-items: start;
  color: var(--primary);
  line-height: 0.92;
  text-align: left;
  transform: translateY(30px);
}

.brand-name {
  font-size: clamp(1.85rem, 6.8vw, 3.65rem);
  font-weight: 700;
}

.brand-domain {
  color: var(--muted);
  font-size: clamp(1.05rem, 3.8vw, 1.9rem);
  font-weight: 400;
}

.tagline {
  color: var(--muted);
  font-size: clamp(1rem, 4.2vw, 1.35rem);
}

.soon {
  color: var(--muted);
  font-size: clamp(0.92rem, 3.7vw, 1.05rem);
}

.contact {
  margin-top: clamp(40px, 8vw, 58px);
  color: var(--muted);
  font-size: 0.98rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 0.22em;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

footer {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.75rem;
}

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

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

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