### C2 ยท Inline form-as-CTA The CTA *is* the form โ a single email input with a "Submit โ" beside it. No separate landing for sign-up. *Use when:* the action is collecting an email. *Don't confuse with:* C1 Outlined chip (which navigates, not submits). ```html
``` ```css .cta-form { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--color-ink); } .cta-form input { background: none; border: 0; padding: 0.7rem 0; min-height: 44px; } ```