.ff-checklist {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 8px 42px;
}

.ff-checklist-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  overflow: hidden;
}

.ff-checklist-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -85px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 174, 207, .2), transparent 70%);
  pointer-events: none;
}

.ff-checklist-kicker {
  margin: 0 0 5px;
  color: var(--ff-text-pink);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ff-checklist-hero h1 {
  margin: 0;
  font-family: 'Gaegu', cursive;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.025em;
}

.ff-checklist-hero__copy > p:not(.ff-checklist-kicker) {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--ff-text-soft);
  font-size: .88rem;
  line-height: 1.65;
}

.ff-checklist-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 8px 11px;
  border: 1px solid var(--ff-border-pink);
  border-radius: 12px;
  background: rgba(255,255,255,.5);
  color: var(--ff-text-soft);
  font-size: .72rem;
  font-weight: 700;
}

.ff-checklist-note span {
  color: var(--ff-text-pink);
  font-size: .95rem;
}

.ff-checklist-doodle {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid var(--ff-border);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.92), transparent 28%),
    linear-gradient(145deg, rgba(249,218,232,.8), rgba(229,217,247,.78));
  box-shadow: var(--ff-shadow-soft);
  color: var(--ff-text-pink);
}

.ff-checklist-doodle b {
  font-family: 'Gaegu', cursive;
  font-size: 3.3rem;
  line-height: 1;
}

.ff-checklist-doodle span {
  position: absolute;
  font-size: 1rem;
}

.ff-checklist-doodle span:first-child {
  top: 9px;
  right: 14px;
}

.ff-checklist-doodle span:last-child {
  bottom: 12px;
  left: 12px;
  color: var(--ff-lavender-3);
}

.ff-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.ff-checklist-card {
  padding: 20px;
  box-shadow: var(--ff-shadow-soft);
}

.ff-checklist-card--raid {
  background:
    radial-gradient(circle at 100% 0, rgba(239, 174, 207, .28), transparent 38%),
    var(--ff-paper);
}

.ff-checklist-card--fun {
  background:
    radial-gradient(circle at 100% 0, rgba(205, 188, 235, .31), transparent 40%),
    var(--ff-paper);
}

.ff-checklist-card__heading {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(117,87,122,.11);
}

.ff-checklist-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--ff-border-pink);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(250,221,234,.72), rgba(237,228,250,.66));
  color: var(--ff-text-pink);
  font-family: 'Gaegu', cursive;
  font-size: 1.25rem;
  font-weight: 700;
}

.ff-checklist-card__heading p {
  margin: 0;
  color: var(--ff-lavender-3);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ff-checklist-card__heading h2 {
  margin: 2px 0 0;
  font-size: 1.13rem;
  line-height: 1.15;
}

.ff-checklist-list {
  display: grid;
  gap: 3px;
  margin-top: 12px;
}

.ff-check {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 8px 7px;
  border-radius: 10px;
  color: var(--ff-text-soft);
  font-size: .78rem;
  line-height: 1.45;
  cursor: pointer;
  transition: background .14s ease, color .14s ease;
}

.ff-check:hover {
  background: rgba(255,255,255,.62);
  color: var(--ff-text);
}

.ff-check input {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid rgba(185,103,142,.42);
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}

.ff-check input::before {
  content: "✓";
  transform: scale(0);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: .71rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .1s ease;
}

.ff-check input:checked {
  border-color: var(--ff-pink-4);
  background: linear-gradient(145deg, var(--ff-pink-3), var(--ff-lavender-3));
}

.ff-check input:checked::before {
  transform: scale(1);
}

.ff-check:has(input:checked) {
  color: rgba(118,108,124,.62);
  text-decoration: line-through;
  text-decoration-color: rgba(185,103,142,.35);
}

.ff-check input:focus-visible {
  outline: 3px solid rgba(185,103,142,.19);
  outline-offset: 2px;
}

.ff-checklist-signoff {
  margin: 22px 0 0;
  color: var(--ff-text-pink);
  font-family: 'Gaegu', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 720px) {
  .ff-checklist {
    padding-inline: 2px;
  }

  .ff-checklist-hero {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 14px;
    padding: 20px;
  }

  .ff-checklist-doodle {
    width: 72px;
    height: 72px;
  }

  .ff-checklist-doodle b {
    font-size: 2.35rem;
  }

  .ff-checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 470px) {
  .ff-checklist-hero {
    display: block;
  }

  .ff-checklist-doodle {
    display: none;
  }

  .ff-checklist-card {
    padding: 17px;
  }

  .ff-check {
    font-size: .76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ff-check,
  .ff-check input::before {
    transition: none;
  }
}
