/* Mariachi signup page — extends waitlist brand tokens */

.page-mariachi .hero-aside {
  margin: var(--space-3) 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
}

.page-mariachi .hero-aside a {
  color: var(--brand-gold);
  font-weight: 700;
}

.page-mariachi h2.on-dark {
  color: var(--brand-cream);
}

.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.benefit-grid li {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--brand-cream);
  border: 1px solid var(--surface-line);
  border-top: 3px solid var(--brand-gold);
  animation: rise-in 0.55s ease both;
}

.benefit-grid li:nth-child(2) { animation-delay: 0.05s; }
.benefit-grid li:nth-child(3) { animation-delay: 0.1s; }
.benefit-grid li:nth-child(4) { animation-delay: 0.15s; }

.benefit-grid h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--brand-forest);
}

.benefit-grid p {
  margin: 0;
  color: var(--text-muted);
}

.compare-list {
  display: grid;
  gap: var(--space-3);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-pain,
.compare-fix {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-line);
}

.compare-pain {
  background: rgba(193, 18, 31, 0.06);
  border-color: rgba(193, 18, 31, 0.18);
}

.compare-fix {
  background: rgba(11, 107, 75, 0.08);
  border-color: rgba(11, 107, 75, 0.2);
}

.compare-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-agave);
}

.compare-pain .compare-label {
  color: var(--brand-red);
}

.compare-row h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--brand-forest);
}

.compare-row p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.more-benefits {
  max-width: 720px;
}

.more-list {
  margin: 0 0 var(--space-4);
  padding-left: 1.15rem;
  color: var(--text-on-dark-muted);
  font-size: 1.08rem;
  display: grid;
  gap: 10px;
}

.more-list li::marker {
  color: var(--brand-gold);
}

/* Core wizard chrome lives in wizard.css */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 !important;
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--surface-line);
  background: var(--brand-ivory);
  color: var(--brand-forest);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.chip input:checked + span {
  background: var(--brand-forest);
  border-color: var(--brand-gold);
  color: var(--brand-cream);
}

.chip input:focus-visible + span {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.toggle-list {
  display: grid;
  gap: 4px;
  margin-bottom: var(--space-2);
}

.file-field span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(11, 107, 75, 0.35);
  background: var(--brand-ivory);
  color: var(--brand-forest);
  font-weight: 700;
  cursor: pointer;
}

.file-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-field {
  position: relative;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.file-preview figure {
  margin: 0;
  width: 72px;
  text-align: center;
}

.file-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-line);
}

.file-preview figcaption {
  margin-top: 4px;
  font-size: 0.68rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview .file-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: var(--brand-ivory);
  border: 1px solid var(--surface-line);
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .benefit-grid,
  .compare-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-grid li {
    animation: none !important;
  }
}
