:root {
  --pulse: #e0245e;
  --coral: #ff6f61;
  --blush: #ffd9d2;
  --cream: #fff6f2;
  --ink: #2a1720;
  --ink-soft: #6b5560;
  --line: #f0e2dc;
  --error: #b8143f;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font: 17px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
}
main {
  width: 100%;
  max-width: 560px;
  padding: 48px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lockup { width: 220px; height: auto; display: block; margin: 0 0 40px; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 7vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
h1 em { font-style: normal; color: var(--pulse); }
.lede { font-size: 1.125rem; color: var(--ink-soft); margin: 0 0 32px; }
form { display: grid; gap: 12px; }
label { font-size: 0.875rem; font-weight: 600; display: block; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--ink-soft); }
input[type="email"], select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5560' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
  border-color: var(--pulse);
}
input[aria-invalid="true"] { border-color: var(--error); }
button {
  height: 56px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--pulse);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.2s ease;
}
button:hover { background: #c81d53; }
button:active { transform: scale(0.98); }
button[disabled] { opacity: 0.6; cursor: progress; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.error { color: var(--error); font-size: 0.9rem; min-height: 1.4em; margin: 0; }
.thanks { display: none; background: #fff; border: 1.5px solid var(--line); border-radius: 22px; padding: 28px 24px; }
.thanks h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; margin: 0 0 8px; }
.thanks p { margin: 0; color: var(--ink-soft); }
.done form, .done .lede { display: none; }
.done .thanks { display: block; }
.privacy { font-size: 0.85rem; color: var(--ink-soft); margin: 24px 0 0; }
.privacy a { color: var(--ink); }
footer { font-size: 0.8rem; color: var(--ink-soft); padding: 24px; }
@media (prefers-reduced-motion: reduce) { button { transition: none; } }
