/* ===================================================================
   FinPeak component extensions to the base pattern library.
   Loads after site.css. New devices: contrast blocks, question cards,
   document artifacts (proof layer), scannable spine, quiet CTAs, FAQ,
   capital stack figure, jurisdiction table, mobile navigation.
   =================================================================== */

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 880px) {
  .navbar { background: rgba(246,244,239,0.97); box-shadow: 0 1px 0 var(--rule); }
  .navbar-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    padding: 18px 28px 26px;
    gap: 4px;
  }
  .navbar-links.open .navbar-link {
    display: block; width: 100%;
    padding: 13px 0; font-size: 16px;
    border-bottom: 1px solid var(--rule);
  }
  .navbar-links.open .navbar-link.active::after { display: none; }
  .navbar-links.open .navbar-cta {
    margin-top: 16px; width: 100%; text-align: center;
  }
}

/* ===== RESPONSIVE GRID HELPERS (replace inline column overrides) ===== */
.why-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .why-grid.grid-2 { grid-template-columns: 1fr; } }
.models-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .models-grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .models-grid.grid-4 { grid-template-columns: 1fr; } }

/* stage rail column count via custom property so media queries can win */
.stage-rail { grid-template-columns: repeat(var(--stages, 10), 1fr); }
@media (max-width: 1100px) { .stage-rail { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .stage-rail { grid-template-columns: repeat(2, 1fr); } }

/* ===== COMPACT HERO (sub-pages) ===== */
.hero.compact { min-height: 70vh; padding-top: 150px; }

/* ===== AUDIENCE CHIPS ===== */
.audience-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.audience-chip {
  padding: 9px 16px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--rule);
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}

/* ===== QUIET CTA (one line, between section groups) ===== */
.quiet-cta {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 26px 32px;
  text-align: center;
}
.quiet-cta p {
  font-size: 15.5px; color: var(--muted);
  display: inline-flex; gap: 12px; align-items: baseline; flex-wrap: wrap; justify-content: center;
}
.quiet-cta a {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.quiet-cta a:hover { color: var(--accent); }

/* ===== CREDIBILITY STRIP ===== */
.cred-strip {
  background: var(--ink); color: var(--paper);
  padding: 22px 32px;
}
.cred-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: center; gap: 14px 36px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em;
}
.cred-strip-inner span { display: inline-flex; align-items: center; gap: 10px; }
.cred-strip-inner .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-bright); }

/* ===== DIFFERENTIATOR STRIP (3 contrast cards) ===== */
.diff-strip { background: var(--paper); }
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.diff-card {
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 20px; padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.diff-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.diff-card .n {
  font-family: var(--font-display); font-style: italic;
  font-size: 40px; line-height: 1; color: var(--accent);
}
.diff-card h3 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2;
}
.diff-mini { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.diff-mini .row {
  display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: baseline;
  font-size: 13.5px; line-height: 1.45;
}
.diff-mini .lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; padding-top: 2px;
}
.diff-mini .row.usual { color: var(--muted-2); }
.diff-mini .row.usual .lbl { color: var(--muted-2); }
.diff-mini .row.us { color: var(--ink); font-weight: 500; }
.diff-mini .row.us .lbl { color: var(--accent); }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }

