/* ============================================================
   JAGS AeroStores — public landing (/welcome)
   Layout only. Every colour, radius, shadow and type step comes
   from the app.css token block, so [data-theme="dark"] and the
   global prefers-reduced-motion kill switch both apply for free.
   No new colours are defined here.
   ============================================================ */

body.lp {
  background:
    radial-gradient(940px 540px at 94% -14%, color-mix(in srgb, var(--navy-300) 22%, transparent), transparent 62%),
    radial-gradient(760px 520px at -14% 6%, color-mix(in srgb, var(--navy-400) 13%, transparent), transparent 56%),
    var(--bg);
  background-repeat: no-repeat;
}

/* one measure, one gutter, shared by every band */
.lp-top, .lp-hero, .lp-flow, .lp-value, .lp-foot {
  width: 100%; max-width: 1140px; margin-inline: auto;
  padding-inline: clamp(18px, 4.5vw, 44px);
}

.lp-microlabel {
  display: block; margin: 0 0 14px;
  font: var(--label-font); letter-spacing: var(--label-track);
  text-transform: uppercase; color: var(--ink-3);
}

/* ---------- masthead ---------- */
.lp-top { display: flex; align-items: center; gap: 11px; padding-block: 20px; }

/* ---------- hero ---------- */
.lp-hero {
  display: grid; align-items: center;
  gap: clamp(30px, 5vw, 58px);
  padding-block: clamp(30px, 6vw, 76px) clamp(28px, 5vw, 60px);
}
@media (min-width: 940px) {
  .lp-hero { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
}

.lp-h1 {
  margin: 0 0 18px;
  font-size: clamp(31px, 6.6vw, 58px); font-weight: 800;
  letter-spacing: -.032em; line-height: 1.04; color: var(--ink);
}

.lp-sub {
  margin: 0 0 clamp(24px, 3vw, 34px); max-width: 24ch;
  font-size: clamp(17px, 2.4vw, 23px); font-weight: 500;
  line-height: 1.4; letter-spacing: -.012em; color: var(--ink-2);
}
/* Three statements, three lines — but only where the line has room to hold one. */
@media (min-width: 700px) { .lp-sub span { display: block; } }

.lp-cta {
  min-height: 52px; padding: 0 30px; font-size: 16px;
  border-radius: var(--r-sm); box-shadow: var(--shadow-2);
}
.lp-cta-note { margin: 14px 0 0; font-size: var(--t-sm); color: var(--ink-3); }

/* ---------- illustrative stock readout (a diagram, never a screenshot) ---------- */
.lp-mock {
  margin: 0; background: var(--surface); border: 0;
  border-radius: var(--r-lg); box-shadow: var(--shadow-1), var(--shadow-3); overflow: hidden;
}
.lp-mock-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px clamp(14px, 3vw, 20px);
  background: var(--bg-accent); border-bottom: 1px solid var(--line);
}
.lp-mock-bar .lp-microlabel { margin: 0; color: var(--ink-2); }
.lp-mock-tag {
  font: var(--label-font); letter-spacing: var(--label-track); text-transform: uppercase;
  color: var(--accent-ink); padding: 3px 9px; border-radius: var(--r-xs);
  border: 1px dashed color-mix(in srgb, var(--accent) 50%, transparent);
}

.lp-mock-body {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: 18px clamp(22px, 4vw, 40px);
  padding: clamp(18px, 3vw, 24px) clamp(14px, 3vw, 20px) 6px;
}
.lp-mock-figure b {
  display: block; font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 7.5vw, 52px); font-weight: 700;
  letter-spacing: -.035em; line-height: .95; color: var(--ink);
}
.lp-mock-side { display: grid; gap: 13px; }
.lp-mock-side b {
  display: block; font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: var(--t-xl); font-weight: 700; line-height: 1; color: var(--ink);
}
.lp-mock-side .v-warn { color: var(--warn); }
.lp-mock-side .v-info { color: var(--info); }
.lp-mock-body .lp-microlabel { margin: 0 0 7px; }

.lp-mock-rows {
  list-style: none; margin: 0; display: grid; gap: 10px;
  padding: 14px clamp(14px, 3vw, 20px) 4px;
}
.lp-mock-rows li {
  display: flex; align-items: center; gap: 12px;
  padding-top: 11px; border-top: 1px solid var(--line-soft);
}
/* Stand-ins for a part reference and its description. Nothing real is printed
   on a page the whole internet can read. */
