:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #888888;
  --muted-strong: #aaaaaa;
  --accent: #10b981;
  --border: rgba(255, 255, 255, 0.08);
}

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

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  display: inline-block;
}

.brand-name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  max-width: 36rem;
}

.tagline {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
}

.accent {
  color: var(--accent);
  font-weight: 400;
}

.description {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted-strong);
  max-width: 32rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  }
  50% {
    opacity: 0.65;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

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

.status-label {
  color: var(--muted-strong);
}

.status-divider {
  display: inline-block;
  width: 1px;
  height: 0.75rem;
  background-color: var(--border);
}

.status-eta {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.copyright {
  color: var(--muted);
}

.contact {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

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

.contact:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .page {
    padding: 2rem 1.5rem;
    grid-template-rows: auto 1fr auto;
  }

  .hero {
    gap: 1.5rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
