@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Lora:ital@0;1&display=swap');

:root {
  --pink-bg: #FDF2F6;
  --pink-line: #ED93B1;
  --plum: #7A2A6E;
  --text: #4B1528;
  --muted: #993556;
  --gold: #B8862E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--pink-bg);
  color: var(--text);
  font-family: 'Lora', serif;
  line-height: 1.6;
}

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  min-height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand .script {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: var(--plum);
}

h1, h2 {
  font-weight: 500;
  color: var(--plum);
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 6px;
}

input[type=text], input[type=tel], input[type=password], textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 0.5px solid var(--pink-line);
  background: #fff;
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--text);
}

textarea { min-height: 110px; resize: vertical; }

button, .btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  font-family: 'Lora', serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-primary { background: #D4537E; color: #fff; }
.btn-secondary { background: transparent; color: var(--muted); border: 0.5px solid var(--pink-line); }

.row { display: flex; gap: 10px; margin-top: 18px; }
.row .btn, .row button { flex: 1; }

.card {
  background: #fff;
  border-radius: 16px;
  border: 0.5px solid var(--pink-line);
  padding: 18px 18px;
  margin-bottom: 14px;
}

.progress-track {
  height: 6px;
  background: #F4C0D1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
}
.progress-fill { height: 100%; background: var(--plum); }

.kicker {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.chapter-list a {
  display: block;
  text-decoration: none;
}

.muted { color: var(--muted); font-size: 13px; }

.flash {
  background: #FBEAF0;
  border: 0.5px solid var(--pink-line);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 14px;
}

a.link { color: var(--muted); }