/* ===== CONTRAST BLOCK (The usual way / The FinPeak way) ===== */
.contrast {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule); border-radius: 20px;
  overflow: hidden; margin: 8px 0;
}
.contrast-col { padding: 34px 36px; }
.contrast-col.usual { background: var(--paper-warm); }
.contrast-col.us { background: var(--ink); color: var(--paper); }
.contrast-col .c-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 18px; display: block;
}
.contrast-col.usual .c-tag { color: var(--muted); }
.contrast-col.us .c-tag { color: var(--accent-bright); }
.contrast-col ul { display: flex; flex-direction: column; gap: 12px; }
.contrast-col li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.5;
}
.contrast-col li::before { position: absolute; left: 0; top: 0; }
.contrast-col.usual li { color: var(--muted); }
.contrast-col.usual li::before { content: "×"; color: var(--muted-2); font-weight: 600; }
.contrast-col.us li { color: #e8eaee; }
.contrast-col.us li::before { content: "→"; color: var(--accent-bright); font-weight: 600; }
.contrast-col li strong { font-weight: 600; color: inherit; }
.contrast-col.us li strong { color: var(--paper); }
@media (max-width: 800px) { .contrast { grid-template-columns: 1fr; } }

/* ===== SCANNABLE SPINE (anchor overview) ===== */
.spine { display: flex; flex-direction: column; }
.spine a {
  display: grid; grid-template-columns: 44px 1fr 28px; gap: 18px; align-items: center;
  padding: 20px 8px;
  border-top: 1px solid var(--rule);
  font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; letter-spacing: -0.01em;
  transition: background .2s ease, padding-left .2s ease;
}
.spine a:last-child { border-bottom: 1px solid var(--rule); }
.spine a:hover { background: var(--paper-2); padding-left: 16px; }
.spine .k {
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; color: var(--accent);
}
.spine .go { color: var(--muted-2); font-size: 18px; text-align: right; }
.spine a:hover .go { color: var(--accent); }
.spine .sub { display: block; font-size: 14px; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ===== QUESTION CARDS (the three questions device) ===== */
.q-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 8px; }
.q-card {
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 18px; padding: 28px 26px 24px;
  position: relative;
}
.q-card::before {
  content: "?";
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-style: italic;
  font-size: 44px; color: var(--accent-soft); line-height: 1;
}
.q-card .q {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.25; color: var(--ink);
  margin-bottom: 10px; max-width: 16ch;
}
.q-card p { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
@media (max-width: 800px) { .q-row { grid-template-columns: 1fr; } }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.checklist li {
  display: grid; grid-template-columns: 26px 1fr; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  font-size: 15.5px; line-height: 1.5; color: var(--ink-2);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓"; color: var(--positive); font-weight: 700;
}

/* ===== LABELED DUO (Choosing / Writing) ===== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.duo-block {
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 18px; padding: 28px 30px;
}
.duo-block .d-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px;
}
.duo-block h4 { font-size: 18px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.01em; }
.duo-block p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
@media (max-width: 800px) { .duo { grid-template-columns: 1fr; } }

/* ===== HOME-GROUND CALLOUT ===== */
.home-ground {
  margin-top: 24px; padding: 26px 30px;
  background: var(--ink); color: var(--paper);
  border-radius: 18px;
  font-size: 17px; line-height: 1.55;
}
.home-ground em { font-family: var(--font-display); font-style: italic; color: var(--accent-bright); }

/* ===== DOCUMENT ARTIFACT (proof layer) ===== */
.artifact-wrap {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.artifact-stage {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 52px 0;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.artifact-stage::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.35;
}
.sheet {
  width: 270px; aspect-ratio: 1 / 1.35;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.8deg);
  padding: 26px 24px;
  position: relative; z-index: 1;
  transition: transform .3s ease;
}
.artifact-stage:hover .sheet { transform: rotate(0deg) scale(1.02); }
.sheet-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #ECE8DF;
}
.sheet-head .sheet-logo {
  width: 16px; height: 16px; border-radius: 3px; background: var(--ink);
  color: #fff; font-family: var(--font-display); font-style: italic;
  font-size: 11px; display: grid; place-items: center;
}
.sheet-head .sheet-cap { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.12em; color: var(--muted-2); text-transform: uppercase; }
.sheet-line { height: 7px; border-radius: 3px; background: #ECE8DF; margin-bottom: 9px; }
.sheet-line.head { height: 11px; background: #D9D3C5; width: 70%; margin-bottom: 14px; }
.sheet-line.redact { background: var(--ink); }
.sheet-line.accent { background: var(--accent-soft); }
.sheet-line.w90 { width: 90%; } .sheet-line.w75 { width: 75%; }
.sheet-line.w60 { width: 60%; } .sheet-line.w45 { width: 45%; } .sheet-line.w30 { width: 30%; }
.sheet-gap { height: 14px; }
.sheet-note {
  position: absolute; right: -86px; top: 34%;
  width: 150px;
  background: var(--paper-2);
  border: 1px solid var(--rule); border-left: 2px solid var(--accent);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-mono); font-size: 9.5px; line-height: 1.5;
  color: var(--ink-2);
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}
.sheet-note .nt { color: var(--accent); display: block; margin-bottom: 3px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 8.5px; }
/* mini stack bars inside a sheet (capital stack one-pager) */
.sheet-stack { display: flex; flex-direction: column; gap: 5px; margin: 14px 0; }
.sheet-stack .bar { border-radius: 3px; }
.sheet-stack .bar.b1 { height: 34px; background: var(--ink); }
.sheet-stack .bar.b2 { height: 22px; background: var(--accent); }
.sheet-stack .bar.b3 { height: 14px; background: var(--accent-soft); }
.sheet-stack .bar.b4 { height: 18px; background: #fff; border: 1.5px dashed var(--muted-2); }
.artifact-caption {
  margin-top: 18px; text-align: center; position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.04em; padding: 0 24px;
}
@media (max-width: 980px) {
  .artifact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .sheet-note { right: 8px; }
}

/* ===== FAQ (native details/summary) ===== */
.faq { display: flex; flex-direction: column; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 1fr 30px; gap: 16px; align-items: center;
  padding: 22px 8px;
  font-size: clamp(16px, 1.9vw, 19px); font-weight: 500; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-size: 15px; color: var(--muted);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq .a {
  padding: 0 8px 24px; max-width: 68ch;
  font-size: 15.5px; line-height: 1.6; color: var(--muted);
}

/* ===== CAPITAL STACK FIGURE ===== */
.stack-wrap {
  display: grid; grid-template-columns: 400px 1fr; gap: 72px;
  align-items: center;
}
.stack-figure { display: flex; flex-direction: column; gap: 8px; }
.stack-cap {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; justify-content: space-between;
}
.stack-layer {
  border-radius: 12px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14.5px; font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease;
}
.stack-layer:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.stack-layer .who {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75;
}
.stack-layer.senior  { height: 104px; background: var(--ink); color: var(--paper); }
.stack-layer.vendor  { height: 72px; background: var(--accent); color: var(--paper); }
.stack-layer.earnout { height: 54px; background: var(--accent-soft); color: var(--accent-deep); }
.stack-layer.equity  { height: 64px; background: var(--paper-2); border: 1.5px dashed var(--muted-2); color: var(--ink); }
.stack-points { display: flex; flex-direction: column; }
.stack-point {
  display: grid; grid-template-columns: 30px 1fr; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--rule);
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
}
.stack-point:last-child { border-bottom: 1px solid var(--rule); }
.stack-point .k {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.08em; padding-top: 4px;
}
.stack-point strong { font-weight: 600; color: var(--ink); }
@media (max-width: 900px) { .stack-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ===== JURISDICTION TABLE ===== */
.juris-table {
  width: 100%; border-collapse: separate; border-spacing: 0; margin: 8px 0;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 20px;
  overflow: hidden;
  font-size: 14.5px;
}
.juris-table thead th:first-child { border-top-left-radius: 19px; }
.juris-table thead th:last-child { border-top-right-radius: 19px; }
.juris-table th {
  text-align: left;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500; color: var(--muted);
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper-warm);
}
.juris-table td {
  padding: 18px 22px; vertical-align: top;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2); line-height: 1.5;
}
.juris-table tr:last-child td { border-bottom: 0; }
.juris-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
@media (max-width: 800px) {
  .juris-table { display: block; overflow-x: auto; }
}

/* ===== ENTRY-PRODUCT TAG (ways of working) ===== */
.entry-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent); color: var(--paper);
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 14px;
}

