.hero h1, .sect__h, .feat h3, .close h2 { font-weight: 500; }

.hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 2.5rem);
}
.lede { max-width: 66ch; }
.buy { align-items: flex-start; }

.hero__mid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  text-align: left;
}
.hero__copy { min-width: 0; }
.hero__demo {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__demo .cz {
  width: 100%;
  margin-top: 0;
  font-size: 12.5px;
}
.hero__demo-note {
  margin-top: 9px;
  font-size: 12px;
  color: var(--ink-3);
}
.hero__demo .cz__preview {
  border-top: 0;
  border-bottom: 1px solid var(--wp-line);
  min-height: 0;
  padding: 14px 14px 16px;
}
.hero__demo .cz__sample {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__demo .cz__sample[contenteditable]:focus {
  outline: 2px solid var(--wp-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.a-arrow { stroke: var(--brand); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.a-ghost-fill { fill: var(--card); stroke: var(--line); stroke-width: 1.5; stroke-linejoin: round; }

.trust { width: 100%; margin-top: clamp(40px, 5vw, 64px); }

.fp { display: flex; flex-direction: column; gap: 14px; }
.fp__pick { display: flex; flex-wrap: wrap; gap: 8px; }
.fp__btn {
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.fp__btn:hover { border-color: var(--ink-3); }
.fp__btn[aria-pressed="true"] {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.fp__stage {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  padding: 30px 26px 32px;
  text-align: center;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.fp__h {
  line-height: 1.15;
  margin-top: 0 !important;
  color: var(--ink);
  transition: font-family .12s;
}
.fp__p { font-size: 15px; color: var(--ink-2); max-width: 42ch; margin-inline: auto; }
.fp__name {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 100%;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}

.deck--nine { grid-template-columns: repeat(3, 1fr); }
.deck--nine .deck__c, .deck--nine .deck__c:nth-child(4) { grid-column: auto; }

@media (max-width: 900px) {
  .hero__mid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero__demo {
    margin-top: 8px;
    justify-content: flex-start;
  }
  .hero__demo .cz { max-width: none; }
}
@media (max-width: 860px) {
  .deck--nine { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .deck--nine { grid-template-columns: repeat(2, 1fr); }
  .deck--nine .deck__c:last-child { grid-column: 1 / -1; }
}
