:root {
  --bg: #0e0c0b;
  --surface: #16181c;
  --border: #2f3336;
  --text: #e7e9ea;
  --muted: #71767b;
  --accent: #1d9bf0;
  --danger: #f4212e;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  max-width: 480px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

h1 { font-size: 1.5rem; margin-bottom: 12px; }

p { color: var(--muted); line-height: 1.5; margin-bottom: 16px; }

.price { font-size: 2rem; font-weight: 700; color: var(--text); }
.price span { font-size: 1rem; color: var(--muted); font-weight: 400; }

ul.features { list-style: none; margin: 20px 0; }
ul.features li { padding: 6px 0; color: var(--muted); }
ul.features li::before { content: '✓ '; color: var(--accent); }

label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }

textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: monospace;
  font-size: 11px;
  padding: 10px;
  resize: vertical;
}

.actions { display: flex; gap: 10px; margin: 12px 0; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn.primary { background: var(--accent); color: #fff; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }

.error { color: var(--danger); }
.hint { font-size: 12px; }
