.download-page {
  padding-top: 32px;
  padding-bottom: 48px;
}

.download-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
}

.download-eyebrow {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.download-shell h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.2;
}

.download-lead {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.form-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-weight: 400;
  color: var(--text);
}

.form-field input:focus {
  outline: 2px solid rgba(20, 134, 95, 0.25);
  border-color: var(--brand);
}

.required {
  color: var(--brand);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdecec;
  color: #8a1f1f;
  font-size: 0.9375rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.download-button:hover {
  filter: brightness(1.05);
}

.download-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.download-button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.privacy-copy {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 0.875rem;
  line-height: 1.55;
}

.privacy-copy a {
  color: var(--brand);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.success-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.download-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

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

.guide-download-cta {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.guide-download-cta p {
  margin: 0 0 12px;
  color: var(--muted);
}

.guide-download-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.guide-download-cta a:hover {
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .download-shell {
    padding: 24px 20px;
  }
}
