:root {
  --bg: #f7efe7;
  --card: rgba(255, 255, 255, 0.9);
  --text: #3c2f2f;
  --muted: #7f6d64;
  --accent: #d97c7c;
  --stroke: rgba(95, 71, 61, 0.08);
  --shadow: 0 24px 64px rgba(60, 47, 47, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 124, 124, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(196, 160, 125, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf6f1 0%, var(--bg) 100%);
}

.simple-shell {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.simple-card {
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 44px 36px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(217, 124, 124, 0.12);
}

h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead,
.body-copy {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.body-copy {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.muted-copy {
  margin-bottom: 0;
  color: var(--muted);
}

.action-card {
  display: grid;
  gap: 18px;
}

.action-button {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #c96a6a 100%);
  box-shadow: 0 14px 30px rgba(217, 124, 124, 0.22);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.action-button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  box-shadow: none;
}

.status-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.helper-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.fallback-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

@media (max-width: 640px) {
  .simple-card {
    padding: 36px 24px;
  }
}
