:root {
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.42);
  --accent: #e8001c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem 2.5rem;
}

.logo {
  width: min(320px, 80vw);
  height: auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.status .soon {
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.42em;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.social {
  display: flex;
  gap: 2rem;
}

.social-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--text);
  outline: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}