.lp-redact {
  height: 9px; border-radius: var(--r-pill);
  background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line-soft);
}
.lp-redact.w1 { width: clamp(48px, 16%, 86px); flex: none; }
.lp-redact.w2 { flex: 1 1 auto; min-width: 24px; }
/* status carries a word, not only a colour — and no pill, per the audit */
.lp-state {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font: 600 var(--t-sm)/1 var(--font);
}
.lp-state::before { content: ""; width: 9px; height: 9px; border-radius: 3px; background: currentColor; flex: none; }
.lp-state.s-ok { color: var(--ok); }
.lp-state.s-warn { color: var(--warn); }
.lp-state.s-bad { color: var(--bad); }

.lp-mock figcaption {
  padding: 12px clamp(14px, 3vw, 20px) 16px;
  font-size: var(--t-sm); line-height: 1.45; color: var(--ink-3);
}

/* ---------- process flow ---------- */
.lp-flow { padding-block: clamp(30px, 5vw, 56px) clamp(10px, 2vw, 20px); }

.lp-steps { list-style: none; margin: 0; padding: 0; display: grid; }

.lp-step {
  position: relative;
  display: grid; grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px; padding-bottom: 22px;
}
.lp-step-disc {
  grid-column: 1; grid-row: 1 / span 2; position: relative; z-index: 1;
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--r-md); background: var(--surface);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-1);
  color: var(--ink);
}
[data-theme="dark"] .lp-step-disc { color: var(--ink); }
.lp-step-disc .ico { width: 22px; height: 22px; }

/* the conditional leg: dashed edge + hangar amber, the page's only accent besides
   the "illustrative" stamp */
.lp-step-alt .lp-step-disc {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  color: var(--accent-ink);
}

.lp-step b {
  grid-column: 2; grid-row: 1; align-self: center;
  font-size: var(--t-base); font-weight: 700; letter-spacing: -.012em; color: var(--ink);
}
.lp-step-note {
  grid-column: 2; grid-row: 2; margin-top: 4px;
  font-size: var(--t-sm); line-height: 1.45; color: var(--ink-3);
}

/* vertical rail while stacked */
.lp-step::after {
  content: ""; position: absolute; left: 23px; top: 52px; bottom: 2px; width: 2px;
  background: var(--line-strong);
}
.lp-step:last-child::after { content: none; }
@media (max-width: 899px) {
  .lp-step-alt::after,
  .lp-step:has(+ .lp-step-alt)::after {
    width: 0; background: none;
    border-left: 2px dashed color-mix(in srgb, var(--accent) 50%, transparent);
  }
}

@media (min-width: 900px) {
  .lp-steps { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lp-step {
    display: block; text-align: center;
    padding: 0 clamp(6px, 1vw, 14px) 4px;
  }
  .lp-step-disc { margin-inline: auto; }
  .lp-step b { display: block; margin-top: 14px; }
  .lp-step-note { display: block; }
  /* horizontal rail, drawn as two half-segments so the ends cap cleanly */
  .lp-step::before, .lp-step::after {
    content: ""; position: absolute; top: 23px; height: 2px; width: calc(50% - 30px);
    background: var(--line-strong); border: 0;
  }
  .lp-step::before { left: 0; right: auto; bottom: auto; }
  .lp-step::after { right: 0; left: auto; bottom: auto; }
  .lp-step:first-child::before, .lp-step:last-child::after { content: none; }
  /* into procurement, through it, and back out into issue */
  .lp-step-alt::before, .lp-step-alt::after,
  .lp-step-alt + .lp-step::before, .lp-step:has(+ .lp-step-alt)::after {
    height: 0; width: calc(50% - 30px); background: none;
    border: 0; border-top: 2px dashed color-mix(in srgb, var(--accent) 50%, transparent);
  }
}

.lp-flow-key { margin: 4px 0 0; font-size: var(--t-sm); color: var(--ink-3); }

/* ---------- what it changes ---------- */
.lp-value { padding-block: clamp(30px, 5vw, 54px) clamp(34px, 5vw, 62px); }
.lp-points {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0 clamp(24px, 4vw, 52px);
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
}
.lp-points li {
  padding: 15px 0; border-top: 1px solid var(--line);
  font-size: var(--t-lg); font-weight: 600; letter-spacing: -.012em;
  line-height: 1.35; color: var(--ink);
}

/* ---------- close ---------- */
.lp-foot { padding-block: 24px clamp(30px, 5vw, 48px); }
.lp-foot p { margin: 0; max-width: 64ch; font-size: var(--t-sm); line-height: 1.5; color: var(--ink-2); }
.lp-foot .lp-foot-sig {
  margin-top: 10px; color: var(--ink-3);
  font: var(--label-font); letter-spacing: var(--label-track); text-transform: uppercase;
}
.lp-foot::before {
  content: ""; display: block; height: 1px; background: var(--line);
  margin-bottom: 24px;
}
