/* Prose pages (privacy, terms, 404, waitlist intro) ------------------- */

.prose-page {
  background: var(--surface-page);
  padding: 80px var(--gutter-desktop);
}

.prose {
  max-width: 720px;
  margin-inline: auto;
  color: var(--brand-deep-slate);
  font-size: 16px;
  line-height: 1.65;
}

.prose__head {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose__eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-on-tinted);
}

.prose__title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: var(--brand-charcoal);
}

.prose__meta {
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 16px;
}

.prose h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  font-weight: 600;
  color: var(--brand-charcoal);
}

.prose h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--brand-charcoal);
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 6px;
}

.prose strong {
  color: var(--brand-charcoal);
  font-weight: 600;
}

.prose a {
  color: var(--text-on-tinted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.prose a:hover {
  color: var(--brand-charcoal);
}

.prose__contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
  font-size: 14px;
  color: var(--text-muted);
}

.prose--centered {
  text-align: center;
  padding-block: 80px;
}

.prose__head--centered {
  align-items: center;
  margin-bottom: 24px;
}

.prose__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .prose__cta { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .prose__cta .btn { width: 100%; }
  .prose--centered { padding-block: 48px; }
}

/* Waitlist form ------------------------------------------------------- */

.waitlist {
  max-width: 560px;
  margin-inline: auto;
}

.waitlist__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.waitlist__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--brand-deep-slate);
  max-width: 480px;
  margin-inline: auto;
}

.waitlist__form {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Honeypot — visually hidden but still in the DOM for bots */
.waitlist__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--brand-charcoal);
}

.field__input {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--brand-charcoal);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field__input:focus {
  outline: none;
  border-color: var(--brand-vibrant-teal);
  box-shadow: 0 0 0 3px rgba(14, 131, 136, 0.18);
}

.field__input:invalid:not(:placeholder-shown) {
  border-color: var(--functional-danger);
}

.field__input::placeholder {
  color: var(--text-muted);
}

.field__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%235A6E6E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.waitlist__submit {
  margin-top: 4px;
  width: 100%;
}

.waitlist__legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.waitlist__legal a {
  color: var(--text-on-tinted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .waitlist__form { padding: 24px; }
}

/* Customers page ------------------------------------------------------- */

.customers {
  max-width: 720px;
  margin-inline: auto;
}

.customers__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.customers__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--brand-deep-slate);
  max-width: 600px;
  margin-inline: auto;
}

.partner {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.partner__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-vibrant-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  flex-shrink: 0;
}

.partner__id {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.partner__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--brand-charcoal);
}

.partner__meta {
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
}

.partner__quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--brand-charcoal);
  border-left: 3px solid var(--brand-vibrant-teal);
  padding-left: 16px;
}

.partner__attr {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-deep-slate);
}

.customers__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-deep-slate);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}

.customers__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .partner { padding: 24px; }
  .partner__name { font-size: 18px; }
  .partner__quote { font-size: 16px; }
  .customers__cta { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .customers__cta .btn { width: 100%; }
}

@media (max-width: 1024px) {
  .prose-page { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .prose-page { padding: 48px var(--gutter-mobile); }
  .prose__title { font-size: 32px; line-height: 1.15; }
  .prose h2 { font-size: 20px; }
}
