/* Structural only. Deliberately undesigned.
 *
 * Phase 1b sets the token set (typeface pairing, palette, spacing scale, type
 * scale) and this file is replaced wholesale at that point. Nothing here is a
 * design decision worth keeping; it exists so the placeholder is legible while
 * the pipeline is proved. Do not extend it. Do not treat it as a starting point.
 */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  max-width: 42rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

h1 { font-size: 1.5rem; margin: 0 0 .5rem; }
h2 { font-size: 1.1rem; margin: 2.5rem 0 .75rem; }
p  { margin: 0 0 1rem; }
a  { color: #1a4fd6; }

.placeholder-banner {
  padding: .75rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid #d9c37a;
  background: #fdf8e6;
  border-radius: 4px;
  font-size: .9rem;
}

form { margin-top: 1rem; }

label {
  display: block;
  margin: 1rem 0 .25rem;
  font-size: .9rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: .55rem .65rem;
  font: inherit;
  font-size: .95rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
  color: inherit;
}

textarea { min-height: 8rem; resize: vertical; }

.hint { font-size: .85rem; font-weight: 400; opacity: .75; }

button[type="submit"] {
  margin-top: 1.5rem;
  padding: .7rem 1.4rem;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: #1a4fd6;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
button[type="submit"]:disabled { opacity: .55; cursor: default; }

#form-status { margin-top: 1rem; font-size: .95rem; min-height: 1.5rem; }
#form-status[data-kind="ok"]    { color: #17683a; }
#form-status[data-kind="error"] { color: #9e2020; }

/* Honeypot. Must stay reachable to a bot and invisible to a person, which is why
   this is off-screen rather than display:none -- some bots skip hidden fields. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e3e3e3;
  font-size: .85rem;
  opacity: .8;
}
