/* Flavor tokens - peach */
:root {
  --fl-bg:      var(--c-peach-bg);
  --fl-border:  var(--c-peach-border);
  --fl-text:    var(--c-peach-text);
  --fl-icon-bg: var(--c-peach-icon-bg);
}

/* Hero */
.app-hero { border-bottom: 1px solid var(--color-border); padding: 1.25rem 1.5rem 1.1rem; }
.app-hero--peach { background: var(--fl-bg); border-bottom-color: var(--fl-border); }
.app-hero__inner { margin: 0 auto; }
.app-hero__title {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--fl-text); letter-spacing: -.02em;
  margin: 0 0 .5rem; line-height: 1.2;
}
.app-hero__desc {
  font-size: .9rem; color: var(--color-text-secondary);
  max-width: 660px; line-height: 1.6; margin: 0 0 .85rem;
}
.app-hero__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.hero-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .22rem .65rem; font-size: .72rem; font-weight: 700;
  background: var(--color-surface); border: 1.5px solid var(--fl-border);
  border-radius: var(--radius-full); color: var(--fl-text); white-space: nowrap;
}

/* Layout */
.app-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6) 0;
}

/* Disclaimer */
.disclaimer {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  font-size: .82rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.disclaimer strong { color: var(--color-text-primary); font-weight: 700; }

/* Cards */
.card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5);
}
.card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
}

/* Result card */
.result-card {
  background: var(--fl-bg);
  border: 2px solid var(--fl-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
}
.result-number {
  font-size: clamp(1.6rem, 4.5vw, 2.3rem);
  font-weight: 800;
  color: var(--fl-text);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.tier-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: .2rem .75rem;
}
.tier-good { background: var(--color-success); color: #fff; }
.tier-warn { background: var(--color-warning); color: #fff; }
.tier-bad  { background: var(--color-danger);  color: #fff; }

.result-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.result-line {
  font-size: .85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.result-line strong { color: var(--color-text-primary); font-weight: 700; }

/* Checklist */
.zone-group { margin-bottom: var(--space-5); }
.zone-group:last-child { margin-bottom: 0; }
.zone-heading {
  font-size: .75rem;
  font-weight: 700;
  color: var(--fl-text);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}
.checklist-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.checklist-row:last-child { border-bottom: none; }
.checklist-row input[type="checkbox"] {
  margin-top: .2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--fl-text);
  flex-shrink: 0;
}
.checklist-label-row {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-wrap: wrap;
}
.checklist-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
}
.flag-pill {
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .5rem;
  border-radius: var(--radius-full);
  background: var(--fl-bg);
  border: 1px solid var(--fl-border);
  color: var(--fl-text);
}

/* Priority list */
.priority-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-3);
}
.priority-row:last-child { border-bottom: none; }
.priority-label { font-size: .88rem; font-weight: 600; color: var(--color-text-primary); }
.priority-weight { font-size: .78rem; font-weight: 800; color: var(--fl-text); white-space: nowrap; }
.priority-empty { font-size: .85rem; color: var(--color-text-secondary); }

/* Print button */
.print-btn {
  background: var(--fl-text);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.print-btn:hover { opacity: .9; }

@media print {
  site-header, site-footer, .breadcrumb, .disclaimer, .print-btn { display: none !important; }
}
