/* yourkey.ai — YourKey product pages. One quiet register, no framework.
   Same palette and voice as the key-gateway.io identity pages. */
:root {
  --bg: hsl(222 18% 7%);
  --fg: hsl(220 14% 88%);
  --muted: hsl(220 10% 62%);
  --line: hsl(220 12% 18%);
  --accent: hsl(40 80% 55%);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.65 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}
main { max-width: 680px; margin: 0 auto; padding: 72px 24px 96px; }
h1 { font-size: clamp(26px, 4.4vw, 33px); letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 10px; }
.lede { color: var(--muted); margin: 0 0 34px; font-size: 16.5px; }
h2 { font-size: 16.5px; margin: 32px 0 8px; }
p, li { font-size: 15px; }
li { margin: 4px 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
strong { color: var(--fg); }
.nav { display: flex; gap: 18px; align-items: baseline; margin: 0 0 56px; font-size: 14px; }
.nav .word { font-weight: 700; letter-spacing: -0.01em; color: var(--fg); font-size: 15px; }
/* Wordmark = the mark + the name. Served as PNG because the brand mark only
   exists as raster art -- the favicon.svg shipped alongside it in several
   repos is a Lucide `key` placeholder, not this mark. */
.nav .word a { display: inline-flex; align-items: center; gap: 8px; }
.nav .word .mark { flex: none; width: 20px; height: 20px; }
.nav .word a:hover .mark { opacity: 0.85; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--accent); }
.nav .word a { color: var(--fg); }
.meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.meta a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.meta a:hover { color: var(--accent); }

/* ── Landing page only ────────────────────────────────────────────────────
   Still no scripts and no inline styles, so the vhost CSP stays at
   default-src 'none'. */

.status {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  vertical-align: 1px;
  border-radius: 50%;
  background: var(--accent);
}

/* Early-access form. No JS, so validation is the browser's (type=email +
   required) and the outcome is a plain POST/redirect to a static page. */
.signup { margin: 0 0 44px; }
.signup > label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 9px;
}
.signup-row { display: flex; flex-wrap: wrap; gap: 9px; }
.signup input[type="email"] {
  flex: 1 1 15rem;
  min-width: 0;
  font: inherit;
  font-size: 15px;
  padding: 10px 13px;
  color: var(--fg);
  background: hsl(222 16% 10%);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.signup input[type="email"]::placeholder { color: hsl(220 10% 44%); }
.signup input[type="email"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.signup button {
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  color: hsl(222 18% 7%);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
}
.signup button:hover { background: hsl(40 84% 62%); border-color: hsl(40 84% 62%); }
.signup button:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
.note { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.note a:hover { color: var(--accent); }

/* Honeypot. Off-screen rather than display:none — naive bots skip the
   latter but still fill the former, which is the whole point. */
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.grid { list-style: none; padding: 0; margin: 0; }
.grid li { margin: 0 0 12px; }

.faq { margin: 0; }
.faq dt { font-weight: 600; margin: 20px 0 5px; font-size: 15px; }
.faq dd { margin: 0; color: var(--muted); font-size: 15px; }

/* Waitlist outcome pages — one centred statement, no navigation bait. */
.outcome { margin: 40px 0 0; }
.outcome h1 { margin-bottom: 12px; }
