/* New Start Moving — minimal, mobile-first landing page styles.
   No external fonts or assets: fast, self-contained. */

:root {
  --ink: #1c2733;
  --ink-soft: #4a5967;
  --brand: #1f3a5f;
  --brand-dark: #16293f;
  --accent: #c8541f;
  --accent-dark: #a8410f;
  --line: #d9dfe5;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --ok-bg: #e8f3ec;
  --ok-ink: #1c5c33;
  --err: #b3261e;
  --radius: 10px;
  --maxw: 620px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}
.site-header .brand-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero { padding: 30px 0 8px; }

h1 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--brand-dark);
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 22px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li {
  position: relative;
  padding: 6px 0 6px 30px;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}
.steps li + li { border-top: 1px solid var(--line); }

.cta-jump {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.cta-jump:hover { background: var(--accent-dark); }

.form-section {
  padding: 26px 0 10px;
  scroll-margin-top: 16px;
}

h2 {
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin: 0 0 6px;
}

.form-intro { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 20px; }

.field { margin-bottom: 16px; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.req { color: var(--accent-dark); }
.opt { font-weight: 400; color: var(--ink-soft); font-size: 0.9rem; }

input, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 12px 12px;
  border: 1px solid #b9c2cc;
  border-radius: 8px;
  background: #fff;
}
input:focus, textarea:focus {
  outline: 3px solid rgba(31, 58, 95, 0.35);
  outline-offset: 1px;
  border-color: var(--brand);
}
textarea { resize: vertical; min-height: 96px; }

input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--err);
  outline-color: rgba(179, 38, 30, 0.35);
}

.field-error {
  color: var(--err);
  font-size: 0.88rem;
  margin-top: 5px;
}

/* Honeypot — visually and functionally hidden, still in the DOM for bots. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 4px 0 18px;
}

button[type="submit"] {
  width: 100%;
  font: inherit;
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
}
button[type="submit"]:hover { background: var(--accent-dark); }
button[type="submit"]:disabled { opacity: 0.65; cursor: progress; }
button[type="submit"]:focus-visible {
  outline: 3px solid rgba(31, 58, 95, 0.5);
  outline-offset: 2px;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.is-error { color: var(--err); font-weight: 600; }
.form-status.is-working { color: var(--ink-soft); }

.success-panel {
  margin-top: 10px;
  padding: 22px 20px;
  background: var(--ok-bg);
  border: 1px solid #bcdcc7;
  border-radius: var(--radius);
}
.success-panel h2 { color: var(--ok-ink); margin-top: 0; }
.success-panel:focus { outline: 3px solid rgba(28, 92, 51, 0.4); outline-offset: 2px; }

.site-footer {
  margin-top: 30px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.9rem;
}
.site-footer p { margin: 4px 0; }

.muted { color: var(--ink-soft); }

@media (min-width: 560px) {
  h1 { font-size: 2rem; }
  .hero { padding-top: 40px; }
  .brand-logo { height: 44px; }
}

@media (min-width: 860px) {
  .brand-logo { height: 52px; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
