:root{
  --bg:#0b0c10;
  --card:#11131a;
  --text:#f3f4f6;
  --muted:#a9adbb;
  --line:#222636;
  --accent:#ffffff;
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --max: 860px;
  font-synthesis-weight:none;
}

*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  background: radial-gradient(1200px 800px at 20% 10%, #151a2a 0%, var(--bg) 55%);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.4;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:42px 18px 28px;
}

.header{
  margin-bottom:22px;
}
.brand{
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.sub{
  margin-top:8px;
  font-size:28px;
  font-weight:650;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 22px;
  box-shadow: var(--shadow);
}

.label{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.question{
  margin:12px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.1;
  font-weight:750;
}

.prompt{
  margin: 0 0 18px;
  color:var(--muted);
  font-size:16px;
}

.meta{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.dot{opacity:.6}

.actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius: 999px;
  padding:10px 14px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.btn:hover{background: rgba(255,255,255,.10)}
.btn:active{transform: translateY(1px)}
.ghost{background: transparent}

.footer{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
}
.fine{opacity:.9}