:root { color-scheme: dark; --bg:#07111f; --card:#ffffff; --ink:#111827; --muted:#64748b; --blue:#1e3a8a; --gold:#c89b3c; }
* { box-sizing: border-box; }
body { margin:0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: radial-gradient(circle at top, #102a4c 0, var(--bg) 45%); color: var(--ink); }
.container { max-width: 1060px; margin: 0 auto; padding: 34px 18px; }
.card { background: var(--card); border-radius: 22px; padding: 30px; margin-bottom: 22px; box-shadow: 0 24px 80px rgba(0,0,0,.32); }
.brand { color: var(--gold); text-transform: uppercase; font-weight: 800; letter-spacing: .16em; font-size: 13px; }
.topbar { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.language-switch { display:flex; align-items:center; gap:10px; color:#475569; font-weight:700; }
.button.small { margin-top:0; padding:9px 13px; border-radius:10px; font-size:14px; }
h1 { margin: 10px 0 12px; font-size: clamp(30px, 4vw, 48px); color: #0f172a; line-height: 1.05; }
h2 { color: var(--blue); margin-top: 32px; border-top: 1px solid #e5e7eb; padding-top: 22px; }
h3 { color: #0f172a; }
.lead { color: #334155; font-size: 18px; line-height: 1.55; }
.notice { background:#eff6ff; border:1px solid #bfdbfe; color:#1e3a8a; padding:14px; border-radius:14px; margin-top: 18px; }
.grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
label { display:block; font-weight: 700; margin: 14px 0 7px; }
input, select, textarea { width:100%; border:1px solid #d1d5db; border-radius:12px; padding:12px; font: inherit; background: #fff; color: #111827; }
textarea { min-height: 96px; }
.question { border:1px solid #e5e7eb; background:#f8fafc; border-radius:16px; padding:18px; margin:14px 0; }
legend { font-weight:800; color:#0f172a; }
.framework { color: var(--muted); font-size: 13px; margin: 8px 0 12px; }
.choice { font-weight:500; display:block; padding: 8px 10px; margin: 5px 0; border-radius: 9px; }
.choice:hover { background:#eef2ff; }
.choice input { width:auto; margin-right: 10px; }
button, .button { display:inline-block; margin-top: 18px; border:0; background: var(--blue); color:white; padding:14px 22px; border-radius:14px; text-decoration:none; font-weight:800; cursor:pointer; font-size: 16px; }
.result ul { font-size: 18px; line-height: 1.7; }
.hp { position:absolute; left:-10000px; opacity:0; height:0; width:0; }
@media (max-width:760px){ .grid{grid-template-columns:1fr;} .card{padding:22px;} }
