/* minimal chooser styling */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: #0b0e14; color: #e8eefc; }
.wrap { min-height: 100vh; display: flex; flex-direction: column; gap: 18px; align-items: center; justify-content: center; padding: 22px; }
.hero { max-width: 760px; text-align: center; }
.badge { display: inline-block; padding: 6px 10px; border: 1px solid rgba(232,238,252,.18); border-radius: 999px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 12px 0 8px; font-size: clamp(30px, 4vw, 44px); }
p { margin: 0; color: rgba(232,238,252,.75); }
.cards { width: 100%; max-width: 900px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-top: 14px; }
.card { text-align: left; padding: 18px; border-radius: 18px; border: 1px solid rgba(232,238,252,.14); background: rgba(255,255,255,.03); cursor: pointer; transition: transform .12s ease, border-color .12s ease, background .12s ease; }
.card:hover { transform: translateY(-2px); border-color: rgba(232,238,252,.28); background: rgba(255,255,255,.05); }
.card h2 { margin: 0 0 6px; font-size: 20px; }
.card p { margin: 0 0 12px; }
.cta { display: inline-block; padding: 8px 12px; border-radius: 12px; border: 1px solid rgba(232,238,252,.18); }
.foot { margin-top: 10px; display: flex; gap: 10px; align-items: center; color: rgba(232,238,252,.65); font-size: 13px; }
.foot a { color: rgba(232,238,252,.85); text-decoration: none; border-bottom: 1px dashed rgba(232,238,252,.25); }
.dot { opacity: .5; }
