/* Easy Order — public site (RotorLife visual language) */
:root {
  --ink: #14261f;
  --ink-2: #1d332b;
  --forest: #183a30;
  --paper: #f4f3ee;
  --panel: #ffffff;
  --line: #dedfd8;
  --muted: #6e7772;
  --orange: #d85d32;
  --orange-soft: #fff0e9;
  --green: #377e61;
  --green-soft: #e9f4ee;
  --amber: #ad7620;
  --amber-soft: #fff6df;
  --rose: #9a3d3d;
  --rose-soft: #f8e8e6;
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-ui: "Avenir Next", "Segoe UI", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--panel);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 30;
}
.skip-link:focus { top: 12px; }

button, input, select, textarea { font: inherit; color: inherit; }

a { color: var(--forest); }

/* —— Public header / footer —— */
.pub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 8px;
  max-width: 1120px;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.wordmark .mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  flex: 0 0 42px;
}
.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wordmark-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wordmark-text em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.pub-header-side {
  font-size: 13.5px;
  color: var(--muted);
}
.pub-header-side a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.pub-header-side a:hover { color: var(--orange); }

.pub-foot {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12.5px;
}
.pub-foot .coach-link {
  color: #b4bbb6;
  text-decoration: none;
  font-size: 11px;
}
.pub-foot .coach-link:hover { color: var(--muted); }

/* —— Landing —— */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-stage {
  flex: 1;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 28px 24px;
}

.home-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.home-stage h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 16ch;
}

.home-promise {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  max-width: 48ch;
}

.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.door {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  min-height: 200px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.door:hover { transform: translateY(-2px); }
.door:focus-visible { outline: 3px solid rgba(216, 93, 50, 0.4); outline-offset: 3px; }

.door-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.door strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.door p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.door-pilot {
  background: var(--forest);
  border-color: var(--forest);
  color: #f4f7f5;
}
.door-pilot .door-kicker { color: #e0a184; }
.door-pilot p { color: rgba(244, 247, 245, 0.78); }
.door-pilot:hover { box-shadow: 0 10px 28px rgba(24, 58, 48, 0.22); }

.door-hire {
  background: var(--panel);
  color: var(--ink);
}
.door-hire .door-kicker { color: var(--orange); }
.door-hire p { color: var(--muted); }
.door-hire:hover { border-color: #c9cbc3; box-shadow: 0 10px 28px rgba(20, 38, 31, 0.06); }

/* —— Form pages —— */
.form-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 28px 80px;
}

.form-hero {
  margin: 18px 0 20px;
  max-width: 62ch;
}
.page-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}
.form-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.form-hero .lede {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}

.banner {
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}
.banner strong { display: block; margin-bottom: 2px; }
.banner-warn { background: var(--amber-soft); border-color: #ecd9a8; color: #5c3c14; }
.banner-ok { background: var(--green-soft); border-color: #c3d6c8; color: #1f3d2b; }
.banner-info { background: #e8eef0; border-color: #c9d6db; color: #243940; }

.work {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.snap-col { position: sticky; top: 16px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 10px;
  margin-bottom: 14px;
}
.card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.card .hint {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
}

.snap-card { padding: 22px; }
.snap-card h2 { font-size: 18px; }
.snap-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13.5px;
}

.who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: #eef4f0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 44px;
}
.who strong { display: block; font-size: 16px; }
.who span { color: var(--muted); font-size: 13.5px; }

.kv { display: flex; flex-direction: column; gap: 12px; }
.kv-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: start; }
.kv-row .k {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding-top: 2px;
}
.kv-row .v { color: var(--ink-2); font-weight: 550; }
.kv-row .v.is-empty { color: #9aa39d; font-weight: 400; }

.quote {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: var(--orange-soft);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.4;
}

/* —— Forms —— */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 16px;
}
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.span-2 { grid-column: span 2; }
.span-all { grid-column: 1 / -1; }

.field { margin-bottom: 0; }
.field label,
.field .label {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  margin-bottom: 6px;
  color: var(--ink);
}
.field .sub { font-weight: 400; color: var(--muted); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  min-height: 44px;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.45; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(216, 93, 50, 0.28);
  outline-offset: 1px;
  border-color: #e0a184;
}
.field input:disabled,
.field select:disabled {
  background: #f3f3f0;
  color: var(--muted);
}

.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  user-select: none;
}
.choice:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--panel);
}
.choice input { accent-color: var(--orange); }

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--orange); flex: 0 0 18px; }

.toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 16px;
  cursor: pointer;
}
.toggle-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green); flex: 0 0 18px; }
.toggle-row strong { display: block; }
.toggle-row span { color: var(--muted); font-size: 14.5px; }

.permit {
  border-color: #cfe4d8;
  background: var(--green-soft);
}
.permit input { accent-color: var(--forest); }

.form-error {
  background: var(--rose-soft);
  border: 1px solid #e8c8c4;
  color: var(--rose);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 14px;
  font-size: 14.5px;
}
.form-error[hidden] { display: none; }

