:root {
  --bg: #fdf5ef;
  --surface: #ffffff;
  --surface-soft: #fff1e8;
  --text: #3a2c26;
  --text-muted: #93796d;
  --accent: #ff7a59;
  --accent-strong: #e8563c;
  --accent-soft: #ffd9c2;
  --border: #f3ddcd;
  --shadow: 0 8px 24px rgba(200, 120, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 48px 20px;
}

.page {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.orb {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd9c2 0%, var(--accent) 55%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 6px var(--surface-soft);
}

h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: left;
  margin-top: 28px;
}

.card h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 22px 0 6px;
}

.card h2:first-child {
  margin-top: 0;
}

.card p,
.card li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card ul {
  margin: 6px 0;
  padding-left: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.footer-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link a {
  color: var(--text-muted);
  text-decoration: underline;
}
