:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.45);
  --hover: rgba(255, 255, 255, 0.9);
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Archivo", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: clamp(28px, 5vw, 56px);
}

.logo {
  width: clamp(160px, 26vw, 280px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.headline {
  font-family: "Archivo", "Helvetica Neue", "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--fg);
  animation: fadeUp 1.2s ease-out 0.2s both;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 40px);
  animation: fadeUp 1.2s ease-out 0.4s both;
}

.socials a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--hover);
  outline: none;
}

.socials svg {
  display: block;
}

.footer {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  animation: fadeUp 1.2s ease-out 0.6s both;
}

.footer .brand {
  font-family: "Anton", "Archivo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .headline { letter-spacing: 0.12em; text-indent: 0.12em; }
  .socials a { width: 40px; height: 40px; }
  .footer { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .socials,
  .footer { animation: none; }
  .socials a { transition: none; }
}