.dock {
  position: static;
  background: transparent;
  border-top: 1px solid var(--line);
  padding: 18px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 16px;
  cursor: pointer;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.btn:hover { background: #fafaf7; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid rgba(216, 93, 50, 0.35); outline-offset: 2px; }

.btn-primary {
  background: var(--forest);
  border-color: var(--forest);
  color: #f4f7f5;
  font-weight: 600;
  padding: 12px 22px;
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.btn-ghost:hover { background: rgba(20, 38, 31, 0.05); color: var(--ink); }

/* —— Thanks —— */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-stage {
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 28px 40px;
}
.thanks-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.thanks-stage h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.thanks-stage p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  max-width: 42ch;
}
.thanks-actions { margin-top: 28px; }

@media (max-width: 980px) {
  .work { grid-template-columns: 1fr; }
  .snap-col { position: static; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .pub-header, .form-page, .home-stage, .pub-foot, .thanks-stage {
    padding-left: 18px;
    padding-right: 18px;
  }
  .doors { grid-template-columns: 1fr; }
  .door { min-height: 0; }
  .grid, .grid-3, .grid-4, .checks { grid-template-columns: 1fr; }
  .span-2, .span-all { grid-column: auto; }
  .kv-row { grid-template-columns: 1fr; gap: 2px; }
  .home-stage { padding-top: 28px; }
  .home-stage h1 { max-width: none; }
}

@media (max-width: 560px) {
  .snap-col { display: none; }
  .dock { flex-direction: column-reverse; align-items: stretch; }
  .dock .btn { text-align: center; }
}

/* —— Full-order extensions: required, reveals, checkbox grids —— */
.req { color: var(--orange); font-weight: 700; margin-left: 2px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card h2 .sec-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}

.subhead {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 6px 0 10px;
}

.field-block { margin-bottom: 16px; }

.hint.tight { margin-bottom: 10px; }

.reveal {
  margin: 8px 0 14px;
  padding: 14px 14px 8px;
  background: #f7f6f1;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.reveal[hidden] { display: none !important; }
.reveal .reveal {
  background: #fff;
  margin-top: 8px;
}

.checks-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 16px;
}

.ac-list { display: flex; flex-direction: column; gap: 4px; }
.ac-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 10px;
  align-items: center;
  padding: 2px 0;
}
.ac-item .check { padding: 6px 0; }
.ac-item .hrs input {
  width: 100%;
  min-height: 36px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.ac-item .hrs[hidden] { display: none; }

select[multiple] {
  min-height: 168px;
  padding: 8px;
}

@media (max-width: 980px) {
  .checks-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .checks-3 { grid-template-columns: 1fr; }
  .ac-item { grid-template-columns: 1fr; }
}


/* —— Money & Position Report path (quieter than the two order doors) —— */
.mpr-path {
  margin-top: 28px;
  padding: 20px 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.mpr-path .door-kicker {
  margin-bottom: 8px;
  color: var(--muted);
}
.mpr-path h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.mpr-path p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 52ch;
}
.mpr-path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mpr-path-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  background: var(--paper);
}
.mpr-path-links a:hover {
  border-color: #c9cbc3;
  color: var(--forest);
}

@media (max-width: 720px) {
  .mpr-path { padding: 16px; }
}


/* —— Career Coach home flow —— */
.coach-flow {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.coach-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coach-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.coach-step-row .door-kicker {
  margin: 0;
  color: var(--orange);
}
.coach-step {
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.coach-section-copy h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.coach-section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 52ch;
}
.coach-section-copy .door-kicker {
  margin-bottom: 8px;
  color: var(--orange);
}
.doors-mpr {
  grid-template-columns: 1fr 1fr 1fr;
}
.door-intake {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  min-height: 0;
}
.door-intake .door-kicker { color: rgba(255,255,255,0.78); }
.door-intake p { color: rgba(255,255,255,0.86); }
.door-intake:hover { box-shadow: 0 10px 28px rgba(216, 93, 50, 0.28); }
.door-mpr {
  background: var(--panel);
  color: var(--ink);
  min-height: 0;
}
.door-mpr .door-kicker { color: var(--muted); }
.door-mpr p { color: var(--muted); }
.door-mpr:hover { border-color: #c9cbc3; box-shadow: 0 10px 28px rgba(20, 38, 31, 0.06); }
.door-coach {
  background: var(--green-soft);
  border-color: #cfe3d8;
}
.door-coach .door-kicker { color: var(--green); }
.home-stage h1 { max-width: 18ch; }
.form-actions { margin-top: 22px; }
.banner-rose {
  background: var(--rose-soft);
  color: var(--rose);
  border-color: #e8c8c4;
}

@media (max-width: 820px) {
  .doors-mpr { grid-template-columns: 1fr; }
}

.door-ro-intake {
  min-height: 0;
  margin-top: 0;
}

.protect-note {
  margin: -24px 0 36px;
  max-width: 42ch;
  color: var(--forest);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.protect-note-in {
  margin: 8px 0 12px;
  max-width: none;
}
.match-empty {
  margin: 14px 0 18px;
  padding: 16px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 15px;
}
.match-uses {
  margin-bottom: 16px;
}
.match-uses .door {
  cursor: default;
}
.match-uses .door:hover { transform: none; box-shadow: none; }

.order-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 16px;
}
.order-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.order-row:hover {
  border-color: #c9cbc3;
  box-shadow: 0 8px 20px rgba(20, 38, 31, 0.06);
}
.order-row .order-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
}
.order-row strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.order-row .order-sub { color: var(--ink); font-size: 14.5px; }
.order-row .order-meta { color: var(--muted); font-size: 13px; }

/* —— Career Coach left nav well —— */
.desk-app {
  min-height: 100vh;
  padding-left: 220px;
  box-sizing: border-box;
}
.desk-app.home {
  display: block;
  flex-direction: unset;
}
.nav-well {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  z-index: 20;
  overflow-y: auto;
  background: #e6e8e1;
  color: var(--ink);
  border-right: 1px solid #d2d4cc;
  padding: 32px 22px 48px;
  box-sizing: border-box;
}
.nav-well .nav-brand {
  color: inherit;
  margin-bottom: 32px;
}
.nav-well .wordmark-text em { color: var(--muted); }
.nav-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
}
.nav-kicker-steps { margin-top: 28px; }
.nav-item {
  display: block;
  padding: 7px 0;
  text-decoration: none;
  color: var(--forest);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 0;
}
.nav-item:hover { color: var(--orange); background: transparent; }
.nav-item.is-current {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 3px 0 0 var(--orange);
  padding-left: 12px;
  margin-left: -12px;
}
.nav-item .nav-step {
  display: inline-block;
  width: 1.15em;
  margin-right: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}
.desk-main { min-width: 0; }
.desk-app .pub-header .wordmark { display: none; }
.desk-app .pub-header { justify-content: flex-end; }

@media (max-width: 820px) {
  .desk-app { padding-left: 0; }
  .nav-well {
    position: relative;
    width: 100%;
    height: auto;
    bottom: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid #d2d4cc;
  }
  .nav-well .nav-brand { margin: 0 16px 0 0; }
  .nav-kicker { display: none; }
  .nav-item.is-current { margin-left: 0; padding-left: 0; box-shadow: none; color: var(--orange); }
}


.review-points {
  margin: 0;
  padding-left: 1.1em;
  color: var(--ink);
  font-size: 14.5px;
  max-width: none;
}
.review-points li { margin: 0 0 5px; }

.service-linkedin .coach-section-copy { max-width: none; }
.service-linkedin .coach-section-copy > p { max-width: 62ch; }
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 20px;
  margin: 16px 0 14px;
}
.guide-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px 12px;
}
.coach-section-copy h3,
.review-card h3 {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin: 14px 0 8px;
}
.guide-col h3 { margin-top: 0; }
.review-card h3 { margin-top: 0; }
.service-aside {
  margin: 8px 0 0 !important;
  font-size: 14.5px;
}
.coach-note {
  margin: 10px 0 0 !important;
  font-size: 13.5px !important;
  max-width: 68ch !important;
  color: var(--muted) !important;
}
.pilot-script {
  margin: 0;
  padding: 14px 16px;
  background: var(--amber-soft);
  border: 1px solid #ead8a8;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  max-width: 68ch;
}
@media (max-width: 820px) {
  .guide-grid { grid-template-columns: 1fr; }
}
.pilot-script p {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  max-width: none;
  line-height: 1.5;
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}
.review-card-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}
.review-card .field { margin: 4px 0 0; }
.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.service-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 52ch;
}
@media (max-width: 560px) {
  .service-actions { flex-direction: column; align-items: stretch; }
  .service-actions .btn { text-align: center; }
}

