/* findmyteam.co — Coming Soon
   Tokens per interface contract (docs/BACKLOG.md). Do not change hex values
   without a manager-approved update to the contract. */
:root {
  --bg: #0B0F17;
  --fg: #F2F5F9;
  --muted: #8B94A7;
  --accent: #3DDC97;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh; /* fallback for browsers without dvh/svh support */
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  text-align: center;
}

.page {
  width: 100%;
  max-width: 32rem;
}

.wordmark {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--fg);
}

/* Single deliberate accent touch: a thin decorative rule under the
   wordmark, purely visual — not exposed to assistive tech. */
.wordmark::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--accent);
  border-radius: 2px;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 1.6rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.subline {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.5;
  color: var(--muted);
}

/* Defined for future interactive elements; none exist on this page today. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #F5F7FA;
    --fg: #10151C;
    --muted: #4B5566;
    /* Dark-mode --accent (#3DDC97) measures ~1.7:1 on this background and
       reads as washed out. Darkened for light mode. Manager fix, 2026-08-03. */
    --accent: #0F9D6B;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
