/* Pilot by Helploom — public landing styles (v8).
   Linked stylesheet (CSP style-src 'self'; NO inline styles — every
   visual value, including progress-bar widths, is a class here).
   Palette matches wizard.css: ink #111 / paper #fff / muted #6b6b6b /
   hairline #e9e9e9 / soft #f6f6f5. One accent: green #2f7d32 = the
   free / billed-at-cost signal. Clean system sans-serif. */

:root {
  --l-ink: #111;
  --l-paper: #fff;
  --l-muted: #6b6b6b;
  --l-hairline: #e9e9e9;
  --l-soft: #f6f6f5;
  --l-radius: 10px;
  --l-green: #2f7d32;
  --l-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--l-paper);
}

body.landing {
  font-family: var(--l-sans);
  color: var(--l-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.landing-page {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* ── wordmark ── */
.wm {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
}
.wm .mark {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 23px;
}
.wm .by {
  color: var(--l-muted);
  font-weight: 500;
  font-size: 13px;
}
.wm .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--l-ink);
  display: inline-block;
  margin-right: 9px;
  transform: translateY(-2px);
}

/* ── topbar ── */
.l-topbar {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--l-hairline);
}

/* ── buttons ── */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--l-radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--l-sans);
  cursor: pointer;
  border: 1px solid var(--l-ink);
  text-decoration: none;
  width: 100%;
}
.l-btn--primary {
  background: var(--l-ink);
  color: #fff;
}
.l-btn--ghost {
  background: #fff;
  color: var(--l-ink);
  border-color: #dcdcdc;
  font-weight: 500;
}
.l-btn--ghost .g {
  font-weight: 700;
}
.l-btn--sm {
  height: 40px;
  padding: 0 18px;
  width: auto;
  font-size: 14px;
}

/* ── hero — SINGLE CENTERED COLUMN ── */
.l-hero {
  padding: 84px 56px 92px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.l-hero h1 {
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0;
  font-weight: 700;
}
.l-hero .sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--l-muted);
  margin: 24px 0 0;
}

/* ── sign-in pair — ONE grouped, bordered unit ── */
.l-signin {
  margin: 34px auto 0;
  max-width: 430px;
  text-align: left;
  border: 1px solid var(--l-hairline);
  border-radius: 14px;
  padding: 22px;
  background: var(--l-paper);
}
.l-signin .stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-signin label.fld {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3a3a3a;
  margin: 0 0 7px;
}
.l-input {
  width: 100%;
  height: 46px;
  border: 1px solid #dcdcdc;
  border-radius: var(--l-radius);
  padding: 0 14px;
  font-size: 15px;
  font-family: var(--l-sans);
  color: var(--l-ink);
  background: #fff;
}
.l-input::placeholder {
  color: #b3b3b3;
}
.l-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b7b7b3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0;
}
.l-divider::before,
.l-divider::after {
  content: "";
  height: 1px;
  background: var(--l-hairline);
  flex: 1;
}

/* ── FREE signal card — the DOMINANT callout at the end of the hero ── */
.l-hero-free {
  margin: 24px auto 0;
  max-width: 430px;
  padding: 26px 24px;
  background: var(--l-soft);
  border: 1.5px solid #d6d6d0;
  border-radius: 15px;
  text-align: center;
}
.l-hero-free .hf-setup {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--l-muted);
}
.l-hero-free .hf-head {
  margin: 5px 0 0;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--l-ink);
}
.l-hero-free .hf-head .g-free {
  color: var(--l-green);
}
.l-hero-free .hf-sub {
  margin: 13px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--l-muted);
}
.l-hero-free .hf-sub b {
  color: var(--l-green);
  font-weight: 700;
}

