:root {
  --bg-1: #fff8f6;
  --bg-2: #fbeee8;
  --bg-3: #f6d9cf;
  --text: #2a2321;
  --muted: #6d625e;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(90, 66, 58, 0.12);
  --shadow: 0 20px 60px rgba(92, 60, 48, 0.14);
  --accent: #c77b67;
  --accent-dark: #b16450;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, var(--bg-3), transparent 38%),
    radial-gradient(circle at bottom right, #f7e3dd, transparent 28%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

.background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 123, 103, 0.16), transparent 0 22%),
    radial-gradient(circle at 85% 80%, rgba(177, 100, 80, 0.12), transparent 0 20%);
}

.card {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(199, 123, 103, 0.10);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(199, 123, 103, 0.28);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid var(--border);
}

.handle {
  margin: 20px 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent-dark);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(109, 98, 94, 0.45);
}

@media (max-width: 640px) {
  .card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
