/* Public linking pages. Deliberately plain: one job, one button. */
:root {
  --surface: #f5f6fa;
  --card: #ffffff;
  --ink: #1b1d29;
  --muted: #6b7089;
  --accent: #4b5bd6;
  --accent-ink: #ffffff;
  --ok: #2e7d62;
  --rule: #dcdfea;
}

* { box-sizing: border-box; }

body.linkpage {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--surface);
  color: var(--ink);
  font: 16px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.linkpage main {
  max-width: 34rem;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 40px 36px;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.ok { color: var(--ok); }

body.linkpage h1 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 650;
}

body.linkpage p { margin: 0 0 16px; }

a.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: none;
}
a.cta:hover { background: #3d4cc0; }
a.cta:focus-visible { outline: 3px solid #a9b2ef; outline-offset: 2px; }

.fineprint {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}

a { color: var(--accent); }
