:root {
  --font: "Gill Sans", "Gill Sans MT", "GillSans", "Seravek", "Segoe UI", "Optima", "Helvetica Neue", Arial, sans-serif;
  --bg: #050806;
  --panel: rgba(255, 255, 255, .035);
  --line: rgba(255, 255, 255, .12);
  --text: rgba(255, 255, 255, .82);
  --muted: rgba(255, 255, 255, .5);
  --accent: rgba(255, 255, 255, .92);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); }
body { color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; line-height: 1.62; }
a { color: rgba(255, 255, 255, .78); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 820px; margin: 0 auto; padding: 52px 22px calc(72px + env(safe-area-inset-bottom)); }
.top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.brand { color: #fff; font-size: 23px; font-weight: 700; letter-spacing: .01em; }
.back { display: inline-block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.lang-switch { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.lang-switch button { min-width: 36px; height: 29px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: 600 10px/1 var(--font); letter-spacing: .08em; }
.lang-switch button[aria-pressed="true"] { color: #000; background: #fff; }
h1 { margin: 38px 0 7px; color: #fff; font-size: clamp(30px, 6vw, 44px); line-height: 1.08; }
.summary { max-width: 690px; margin: 0 0 9px; color: rgba(255, 255, 255, .68); font-size: 16px; }
.meta { margin-bottom: 30px; color: var(--muted); font-size: 13px; }
.section { padding: 4px 0; }
h2 { margin: 29px 0 8px; color: #fff; font-size: 20px; line-height: 1.3; }
p, li { font-size: 15.5px; }
p { margin: 8px 0; }
ul { margin: 9px 0; padding-left: 22px; }
li { margin: 5px 0; }
.notice, .choice-card { margin: 24px 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.notice strong, .choice-card strong { color: #fff; }
.action { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; margin: 8px 8px 0 0; padding: 0 18px; border: 1px solid #fff; border-radius: 999px; background: #fff; color: #000; cursor: pointer; font: 700 15px/1 var(--font); }
.action.secondary { background: transparent; color: rgba(255, 255, 255, .82); border-color: rgba(255, 255, 255, .24); }
.choice { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.choice:last-of-type { border-bottom: 0; }
.choice label { color: #fff; font-weight: 700; }
.choice p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.choice input { width: 22px; height: 22px; accent-color: #fff; }
.status { min-height: 24px; margin-top: 10px; color: rgba(255, 255, 255, .78); font-size: 14px; }
.loading { padding: 36px 0; color: var(--muted); }
footer { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(255, 255, 255, .4); font-size: 12.5px; }
footer a { margin-right: 12px; color: rgba(255, 255, 255, .4); }
@media (max-width: 520px) {
  .wrap { padding-top: 30px; }
  .choice { gap: 12px; }
}
