:root {
  color-scheme: light;
  --ink: #21172c;
  --muted: #6f6478;
  --plum: #6f3b78;
  --plum-dark: #54275c;
  --line: #e8dff0;
  --wash: #f8f3fb;
  --card: #fff;
  --danger: #a33f55;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fbf8fd 0%, #f5edf8 100%);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 42px 0 72px; }
header, article, form, nav { border: 1px solid var(--line); background: var(--card); }
header {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #f1e5f4 100%);
  box-shadow: 0 16px 40px rgba(73,42,82,.08);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(34px, 8vw, 52px); line-height: 1.08; letter-spacing: -.035em; }
.effective, header p:last-child { margin: 14px 0 0; color: var(--muted); }
article, form { margin-top: 20px; padding: 30px; border-radius: 24px; }
article { box-shadow: 0 16px 40px rgba(73,42,82,.05); }
h2 { margin: 30px 0 8px; font-size: 21px; line-height: 1.25; }
h2:first-child { margin-top: 0; }
p, ul { margin: 8px 0 0; }
ul { padding-left: 22px; }
a { color: var(--plum); font-weight: 650; }
.note, .privacy-note { padding: 18px; border-radius: 18px; background: var(--wash); color: var(--muted); }
.note { margin-top: 24px; }
.privacy-note { margin: 0 0 22px; }
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
}
nav a { min-height: 44px; display: inline-flex; align-items: center; }
form { box-shadow: 0 16px 40px rgba(73,42,82,.08); }
fieldset { margin: 0 0 24px; padding: 0; border: 0; }
legend { margin-bottom: 12px; font-size: 20px; font-weight: 750; }
label { display: block; margin: 16px 0 7px; font-weight: 650; }
.optional, .hint { color: var(--muted); font-size: 14px; }
.optional { font-weight: 500; }
.hint { margin: 8px 0 0; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8ccdf;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
textarea { min-height: 170px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(111,59,120,.2); border-color: var(--plum); }
button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
button:disabled { opacity: .55; cursor: wait; }
#status { min-height: 24px; margin: 16px 0 0; font-weight: 650; }
#status.error { color: var(--danger); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 520px) {
  header, article, form { padding: 24px; }
}
