
:root {
  --bg: #fbf7ef;
  --card: rgba(255, 255, 255, 0.86);
  --text: #26232d;
  --muted: #746f7d;
  --lavender: #8b72df;
  --lavender-dark: #755ccf;
  --pink: #f4c7d9;
  --mint: #bfe8d3;
  --border: rgba(78, 66, 104, 0.10);
  --shadow: 0 20px 60px rgba(69, 54, 94, 0.13);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  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 15% 15%, rgba(244,199,217,.48), transparent 26rem),
    radial-gradient(circle at 84% 18%, rgba(139,114,223,.22), transparent 30rem),
    radial-gradient(circle at 52% 88%, rgba(191,232,211,.28), transparent 30rem),
    var(--bg);
}

body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.shell {
  width: min(100%, 430px);
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 24px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 9px 12px 10px 12px;
  transform: rotate(35deg);
}

.brand-mark::before {
  left: 0;
  top: 2px;
  background: linear-gradient(145deg, var(--pink), #ffd9e8);
}

.brand-mark::after {
  right: 0;
  top: 2px;
  background: linear-gradient(145deg, #bcaef1, var(--lavender));
  mix-blend-mode: multiply;
  opacity: .86;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 34px 26px 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glow {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .26;
  pointer-events: none;
}

.glow.one {
  background: var(--pink);
  top: -75px;
  right: -55px;
}

.glow.two {
  background: #b9a9f1;
  bottom: -95px;
  left: -65px;
}

.pet {
  width: 94px;
  height: 94px;
  border-radius: 46% 54% 48% 52% / 50% 48% 52% 50%;
  margin: 4px auto 22px;
  background: linear-gradient(155deg, #fffaf4, #f4eadf);
  border: 2px solid #c8b6ad;
  position: relative;
  box-shadow: 0 10px 24px rgba(75, 54, 47, .10);
}

.pet::before,
.pet::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 9px;
  border-radius: 50%;
  background: #5f4c48;
  top: 39px;
}

.pet::before { left: 31px; }
.pet::after { right: 31px; }

.pet-mouth {
  position: absolute;
  width: 18px;
  height: 9px;
  border-bottom: 2px solid #a66f6d;
  border-radius: 0 0 16px 16px;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
}

.sparkle {
  position: absolute;
  color: var(--lavender);
  font-size: 18px;
  opacity: .72;
}
.sparkle.s1 { top: 44px; left: 54px; }
.sparkle.s2 { top: 76px; right: 58px; font-size: 13px; color: #e9a7c4; }

h1 {
  text-align: center;
  margin: 0;
  font-size: clamp(28px, 8vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.subtitle {
  margin: 12px auto 0;
  max-width: 320px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 24px auto 0;
  padding: 11px 14px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(191,232,211,.34);
  color: #3b6f59;
  font-size: 13px;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58b487;
  box-shadow: 0 0 0 4px rgba(88,180,135,.13);
}

.actions {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

button, .button {
  appearance: none;
  border: 0;
  border-radius: 17px;
  min-height: 52px;
  width: 100%;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.primary {
  background: linear-gradient(135deg, var(--lavender), var(--lavender-dark));
  color: white;
  box-shadow: 0 10px 22px rgba(117, 92, 207, .24);
}

.secondary {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(117,92,207,.18);
  color: var(--lavender-dark);
}

button:active, .button:active { transform: scale(.985); }

.help {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.code {
  margin: 18px 0 0;
  padding: 13px;
  background: rgba(255,255,255,.58);
  border: 1px dashed rgba(117,92,207,.25);
  border-radius: 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  overflow-wrap: anywhere;
}

.footer {
  text-align: center;
  color: #8d8794;
  font-size: 11px;
  margin: 16px 0 0;
}

@media (max-width: 380px) {
  body { padding: 14px; }
  .card { padding: 28px 20px 22px; border-radius: 27px; }
}
