:root {
  --navy: #223050;
  --cream: #F8F2E9;
  --plum: #7A4B7E;
  --orange: #E2792E;
  --font-head: 'Fraunces', serif;
  --font-body: 'Public Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  min-height: 100%;
}

.shell {
  max-width: 560px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 64px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen[hidden] { display: none; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(34, 48, 80, 0.85);
  margin: 0 0 28px;
}

form { margin: 0 0 16px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid rgba(34, 48, 80, 0.25);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

.field input:focus {
  outline: 2px solid var(--plum);
  outline-offset: 1px;
}

.hp-field { position: absolute; left: -9999px; }

button[type="submit"] {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  background: var(--plum);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
}

button[type="submit"]:hover { background: #663d69; }
button[type="submit"]:disabled { opacity: 0.6; cursor: default; }

.form-error {
  color: #B0402A;
  font-size: 14px;
  margin: 10px 0 0;
}

.trust-line {
  font-size: 13px;
  color: rgba(34, 48, 80, 0.6);
  margin: 0;
}

.practice-steps {
  padding-left: 22px;
  margin: 0 0 24px;
}

.practice-steps li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.next-step {
  border-top: 1px solid rgba(34, 48, 80, 0.15);
  padding-top: 24px;
  margin-top: 8px;
}

.next-step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(34, 48, 80, 0.85);
  margin: 0 0 14px;
}

.cta-link {
  display: inline-block;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.cta-link:hover { text-decoration: underline; }

.site-footer {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px 40px;
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(34, 48, 80, 0.55);
}
