/* Voice — page layout only.
   Everything visual (tokens, .card, .field, .input, .btn-primary, .err, .muted)
   comes from brand.css + patterns.css. This file holds the marketing-page
   layout those two do not cover: a centred header, a hero, and a two-column
   body. If any of it starts looking reusable, it belongs in mit-patterns.css
   instead of here. */

.vp-body { background: var(--canvas); }

.vp-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 30px;
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.vp-brand img { height: 28px; display: block; }
.vp-head-sep { width: 1px; height: 20px; background: var(--divider); }
.vp-head-title { font: 600 14px/1 var(--font-display); color: var(--text); }

.vp-main { max-width: 1040px; margin: 0 auto; padding: 44px 24px 64px; }

.vp-hero { max-width: 660px; margin-bottom: 34px; }
.vp-hero h1 {
  font: 700 38px/1.1 var(--font-display);
  letter-spacing: -0.02em; color: var(--text); margin: 0 0 14px;
}
.vp-lede { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.vp-cols { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.vp-prose h2 { font: 600 16px/1.3 var(--font-display); color: var(--text); margin: 26px 0 8px; }
.vp-prose h2:first-child { margin-top: 0; }
.vp-prose p { line-height: 1.65; color: var(--text-muted); margin: 0 0 12px; }

.vp-form { position: sticky; top: 24px; }
.vp-form h2 { font: 600 16px/1.3 var(--font-display); margin: 0 0 4px; color: var(--text); }
.vp-form-sub { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; }
.vp-actions { margin-top: 18px; }
.vp-actions .btn-primary { width: 100%; justify-content: center; }
.vp-privacy { font-size: 11.5px; line-height: 1.5; color: var(--text-subtle); margin: 12px 0 0; }

.vp-done { max-width: 560px; }
.vp-done h1 { font: 700 30px/1.15 var(--font-display); letter-spacing: -0.02em; margin: 0 0 12px; }
.vp-done p { line-height: 1.65; color: var(--text-muted); }

.vp-foot {
  border-top: 1px solid var(--hairline);
  padding: 22px 24px 40px;
  max-width: 1040px; margin: 0 auto;
}
.vp-foot p { margin: 0; font-size: 12.5px; }

@media (max-width: 880px) {
  .vp-cols { grid-template-columns: 1fr; gap: 28px; }
  .vp-form { position: static; }
  .vp-hero h1 { font-size: 30px; }
  .vp-main { padding: 30px 18px 48px; }
  .vp-head { padding: 14px 18px; }
}
