:root {
  --bg:        #000000;
  --text:      #eef2f7;
  --tagline:   #66748c;
  --muted:     #66748c;
  --ring:      #6f93bd;
  --space:     clamp(1.5rem, 4vw, 3rem);
}

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

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

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space);
  gap: 0;
}

.wordmark {
  margin: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  width: min(84vw, 900px);
  height: auto;
}

.status {
  margin: clamp(2.75rem, 7vh, 4.75rem) 0 0;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-indent: 0.42em;
  color: var(--muted);
}

.tagline {
  margin: clamp(2.25rem, 6vh, 4rem) 0 0;
  max-width: 46rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--tagline);
  text-wrap: pretty;
}

@media (max-width: 600px) {
  .tagline .brk { display: none; }
}

.social {
  display: flex;
  align-items: center;
  gap: clamp(1.7rem, 6vw, 2.85rem);
  margin-top: clamp(3.25rem, 9vh, 6rem);
}

.social a {
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social img {
  display: block;
  width: clamp(1.85rem, 5vw, 2.35rem);
  height: auto;
}

.social a:hover,
.social a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer {
  padding: var(--space);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5d6877;
}

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

@media (prefers-reduced-motion: no-preference) {
  .stage > *  { animation: rise 0.7s ease both; }
  .status     { animation-delay: 0.08s; }
  .tagline    { animation-delay: 0.16s; }
  .social     { animation-delay: 0.24s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
  }
}
