/* web/style.css */
:root {
  --bg: #12124A;
  --surface: #1E1E5C;
  --text: #FFFFFF;
  --dim: #B9B6D6;
  --accent: #A855F7;
  --accent2: #EC4899;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.wrap { max-width: 480px; width: 100%; }
.logo { width: 96px; height: 96px; border-radius: 22px; margin: 0 auto 20px; display: block; }
.brand { font-size: 40px; font-weight: 900; margin-bottom: 8px; }
.tagline { color: var(--dim); font-size: 18px; margin-bottom: 28px; }
.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.card .score { font-size: 72px; font-weight: 900; line-height: 1; margin: 8px 0; }
.card .prompt { font-size: 20px; font-weight: 700; }
.card .deck { color: var(--dim); font-size: 15px; margin-top: 6px; }
.cta {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
}
.feet { color: var(--dim); font-size: 13px; margin-top: 18px; }
