/* Standalone styles for the beta gate. Do not import the app bundle. */
:root {
  color-scheme: light dark;
  --paper: #f4f6f4;
  --card: #ffffff;
  --ink: #1b2a26;
  --mute: #56645f;
  --line: #d7deda;
  --teal: #2e6f62;
  --amber: #e39a2b;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121c19;
    --card: #1b2a26;
    --ink: #e8eeea;
    --mute: #a7b5b0;
    --line: #2f403b;
  }
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", Nunito, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 48px;
}
main {
  width: min(440px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 24px;
}
img.mark {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 16px;
}
kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
h1 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 650;
}
.lede {
  margin: 0 0 22px;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.45;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin: 0 0 6px;
}
.opt { font-weight: 500; color: var(--mute); }
input, select, textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 72px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
button {
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--teal);
  color: #f4f6f4;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
button:hover { filter: brightness(1.06); }
.note {
  margin: 16px 0 0;
  color: var(--mute);
  font-size: 0.8rem;
  line-height: 1.4;
}
.error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f7e7e5;
  color: #9a3530;
  font-size: 0.9rem;
}
a { color: var(--teal); }
