:root {
  --brand-dark: #0b0b0b;
  --brand-light: #f4f4f4;
  --brand-muted: #7d7d7d;
  --brand-accent: #c49b0b;
  --corner-radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #0b0b0b 0%, #111 40%, #161616 100%);
  color: var(--brand-light);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  padding: 24px;
}

#wrapper {
  max-width: 460px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--corner-radius);
  padding: 28px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  text-align: left;
}

header h1 {
  margin: 6px 0 12px;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

header .lede {
  color: #dcdcdc;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-muted);
}

.actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

button {
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 180ms ease;
  width: 100%;
}

#confirmBtn {
  background: #000;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

#confirmBtn:hover { transform: translateY(-1px); }

.secondary {
  background: #f2f2f2;
  color: #000;
}

.secondary:hover { transform: translateY(-1px); }

.legal {
  margin-top: 16px;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

@media (max-width: 540px) {
  #wrapper { padding: 22px; }
  header h1 { font-size: 1.4rem; }
}
