/* =========================================================
   AUDIO CHECKLIST PAGE — MOBILE FIRST
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f3ee;
}

.AudioChecklistPageWrapper {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 145, 77, 0.18), transparent 30rem),
    #f7f3ee;
  color: #151515;
  overflow-x: hidden;
}

/* HEADER */

.AudioChecklistHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.AudioChecklistHeader img {
  width: 42px;
  height: auto;
  display: block;
}

.AudioChecklistHeader nav {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.AudioChecklistHeader nav::-webkit-scrollbar {
  display: none;
}

.AudioChecklistHeader nav a {
  flex: 0 0 auto;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  color: #151515;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.AudioChecklistHeader nav a:hover {
  background: #151515;
  color: #ffffff;
}

/* HERO */

.AudioChecklistHero {
  padding: 42px 16px 24px;
}

.AudioChecklistHeroInner {
  max-width: 940px;
  margin: 0 auto;
}

.AudioChecklistEyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 950;
  color: #d9672f;
  margin: 0 0 10px;
}

.AudioChecklistHero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 13vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.AudioChecklistHero p {
  margin: 18px 0 0;
  max-width: 740px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(21, 21, 21, 0.72);
}

.AudioChecklistHeroButtons {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.AudioChecklistHeroButtons a,
.AudioChecklistHeroButtons button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.AudioChecklistHeroButtons a {
  background: #151515;
  color: #ffffff;
}

.AudioChecklistHeroButtons button {
  background: #ffffff;
  color: #151515;
  border: 1px solid rgba(21, 21, 21, 0.12);
}

/* PROGRESS */

.AudioChecklistProgressSection {
  position: sticky;
  top: 71px;
  z-index: 800;
  padding: 0 16px 18px;
  background: linear-gradient(to bottom, rgba(247, 243, 238, 0.96), rgba(247, 243, 238, 0.76));
  backdrop-filter: blur(16px);
}

.AudioChecklistProgressCard {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 16px 45px rgba(21, 21, 21, 0.08);
}

.AudioChecklistProgressCard h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.AudioChecklistProgressTrack {
  height: 12px;
  background: rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  margin-top: 12px;
  overflow: hidden;
}

.AudioChecklistProgressBar {
  height: 100%;
  width: 0%;
  background: #d9672f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

/* CHECKLIST */

.AudioChecklistSection {
  padding: 8px 16px 80px;
}

.AudioChecklistGrid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.AudioChecklistCard {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 18px 55px rgba(21, 21, 21, 0.08);
}

.AudioChecklistCardHeader {
  position: sticky;
  top: 158px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -16px -16px 14px;
  padding: 14px 16px;
  border-radius: 28px 28px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(12px);
}

.AudioChecklistCardHeader span {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: #151515;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.AudioChecklistCardHeader h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

/* BIG TAPPABLE PILLS */

.AudioChecklistCard label {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  padding: 13px 14px 13px 58px;
  border-radius: 999px;
  background: #f7f3ee;
  border: 1px solid rgba(21, 21, 21, 0.1);
  color: rgba(21, 21, 21, 0.88);
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.AudioChecklistCard label:active {
  transform: scale(0.985);
}

.AudioChecklistCard input[type="checkbox"] {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 30px;
  margin: 0;
  accent-color: #d9672f;
  cursor: pointer;
}

.AudioChecklistCard label:has(input:checked) {
  background: #151515;
  color: #ffffff;
  border-color: #151515;
  box-shadow: 0 12px 28px rgba(21, 21, 21, 0.14);
}

.AudioChecklistCard label:has(input:checked)::after {
  content: "Done";
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.AudioChecklistCard strong {
  color: inherit;
}

.AudioChecklistCardFinal {
  border: 2px solid rgba(217, 103, 47, 0.75);
}

/* ACTION BUTTONS */

.AudioChecklistActionRow {
  max-width: 1100px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.AudioChecklistActionRow button {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 950;
  cursor: pointer;
  border: none;
}

#AudioChecklistMarkAll {
  background: #151515;
  color: #ffffff;
}

#AudioChecklistResetBottom {
  background: #ffffff;
  color: #151515;
  border: 1px solid rgba(21, 21, 21, 0.14);
}

/* SCROLL TOP */

.AudioChecklistTopButton {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #151515;
  color: #ffffff;
  border: 0;
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(21, 21, 21, 0.22);
}

/* FOOTER */

.AudioChecklistPageWrapper .FooterSection {
  background: #151515;
  color: #ffffff;
}

/* TABLET / DESKTOP */

@media (min-width: 680px) {
  .AudioChecklistHeroButtons,
  .AudioChecklistActionRow {
    display: flex;
    flex-wrap: wrap;
  }

  .AudioChecklistHeroButtons a,
  .AudioChecklistHeroButtons button,
  .AudioChecklistActionRow button {
    width: auto;
  }

  .AudioChecklistCard label {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .AudioChecklistHero {
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
  }

  .AudioChecklistSection {
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
  }

  .AudioChecklistGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .AudioChecklistCardHeader {
    position: relative;
    top: auto;
  }
}