/* /start — founder brief intake page.
 * Reuses .p-* styles from pricing.css for form, hero, nav, and footer.
 * Adds only what's unique to this page: deliverable checkboxes,
 * hero CTA action row, and inline form-error message. */

.start-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.start-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 15px;
  color: var(--text, #fff);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.start-checkbox:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.start-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.start-checkbox input[type="checkbox"]:checked {
  border-color: var(--accent, #ff4438);
  background: var(--accent, #ff4438);
}

.start-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.start-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent, #ff4438);
  outline-offset: 2px;
}

.p-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-form-error {
  color: #ff7a72;
  font-size: 14px;
  min-height: 18px;
}

.p-paid-tier-banner {
  background: rgba(255, 68, 56, 0.08);
  border-top: 1px solid rgba(255, 68, 56, 0.35);
  border-bottom: 1px solid rgba(255, 68, 56, 0.35);
  padding: 36px 24px;
}
.p-paid-tier-inner {
  max-width: 980px;
  margin: 0 auto;
}
.p-paid-tier-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent, #ff4438);
  margin-bottom: 12px;
}
.p-paid-tier-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink, #0D0D0D);
  margin-bottom: 8px;
}
.p-paid-tier-sub {
  font-size: 15px;
  color: var(--mid, #9A9490);
  font-weight: 300;
}

@media (max-width: 720px) {
  .start-deliverables {
    grid-template-columns: 1fr;
  }
  .p-paid-tier-title {
    font-size: 22px;
  }
}