/* —— Pilot-facing page (no desk well) —— */
.pilot-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 28px 80px;
}
.pilot-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px 0;
}
.pilot-hero {
  margin: 18px 0 22px;
  max-width: 64ch;
}
.pilot-hero .door-kicker {
  margin-bottom: 10px;
  color: var(--orange);
}
.pilot-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.pilot-hero .lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.5;
  max-width: 62ch;
}
.pilot-hero .hero-cta { margin-top: 2px; }
.hero-reassure {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: var(--amber-soft);
  border: 1px solid #ead8a8;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 48ch;
}
.how-it-works {
  margin: 8px 0 22px;
}
.how-it-works h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 20px;
}
.how-step {
  background: var(--amber-soft);
  border: 1px solid #ead8a8;
  border-radius: var(--radius-sm);
  padding: 16px 16px 14px;
}
.how-step h3 {
  font-family: var(--font-ui);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 6px;
}
.how-step p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
}
.pilot-form {
  max-width: 640px;
}
.pilot-form h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 6px;
}
#order-form { scroll-margin-top: 24px; }
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; }
  .pilot-page { padding: 8px 18px 64px; }
  .pilot-header { padding: 18px 18px 0; }
  .pilot-hero h1 { font-size: clamp(26px, 7.4vw, 34px); }
}
