/* ------------------------------------------------------------------
   Inspection I — coming soon page
   Plain CSS, no framework. Dark, minimal, professional.
------------------------------------------------------------------ */

:root {
  --bg: #0a0e14;          /* near-black background */
  --bg-glow: #101826;     /* subtle lighter tone for the radial glow */
  --text: #e6edf3;        /* primary near-white text */
  --muted: #8b97a7;       /* secondary grey text */
  --accent: #3b82f6;      /* blue accent (the "I" and the email) */
  --border: #1e2733;      /* faint separators */
}

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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  /* A soft glow behind the content so the flat dark isn't lifeless. */
  background-image: radial-gradient(
    ellipse 60% 50% at 50% 38%,
    var(--bg-glow) 0%,
    var(--bg) 70%
  );
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.content {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.wordmark {
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.wordmark .mark {
  color: var(--accent);
}

.tagline {
  margin: 1.5rem auto 2.5rem;
  max-width: 34ch;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}

.contact {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact:hover,
.contact:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 480px) {
  .footer {
    position: static;
    margin-top: 3rem;
  }
}
