/* ═══════════════════════════════════════════════════════════════
   Sentinote — shared styles for content subpages
   Compliance & Security · Support · legal documents
   Loaded after styles.css; reuses the brand tokens defined there.
   ═══════════════════════════════════════════════════════════════ */

/* ───────── Page hero (shared) ───────── */
.page-hero { padding: clamp(56px, 8vw, 88px) 0 32px; text-align: left; }
.page-hero h1 { max-width: 16ch; margin-top: 14px; }
.page-hero .lead { max-width: 600px; margin-top: 24px; }

/* ───────── On-this-page jump nav ───────── */
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.jump a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.15s, color 0.15s;
}
.jump a:hover { border-color: var(--ink-mute); color: var(--ink); }

/* ───────── Section block w/ anchor offset for sticky nav ───────── */
.block {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 88px;
}
.block:first-of-type { border-top: none; }
.block-head { max-width: 640px; }
.block-head .eyebrow { margin-bottom: 12px; }
.block-head h2 { font-size: clamp(26px, 3vw, 36px); }
.block-head p { margin-top: 18px; font-size: 16.5px; line-height: 1.65; }

/* ───────── Feature grid (compliance / support cards) ───────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.tile {
  background: var(--paper);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.tile .tile-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--slate-soft);
  color: var(--slate-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tile h3 { font-size: 18px; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
.tile h4 { margin-bottom: 8px; }
.tile p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; }

/* ───────── Checklist (CQC mapping etc.) ───────── */
.checklist {
  margin: 24px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
.checklist li svg { color: var(--slate); flex-shrink: 0; margin-top: 3px; }
.checklist li strong { color: var(--ink); font-weight: 600; }

/* ───────── Status board ───────── */
.status-banner {
  display: flex; align-items: center; gap: 14px;
  background: var(--green-soft);
  border: 1px solid color-mix(in oklab, var(--green) 25%, transparent);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 36px;
}
.status-banner .dot-lg {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 22%, transparent);
  flex-shrink: 0;
}
.status-banner .st-text { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.status-banner .st-sub { font-size: 13px; color: var(--ink-mute); margin-top: 2px; }

.status-list {
  margin-top: 16px;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.status-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.status-row:first-child { border-top: none; }
.status-row .st-name { font-weight: 500; color: var(--ink); }
.status-row .st-state {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green);
}
.status-row .st-state .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ───────── Document (legal) layout ───────── */
.doc { padding: 8px 0 24px; }
.doc-wrap { max-width: 740px; }
.draft-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--amber-soft);
  border: 1px solid color-mix(in oklab, var(--amber) 30%, transparent);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.draft-note svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.draft-note strong { color: var(--ink); font-weight: 600; }

.doc-meta { font-size: 13.5px; color: var(--ink-mute); margin-top: 10px; }

.doc-body { margin-top: 8px; }
.doc-body h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-top: 44px;
  padding-top: 8px;
  scroll-margin-top: 88px;
}
.doc-body h3 { font-size: 17px; font-family: var(--sans); font-weight: 600; margin-top: 28px; }
.doc-body p { margin-top: 14px; font-size: 15.5px; line-height: 1.7; }
.doc-body ul { margin: 14px 0 0; padding-left: 22px; }
.doc-body ul li { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-top: 6px; }
.doc-body a.inline { color: var(--slate-deep); text-decoration: underline; text-underline-offset: 2px; }

.detail-box {
  background: var(--paper);
  border: 1px solid var(--line-cool);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 18px;
  font-size: 14.5px; line-height: 1.7; color: var(--ink-soft);
}
.detail-box .k { color: var(--ink-mute); }
.detail-box .v { color: var(--ink); font-weight: 500; }

/* ───────── Contact-out CTA strip (shared, subtle) ───────── */
.help-cta {
  background: var(--bg-deep);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  margin-top: clamp(40px, 6vw, 72px);
}
.help-cta h2 { font-size: clamp(24px, 3vw, 34px); }
.help-cta p { margin: 16px auto 26px; max-width: 460px; }
