/* ── CHORECHART DETAIL PAGE ── */

/* Hero override */
.cc-hero { background: var(--steel-blue); }

.cc-live-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #28C840;
  background: rgba(40,200,64,0.12);
  border: 1px solid rgba(40,200,64,0.3);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.cc-no-download {
  font-size: 0.8125rem;
  color: rgba(214,224,240,0.65);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 1.25rem;
}

/* Hero card mockup */
.cc-hero-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
}

.cc-card-header {
  background: var(--steel-blue);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-family-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--light-steel-blue);
  letter-spacing: 0.04em;
}

.cc-today {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cc-card-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--light-gray);
}

.cc-child-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.cc-child-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--steel-blue);
  margin-bottom: 0.2rem;
}

.cc-child-bal { font-size: 0.72rem; font-family: var(--font-display); font-weight: 600; }
.cc-bal-green { color: #065F46; }
.cc-bal-blue  { color: #1D4ED8; }

.cc-chore-list { padding: 0.5rem 0; }

.cc-chore {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 1.125rem;
  font-size: 0.8125rem;
}

.cc-chore--done { opacity: 0.55; }

.cc-chore-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: var(--text-light);
}

.cc-check--done {
  background: #065F46;
  border-color: #065F46;
  color: var(--white);
}

.cc-chore-name {
  flex: 1;
  color: var(--text-dark);
  font-weight: 500;
}

.cc-chore-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--steel-blue);
}

.cc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  background: var(--light-gray);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  border-top: 1px solid rgba(31,56,100,0.08);
}

.cc-card-earned {
  color: #065F46;
  font-weight: 700;
}

/* Why section */
.cc-why-section { background: var(--white); }

.cc-intro-text {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2rem;
}

.cc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cc-col-card {
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.cc-col--credit {
  background: #EDE9FE;
  border: 1.5px solid #A78BFA;
}

.cc-col--track {
  background: #DCFCE7;
  border: 1.5px solid #86EFAC;
}

.cc-col-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.cc-col--credit h3 { color: #5B21B6; }
.cc-col--track h3  { color: #15803D; }

.cc-col-card ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cc-col-card ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Highlight callout */
.cc-highlight {
  background: var(--light-gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.125rem 1.375rem;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.cc-highlight strong { color: var(--steel-blue); }

/* Education section */
.cc-education-section { background: var(--light-gray); }

/* Dashboard mockup */
.cc-dashboard-mock {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31,56,100,0.08);
}

.cc-dash-header {
  background: var(--steel-blue);
  padding: 0.875rem 1.25rem;
}

.cc-dash-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--light-steel-blue);
  display: block;
  margin-bottom: 0.625rem;
  letter-spacing: 0.04em;
}

.cc-dash-tabs {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.cc-tab {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  color: rgba(214,224,240,0.6);
  cursor: pointer;
  border: 1px solid transparent;
}

.cc-tab--active {
  background: var(--gold);
  color: var(--steel-blue);
}

.cc-dash-body { padding: 0.75rem; }

.cc-dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.78rem;
  border-radius: 4px;
  color: var(--text-dark);
}

.cc-dash-row--head {
  background: var(--light-steel-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--steel-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-dash-row--alt { background: var(--light-gray); }

.cc-dash-verify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  background: var(--light-gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
}

.cc-verify-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #7C5900;
}

.cc-verify-count {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--steel-blue);
}

/* Testimonial */
.cc-testimonial-section {
  background: var(--steel-blue);
  padding: 4rem 0;
}

.cc-testimonial {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cc-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -1rem;
  opacity: 0.6;
}

.cc-testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--light-steel-blue);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.cc-testimonial cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Free section */
.cc-free-section { background: var(--white); }

.cc-free-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cc-free-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.cc-free-item {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--steel-blue);
  border-left: 3px solid var(--gold);
}

/* Guide download card */
.cc-guide-section { background: var(--light-gray); }

.cc-guide-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(31,56,100,0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cc-guide-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.cc-guide-text { flex: 1; }

.cc-guide-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--steel-blue);
  margin-bottom: 0.5rem;
}

.cc-guide-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.cc-guide-meta {
  font-family: var(--font-display);
  font-size: 0.75rem !important;
  font-weight: 600;
  color: var(--text-light) !important;
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cc-two-col    { grid-template-columns: 1fr; }
  .cc-free-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cc-guide-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .cc-free-checklist { grid-template-columns: 1fr; }
}