/* ===== VIZ CARDS (numbers, drawn not written) ===== */
.viz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.viz-card {
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 20px;
  padding: 36px 30px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.viz-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.viz-card h4 { font-size: 17.5px; font-weight: 500; letter-spacing: -0.01em; }
.viz-card p { font-size: 13.5px; line-height: 1.5; color: var(--muted); max-width: 30ch; }
.viz-card .viz-area { min-height: 132px; display: grid; place-items: center; width: 100%; }
@media (max-width: 900px) { .viz-grid { grid-template-columns: 1fr; } }

/* donut stat */
.donut {
  position: relative; width: 132px; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(var(--accent) 0 252deg, var(--accent-soft) 252deg 360deg);
  display: grid; place-items: center;
}
.donut::before { content: ""; position: absolute; inset: 16px; background: var(--paper-2); border-radius: 50%; }
.donut .val {
  position: relative; font-family: var(--font-display); font-style: italic;
  font-size: 32px; color: var(--ink);
}

/* speed comparison bars */
.speed-figure { width: 100%; display: flex; flex-direction: column; gap: 18px; text-align: left; }
.speed-row .speed-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.speed-bar { height: 14px; border-radius: 999px; }
.speed-bar.slow { width: 100%; background: var(--rule); }
.speed-bar.fast { width: 16%; background: var(--accent); }
.speed-figure.on-dark .speed-label { color: #9ea2aa; }
.speed-figure.on-dark .speed-bar.slow { background: #2a2e36; }
.speed-figure.on-dark .speed-bar.fast { background: var(--accent-bright); }

/* either/or mark (one side per deal) */
.or-viz { display: flex; align-items: center; gap: 16px; }
.or-viz .side {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 20px; font-weight: 600;
}
.or-viz .side.yes { background: var(--ink); color: var(--paper); }
.or-viz .side.no { border: 1.5px dashed var(--muted-2); color: var(--muted-2); }
.or-viz .or { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--accent); }

/* ===== PAYMENT TIMELINE (the part paid later) ===== */
.payline { position: relative; margin: 40px 0 36px; }
.payline::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 27px;
  height: 2px; background: var(--rule);
}
.payline-row { display: flex; justify-content: space-between; position: relative; }
.pay-node { display: flex; flex-direction: column; align-items: center; gap: 9px; width: 24%; text-align: center; }
.pay-dot {
  border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-2); position: relative; z-index: 1;
}
.pay-dot.big {
  width: 56px; height: 56px; background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-style: italic; font-size: 21px;
  box-shadow: var(--shadow-md);
}
.pay-dot.sec { width: 42px; height: 42px; border: 1.5px solid var(--accent); color: var(--accent); margin-top: 7px; }
.pay-dot.sec svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.pay-t { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.pay-s { font-size: 12.5px; line-height: 1.4; color: var(--muted); max-width: 130px; }
.pay-badge {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 3px 9px; border-radius: 4px;
}
@media (max-width: 700px) {
  .payline::before { display: none; }
  .payline-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .pay-node { flex-direction: row; width: 100%; text-align: left; }
  .pay-node > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ===== DOCUMENT JOURNEY (draft → review → seal) ===== */
.journey {
  display: grid; grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 12px; align-items: stretch; margin-top: 28px;
}
.j-step {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 16px;
  padding: 24px 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.j-step .j-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.j-step h5 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.j-step p { font-size: 13px; line-height: 1.5; color: var(--muted); }
.j-arrow { display: grid; place-items: center; color: var(--muted-2); font-size: 19px; }
.mini-doc {
  width: 36px; height: 46px; background: #fff;
  border: 1.5px solid var(--ink); border-radius: 5px;
  position: relative; margin-bottom: 2px;
}
.mini-doc::before {
  content: ""; position: absolute; left: 7px; right: 7px; top: 9px; height: 4px;
  background: var(--accent); border-radius: 2px;
  box-shadow: 0 9px 0 var(--rule), 0 18px 0 var(--rule);
}
.mini-doc.check::after {
  content: "✓"; position: absolute; right: -8px; bottom: -8px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--positive); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.mini-doc.seal::after {
  content: ""; position: absolute; right: -9px; bottom: -9px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--accent);
  box-shadow: inset 0 0 0 3px var(--paper-2), inset 0 0 0 8px var(--accent);
}
@media (max-width: 800px) {
  .journey { grid-template-columns: 1fr; }
  .j-arrow { transform: rotate(90deg); }
}

/* ===== PLAIN STRIP (one honest line, full width) ===== */
.plain-strip {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 56px 32px;
}
.plain-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.plain-strip .mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 80px; line-height: 0.8; color: var(--accent);
}
.plain-strip p {
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.45;
  letter-spacing: -0.01em; color: var(--ink);
  max-width: 64ch;
}
.plain-strip p em { font-family: var(--font-display); font-style: italic; color: var(--accent); }
.plain-strip-inner.with-viz { grid-template-columns: auto 1fr auto; }
@media (max-width: 700px) {
  .plain-strip-inner, .plain-strip-inner.with-viz { grid-template-columns: 1fr; gap: 16px; }
  .plain-strip .mark { font-size: 48px; }
  .plain-strip-inner.with-viz .donut { display: none; }
}
