:root { color-scheme: light dark; --paper: #f5f3ed; --card: #fffefa; --ink: #252f29; --muted: #5c665e; --accent: #295b43; --line: #d6ddd3; font-family: ui-sans-serif, system-ui, sans-serif; background: var(--paper); color: var(--ink); }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100svh; display: grid; place-items: center; padding: 1.5rem; }
main { width: 100%; max-width: 30rem; padding: clamp(1.5rem, 5vw, 3rem); background: var(--card); border: 1px solid var(--line); border-radius: 1rem; }
.brand { color: var(--accent); font-weight: 750; letter-spacing: .12em; font-size: .8rem; text-transform: uppercase; margin-top: 0; }
h1 { font-family: ui-serif, Georgia, serif; font-size: 2rem; line-height: 1.15; margin: 1.5rem 0 1rem; font-weight: 500; }
p { line-height: 1.6; }
.muted { color: var(--muted); }
label { display: block; font-weight: 600; margin: 1.5rem 0 .5rem; }
input, button { font: inherit; width: 100%; border-radius: .5rem; padding: .8rem 1rem; }
input { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
button { color: #fff; background: var(--accent); border: 1px solid var(--accent); font-weight: 600; cursor: pointer; margin-top: 1rem; min-height: 3rem; }
button.secondary { background: transparent; color: var(--accent); }
button:disabled { opacity: .55; cursor: default; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
a { color: var(--accent); text-underline-offset: .2em; }
[hidden] { display: none !important; }
#turnstile-container { margin-top: 1rem; min-height: 65px; }
[role="status"] { min-height: 1.6em; }
.email { overflow-wrap: anywhere; font-weight: 650; }
.details { border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: 1rem; }
@media (prefers-color-scheme: dark) { :root { --paper: #18211c; --card: #202b24; --ink: #edf0e9; --muted: #b1bcb2; --accent: #94c9a7; --line: #425046; } button { color: #18211c; } }
