/* ============================================================
   Public landing page styles.
   Consumes the design tokens in tokens.css; contains only the
   classes used by index.html.
   ============================================================ */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--slate-950);
  color: var(--steel-300);
  font: 16px/1.65 Georgia, "Times New Roman", serif;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* --- masthead ------------------------------------------------ */
.masthead {
  padding: var(--sp-7) 0 var(--sp-6);
  border-bottom: 1px solid var(--seam);
  background: var(--slate-900);
}

.kicker {
  font-family: var(--font-label);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--steel-500);
  margin: 0 0 var(--sp-4);
}

h1 {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  color: var(--steel-300);
  margin: 0 0 var(--sp-4);
}

.lede {
  font-size: 18px;
  color: var(--steel-400);
  margin: 0 0 var(--sp-6);
}

/* --- sections ------------------------------------------------ */
.band { padding: var(--sp-6) 0; }
.band-alt {
  background: var(--slate-900);
  border-top: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
}

h2 {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--steel-300);
  margin: 0 0 var(--sp-4);
}

.deliverables, .notlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li, .notlist li {
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--seam);
  position: relative;
  color: var(--steel-400);
}

.deliverables li::before, .notlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35em;
  width: 8px;
  height: 2px;
  background: var(--steel-600);
}

.deliverables li:last-child, .notlist li:last-child { border-bottom: 0; }

.deliverables strong, .datafit strong { color: var(--steel-300); }

.posture {
  font-size: 18px;
  color: var(--steel-300);
  border-left: 3px solid var(--steel-600);
  padding-left: var(--sp-4);
  margin: 0 0 var(--sp-5);
}

.datafit {
  color: var(--steel-400);
  margin: 0;
}

/* --- CTAs (links / static only) ------------------------------ */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-3);
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--r-1);
  border: 1px solid var(--steel-700);
}

.btn-primary {
  background: var(--slate-700);
  color: var(--steel-300);
}

.btn-primary.is-disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--steel-300);
}

.btn-secondary:hover { border-color: var(--steel-500); }

.cta-note {
  font-size: 14px;
  color: var(--steel-500);
  margin: 0;
}

/* --- footer -------------------------------------------------- */
.footnote {
  border-top: 1px solid var(--seam);
  padding: var(--sp-5) 0 var(--sp-7);
  font-size: 13px;
  color: var(--steel-600);
}
