:root {
  --bg: #07080d;
  --text: #f2f3f7;
  --muted: #a4a9bb;
  --red: #ff2a1f;
  --red-glow: rgba(255, 42, 31, 0.55);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 45%, rgba(7, 8, 13, 0.35) 0%, rgba(7, 8, 13, 0.82) 60%, rgba(7, 8, 13, 0.96) 100%),
    linear-gradient(to bottom, rgba(7, 8, 13, 0.55), rgba(7, 8, 13, 0.2) 40%, rgba(7, 8, 13, 0.9)),
    url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px 24px;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 1.8s ease-out infinite;
}

.logo {
  margin: 0;
  width: min(640px, 100%);
  line-height: 0;
}

.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.7));
}

.tagline {
  margin: 12px 0 0;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.lede {
  max-width: 34rem;
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.footer {
  padding: 24px 16px 28px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 42, 31, 0.6);
  transition: color 0.2s, border-color 0.2s;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 10px rgba(255, 42, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 42, 31, 0); }
}

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

@media (max-width: 600px) {
  body {
    background-attachment: scroll;
    background-position: 62% center;
  }
}

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