/* Tablemere — one hand-written stylesheet, no build step.
   Fonts are self-hosted (fonts/fonts.css). No third-party request is made by any page. */

:root {
  --bg: #fbf8f4; --bg-soft: #f5efe7; --ink: #1a1917; --ink-soft: #4f4a44; --muted: #77706a;
  --rule: #e5ded4; --accent: #e0471c; --accent-deep: #c23c14; --tint: #fdece3; --ok: #3ca66a;
  --dark: #1f1d1b; --dark-2: #2b2826; --code: #efe9df; --code-dim: #9a928a; --ok-text: #2a7d4f;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 10; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; font-size: 15px; }
.skip:focus { top: 12px; }
html, body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; font-size: 17px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
p a, td a, .panel li a, article.legal li a, article.doc li a, .docnav a.on { border-bottom: 1px solid var(--accent); }
code, pre { font-family: var(--mono); }
.wrap { max-width: 1536px; margin: 0 auto; padding: 16px 70px 0; position: relative; }
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 20px; }
.eyebrow .n { display: inline-block; border: 1px solid var(--ink); border-radius: 6px; padding: 1px 8px; margin-right: 12px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* nav */
nav.top { display: flex; align-items: center; justify-content: space-between; height: 44px; margin-bottom: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 500; font-size: 34px; letter-spacing: -.015em; font-variation-settings: "opsz" 36; }
nav.top ul { display: flex; gap: 42px; list-style: none; margin: 0; padding: 0; font-size: 16px; color: var(--ink-soft); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 7px; background: var(--accent); color: #fff; font-family: var(--serif); font-size: 20px; font-weight: 500; font-variation-settings: "opsz" 20; border: 0; cursor: pointer; }
.btn:hover { background: var(--accent-deep); }
.btn.sm { padding: 9px 22px; font-size: 19px; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn[disabled] { opacity: .55; cursor: default; }
.link { font-family: var(--serif); font-size: 20px; border-bottom: 1.5px solid var(--accent); padding-bottom: 1px; }

/* hero */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 475px; gap: 40px; align-items: start; position: relative; min-height: 540px; }
.hero .eyebrow { margin-top: 34px; }
h1 { font-family: var(--serif); font-weight: 600; font-size: 88px; line-height: 1; letter-spacing: -.025em; margin: 0 0 24px; font-variation-settings: "opsz" 72; }
h1 em { font-style: normal; color: var(--accent); }
.sub { font-family: var(--serif); font-size: 23px; line-height: 1.35; color: var(--ink-soft); margin: 0 0 30px; max-width: 34ch; font-variation-settings: "opsz" 22; }
.ctas { display: flex; align-items: center; gap: 36px; margin-bottom: 18px; flex-wrap: wrap; }
.fine { font-size: 15px; color: var(--muted); }
.fine a { border-bottom: 1px solid var(--rule); }
.thesis { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--ink); margin: -14px 0 30px; max-width: 30ch; font-variation-settings: "opsz" 22; }

.channels { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.channels path { fill: none; stroke: var(--accent); stroke-width: 1.15; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s cubic-bezier(.4, 0, .2, 1) forwards; }
.channels path:nth-child(2) { animation-delay: .05s; } .channels path:nth-child(3) { animation-delay: .1s; }
.channels path:nth-child(4) { animation-delay: .15s; } .channels path:nth-child(5) { animation-delay: .2s; }
.channels path:nth-child(6) { animation-delay: .25s; } .channels path:nth-child(7) { animation-delay: .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.channels .dot { fill: var(--accent); }
.channels text { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; fill: var(--ink-soft); }

.card { position: relative; z-index: 2; background: #fff; border: 1px solid var(--rule); border-radius: 12px; box-shadow: 0 18px 50px rgba(26, 25, 23, .08), 0 1px 3px rgba(26, 25, 23, .06); overflow: hidden; margin-top: -6px; }
.card .hd { display: flex; align-items: center; gap: 10px; padding: 15px 22px; border-bottom: 1px solid var(--rule); font-size: 15px; font-weight: 500; }
.card .hd i { width: 10px; height: 10px; border-radius: 50%; background: var(--ok); animation: pulse 2s ease-out infinite; }
.card .hd span { margin-left: auto; color: var(--ink-soft); letter-spacing: .12em; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(60, 166, 106, .45); } 100% { box-shadow: 0 0 0 9px rgba(60, 166, 106, 0); } }
.card .bd { padding: 20px 22px 22px; }
.prompt { background: var(--tint); border-radius: 8px; padding: 15px 18px; font-size: 16px; margin-bottom: 20px; }
.prompt .caret { display: inline-block; width: 1.5px; height: 16px; background: var(--ink); vertical-align: -3px; margin-left: 3px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.step { display: grid; grid-template-columns: 24px 1fr; gap: 0 16px; align-items: start; margin: 0 0 18px; opacity: 0; transform: translateY(6px); animation: rise .5s ease-out forwards; }
.step .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--ok); display: grid; place-items: center; }
.step .chk svg { width: 13px; height: 13px; }
.step b { display: block; font-weight: 500; font-size: 16px; }
.step small { color: var(--muted); font-size: 13.5px; }
.s1 { animation-delay: 1.3s; } .s2 { animation-delay: 2.1s; } .s3 { animation-delay: 2.9s; }
.divider { display: flex; align-items: center; gap: 12px; margin: 2px 0 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); opacity: 0; animation: rise .5s ease-out 3.6s forwards; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.prompt.later { margin-bottom: 14px; opacity: 0; animation: rise .5s ease-out 4s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.sql { background: var(--dark); border-radius: 8px; padding: 16px 16px 14px; font-family: var(--mono); font-size: 12px; color: var(--code); opacity: 0; animation: rise .5s ease-out 4.6s forwards; }
.sql .q { color: var(--accent); }
.sql .kw { color: #f0a48a; }
.sql table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 12px; background: var(--dark-2); border-radius: 6px; overflow: hidden; }
.sql th, .sql td { text-align: left; padding: 7px 10px; border-bottom: 1px solid #3a3634; font-weight: 400; }
.sql th { color: var(--code-dim); }
.sql td + td, .sql th + th { border-left: 1px solid #3a3634; }
.sql tr:last-child td { border-bottom: 0; }
.sql tbody tr { opacity: 0; animation: rise .35s ease-out forwards; }
.sql tbody tr:nth-child(1) { animation-delay: 5.3s; } .sql tbody tr:nth-child(2) { animation-delay: 5.55s; } .sql tbody tr:nth-child(3) { animation-delay: 5.8s; }
.cap { margin-top: 12px; font-family: var(--mono); font-size: 10.5px; color: var(--muted); opacity: 0; animation: rise .4s ease-out 6.3s forwards; }

/* engines strip */
.engines { display: grid; grid-template-columns: 300px repeat(4, 1fr); align-items: center; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 26px 0; margin: 48px 0 0; }
.engines .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.engines .e { display: flex; align-items: center; justify-content: center; gap: 14px; font-family: var(--serif); font-size: 24px; border-left: 1px solid var(--rule); font-variation-settings: "opsz" 24; }
.engines .e small { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--muted); }
.engines svg { width: 28px; height: 28px; stroke: var(--ink); fill: none; stroke-width: 1.7; }
.engines .e .link { font-size: 18px; }

/* sections */
section.block { padding: 96px 0 0; }
#foundations h2, #benefits h2, #deploy h2 { max-width: none; }
.soon { display: inline-block; margin-left: 12px; border: 1px solid var(--accent); color: var(--accent-deep); border-radius: 6px; padding: 1px 8px; letter-spacing: .14em; }
h2 { font-family: var(--serif); font-weight: 600; font-size: 64px; letter-spacing: -.025em; line-height: 1.02; margin: 0 0 44px; font-variation-settings: "opsz" 72; max-width: 22ch; }
h2 em { font-style: normal; color: var(--accent); }
h3 { font-family: var(--serif); font-weight: 600; font-size: 25px; margin: 0 0 8px; font-variation-settings: "opsz" 24; }
.lede { font-family: var(--serif); font-size: 23px; line-height: 1.4; color: var(--ink-soft); max-width: 56ch; margin: 0 0 40px; font-variation-settings: "opsz" 22; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); }
.three > div { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding-right: 40px; }
.three > div + div { border-left: 1px solid var(--rule); padding-left: 40px; }
.three svg { width: 50px; height: 50px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.three p { margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 19px; line-height: 1.45; font-variation-settings: "opsz" 18; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two .left p { font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink-soft); font-variation-settings: "opsz" 20; margin: 0 0 18px; }
table.plain { width: 100%; border-collapse: collapse; font-size: 15.5px; }
table.plain th, table.plain td { text-align: left; padding: 12px 14px 12px 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
table.plain th { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
table.plain td:first-child { font-family: var(--serif); font-size: 19px; font-variation-settings: "opsz" 18; white-space: nowrap; }
table.plain .yes { color: var(--ok-text); font-weight: 500; }
table.plain .no { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stepcard { border: 1px solid var(--rule); border-radius: 10px; background: #fff; padding: 22px 24px 20px; display: flex; flex-direction: column; }
.stepcard .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; color: var(--accent-deep); margin-bottom: 10px; }
.stepcard p { margin: 0 0 14px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }
pre.code { margin: auto 0 0; background: var(--dark); color: var(--code); border-radius: 8px; padding: 14px 16px; font-size: 12px; line-height: 1.6; overflow-x: auto; white-space: pre; }
pre.code .c { color: var(--code-dim); }
pre.code .k { color: #f0a48a; }
pre.code .s { color: #d9c8a6; }

.agents { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-top: 28px; }
.panel { border: 1px solid var(--rule); border-radius: 10px; background: #fff; padding: 22px 24px; }
.panel h3 { font-size: 22px; }
.panel ul { margin: 0; padding: 0 0 0 1.1em; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.panel li { margin: 0 0 8px; }
.panel li b { color: var(--ink); font-weight: 500; }
.quote { background: var(--tint); border-radius: 8px; padding: 16px 18px; font-family: var(--mono); font-size: 13px; line-height: 1.6; color: var(--ink); margin: 0 0 12px; white-space: pre-wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips span { font-family: var(--mono); font-size: 11.5px; border: 1px solid var(--rule); border-radius: 6px; padding: 4px 10px; color: var(--ink-soft); }

.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.tier { border: 1px solid var(--ink); border-radius: 10px; background: #fff; padding: 28px 30px; }
.tier .price { font-family: var(--serif); font-size: 64px; font-weight: 600; letter-spacing: -.02em; line-height: 1; margin: 6px 0 4px; font-variation-settings: "opsz" 72; }
.tier .price small { font-size: 22px; font-weight: 400; color: var(--ink-soft); margin-left: 6px; letter-spacing: 0; }
.tier ul { margin: 18px 0 0; padding: 0; list-style: none; }
.tier li { padding: 9px 0; border-top: 1px solid var(--rule); font-size: 15.5px; display: flex; justify-content: space-between; gap: 16px; }
.tier li span:last-child { color: var(--ink-soft); font-family: var(--mono); font-size: 12.5px; text-align: right; }
.tier .btn { margin-top: 22px; }
.roadmap h3 { margin-bottom: 14px; }
.roadmap ul { margin: 0; padding: 0; list-style: none; }
.roadmap li { padding: 10px 0; border-top: 1px solid var(--rule); font-size: 15.5px; color: var(--ink-soft); display: grid; grid-template-columns: 1fr auto; gap: 16px; }
.roadmap li b { color: var(--ink); font-weight: 500; }
.roadmap li span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--muted); align-self: center; }

footer { margin-top: 110px; border-top: 1px solid var(--rule); padding: 36px 0 44px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; font-size: 14.5px; color: var(--ink-soft); }
footer .brand { font-size: 26px; margin-bottom: 10px; }
footer ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; flex-wrap: wrap; }
footer p { margin: 6px 0 0; max-width: 62ch; }

/* signup */
.form-wrap { max-width: 560px; }
.field { margin: 0 0 18px; }
.field label { display: block; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 6px; }
.field input { width: 100%; padding: 12px 14px; font: inherit; color: var(--ink); background: #fff; border: 1px solid var(--rule); border-radius: 7px; }
.field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field .hint { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; }
.check input { margin-top: 4px; }
.err { display: none; border-left: 3px solid var(--accent); background: var(--tint); color: var(--accent-deep); padding: 12px 16px; margin: 0 0 18px; font-size: 15px; border-radius: 4px; }
.err b { font-family: var(--mono); font-size: 13px; }
.stage { display: none; }
.stage.on { display: block; }
.keybox { background: var(--dark); color: var(--code); padding: 16px 18px; border-radius: 8px; font-family: var(--mono); font-size: 13px; word-break: break-all; position: relative; }
.keybox .copy { position: absolute; right: 10px; top: 10px; background: var(--dark-2); color: var(--code); border: 1px solid #3a3634; border-radius: 6px; padding: 4px 10px; font: inherit; font-size: 11.5px; cursor: pointer; }
.warn { border-left: 3px solid var(--accent); background: var(--bg-soft); padding: 12px 16px; margin: 16px 0; font-size: 15px; }
details { margin: 20px 0; font-size: 14.5px; color: var(--ink-soft); }
details summary { cursor: pointer; }

/* legal + docs (the same long-form article) */
article.legal, article.doc { max-width: 78ch; font-size: 16.5px; line-height: 1.6; }
article.legal h1, article.doc h1 { font-size: 52px; margin-bottom: 18px; }
article.legal h2, article.doc h2 { font-size: 30px; margin: 44px 0 16px; max-width: none; }
article.legal h3, article.doc h3 { font-size: 22px; margin: 28px 0 10px; }
article.legal table, article.doc table { border-collapse: collapse; width: 100%; font-size: 14.5px; margin: 16px 0; }
article.legal th, article.legal td, article.doc th, article.doc td { border: 1px solid var(--rule); padding: 8px 10px; text-align: left; vertical-align: top; }
article.legal th, article.doc th { background: var(--bg-soft); font-weight: 500; }
article.legal blockquote, article.doc blockquote { border-left: 3px solid var(--accent); margin: 0 0 20px; padding: 8px 16px; background: var(--tint); }
article.legal code, article.doc code { font-size: 14px; background: var(--bg-soft); padding: 1px 5px; border-radius: 4px; }
article.legal pre, article.doc pre { background: var(--dark); color: var(--code); padding: 14px 16px; border-radius: 8px; overflow-x: auto; font-size: 13px; }
article.legal pre code, article.doc pre code { background: none; color: inherit; padding: 0; }
.draft { border: 1px solid var(--accent); background: var(--tint); border-radius: 8px; padding: 14px 18px; font-size: 15px; margin: 0 0 32px; max-width: 78ch; }
.legalnav { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 28px; }
.legalnav a.on { color: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .step, .sql, .sql tbody tr, .cap, .divider, .prompt.later { opacity: 1; transform: none; }
  .channels path { stroke-dashoffset: 0; }
}
@media (max-width: 1100px) {
  .wrap { padding: 16px 28px 0; }
  .hero { grid-template-columns: 1fr; }
  .channels { display: none; }
  h1 { font-size: 60px; } h2 { font-size: 44px; }
  .engines { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .engines .lbl { grid-column: 1 / -1; }
  .three, .two, .steps, .agents, .pricing { grid-template-columns: 1fr; }
  .three > div + div { border-left: 0; padding-left: 0; margin-top: 36px; }
  nav.top ul { display: none; }
  footer { grid-template-columns: 1fr; }
}

/* docs */
article.doc { max-width: 86ch; }
article.doc h1 { font-size: 46px; }
article.doc .lede { font-size: 20px; margin-bottom: 28px; max-width: none; }
article.doc table { font-size: 14px; }
article.doc td:first-child code { white-space: nowrap; }
article.doc dl { margin: 0 0 24px; }
article.doc dt { font-weight: 500; margin-top: 16px; }
article.doc dd { margin: 4px 0 0; color: var(--ink-soft); }
article.doc .route { border: 1px solid var(--rule); border-radius: 8px; padding: 14px 18px; margin: 0 0 14px; background: #fff; }
article.doc .route h3 { margin: 0 0 8px; font-family: var(--mono); font-size: 16px; font-weight: 500; }
article.doc .route h3 .m { display: inline-block; min-width: 4.5em; color: var(--accent-deep); }
article.doc .route p { margin: 6px 0; font-size: 15px; }
article.doc .route .kv { font-size: 14px; color: var(--ink-soft); margin: 4px 0; }
article.doc .route .kv b { color: var(--ink); font-weight: 500; }
article.doc .warnbox { border-left: 3px solid var(--accent); background: var(--tint); padding: 10px 16px; margin: 16px 0; border-radius: 4px; font-size: 15px; }
.docnav { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 28px; }
.docnav a.on { color: var(--accent-deep); }
/* 404 */
.notfound { min-height: 40vh; }
.notfound h1 { font-size: 64px; }
@media print {
  nav.top, footer ul, .skip, .channels, .btn { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  article.legal, article.doc { max-width: none; }
  a { border-bottom: 0; }
}

/* signup (2026-09-20: our own page, two columns; docs/permissions-and-access.md) */
.signup { display: grid; grid-template-columns: minmax(0, 1fr) 520px; gap: 72px; align-items: start; }
.signup h1 { font-size: 64px; }
.checks { list-style: none; margin: 0 0 40px; padding: 0; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: start; margin: 0 0 20px; font-size: 17px; line-height: 1.5; color: var(--ink-soft); }
.checks li b { color: var(--ink); font-weight: 500; }
.checks .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--ok); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.checks .chk svg { width: 14px; height: 14px; }
.selfhost { border: 1px solid var(--rule); border-radius: 10px; background: #fff; padding: 20px 24px; max-width: 520px; }
.selfhost h3 { margin: 0 0 8px; font-size: 20px; }
.selfhost p { margin: 0 0 12px; color: var(--ink-soft); font-size: 15.5px; }
.selfhost .link { font-size: 17px; }
.card-form { background: #fff; border: 1px solid var(--rule); border-radius: 12px; padding: 28px 30px; box-shadow: 0 18px 50px rgba(26, 25, 23, .06), 0 1px 3px rgba(26, 25, 23, .05); }
.card-form h2 { font-size: 40px; margin: 0 0 14px; }
.card-form .sub { font-size: 19px; max-width: none; }
.card-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.card-form .nocard { text-align: center; margin: 10px 0 18px; }
.card-form .terms { margin: 0 0 12px; }
.card-form select { width: 100%; padding: 12px 14px; font: inherit; border: 1px solid var(--rule); border-radius: 7px; background: #fff; }
.card-form pre.code { margin: 0 0 18px; }
.card-form h3 { margin: 24px 0 8px; }
.card-form .keybox { margin: 0 0 10px; }
.selfhosted-api { margin-top: 18px; }
.selfhosted-api summary { cursor: pointer; }
.selfhosted-api .field { margin-top: 12px; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.handle { display: flex; align-items: center; border: 1px solid var(--rule); border-radius: 7px; background: #fff; overflow: hidden; }
.handle .pre { font-family: var(--mono); font-size: 13.5px; color: var(--muted); padding: 0 0 0 14px; white-space: nowrap; }
.handle input { border: 0 !important; border-radius: 0 !important; font-family: var(--mono); padding-left: 4px !important; }
.handle input:focus { outline: none !important; }
.handle.taken { border-color: var(--accent); }
.handle.free { border-color: var(--ok); }
.hidden { display: none !important; }
.note { border-left: 3px solid var(--ok); background: #eef8f1; color: var(--ok-text); padding: 10px 14px; border-radius: 4px; font-size: 14.5px; margin: 0 0 18px; }
@media (max-width: 1000px) {
  .signup { grid-template-columns: 1fr; gap: 36px; }
  .signup h1 { font-size: 48px; }
}
