/* Marketing site styles — extracted from web/marketing/d.html 2026-07-31.
   Previously 16KB of inline <style> in a static file, which is why the
   homepage could not share a layout or a stylesheet with any other page.
   Served from /static/css/ so it is cached across pages instead of
   re-sent on every load. */

/* NOTE: the site header and footer are NOT styled here. They moved to the
   shared .as-header / .as-footer rules in app.css when the homepage became
   a view (2026-07-31), so both layouts render identical chrome. The old
   `nav {}` and `footer {}` element selectors were removed — they matched
   the new markup and fought it. Keep chrome out of this file. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #151f3c;
      --navy2:  #0f1a30;
      --accent: #fec810;
      --green:  #16a34a;
      --yellow: #ca8a04;
      --red:    #dc2626;
      --gray:   #6b7280;
      --border: #e5e7eb;
      --bg:     #f5f5f7;
    }

    html { scroll-behavior: smooth; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
           font-size: 16px; line-height: 1.6; color: var(--navy); background: #fff; }
    a { color: inherit; text-decoration: none; }


    /* ── Sections ── */
    section { padding: 96px 24px; }
    .inner  { max-width: 1100px; margin: 0 auto; }
    .inner-sm { max-width: 720px; margin: 0 auto; }

    /* ── Hero ── */
    .hero {
      background: var(--navy); color: #fff;
      padding: 100px 24px 80px; text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(254,200,16,0.15); color: #fec810;
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 99px; margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(38px, 5.5vw, 66px);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
      max-width: 820px; margin: 0 auto 24px;
    }
    .hero h1 em { color: #818cf8; font-style: normal; }
    .hero p { font-size: 19px; color: #94a3b8; max-width: 620px; margin: 0 auto 40px; line-height: 1.6; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--navy); color: #fff; padding: 14px 28px; border-radius: 10px;
      font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-primary:hover { background: var(--navy2); }
    .btn-secondary {
      background: rgba(255,255,255,0.08); color: #fff; padding: 14px 28px; border-radius: 10px;
      font-size: 16px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.14); }
    /* Sizes the icon inside the hero CTAs. Lives here, not with the site
       chrome — the old nav used the same class, and deleting the nav rules
       took this with it, which blew the hero buttons up to three lines. */
    .slack-icon { width: 18px; height: 18px; flex-shrink: 0; }
    .teams-icon { width: 18px; height: 18px; flex-shrink: 0; }

    .btn-slack {
      display: inline-flex; align-items: center; gap: 10px;
      background: #fff; color: var(--navy); padding: 14px 22px; border-radius: 10px;
      font-size: 16px; font-weight: 700; border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }
    .btn-slack:hover { background: #f8fafc; }
    .btn-teams {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.08); color: #fff; padding: 14px 22px; border-radius: 10px;
      font-size: 16px; font-weight: 700; border: 1px solid rgba(255,255,255,0.15);
    }
    .btn-teams:hover { background: rgba(255,255,255,0.14); }
    .teams-icon { width: 20px; height: 20px; flex-shrink: 0; }

    /* ── Two-card hero ── */
    .hero-cards {
      margin: 64px auto 0; max-width: 860px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    @media (max-width: 680px) { .hero-cards { grid-template-columns: 1fr; } }
    .hero-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.35); text-align: left;
    }
    .card-titlebar {
      background: #350d36; padding: 9px 14px;
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: #fff; font-weight: 600;
    }
    .dot { width: 9px; height: 9px; border-radius: 50%; }
    .dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
    .card-label {
      margin-left: 6px; font-size: 11px; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6);
    }
    .slack-card-inner { padding: 14px 18px; color: var(--navy); }
    .slack-bot-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .bot-avatar {
      width: 32px; height: 32px; border-radius: 7px;
      background: var(--navy); display: flex; align-items: center;
      justify-content: center; font-size: 16px; flex-shrink: 0;
    }
    .bot-name { font-weight: 700; font-size: 13px; }
    .bot-tag {
      background: #e8f4fd; color: #0369a1; font-size: 10px;
      font-weight: 700; padding: 1px 4px; border-radius: 3px; margin-left: 4px;
    }
    .bot-time { color: var(--gray); font-size: 11px; margin-left: auto; }
    .slack-msg-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
    .slack-msg-sub { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
    .slack-divider { border: none; border-top: 1px solid var(--border); margin: 10px 0; }
    .slack-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
    .slack-field label { font-size: 10px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
    .slack-field span { font-size: 12px; font-weight: 500; }
    .risk-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 99px; }
    .risk-red { background: #fee2e2; color: var(--red); }
    .risk-yellow { background: #fef9c3; color: var(--yellow); }
    .risk-green { background: #dcfce7; color: var(--green); }
    .redline-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 99px; background: #ede9fe; color: #7c3aed; }
    .slack-actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
    .slack-btn { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 5px; border: 1px solid var(--border); }
    .slack-btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
    .slack-btn-danger  { background: #fff; color: var(--red); border-color: #fca5a5; }

    /* ── Use case split ── */
    .use-cases { background: var(--bg); }
    .use-cases h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    .use-cases > .inner > p { font-size: 18px; color: var(--gray); margin-bottom: 56px; }
    .uc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
    @media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr; } }
    .uc-card {
      background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px;
    }
    .uc-tag {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 4px 10px; border-radius: 99px; margin-bottom: 16px;
    }
    .uc-tag-nda { background: rgba(21,31,60,0.08); color: var(--navy); }
    .uc-tag-redline { background: #ede9fe; color: #7c3aed; }
    .uc-tag-deal { background: #f0fdf4; color: var(--green); }
    .uc-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
    .uc-card p { font-size: 15px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
    .uc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .uc-list li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
    .uc-list li::before { content: '\2713'; font-weight: 700; flex-shrink: 0; }
    .uc-list-nda li::before { color: var(--accent); }
    .uc-list-redline li::before { color: #7c3aed; }
    .uc-list-deal li::before { color: var(--green); }

    /* ── How it works ── */
    .hiw { text-align: center; }
    .hiw h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    .hiw > .inner-sm > p { font-size: 18px; color: var(--gray); margin-bottom: 64px; }
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 48px; }
    .step { padding: 28px; background: var(--bg); border-radius: 12px; text-align: left; }
    .step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
    .step p { font-size: 13px; color: var(--gray); line-height: 1.6; }
    .step code { background: var(--navy); color: #fec810; font-size: 11px; padding: 2px 6px; border-radius: 4px; font-family: 'SF Mono', 'Fira Code', monospace; }

    /* ── Risk ── */
    .risk-demo { text-align: center; background: var(--bg); }
    .risk-demo h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    .risk-demo > .inner-sm > p { font-size: 18px; color: var(--gray); margin-bottom: 48px; }
    .risk-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .risk-pill { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; max-width: 300px; text-align: left; }
    .risk-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
    .risk-dot-g { background: var(--green); } .risk-dot-y { background: #eab308; } .risk-dot-r { background: var(--red); }
    .risk-pill h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .risk-pill p  { font-size: 13px; color: var(--gray); line-height: 1.5; }

    /* ── Features ── */
    .features { }
    .features h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
    .features > .inner > p { font-size: 18px; color: var(--gray); margin-bottom: 56px; }
    .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
    .feature-icon { font-size: 30px; margin-bottom: 12px; }
    .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
    .feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
    .feature-tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #4338ca; background: rgba(99,102,241,0.10); padding: 3px 8px; border-radius: 5px; }
    .feature-tag-both { color: #475569; background: #f1f5f9; }
    .feature-tag-deal { color: var(--green); background: #f0fdf4; }

    /* ── Pricing ── */
    .pricing { background: var(--bg); text-align: center; }
    .pricing h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    .pricing > .inner > p { font-size: 18px; color: var(--gray); margin-bottom: 56px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; align-items: start; }
    .pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; text-align: left; position: relative; }
    .pricing-card.featured { background: var(--navy); color: #fff; border-color: var(--navy); }
    .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #151f3c; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 99px; white-space: nowrap; }
    .plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 8px; }
    .featured .plan-name { color: #94a3b8; }
    .plan-price { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
    .plan-price sup { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 8px; }
    .plan-price span { font-size: 16px; font-weight: 500; color: var(--gray); }
    .featured .plan-price span { color: #94a3b8; }
    .plan-tagline { font-size: 14px; color: var(--gray); margin: 8px 0 24px; }
    .featured .plan-tagline { color: #94a3b8; }
    .plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
    .featured .plan-divider { border-color: rgba(255,255,255,0.12); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .plan-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
    .plan-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
    .featured .plan-features li::before { color: #4ade80; }
    .plan-features li.excluded { opacity: 0.5; }
    .plan-features li.excluded::before { content: '\2717'; color: var(--gray); }
    .featured .plan-features li.excluded::before { color: #64748b; }
    .plan-btn { display: block; width: 100%; text-align: center; margin-top: 28px; padding: 12px; border-radius: 8px; font-size: 15px; font-weight: 700; background: var(--navy); color: #fff; }
    .plan-btn:hover { background: var(--navy2); }
    .featured .plan-btn { background: var(--accent); color: #151f3c; }
    .featured .plan-btn:hover { background: #e6ac00; }
    .plan-btn-outline { display: block; width: 100%; text-align: center; margin-top: 28px; padding: 12px; border-radius: 8px; font-size: 15px; font-weight: 700; border: 1px solid var(--border); color: var(--navy); }
    .plan-btn-outline:hover { background: var(--bg); }
    .plan-limit { font-size: 28px; font-weight: 800; margin: 4px 0 0; letter-spacing: -0.02em; }
    .plan-limit-label { font-size: 13px; color: var(--gray); }
    .featured .plan-limit-label { color: #94a3b8; }

    /* ── CTA ── */
    .cta-section { background: var(--navy); color: #fff; text-align: center; }
    .cta-section h2 { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
    .cta-section p { font-size: 18px; color: #94a3b8; margin-bottom: 40px; }
    .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ── Footer ── */ .footer-links a:hover { color: #fff; }

    @media (max-width: 640px) {
      section { padding: 64px 20px; }
      .hero { padding: 72px 20px 56px; }
      .hero h1 { font-size: 34px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .uc-grid { grid-template-columns: 1fr; }
    }

/* ── Collision overrides: app.css classes that also exist here ──────────────
   The homepage now loads app.css (it never did as a static file), so any class
   name defined in BOTH stylesheets is a conflict. app.css wins on properties
   this file does not explicitly set — which is exactly how the 5-step section
   broke: app.css's `.step { display: inline-flex }` (the setup-wizard stepper
   pill) applied to the homepage's step CARDS, putting the number beside the
   heading instead of above it.

   Scoped under body.as-marketing so they outrank app.css without affecting the
   app itself. tests/marketingCssIsolation.test.js fails when a NEW collision
   appears, so the next one is caught at build time rather than by eye. */

body.as-marketing .step {
  display: block;              /* app.css: inline-flex (wizard stepper pill) */
  align-items: initial;
  gap: initial;
  border-radius: 12px;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
body.as-marketing .btn-slack  { background: #fff; }   /* app.css: --as-slack  */
body.as-marketing .risk-pill  { border: 0; }          /* app.css: pill border */


/* ── mk-: the shared marketing page system ───────────────────────────────────
   One system for the six redesigned pages (/product/document-review,
   /product/ai-redlining, /product/deal-exceptions, /product/contract-register,
   /slack, /microsoft-teams — 2026-08 design handoff). Section shells, the
   step-card sequence, callout band, navy feature section, FAQ accordion,
   related grid, and the mock-card chrome all live here; each page composes
   them via views/partials/marketing/. Every class carries the mk- prefix so
   nothing can collide with app.css (marketingCssIsolation.test.js scans every
   marketing-layout view). Colours, radii and shadows are --as-* tokens; the
   literal px sizes are the handoff's finer type ramp for card and mock copy. */

.mk-inner    { max-width: 1100px; margin: 0 auto; }
.mk-inner-sm { max-width: 760px;  margin: 0 auto; }

/* Section shells */
.mk-sect          { padding: 80px 24px; background: #fff; }
.mk-sect--bg      { background: var(--as-bg); }
.mk-sect--rules   { border-top: 1px solid var(--as-border); border-bottom: 1px solid var(--as-border); }
.mk-sect--btop    { border-top: 1px solid var(--as-border); }
.mk-sect-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 36px;
}
.mk-sect-intro { max-width: 640px; margin-bottom: 34px; }
.mk-sect-intro .mk-h2 { margin: 0 0 14px; }
.mk-sect-intro p { font-size: 17px; line-height: 1.6; color: var(--as-gray); margin: 0; }
.mk-h2 {
  font-family: var(--as-font-display); font-weight: 800;
  font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.02em;
  color: var(--as-navy); margin: 0;
}
.mk-h2--sub { font-size: clamp(22px, 2.4vw, 28px); }
.mk-mono-note { font-family: var(--as-font-mono); font-size: 12px; color: var(--as-gray-3); }
.mk-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 60px; }
.mk-split--center { align-items: center; }

.mk-eyebrow { display: flex; align-items: center; gap: 8px; }
.mk-eyebrow svg { flex: none; }
.mk-eyebrow-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--as-gold);
}
.mk-eyebrow-label--muted { color: var(--as-gray-3); }
.mk-bolt { flex: none; }

/* Risk pips — only ever on triage state or approval outcome, never decoratively. */
.mk-pip { width: 7px; height: 7px; border-radius: var(--as-pill); flex: none; }
.mk-pip--sm { width: 6px; height: 6px; }
.mk-pip--md { width: 8px; height: 8px; }
.mk-pip--lg { width: 9px; height: 9px; }
.mk-pip--green  { background: var(--as-green); }
.mk-pip--yellow { background: var(--as-yellow); }
.mk-pip--red    { background: var(--as-red); }
.mk-pip--dim    { background: var(--as-gray-3); }

/* ── Hero ── */
.mk-hero { background: var(--as-navy); padding: 88px 24px 96px; }
.mk-hero-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 64px; align-items: center;
}
.mk-hero .mk-eyebrow { margin-bottom: 20px; }
.mk-hero h1 {
  font-family: var(--as-font-display); font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px); line-height: 1.06;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 22px;
}
.mk-hero h1 em { font-style: normal; color: var(--as-gold); }
.mk-hero-lead {
  font-size: 19px; line-height: 1.55; color: var(--as-gray-2);
  max-width: 30em; margin: 0 0 32px;
}
.mk-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.mk-btn-gold {
  background: var(--as-gold); color: var(--as-navy); font-weight: 700;
  font-size: 15px; padding: 13px 22px; border-radius: var(--as-r-lg);
}
.mk-btn-gold:hover { background: var(--as-gold-hi); }
.mk-btn-ghost {
  border: 1px solid var(--as-gray-3); color: #fff; font-weight: 600;
  font-size: 15px; padding: 13px 22px; border-radius: var(--as-r-lg);
}
.mk-btn-ghost:hover { border-color: var(--as-gold); color: var(--as-gold); }

/* ── Premise pull-quote ── */
.mk-premise { background: #fff; padding: 76px 24px; }
.mk-premise-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.mk-premise img { margin: 0 auto 24px; border-radius: 12px; }
.mk-quote {
  font-family: var(--as-font-display); font-weight: 700;
  font-size: clamp(21px, 2.4vw, 27px); line-height: 1.38;
  letter-spacing: -0.015em; color: var(--as-navy); margin: 0 0 18px;
  text-wrap: pretty;
}
.mk-quote-sub { font-size: 17.5px; line-height: 1.65; color: var(--as-gray); margin: 0; text-wrap: pretty; }

/* ── Step-card sequence ── */
.mk-seq-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; align-items: stretch;
}
.mk-seq-grid--200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.mk-seq-grid--230 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.mk-seq-grid--240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
/* Sequence order is carried by the mono step numbers — no connector arrows;
   they dangle when the grid wraps. */
.mk-seq-card {
  background: #fff; border: 1px solid var(--as-border);
  border-radius: var(--as-r-xl); padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.mk-seq-top { display: flex; align-items: center; justify-content: space-between; }
.mk-pips { display: flex; align-items: center; gap: 5px; }
.mk-step-num { font-family: var(--as-font-mono); font-size: 12px; font-weight: 700; color: var(--as-gray-3); }
.mk-seq-card--invert .mk-step-num { color: var(--as-gold); }
.mk-seq-card h3 {
  font-family: var(--as-font-display); font-weight: 700; font-size: 17px;
  line-height: 1.3; color: var(--as-navy); margin: 0;
}
.mk-seq-card p { font-size: 14.5px; line-height: 1.55; color: var(--as-gray); margin: 0; }
.mk-seq-card--sm { padding: 22px 20px 24px; gap: 12px; }
.mk-seq-card--sm h3 { font-size: 16px; }
.mk-seq-card--sm p { font-size: 14px; }
.mk-seq-card--tight { padding: 22px; gap: 10px; }
.mk-seq-card--tight h3 { font-size: 16px; }
.mk-seq-card--invert { background: var(--as-navy); border-color: var(--as-navy); }
.mk-seq-card--invert h3 { color: #fff; }
.mk-seq-card--invert p { color: var(--as-gray-2); }

/* ── Callout band ── */
.mk-callout {
  display: flex; align-items: center; gap: 16px;
  background: var(--as-bg); border-radius: var(--as-r-xl); padding: 20px 24px;
}
.mk-callout--card { background: #fff; border: 1px solid var(--as-border); }
.mk-callout--mt { margin-top: 20px; }
.mk-callout svg { flex: none; }
.mk-callout p { font-size: 15.5px; line-height: 1.55; color: var(--as-navy); margin: 0; }
.mk-callout strong { font-weight: 700; }

/* ── Navy feature section ── */
.mk-navy { background: var(--as-navy); padding: 84px 24px; }
.mk-navy .mk-h2 { color: #fff; margin: 16px 0; }
.mk-navy-body { font-size: 16.5px; line-height: 1.65; color: var(--as-gray-2); margin: 0 0 18px; }
.mk-navy-note {
  display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid var(--as-gray-3); padding-top: 18px;
}
.mk-navy-note svg { flex: none; margin-top: 2px; }
.mk-navy-note p { font-size: 14.5px; line-height: 1.6; color: var(--as-gray-2); margin: 0; }
.mk-navy-note strong { font-weight: 700; color: #fff; }
.mk-navy-note a { color: var(--as-gold); }
.mk-navy-head-note { font-size: 15px; color: var(--as-gray-2); max-width: 34em; }

/* White feature section body copy (playbook, no-commands) */
.mk-feature-body { font-size: 16.5px; line-height: 1.65; color: var(--as-gray); margin: 0 0 18px; }
.mk-feature-sub  { font-size: 15px; line-height: 1.6; color: var(--as-gray); margin: 0; }
.mk-feature .mk-h2 { margin: 16px 0; }

/* ── Tiles / capability cards ── */
.mk-tile-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-bottom: 20px;
}
.mk-tile { border: 1px solid var(--as-border); border-radius: var(--as-r-xl); padding: 22px; background: #fff; }
.mk-tile h3 { font-family: var(--as-font-display); font-weight: 700; font-size: 16px; color: var(--as-navy); margin: 0 0 8px; }
.mk-tile p { font-size: 14.5px; line-height: 1.55; color: var(--as-gray); margin: 0; }
.mk-tile p.mk-tile-lead { font-size: 15px; color: var(--as-ink); }
.mk-cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.mk-cap-grid--16 { gap: 16px; }
.mk-cap-card {
  border: 1px solid var(--as-border); border-radius: var(--as-r-lg);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 7px;
  background: #fff;
}
.mk-cap-card--xl { border: 0; border-radius: var(--as-r-xl); padding: 22px; gap: 10px; }
.mk-cap-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mk-cap-card h3, .mk-cap-title {
  font-family: var(--as-font-display); font-weight: 700; font-size: 15px;
  color: var(--as-navy); margin: 0;
}
.mk-cap-card--xl h3 { font-size: 16px; }
.mk-cap-sub { font-size: 13.5px; color: var(--as-gray-3); }
.mk-cap-card--xl p { font-size: 14px; line-height: 1.55; color: var(--as-gray); margin: 0; }
.mk-cap-card--xl svg { flex: none; }

/* ── Badges, pills, chips, commands ── */
.mk-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 11px;
  border-radius: var(--as-pill); margin-bottom: 14px;
}
.mk-badge--green  { background: var(--as-green-bg);  color: var(--as-green); }
.mk-badge--yellow { background: var(--as-yellow-bg); color: var(--as-yellow); }
.mk-badge--red    { background: var(--as-red-bg);    color: var(--as-red); }
.mk-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px;
  border-radius: var(--as-pill); white-space: nowrap;
}
.mk-pill--sm { padding: 4px 9px; }
.mk-pill--xs { font-size: 10.5px; letter-spacing: 0.08em; padding: 4px 9px; }
.mk-pill--tag { padding: 3px 8px; }
.mk-pill--green  { background: var(--as-green-bg);  color: var(--as-green); }
.mk-pill--yellow { background: var(--as-yellow-bg); color: var(--as-yellow); }
.mk-pill--red    { background: var(--as-red-bg);    color: var(--as-red); }
.mk-chip {
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 600;
  color: var(--as-navy); background: var(--as-bg);
  border-radius: var(--as-pill); padding: 7px 14px;
}
.mk-chip--sm    { font-size: 12.5px; padding: 6px 12px; }
.mk-chip--plain { font-weight: 400; padding: 7px 13px; }
.mk-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-chip-row--mb { margin-bottom: 18px; }
.mk-cmd {
  font-family: var(--as-font-mono); font-size: 11.5px; color: var(--as-gray-3);
  background: var(--as-bg); border-radius: var(--as-r-xs); padding: 2px 6px;
}
.mk-cmd--inline { font-size: inherit; color: inherit; padding: 1px 5px; }
.mk-cmd--tag { font-size: 12.5px; color: var(--as-navy); padding: 3px 7px; align-self: flex-start; }
.mk-cmd--word {
  font-size: 15px; color: var(--as-navy); border: 1px solid var(--as-border);
  border-radius: var(--as-r-md); padding: 12px 18px;
}
.mk-chip-dashed {
  font-size: 14px; color: var(--as-gray); border: 1px dashed var(--as-border);
  border-radius: var(--as-r-md); padding: 12px 18px;
}
.mk-word-chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Mock-card chrome ── */
.mk-mock {
  background: #fff; border-radius: var(--as-r-2xl);
  box-shadow: var(--as-shadow-hero); overflow: hidden; text-align: left;
}
.mk-mock--plain { box-shadow: none; border: 1px solid var(--as-border); }
.mk-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--as-border);
}
.mk-mock-head--slim { padding: 13px 18px; }
.mk-mock-head--tint { background: var(--as-bg-2); }
.mk-mock-file { display: flex; align-items: center; gap: 9px; min-width: 0; }
.mk-mock-file svg { flex: none; }
.mk-mock-file span, .mk-mock-label {
  font-family: var(--as-font-mono); font-size: 12.5px; color: var(--as-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mk-mock-label--muted { color: var(--as-gray-3); }
.mk-mock-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--as-gray-3); white-space: nowrap;
}
.mk-mock-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 13px 18px; border-top: 1px solid var(--as-border);
  background: var(--as-bg-2);
}
.mk-mock-note { font-size: 12px; color: var(--as-gray-3); }
.mk-mock-meta { font-family: var(--as-font-mono); font-size: 11.5px; color: var(--as-gray-3); }
.mk-mock-rows { padding: 6px 0; }
.mk-mock-row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: center; padding: 11px 18px;
}
.mk-mock-row--tint { background: var(--as-bg-2); }
.mk-mock-row--btop { border-top: 1px solid var(--as-border); }
.mk-mock-row--tall { padding: 12px 18px; }
.mk-term-label { font-size: 13px; color: var(--as-gray-3); }
.mk-term-val {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--as-ink);
}
.mk-term-val--green  { color: var(--as-green); }
.mk-term-val--yellow { color: var(--as-yellow); }
.mk-term-val--red    { color: var(--as-red); }
.mk-cell { display: flex; flex-direction: column; min-width: 0; }
.mk-cell-title { font-size: 14px; font-weight: 600; }
.mk-cell-sub { font-size: 12.5px; color: var(--as-gray-3); }
.mk-mock-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 18px; }
.mk-mock-body--redline { padding: 20px 22px 22px; gap: 16px; }
.mk-mock-btn {
  border: 1px solid var(--as-border); color: var(--as-ink); font-size: 12.5px;
  font-weight: 600; padding: 8px 14px; border-radius: var(--as-r-md);
}
.mk-mock-btn--primary { background: var(--as-navy); border-color: var(--as-navy); color: #fff; font-weight: 700; }
.mk-mock-btnrow { padding: 12px 14px; border-top: 1px solid var(--as-border); display: flex; flex-wrap: wrap; gap: 8px; }
.mk-avatar {
  width: 30px; height: 30px; border-radius: 99px; background: var(--as-navy);
  color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.mk-avatar--sm { width: 26px; height: 26px; font-size: 11px; }

/* Redline / tracked-change markup */
.mk-clause-ref {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--as-gray-3); margin-bottom: 7px;
}
.mk-clause { font-size: 14.5px; line-height: 1.65; color: var(--as-ink); margin: 0; }
.mk-clause--air { line-height: 1.7; }
.mk-del { text-decoration: line-through; color: var(--as-red); background: var(--as-red-bg); }
.mk-ins { text-decoration: underline; color: var(--as-green); background: var(--as-green-bg); }
.mk-hr { height: 1px; background: var(--as-border); }
.mk-ai-comment {
  border-left: 2px solid var(--as-gold); padding-left: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.mk-ai-comment-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--as-navy);
}
.mk-ai-comment-body { font-size: 13.5px; line-height: 1.55; color: var(--as-gray-3); }
.mk-concerns {
  background: var(--as-bg); border-radius: var(--as-r-lg); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 9px;
}
.mk-concern { display: flex; align-items: center; gap: 8px; }
.mk-concern span:last-child { font-size: 13.5px; color: var(--as-ink); }

/* Chat-channel mock (Slack / Teams) */
.mk-chat { padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.mk-chat img { border-radius: 8px; flex: none; }
.mk-chat-main { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mk-chat-byline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mk-chat-name { font-size: 14px; font-weight: 700; color: var(--as-navy); }
.mk-chat-apptag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--as-gray-3); background: var(--as-bg);
  border-radius: 4px; padding: 2px 5px;
}
.mk-chat-time { font-size: 12px; color: var(--as-gray-3); }
.mk-chat-card { border: 1px solid var(--as-border); border-radius: var(--as-r-lg); overflow: hidden; }
.mk-chat-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--as-border);
}
.mk-chat-file { font-family: var(--as-font-mono); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-chat-rows { padding: 6px 0; }
.mk-chat-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 9px 14px;
}
.mk-chat-row--tint { background: var(--as-bg-2); }
.mk-chat-row .mk-term-label { font-size: 12.5px; }
.mk-chat-row .mk-term-val { font-size: 13px; gap: 0; }
.mk-chat-meta { font-size: 12px; color: var(--as-gray-3); }
.mk-chat-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.mk-chat-claimed {
  display: flex; align-items: center; gap: 9px; background: var(--as-bg);
  border-radius: var(--as-r-md); padding: 10px 12px;
}
.mk-chat-claimed span:last-child { font-size: 13px; color: var(--as-ink); }

/* Register table mock */
.mk-table-row {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 12px;
  padding: 12px 18px; align-items: center;
}
.mk-table-row--head { padding: 10px 18px; background: var(--as-bg-2); border-bottom: 1px solid var(--as-border); }
.mk-table-col {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--as-gray-3);
}
.mk-table-name { font-size: 13.5px; font-weight: 600; }
.mk-table-type { font-size: 13px; color: var(--as-gray-3); }
.mk-table-date { font-size: 13px; color: var(--as-ink); }

/* Exception status mock */
.mk-progress-head { display: flex; align-items: center; justify-content: space-between; }
.mk-progress-title { font-size: 13.5px; font-weight: 600; }
.mk-progress-bar { display: flex; gap: 6px; }
.mk-progress-seg { flex: 1; height: 8px; border-radius: 99px; }
.mk-progress-seg--green  { background: var(--as-green); }
.mk-progress-seg--yellow { background: var(--as-yellow); }
.mk-holder {
  background: var(--as-bg); border-radius: var(--as-r-lg); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.mk-holder-label { font-size: 13px; color: var(--as-gray-3); }
.mk-holder-row { display: flex; align-items: center; gap: 10px; }
.mk-stack-8 { display: flex; flex-direction: column; gap: 8px; }

/* Ask-a-question mock */
.mk-ask-q { padding: 16px 18px; border-bottom: 1px solid var(--as-border); display: flex; align-items: center; gap: 10px; }
.mk-ask-q svg { flex: none; }
.mk-ask-q span { font-size: 14px; color: var(--as-ink); }
.mk-ask-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.mk-ask-count { font-size: 13px; color: var(--as-gray-3); }
.mk-ask-rows { display: flex; flex-direction: column; gap: 10px; }
.mk-ask-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--as-border); border-radius: var(--as-r-lg); padding: 12px 14px;
}

/* Reconciliation mock */
.mk-recon-row { padding: 15px 18px; display: flex; flex-direction: column; gap: 6px; }
.mk-recon-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mk-recon-ask { font-size: 14px; font-weight: 600; }
.mk-recon-note { font-size: 13px; color: var(--as-gray-3); }

/* Playbook mock */
.mk-play-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 14px 18px; align-items: center; }
.mk-play-row span:last-child { font-size: 14px; }
.mk-play-row strong { font-weight: 600; }

/* Folder mock */
.mk-folder-row { display: flex; align-items: center; gap: 10px; padding: 13px 18px; }
.mk-folder-row svg { flex: none; }
.mk-folder-row--file { padding-left: 40px; }
.mk-folder-name { font-size: 13.5px; font-weight: 600; }
.mk-folder-side { margin-left: auto; font-size: 12.5px; color: var(--as-gray-3); }
.mk-folder-file { font-family: var(--as-font-mono); font-size: 12.5px; }
.mk-folder-v { margin-left: auto; font-size: 12px; color: var(--as-gray-3); }
.mk-folder-pill { margin-left: auto; }

/* Note boxes (Your documents / Two things to know) */
.mk-note-box { background: var(--as-bg); border-radius: var(--as-r-xl); padding: 26px 24px; }
.mk-note-box-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mk-note-box-head svg { flex: none; }
.mk-note-box h2 { font-family: var(--as-font-display); font-weight: 800; font-size: 20px; color: var(--as-navy); margin: 0; }
.mk-note-box h3 { font-family: var(--as-font-display); font-weight: 700; font-size: 18px; color: var(--as-navy); margin: 0 0 12px; }
.mk-note-box p { font-size: 15.5px; line-height: 1.65; color: var(--as-ink); margin: 0 0 14px; }
.mk-note-box p:last-child { margin-bottom: 0; }
.mk-note-box a { font-size: 14.5px; font-weight: 600; color: var(--as-link); }
.mk-note-box a:hover { color: var(--as-navy); }
.mk-bullets { display: flex; flex-direction: column; gap: 14px; }
.mk-bullet { display: flex; gap: 12px; align-items: flex-start; }
.mk-bullet svg { flex: none; margin-top: 4px; }
.mk-bullet p { font-size: 15px; line-height: 1.6; color: var(--as-ink); margin: 0; }

/* ── FAQ accordion ── */
.mk-faq-inner { max-width: 760px; margin: 0 auto; }
.mk-faq-inner .mk-h2 { margin: 0 0 28px; }
.mk-faq-list { display: flex; flex-direction: column; gap: 12px; }
.mk-faq-item { border: 1px solid var(--as-border); border-radius: var(--as-r-xl); overflow: hidden; background: #fff; }
.mk-faq-item h3 { margin: 0; }
.mk-faq-q {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 22px; cursor: pointer;
  background: none; border: 0; text-align: left;
  font-family: var(--as-font-display); font-weight: 700; font-size: 16.5px;
  color: var(--as-navy);
}
.mk-faq-q:hover { background: var(--as-bg-2); }
.mk-faq-sign { font-family: var(--as-font-mono); font-weight: 400; font-size: 18px; color: var(--as-gray-3); flex: none; }
.mk-faq-sign::before { content: '+'; }
.mk-faq-q[aria-expanded="true"] .mk-faq-sign::before { content: '\2013'; }
.mk-faq-panel p { font-size: 15.5px; line-height: 1.65; color: var(--as-gray); margin: 0; padding: 0 22px 20px; }

/* ── Related grid ── */
.mk-related { padding: 64px 24px 88px; background: #fff; }
.mk-related--bg { background: var(--as-bg); border-top: 1px solid var(--as-border); }
.mk-related .mk-eyebrow { margin-bottom: 20px; }
.mk-rel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.mk-rel-card {
  background: #fff; border: 1px solid var(--as-border);
  border-radius: var(--as-r-lg); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px;
}
.mk-rel-card:hover { border-color: var(--as-gold); }
.mk-rel-title { font-family: var(--as-font-display); font-weight: 700; font-size: 15.5px; color: var(--as-navy); }
.mk-rel-sub { font-size: 13.5px; color: var(--as-gray-3); }

/* Exception request card */
.mk-exc-chips { padding: 16px 18px 6px; display: flex; flex-wrap: wrap; gap: 8px; }
.mk-exc-legs { padding: 10px 0 4px; }

/* Small utilities the chat mocks and setup sections need */
.mk-mono { font-family: var(--as-font-mono); }
.mk-feature-body--16 { font-size: 16px; }

/* ── Integrations + solutions additions (2026-08-19 handoff) ─────────────────
   New components for the ten integrations/solutions pages, same mk- system. */

/* Neutral pills — non-risk labels (Read / Write / Revoke, No dashboard,
   Not a CLM, the 60-day countdown). Risk colours stay reserved for state. */
.mk-pill--neutral { background: var(--as-bg); color: var(--as-navy); }
.mk-pill--dim     { background: var(--as-bg); color: var(--as-gray-3); }

/* Hub path mock */
.mk-path-row { display: flex; align-items: center; gap: 12px; padding: 15px 18px; }
.mk-path-num { font-family: var(--as-font-mono); font-size: 11.5px; font-weight: 700; color: var(--as-gray-3); width: 18px; flex: none; }
.mk-path-stage { font-size: 13px; color: var(--as-gray-3); flex: 1; }
.mk-path-val { font-size: 13.5px; font-weight: 600; }

/* Bordered link cards (hub) — the hover marks them as links */
.mk-link-card {
  border: 1px solid var(--as-border); border-radius: var(--as-r-xl);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
  background: #fff;
}
.mk-link-card:hover { border-color: var(--as-gold); }
.mk-link-card h3 { font-family: var(--as-font-display); font-weight: 700; font-size: 17px; color: var(--as-navy); margin: 0; }
.mk-link-card p { font-size: 14.5px; line-height: 1.55; color: var(--as-gray); margin: 0; }
.mk-link-card svg { flex: none; }

/* Email mock */
.mk-mail-row { display: grid; grid-template-columns: 54px 1fr; gap: 12px; padding: 11px 18px; align-items: baseline; }
.mk-mail-label { font-size: 12px; color: var(--as-gray-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.mk-mail-addr { font-family: var(--as-font-mono); font-size: 13px; color: var(--as-navy); overflow-wrap: anywhere; }
.mk-mail-subj { font-size: 13.5px; }
.mk-attach-wrap { padding: 14px 18px; border-top: 1px solid var(--as-border); }
.mk-attach { display: flex; align-items: center; gap: 10px; border: 1px solid var(--as-border); border-radius: var(--as-r-md); padding: 10px 12px; }
.mk-attach svg { flex: none; }
.mk-attach-name { font-family: var(--as-font-mono); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-attach-size { font-size: 12px; color: var(--as-gray-3); margin-left: auto; flex: none; }
.mk-receipt { border-top: 1px solid var(--as-border); background: var(--as-bg); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.mk-receipt img { border-radius: 7px; flex: none; }
.mk-receipt span:first-of-type { font-size: 12.5px; color: var(--as-ink); }
.mk-receipt .mk-pip { margin-left: auto; }

/* Inline status value (parity rows, approver legs) */
.mk-status-val { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; }
.mk-status-val--green  { color: var(--as-green); }
.mk-status-val--yellow { color: var(--as-yellow); }

/* White cards on navy sections (access model, permissions, cost, honest-limits) */
.mk-perm-card {
  background: #fff; border-radius: var(--as-r-xl); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.mk-perm-card h3 { font-family: var(--as-font-display); font-weight: 700; font-size: 16.5px; color: var(--as-navy); margin: 0; }
.mk-perm-card p { font-size: 14.5px; line-height: 1.55; color: var(--as-gray); margin: 0; }
.mk-perm-card .mk-pill { align-self: flex-start; }
.mk-perm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 20px; }
.mk-perm-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.mk-perm-grid--250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-bottom: 24px; }
.mk-perm-grid--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.mk-navy-note--wide { gap: 16px; padding-top: 20px; }
.mk-navy-note--wide p { max-width: 62em; }

/* Solutions "what changes" card variant (h3 16.5 / body 14.5 / tighter pad) */
.mk-seq-card--role { padding: 24px 22px; gap: 12px; }
.mk-seq-card--role h3 { font-size: 16.5px; }
.mk-seq-card--role p { font-size: 14.5px; }

/* Status timeline (sales) */
.mk-tl { padding: 18px; display: flex; flex-direction: column; }
.mk-tl-row { display: flex; gap: 12px; align-items: flex-start; }
.mk-tl-row .mk-pip { margin-top: 5px; }
.mk-pip--pending { background: var(--as-border); }
.mk-tl-body { display: flex; flex-direction: column; gap: 1px; padding-bottom: 16px; }
.mk-tl-row:last-child .mk-tl-body { padding-bottom: 0; }
.mk-tl-title { font-size: 13.5px; font-weight: 600; color: var(--as-ink); }
.mk-tl-title--dim { color: var(--as-gray-2); }
.mk-tl-sub { font-size: 12px; color: var(--as-gray-3); }

/* Coloured 12px sub-lines in queue mocks — triage state, not decoration */
.mk-cell-sub--yellow { color: var(--as-yellow); }
.mk-cell-sub--red    { color: var(--as-red); }

/* Legal playbook mock */
.mk-pb-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.mk-pb-row { display: flex; align-items: flex-start; gap: 10px; }
.mk-pb-row .mk-pip { margin-top: 7px; }
.mk-pb-cell { display: flex; flex-direction: column; gap: 2px; }
.mk-pb-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--as-gray-3); font-weight: 700; }
.mk-pb-val { font-size: 14px; color: var(--as-ink); }

/* Numbered plain rows (founders getting-started) + front-door rows (legal-ops) */
.mk-gs-row { display: flex; align-items: flex-start; gap: 12px; padding: 15px 18px; }
.mk-gs-row .mk-path-num { width: auto; margin-top: 2px; }
.mk-gs-row span:last-child { font-size: 13.5px; color: var(--as-ink); }
.mk-door-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; }
.mk-door-row svg { flex: none; }
.mk-door-title { font-size: 13.5px; font-weight: 600; flex: 1; }
.mk-door-dest { font-family: var(--as-font-mono); font-size: 11.5px; color: var(--as-gray-3); }
.mk-door-cell { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.mk-door-cell .mk-door-title { flex: none; }

/* Mock footnote strip (founders hero + getting-started) */
.mk-mock-footnote {
  padding: 14px 18px; border-top: 1px solid var(--as-border);
  background: var(--as-bg); font-size: 12.5px; line-height: 1.55; color: var(--as-ink);
}
.mk-mock-footnote--lg { font-size: 13px; }
.mk-mock-footnote p { font-size: inherit; line-height: inherit; color: inherit; margin: 0; }

/* Setup box (Drive / DocuSign closing band) + callout ink variant (SharePoint) */
.mk-setup-box {
  display: flex; align-items: center; gap: 20px;
  background: var(--as-bg); border-radius: var(--as-r-xl); padding: 24px 26px;
}
.mk-setup-box svg { flex: none; }
.mk-setup-box h2 { font-family: var(--as-font-display); font-weight: 800; font-size: 20px; color: var(--as-navy); margin: 0 0 8px; }
.mk-setup-box p { font-size: 15.5px; line-height: 1.6; color: var(--as-ink); margin: 0; }
.mk-callout--ink p { font-size: 15px; color: var(--as-ink); }
.mk-sect--flush { padding-top: 0; }

/* DocuSign approved-card definition rows */
.mk-mock-body--12 { gap: 12px; padding: 16px 18px; }
.mk-def-rows { display: grid; grid-template-columns: auto 1fr; gap: 10px 12px; align-items: baseline; }
.mk-def-val { font-size: 13.5px; }
.mk-def-val--strong { font-weight: 600; }
.mk-def-note { background: var(--as-bg); border-radius: var(--as-r-md); padding: 12px 14px; font-size: 12.5px; color: var(--as-ink); }

/* Exception chips row with bottom rule (sales variant) */
.mk-exc-chips--line { padding: 14px 18px; border-bottom: 1px solid var(--as-border); }

/* Standalone callout bands (finance third-option / human-decides) + premise
   pages whose pull-quote runs to two or three paragraphs */
.mk-band { background: #fff; padding: 76px 24px; }
.mk-band--tight { padding-top: 0; }
.mk-quote-sub--mt { margin-top: 16px; }
