/* A5 intent page — responsive, ≈360 px mobile acceptance target.
   No horizontal scroll; the disclosure block stays fully visible without
   layout tricks that defeat the visibility rule (no clipping, no collapsing,
   no zero-height containers). DRAFT — never published in Phase 1. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: #ffffff;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px;
}

img, svg, video { max-width: 100%; }

h1 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0.5em 0;
}

h2 { font-size: 1.15rem; margin: 0.75em 0 0.4em; }

.subheadline { color: #333; }

.scope {
  font-size: 0.95rem;
  color: #444;
  border-left: 3px solid #999;
  padding-left: 10px;
}

.price-disclosure {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
  background: #fafafa;
}

.price { font-size: 1.2rem; margin: 0 0 6px; }

.cta {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: #1f5eff;
  color: #fff;
  cursor: pointer;
}

.cta:focus-visible { outline: 3px solid #12327f; outline-offset: 2px; }

.cta-note, .submit-note {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: 6px;
}

.benefits ul { padding-left: 20px; }

/* Disclosure block: compact so it fits fully inside a ~360 px-wide viewport;
   the 1000 ms full-visibility threshold is never relaxed. */
.disclosure {
  border: 2px solid #b4540a;
  border-radius: 8px;
  background: #fff7ef;
  padding: 10px 12px;
  margin: 20px 0 12px;
}

.disclosure h2 { margin: 0 0 6px; font-size: 1.05rem; }

.disclosure ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.95rem;
}

.disclosure li { margin: 4px 0; }

form {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px;
  margin: 0 0 24px;
}

.field { margin-bottom: 14px; }

.field label { display: block; font-weight: 600; }

.field.checkbox label, .use-case label {
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 8px 0;
}

.field input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.helper { font-size: 0.85rem; color: #555; margin: 6px 0 0; }

fieldset.use-case {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
}

fieldset.use-case legend { font-weight: 600; padding: 0 4px; }

/* Honeypot: visually hidden from humans, still present for bots.
   This does NOT affect the disclosure block's visibility semantics. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.form-status { min-height: 1.2em; font-size: 0.9rem; }

.privacy {
  font-size: 0.85rem;
  color: #333;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-bottom: 40px;
}

@media (max-width: 400px) {
  .page { padding: 12px; }
  h1 { font-size: 1.3rem; }
  .disclosure { padding: 8px 10px; }
  .disclosure ul { font-size: 0.9rem; }
}
