/* ── HOME ──
   Hero, the build sheet, capability grid, tabbed workflow and FAQ.
*/

.hero {
  text-align: center;
  padding: clamp(52px, 7vw, 104px) 0 clamp(44px, 5.5vw, 72px);
}

/* Bordered capsule above the headline — the label that tells you what this
   page is before the headline tells you what it does. */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.03);
  margin-bottom: 26px;
}

.hero-badge span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge .a { color: var(--accent-hi); }
.hero-badge .b { color: var(--muted); padding-left: 12px; border-left: 1px solid var(--line-hi); }

.hero h1 { max-width: 15ch; margin: 0 auto 24px; }

/* Second sentence recedes, so the first one carries the page. */
.hero h1 span { color: var(--dim); }

.hero .lede { margin: 0 auto 32px; }

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; justify-content: center; }

/* Fact strip — three plain claims, no adjectives */
.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--dim);
}

.strip span { padding-right: 16px; margin-right: 16px; border-right: 1px solid var(--line-hi); }
.strip span:last-child { border: 0; margin: 0; padding: 0; }

/* ── Build sheet ── */

.sheet-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); }

.sheet-pick { padding: clamp(20px, 2.6vw, 28px); border-right: 1px solid var(--line); }

.sheet-pick-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; }

.chip {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-pill);
  background: var(--panel-2);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.14s var(--ease), color 0.14s var(--ease), background 0.14s var(--ease);
}

.chip:hover { color: var(--text); border-color: var(--text); }

.chip[aria-pressed="true"] {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-hi);
}

.chip[aria-pressed="true"]::before { content: "› "; font-family: var(--mono); }

.sheet-note { font-size: 13px; line-height: 1.6; color: var(--dim); margin-top: 20px; }

.sheet-out { display: flex; flex-direction: column; background: var(--void); }

.sheet-out-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.sheet-ref { font-family: var(--mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.1em; }

.sheet-lines { flex: 1; min-height: 196px; padding: 6px 18px; }

.sheet-line {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  padding: 7px 0;
  border-bottom: 1px dotted var(--line-hi);
  animation: linein 0.2s var(--ease);
}

@keyframes linein { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

.sheet-line i { font-style: normal; color: var(--accent); min-width: 20px; }
.sheet-line b { font-weight: 500; color: var(--text); }
.sheet-line em { font-style: normal; color: var(--dim); }

.sheet-empty { font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--dim); padding: 12px 0; }

.sheet-foot { padding: 15px 18px; border-top: 1px solid var(--line); }

.sheet-count { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-bottom: 13px; letter-spacing: 0.06em; }
.sheet-count b { color: var(--text); font-weight: 500; }

@media (max-width: 880px) {
  .sheet-grid { grid-template-columns: 1fr; }
  .sheet-pick { border-right: 0; border-bottom: 1px solid var(--line); }
  .sheet-lines { min-height: 120px; }
}

/* ── Capability grid ── */

.caps { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); gap: 14px; }

.cap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.8vw, 30px);
  transition: border-color 0.16s var(--ease), background 0.16s var(--ease);
}

.cap:hover { border-color: var(--line-hi); background: var(--panel-2); }

.cap-no {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}

.cap-no b { color: var(--accent); font-weight: 500; }
.cap h3 { margin-bottom: 10px; }
.cap p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* ── Tabbed selector — workflow and FAQ ── */

.pick {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--lift);
}

.pick-list { background: var(--void); display: flex; flex-direction: column; }

.pick-head {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.pick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-lo);
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.14s var(--ease);
}

.pick-item:hover { background: var(--panel); }
.pick-item.on { background: var(--panel); box-shadow: inset 3px 0 0 var(--accent); }

.pick-n { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.pick-item.on .pick-n { color: var(--accent); }

.pick-label { font-size: 10px; font-family: var(--mono); letter-spacing: 0.13em; text-transform: uppercase; color: var(--dim); }
.pick-title { font-size: 15px; font-weight: 500; margin-top: 3px; }

.pick-arrow { margin-left: auto; color: var(--dim); font-family: var(--mono); }
.pick-item.on .pick-arrow { color: var(--accent); }

.pick-body { background: var(--panel); padding: clamp(24px, 3.2vw, 36px); }
.pick-body .eyebrow { margin-bottom: 14px; }
.pick-body h3 { margin-bottom: 12px; max-width: 24ch; }
.pick-body p { font-size: 15px; line-height: 1.7; color: var(--muted); }

.pick-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.pick-foot button {
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 880px) { .pick { grid-template-columns: 1fr; } }

/* ── Closing call ── */

.close-cta { text-align: center; padding: clamp(52px, 7vw, 90px) 0; border-top: 1px solid var(--line); }
.close-cta h2 { max-width: 18ch; margin: 18px auto 18px; }
.close-cta .lede { margin: 0 auto 28px; }
.close-cta .hero-cta { justify-content: center; }
.close-cta .strip { justify-content: center; border: 0; padding-top: 6px; }
