:root {
  --bg: #fffdfd;
  --surface: #ffffff;
  --text: #241c20;
  --muted: #756a70;
  --rose: #b85f7e;
  --rose-dark: #944965;
  --rose-soft: #fff2f6;
  --rose-border: #f1d8e1;
  --shadow: 0 18px 50px rgba(77, 42, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 240, 0.75), transparent 34rem),
    linear-gradient(180deg, #fffefe 0%, var(--bg) 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(100%, 620px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--rose-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  border: 1px solid var(--rose-border);
  color: var(--rose-dark);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--rose-soft);
  border: 1px solid var(--rose-border);
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 600;
}

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

.ml {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: 16px;
  background: var(--rose-soft);
  border: 1px solid var(--rose-border);
  color: #5e4650;
  font-size: 15px;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(184, 95, 126, 0.22);
  outline-offset: 3px;
}

.note {
  margin: 22px 0 0;
  color: #8a7e84;
  font-size: 13px;
  line-height: 1.65;
}

.route {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #faf6f8;
  border: 1px solid #eee2e7;
  color: #6f5963;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f1e8ec;
  color: #9a8e94;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .page {
    padding: 18px 14px;
  }

  .card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .brand {
    margin-bottom: 22px;
  }

  .lead {
    font-size: 16px;
  }

  .actions,
  .button {
    width: 100%;
  }
}