/* One page, no build step: a bundler for a single static page is a liability,
 * not a convenience. Kept in the viewer's key so the product reads as one
 * thing when the canvas appears. */
:root {
  --bg: #131315; --panel: #1c1c1f; --line: #2c2c31;
  --fg: #e6e6e8; --muted: #8b8b93; --accent: #7cb0ff;
  color-scheme: dark;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, sans-serif;
}
a { color: var(--accent); }
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid var(--line); background: var(--panel);
}
.brand { font-weight: 600; }
.cta {
  display: inline-block; padding: 8px 16px; border-radius: 6px;
  border: 1px solid var(--accent); color: var(--accent); text-decoration: none;
}
.cta:hover { background: var(--accent); color: #10131a; }
.cta.big { padding: 12px 24px; font-size: 17px; margin: 8px 0 32px; }
main { max-width: 1000px; margin: 0 auto; padding: 48px 24px; }
.hero { text-align: center; }
h1 { font-size: clamp(28px, 5vw, 44px); margin: 0 0 12px; line-height: 1.2; }
.lede { color: var(--muted); font-size: 18px; max-width: 620px; margin: 0 auto 8px; }
.shot { width: 100%; border-radius: 10px; border: 1px solid var(--line); display: block; }
.features {
  display: grid; gap: 28px; margin-top: 64px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.features h2 { font-size: 18px; margin: 0 0 6px; }
.features p { color: var(--muted); margin: 0; }
footer { border-top: 1px solid var(--line); padding: 20px 24px; text-align: center; }
.muted { color: var(--muted); font-size: 13px; }

/* ---- the parked front page (index.html) ---- */
  /* The parked page: the site is up but not open. One card, one form. The
     showcase page still exists at /showcase.html for whoever is shown it. */
  .park { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
  .card {
    width: 100%; max-width: 380px; background: var(--panel);
    border: 1px solid var(--line); border-radius: 10px; padding: 28px 28px 20px;
  }
  .card h1 { font-size: 26px; margin: 0 0 4px; }
  .card .lede { font-size: 15px; margin: 0 0 22px; }
  label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
  input {
    display: block; width: 100%; margin-top: 4px; padding: 9px 10px; font: inherit;
    color: var(--fg); background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  }
  input:focus { outline: none; border-color: var(--accent); }
  button {
    width: 100%; padding: 10px; font: inherit; font-weight: 600; cursor: pointer;
    color: #10131a; background: var(--accent); border: 0; border-radius: 6px; margin-top: 6px;
  }
  button[disabled] { opacity: .6; cursor: default; }
  .error { color: #ff8a80; font-size: 13px; margin: 0 0 8px; }
  .links { margin: 16px 0 0; text-align: center; }
  .foot { margin-top: 28px; text-align: center; }
