/* Amicus palette from provided swatch (approx.) */
:root{
  --bg: #ffffff;
  --ink: #0f1720;         /* near-black, used sparingly */
  --muted: #5b6b77;
  --line: #e8ecef;
  --mint: #8fc9b6;        /* calming accent */
  --mint-2: #cfe8df;
  --shadow: 0 10px 30px rgba(15, 23, 32, 0.08);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, var(--mint-2), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, #f3f7f6, transparent 60%),
              var(--bg);
  color: var(--ink);
}

.app{
  min-height:100%;
  display:flex;
  flex-direction:column;
  padding: 20px;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.dot{
  width:14px;height:14px;border-radius:50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(143, 201, 182, 0.25);
}

.brand-title{font-weight:650; letter-spacing:0.2px}
.brand-sub{font-size: 13px; color: var(--muted); margin-top:2px}

.card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.status{
  font-size: 12px;
  color: var(--muted);
  min-height: 18px;
}

.question{
  margin: 8px 0 6px;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.answer{
  margin: 10px 0 2px;
  color: var(--ink);
  font-size: 16px;
}

.options{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn{
  appearance:none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 999px; /* Squarespace-ish */
  font-size: 15px;
  cursor:pointer;
  transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 32, 0.06);
}

.btn:hover{ border-color: rgba(143,201,182,0.9); }
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(143,201,182,0.35), 0 6px 18px rgba(15,23,32,0.06);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(143,201,182,0.9), rgba(143,201,182,0.75));
  border-color: rgba(143,201,182,0.85);
}

.ghost{
  appearance:none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
  cursor:pointer;
  color: var(--muted);
}
.ghost:hover{ border-color: rgba(143,201,182,0.85); color: var(--ink); }

.recs{
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.recs-title{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.recs-list{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.rec{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
}
.rec a{
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.rec a:hover{ text-decoration: underline; }
.rec p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hint{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.foot{
  color: var(--muted);
  font-size: 12px;
  text-align:center;
  padding-bottom: 6px;
}

/* Better tap targets on mobile */
@media (max-width: 520px){
  .card{ padding: 18px; }
  .btn{ width: 100%; justify-content:center; padding: 13px 14px; }
  .options{ flex-direction:column; }
}