/* ── section scaffolding ── */
.l-band {
  padding: 84px 56px;
  border-top: 1px solid var(--l-hairline);
}
.l-band--soft {
  background: var(--l-soft);
}
.l-band--center {
  text-align: center;
}
.l-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l-muted);
  margin: 0 0 14px;
}
.l-band h2 {
  font-size: 34px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-width: 780px;
  line-height: 1.15;
}
.l-band--center h2 {
  margin-left: auto;
  margin-right: auto;
}
.l-lead {
  font-size: 18px;
  color: var(--l-muted);
  margin: 16px 0 0;
  max-width: 680px;
  line-height: 1.55;
}
.l-band--center .l-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── weighted two-door — polished to band parity ── */
.l-doors {
  max-width: 540px;
  margin: 40px auto 0;
  text-align: center;
}
.l-door--primary {
  display: block;
  text-decoration: none;
  background: #fff;
  color: var(--l-ink);
  border: 2px solid var(--l-ink);
  border-radius: 14px;
  padding: 26px 30px;
}
.l-door--primary .k {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.014em;
  color: var(--l-ink);
}
.l-door--primary .s {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--l-muted);
  font-weight: 500;
}
.l-door--soft {
  margin-top: 20px;
  font-size: 15px;
  color: var(--l-muted);
}
.l-door--soft a {
  color: var(--l-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 1px;
}

/* ── split layout (text + panel) ── */
.l-split {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
}
.l-split .text {
  flex: 1;
}
.l-panel {
  flex: 1;
  background: #fff;
  border: 1px solid var(--l-hairline);
  border-radius: 14px;
  padding: 24px;
}
.l-panel .ptitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--l-muted);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-soon {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--l-muted);
  background: var(--l-soft);
  border: 1px solid var(--l-hairline);
  border-radius: 999px;
  padding: 2px 9px;
}
.l-roadmap-note {
  font-size: 13px;
  color: var(--l-muted);
  margin: 14px 0 0;
  font-style: italic;
}

/* ── pills ── */
.l-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.l-pill--hi {
  background: #eef7ee;
  color: var(--l-green);
}
.l-pill--mid {
  background: #fff6e6;
  color: #9a6b00;
}
.l-pill--lo {
  background: #fdecec;
  color: #b3261e;
}

/* ── draft preview ── */
.l-draft .q {
  font-size: 13px;
  color: var(--l-muted);
  margin: 0 0 12px;
}
.l-draft .reply {
  font-size: 15px;
  line-height: 1.55;
  color: var(--l-ink);
}
.l-draft .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--l-green);
  background: #eef7ee;
  border-radius: 999px;
  padding: 4px 10px;
}

/* ── review rows ── */
.l-rev {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid var(--l-hairline);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
}
.l-rev:last-child {
  margin-bottom: 0;
}
.l-rev .t {
  font-size: 14px;
  font-weight: 600;
}
.l-rev .meta {
  font-size: 12px;
  color: var(--l-muted);
}

/* ── progress rows (widths are classes — CSP forbids inline style) ── */
.l-prow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--l-hairline);
}
.l-prow:last-child {
  border-bottom: 0;
}
.l-prow .lab {
  font-size: 14px;
  font-weight: 600;
  width: 150px;
}
.l-prog {
  height: 6px;
  background: var(--l-hairline);
  border-radius: 3px;
  flex: 1;
  overflow: hidden;
}
.l-prog i {
  display: block;
  height: 100%;
  background: var(--l-ink);
}
.l-prog--w94 i {
  width: 94%;
}
.l-prog--w78 i {
  width: 78%;
}
.l-prog--w71 i {
  width: 71%;
}
.l-prog--w46 i {
  width: 46%;
}

/* ── mode toggle rows ── */
.l-mrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--l-hairline);
}
.l-mrow:last-child {
  border-bottom: 0;
}
.l-mrow .lab {
  font-size: 14px;
  font-weight: 600;
}
.l-seg {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid var(--l-hairline);
  border-radius: 999px;
  overflow: hidden;
}
.l-seg span {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  color: var(--l-muted);
}
.l-seg span.on {
  background: var(--l-ink);
  color: #fff;
}

/* ── recurring — free-text operational recommendation (no typed buckets) ── */
.l-clu {
  padding: 16px 0;
  border-bottom: 1px solid var(--l-hairline);
}
.l-clu:last-child {
  border-bottom: 0;
}
.l-clu .chead {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-clu .cnt {
  font-size: 12px;
  font-weight: 700;
  color: var(--l-ink);
  background: var(--l-soft);
  border: 1px solid var(--l-hairline);
  border-radius: 999px;
  padding: 3px 10px;
}
.l-clu .ctitle {
  font-size: 14.5px;
  font-weight: 600;
}
.l-clu .crec {
  margin: 9px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--l-muted);
}

/* ── closing CTA ── */
.l-closing {
  text-align: center;
  padding: 96px 56px 40px;
  border-top: 1px solid var(--l-hairline);
}
.l-closing h2 {
  font-size: 38px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.l-closing .l-lead {
  margin: 16px auto 0;
  max-width: 540px;
}
.l-closing .l-signin {
  margin: 34px auto 0;
  text-align: left;
}
.l-foot {
  text-align: center;
  color: #a9a9a5;
  font-size: 12.5px;
  padding: 30px 0 40px;
}
