html, body { height: 100%; }

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 72px 24px 80px;
}

.orb { position: fixed; filter: blur(100px); }
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%); top: -80px; right: -60px; }
.orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%); bottom: -60px; left: -40px; }

*:not(svg *) { position: relative; z-index: 1; }

/* ── Disconnect icon ──────────────────────────────────────────── */

.icon-wrap {
  width: 80px; height: 80px; margin: 0 auto 28px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 32px;
  animation: fadeIn 0.4s ease both;
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ── Card ─────────────────────────────────────────────────────── */

.card {
  width: 100%; max-width: 560px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(14,165,233,0.04);
}

.tag {
  display: inline-block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted); background: rgba(14,165,233,0.06);
  border: 1px solid rgba(14,165,233,0.12);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 24px;
}

h1 {
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 12px;
  color: var(--text);
}

.sub {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 400px; margin: 0 auto 36px;
}

/* ── Feedback ─────────────────────────────────────────────────── */

.feedback-box {
  background: rgba(14, 165, 233, 0.03);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 12px; padding: 28px;
  text-align: left; margin-bottom: 32px;
}

.feedback-box h2 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--blue); margin-bottom: 16px;
}

.reason-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.reason-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted); cursor: pointer;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color .15s, background .15s, color .15s;
}

.reason-item:hover {
  border-color: rgba(14,165,233,0.2);
  background: rgba(14,165,233,0.04);
  color: var(--text);
}

.reason-item.selected {
  border-color: rgba(14,165,233,0.35);
  background: rgba(14,165,233,0.07);
  color: var(--text);
}

.reason-radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,0.4);
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
}

.reason-item.selected .reason-radio {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 8px rgba(14,165,233,0.5);
}

.reason-item.selected .reason-radio::after {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: #fff;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; border: none;
  box-shadow: 0 0 20px rgba(14,165,233,0.25), 0 4px 12px rgba(0,0,0,0.25);
  transition: opacity .15s, transform .1s;
  font-family: inherit;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s, background .15s;
  font-family: inherit;
}

.btn-ghost:hover { border-color: var(--blue); color: var(--text); background: rgba(14,165,233,0.06); }

.btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────── */

.footer-note {
  margin-top: 28px; font-size: 12px; color: var(--dim); text-align: center;
}

.footer-note a { color: var(--blue); border-bottom: 1px solid rgba(14,165,233,0.3); transition: color .15s; }
.footer-note a:hover { color: var(--blue2); }

.logo { height: 55px; width: auto; display: block; margin: 0 auto 36px; }
