/* ============================================================================
   SellFalcon public pages (redesign, September 2026).
   The landing page and every page a visitor can read without an account:
   guides, changelog, the three legal documents, status, free tools, feedback,
   the signed-out support page and the 404. One header, one footer, one set
   of blocks. Tokens come from site.css; nothing here is typed twice.
   ============================================================================ */

.mk-body { margin: 0; background: var(--pg); color: var(--ink); -webkit-font-smoothing: antialiased; }
.mk-body * { box-sizing: border-box; }
.mk-body button { font-family: inherit; }
.mk { display: block; min-width: 0; animation: sfRise .3s var(--ez) both; }
.mk-anchor { display: block; position: relative; top: -66px; height: 0; width: 0; visibility: hidden; }

/* THE MOTION THESE PAGES ASK FOR IS DEFINED HERE, not borrowed. sfRise,
   sfPulse and sfTick live in app.css, which no public page loads: the page
   entrance never played and the status dot never pulsed, because a named
   animation with no keyframes is silently dropped. Same definitions, so a
   page that loads both stylesheets behaves identically. */
@keyframes sfRise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes sfPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(24, 168, 93, .45); } 55% { box-shadow: 0 0 0 6px rgba(24, 168, 93, 0); } }
@keyframes sfTick { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.15); opacity: 1; } 100% { transform: none; } }

/* EVERY CONTROL OUT HERE IS 44px TALL AT LEAST. That is the redesign's own
   rule for the public pages, and it is what makes them usable on a phone: a
   16px-tall "How it does that" toggle is a target nobody can hit with a
   thumb. Ranges, checkboxes and radios keep their native size, and anything
   marked data-hit="tight" stays small on screen but carries an invisible
   36px target instead. */
.mk-body button:not([data-hit="tight"]):not(.mk-top),
.mk-body .mk-btn,
.mk-body .mk-nav a,
.mk-body .mk-legal .tabs a,
.mk-body .mk-legal .toc a,
.mk-body .mk-doc .side nav a,
.mk-body .mk-foot .cols a,
.mk-body select,
.mk-body input:not([type="range"]):not([type="checkbox"]):not([type="radio"]) { min-height: 44px; }
.mk-body [data-hit="tight"] { position: relative; }
.mk-body [data-hit="tight"]::before { content: ""; position: absolute; left: -6px; right: -6px; top: 50%; height: 36px; transform: translateY(-18px); }

/* Keyboard focus. site.css hands buttons an outline but hands everything else
   a box-shadow ring, and every .mk-btn re-declares box-shadow for its resting
   elevation, so the ring never appeared on a call to action. An outline
   cannot be clobbered that way. The ring is an outline only: site.css also
   rewrites border-radius while focused, which squares off a pill the moment a
   keyboard reaches it, and an outline already follows the control's own
   radius. */
.mk-body :focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }

/* -------------------------------- header ---------------------------------- */
.mk-head { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 16px; padding: 0 clamp(20px, 4vw, 52px); min-height: 62px; background: var(--glass); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--glassbd); box-shadow: inset 0 1px 0 var(--glasshi); transition: box-shadow .25s var(--ez); }
.mk-head.scrolled { box-shadow: inset 0 1px 0 var(--glasshi), 0 10px 30px rgba(12, 26, 58, .13); }
.mk-brand { display: flex; align-items: center; gap: 10px; flex: none; padding: 0; border: 0; background: none; color: var(--ink); text-decoration: none; }
.mk-brand:hover { text-decoration: none; color: var(--ink); }
.mk-brand img { width: 30px; height: 30px; border-radius: 8px; }
.mk-brand b { font-size: 15.5px; font-weight: 800; letter-spacing: -.02em; }
.mk-nav { display: flex; gap: 2px; margin-left: 6px; padding-right: 28px; min-width: 0; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent); -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent); }
.mk-nav::-webkit-scrollbar { display: none; }
.mk-nav a { padding: 7px 12px; border-radius: 9px; color: var(--dim); font-size: 13px; font-weight: 650; white-space: nowrap; text-decoration: none; scroll-snap-align: start; transition: background .14s var(--ez), color .14s var(--ez); }
.mk-nav a:hover { background: var(--pn3); color: var(--ink); text-decoration: none; }
.mk-nav a[aria-current="page"] { background: var(--pn3); color: var(--ink); font-weight: 750; }
.mk-head .grow { flex: 1; }
.mk-head .mk-btn { flex: none; }
.mk-bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--acc); border-radius: 0 99px 99px 0; }
.mk-top { position: fixed; right: 22px; bottom: 22px; z-index: 9; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--glassbd); border-radius: 50%; background: var(--glass); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); color: var(--ink2); box-shadow: var(--sh2), inset 0 1px 0 var(--glasshi); cursor: pointer; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .25s var(--ez), transform .25s var(--ez), color .15s var(--ez); }
.mk-top.on { opacity: 1; transform: none; pointer-events: auto; }
.mk-top:hover { color: var(--acci); }

/* -------------------------------- buttons --------------------------------- */
.mk-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border: 1px solid transparent; border-radius: 12px; background: var(--acc); color: #fff; font-size: 15px; font-weight: 780; text-decoration: none; cursor: pointer; box-shadow: 0 10px 26px rgba(23, 104, 242, .30); transition: transform .15s var(--ez), box-shadow .15s var(--ez), background .15s var(--ez), border-color .15s var(--ez), color .15s var(--ez); white-space: nowrap; }
.mk-btn:hover { background: var(--acc2); color: #fff; transform: translateY(-2px); text-decoration: none; }
.mk-btn:active { transform: scale(.98); }
.mk-btn.soft { background: var(--pn); color: var(--ink); border-color: var(--ln2); box-shadow: var(--sh); font-weight: 700; }
.mk-btn.soft:hover { background: var(--pn); color: var(--ink); border-color: var(--acc); }
.mk-btn.quiet { background: var(--pn2); color: var(--ink); border-color: var(--ln2); box-shadow: none; font-weight: 700; }
.mk-btn.quiet:hover { background: var(--pn3); color: var(--ink); transform: none; }
.mk-btn.white { background: #fff; color: var(--acc2); font-weight: 800; box-shadow: 0 10px 26px rgba(8, 42, 99, .30); }
.mk-btn.white:hover { background: #fff; color: var(--acc2); }
.mk-btn.sm { padding: 7px 14px; border-radius: 9px; font-size: 13px; font-weight: 750; box-shadow: 0 1px 2px rgba(16, 24, 40, .14); }
.mk-btn.sm.quiet, .mk-btn.sm.soft { box-shadow: none; }
.mk-btn.md { padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 750; box-shadow: none; }
.mk-btn.md.soft { box-shadow: var(--sh); }
.mk-btn.lg { padding: 12px 20px; border-radius: 10px; font-size: 13.5px; font-weight: 750; box-shadow: none; }
.mk-btn .ic { display: grid; place-items: center; flex: none; }
.mk-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.mk-link { padding: 0; border: 0; background: none; color: var(--acci); font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; }
.mk-link:hover { text-decoration: underline; color: var(--acci); }

/* ------------------------------- sections --------------------------------- */
.mk-sec { padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 52px); }
.mk-sec.tight { padding: clamp(24px, 3vw, 40px) clamp(20px, 4vw, 52px) clamp(48px, 6vw, 88px); }
.mk-sec.band { background: var(--pn2); border-top: 1px solid var(--ln); border-bottom: 1px solid var(--ln); }
.mk-sec.p72 { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.mk-sec.b72 { padding-bottom: clamp(40px, 5vw, 72px); }
.mk-sec.b40 { padding-bottom: clamp(24px, 3vw, 40px); }
.mk-intro { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.mk-sec.docpad { padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 52px) clamp(48px, 6vw, 88px); }
.mk-sec.pagepad { padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 52px) clamp(40px, 5vw, 72px); }
.mk-sec.legalpad { padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 52px) clamp(40px, 5vw, 72px); }
.mk-lede.pre { margin-bottom: 26px; }
.mk-wrap { max-width: 1120px; margin: 0 auto; min-width: 0; }
.mk-wrap.narrow { max-width: 800px; }
.mk-wrap.mid { max-width: 1000px; }
.mk-kicker { display: block; font-size: 12px; font-weight: 800; color: var(--dim); letter-spacing: .09em; margin-bottom: 10px; text-transform: uppercase; }
.mk-kicker.plain { text-transform: none; letter-spacing: 0; }
.mk-tag { display: inline-block; padding: 4px 11px; border-radius: 999px; background: var(--pn3); color: var(--dim); font-size: 12px; font-weight: 750; margin-bottom: 16px; }
.mk-h1 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); font-weight: 830; letter-spacing: -.04em; line-height: 1.05; text-wrap: balance; }
.mk-h2 { margin: 0 0 10px; font-size: clamp(26px, 3.2vw, 38px); font-weight: 820; letter-spacing: -.035em; line-height: 1.1; text-wrap: balance; }
.mk-lede { margin: 0; font-size: 14.5px; color: var(--dim); line-height: 1.6; text-wrap: pretty; }
.mk-lede.big { font-size: 15px; max-width: 58ch; }
.mk-headrow { display: flex; align-items: flex-end; gap: 20px 40px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 36px); }
.mk-headrow > div { flex: 1 1 320px; min-width: 0; }
.mk-headrow > p { flex: 1 1 260px; margin: 0; font-size: 14px; color: var(--dim); line-height: 1.6; max-width: 40ch; }
.mk-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--ln); background: var(--pn); color: var(--ink2); font-size: 12.5px; font-weight: 700; box-shadow: var(--sh); }
.mk-chip i, .mk-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pos); display: inline-block; flex: none; }
.mk-card { border: 1px solid var(--ln); border-radius: 14px; background: var(--pn); box-shadow: var(--sh); min-width: 0; }
.mk-card.pad { padding: 22px 24px; }
.mk-card.pad-sm { padding: 20px 22px; }
.mk-card.lift { border-color: var(--ln2); border-radius: 20px; box-shadow: var(--sh2); }
[data-reveal] { transition: opacity .55s var(--ez), transform .55s var(--ez); }
[data-reveal].wait { opacity: 0; transform: translateY(20px); }
@media (prefers-reduced-motion: reduce) { [data-reveal].wait { opacity: 1; transform: none; } }
@keyframes sfUpA { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes sfUpB { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------------------------------- hero ---------------------------------- */
.mk-hero { position: relative; overflow: hidden; padding: clamp(52px, 7vw, 104px) clamp(20px, 4vw, 52px) clamp(40px, 5vw, 72px); background: linear-gradient(180deg, var(--pn2) 0%, var(--pg) 62%); }
.mk-hero .glow { position: absolute; top: -260px; left: 50%; transform: translateX(-50%); width: 900px; height: 620px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(23, 104, 242, .16), rgba(23, 104, 242, 0) 66%); pointer-events: none; }
.mk-hero-in { position: relative; max-width: 840px; margin: 0 auto; text-align: center; }
.mk-hero-in .mk-chip { margin-bottom: 22px; }
.mk-hero h1 { margin: 0 0 18px; font-size: clamp(38px, 6.4vw, 70px); font-weight: 830; letter-spacing: -.045em; line-height: 1.02; text-wrap: balance; }
.mk-hero .lede { margin: 0 auto 28px; font-size: clamp(15.5px, 1.6vw, 18px); color: var(--dim); line-height: 1.55; max-width: 50ch; text-wrap: pretty; }
.mk-hero .ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; }
.mk-hero .ctas .mk-btn.soft { padding: 14px 22px; font-size: 15px; }
.mk-hero .note { margin: 16px 0 0; font-size: 13px; color: var(--dim); font-weight: 600; line-height: 1.5; }
.mk-demo { position: relative; max-width: 1120px; margin: clamp(36px, 5vw, 60px) auto 0; }
.mk-demo .frame { border: 1px solid var(--ln2); border-radius: 20px; background: var(--pn); box-shadow: 0 34px 90px rgba(12, 26, 58, .20), 0 2px 6px rgba(12, 26, 58, .08); overflow: hidden; }
.mk-demo .bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; border-bottom: 1px solid var(--ln); background: var(--pn2); }
.mk-demo .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--ln2); display: inline-block; }
.mk-demo .bar .url { flex: 1; min-width: 0; max-width: 440px; margin: 0 auto; padding: 5px 12px; border-radius: 999px; background: var(--pn3); color: var(--dim); font-size: 12px; font-weight: 650; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-demo .bar small { flex: none; font-size: 12px; font-weight: 700; color: var(--dim); font-variant-numeric: tabular-nums; }
.mk-demo .body { display: flex; flex-wrap: wrap; }
.mk-demo .tabs { flex: 1 1 170px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 4px; align-content: start; padding: 14px 12px; background: var(--pn2); border-right: 1px solid var(--ln); }
.mk-demo .tab { display: flex; align-items: center; gap: 11px; width: 100%; padding: 10px 11px; border: 0; border-radius: 11px; background: transparent; color: var(--ink2); text-align: left; cursor: pointer; transition: background .18s var(--ez); }
.mk-demo .tab:hover { background: var(--pn3); }
.mk-demo .tab[aria-pressed="true"] { background: var(--pn); color: var(--ink); }
.mk-demo .tab .n { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--pn3); color: var(--dim); font-size: 12px; font-weight: 800; }
.mk-demo .tab[aria-pressed="true"] .n { background: var(--acc); color: #fff; }
.mk-demo .tab b { display: block; font-size: 13px; font-weight: 760; letter-spacing: -.01em; }
.mk-demo .tab small { display: block; font-size: 12px; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.mk-demo .panel { flex: 6 1 420px; min-width: 0; padding: clamp(18px, 2.4vw, 28px); }
.mk-demo .panel.a { animation: sfUpA .34s var(--ez) both; }
.mk-demo .panel.b { animation: sfUpB .34s var(--ez) both; }
.mk-demo .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(18px, 3vw, 36px); align-items: start; }
.mk-demo .kick { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 750; color: var(--dim); margin-bottom: 8px; }
.mk-demo .val { display: block; font-size: clamp(34px, 4vw, 48px); font-weight: 830; letter-spacing: -.045em; line-height: 1.02; font-variant-numeric: tabular-nums; }
.mk-demo .chart { display: block; width: 100%; height: 48px; margin: 14px 0 2px; }
.mk-demo .sub { margin: 12px 0 0; font-size: 13.5px; color: var(--dim); line-height: 1.6; max-width: 44ch; text-wrap: pretty; }
.mk-demo .rows { min-width: 0; display: grid; gap: 8px; align-content: start; }
.mk-demo .row { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 11px; border: 1px solid transparent; }
.mk-demo .row.pos { background: var(--posw); color: var(--posi); }
.mk-demo .row.warn { background: var(--warnw); color: var(--warni); }
.mk-demo .row.neg { background: var(--negw); color: var(--negi); }
.mk-demo .row.flat { background: var(--pn2); color: var(--dim); border-color: var(--ln); }
.mk-demo .row i { width: 7px; height: 7px; flex: none; border-radius: 50%; background: currentColor; }
.mk-demo .row span { flex: 1; min-width: 0; font-size: 13px; font-weight: 650; line-height: 1.35; }
.mk-demo .row b { flex: none; font-size: 12px; font-weight: 750; opacity: .85; white-space: nowrap; }
.mk-demo .prog { display: block; height: 4px; border-radius: 99px; background: var(--pn3); overflow: hidden; margin-top: 6px; }
.mk-demo .prog i { display: block; height: 100%; background: var(--acc); border-radius: 99px; transition: width .5s var(--ez); }

/* ------------------------------- calculator ------------------------------- */
.mk-calc { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: center; }
.mk-calc .lede { margin: 0 0 26px; font-size: 14px; color: var(--dim); line-height: 1.6; max-width: 46ch; text-wrap: pretty; }
.mk-calc .ctl { display: grid; gap: 20px; }
.mk-calc .lbl { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mk-calc .lbl b { font-size: 13px; font-weight: 750; }
.mk-calc .money { display: inline-flex; align-items: center; gap: 3px; margin-left: auto; padding: 5px 11px; border: 1px solid var(--ln2); border-radius: 10px; background: var(--pn); }
.mk-calc .money:hover { border-color: var(--acc); }
/* The number itself carries outline:none, so the box has to show the focus:
   a colour change on a one-pixel border is not an indicator a keyboard user
   can find. Same ring the feedback fields use. */
.mk-calc .money:focus-within { border-color: var(--acc); box-shadow: 0 0 0 3px var(--accw); }
.mk-calc .money span { font-size: 14px; font-weight: 750; color: var(--dim); }
.mk-calc .money input { width: 66px; padding: 0; border: 0; outline: none; background: none; color: var(--ink); font: inherit; font-size: 16.5px; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; text-align: right; -moz-appearance: textfield; }
.mk-calc .money input::-webkit-inner-spin-button { -webkit-appearance: none; }
.mk-calc input[type="range"] { width: 100%; height: 20px; accent-color: var(--acc); cursor: pointer; margin: 0; }
.mk-calc .presets { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.mk-calc .presets span { font-size: 12.5px; color: var(--dim); font-weight: 700; }
.mk-calc .presets button { padding: 6px 11px; border: 1px solid var(--ln2); border-radius: 999px; background: var(--pn); color: var(--ink2); font-size: 12.5px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.mk-calc .presets button:hover { border-color: var(--acc); color: var(--acci); }
.mk-calcbox { padding: clamp(22px, 3vw, 30px); }
.mk-calcbox .k { display: block; font-size: 12.5px; font-weight: 750; color: var(--dim); margin-bottom: 4px; }
.mk-calcbox .keep { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.mk-calcbox .keep b { font-size: clamp(40px, 5vw, 56px); font-weight: 830; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--posi); }
.mk-calcbox .keep b.warn { color: var(--warni); }
.mk-calcbox .keep b.neg { color: var(--negi); }
.mk-calcbox .mg { padding: 6px 12px; border-radius: 999px; background: var(--posw); color: var(--posi); font-size: 12.5px; font-weight: 800; white-space: nowrap; }
.mk-calcbox .mg.warn { background: var(--warnw); color: var(--warni); }
.mk-calcbox .mg.neg { background: var(--negw); color: var(--negi); }
.mk-calcbox .split { display: flex; height: 10px; border-radius: 99px; overflow: hidden; background: var(--pn3); margin-bottom: 18px; }
.mk-calcbox .split i { display: block; transition: width .3s var(--ez); }
.mk-calcbox .split .c { background: var(--ink2); opacity: .55; }
.mk-calcbox .split .f { background: var(--warn); }
.mk-calcbox .split .p { background: var(--pos); }
.mk-calcbox .rows { display: grid; gap: 9px; margin-bottom: 16px; }
.mk-calcbox .rows div { display: flex; align-items: baseline; gap: 10px; padding-bottom: 9px; border-bottom: 1px solid var(--ln); }
.mk-calcbox .rows i { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.mk-calcbox .rows span { min-width: 0; font-size: 13px; color: var(--dim); font-weight: 650; }
.mk-calcbox .rows b { margin-left: auto; font-size: 13.5px; font-weight: 750; font-variant-numeric: tabular-nums; color: var(--ink2); }
.mk-calcbox .hint { margin: 0 0 16px; font-size: 12.5px; color: var(--dim); line-height: 1.55; }

/* ---------------------------------- how ----------------------------------- */
.mk-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(185px, calc(50% - 20px))), 1fr)); gap: clamp(18px, 2.5vw, 28px); align-items: start; }
.mk-step { min-width: 0; padding-top: 18px; border-top: 2px solid var(--ln2); transition: border-color .2s var(--ez); }
.mk-step.open { border-top-color: var(--acc); }
.mk-step .n { display: block; font-size: clamp(34px, 3.6vw, 44px); font-weight: 830; letter-spacing: -.05em; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; margin-bottom: 14px; }
.mk-step.open .n { color: var(--acci); }
.mk-step h3 { margin: 0 0 8px; font-size: 17px; font-weight: 780; letter-spacing: -.022em; color: var(--ink); }
.mk-step p { margin: 0; font-size: 13.5px; color: var(--dim); line-height: 1.6; text-wrap: pretty; }
.mk-step .more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ez); }
.mk-step.open .more { grid-template-rows: 1fr; }
.mk-step .more > span { display: block; overflow: hidden; }
.mk-step .more .d { display: block; margin-top: 12px; padding: 12px 14px; border-radius: 11px; background: var(--pn); border: 1px solid var(--ln); font-size: 12.5px; color: var(--ink2); line-height: 1.6; }
.mk-step .tog { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 0; border: 0; background: none; color: var(--acci); font-size: 13px; font-weight: 750; cursor: pointer; }
.mk-step .tog:hover { text-decoration: underline; }
.mk-step .tog svg { transition: transform .25s var(--ez); }
.mk-step.open .tog svg { transform: rotate(180deg); }

/* ---------------------------------- why ----------------------------------- */
.mk-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(14px, 2vw, 24px); align-items: stretch; }
.mk-why .list { display: grid; gap: 4px; min-width: 0; align-content: start; }
.mk-why .wt { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 16px; border: 1px solid transparent; border-radius: 13px; background: transparent; color: var(--ink2); font-size: 14px; font-weight: 650; text-align: left; cursor: pointer; transition: background .18s var(--ez), box-shadow .18s var(--ez); }
.mk-why .wt:hover { background: var(--pn); }
.mk-why .wt[aria-pressed="true"] { border-color: var(--ln2); background: var(--pn); color: var(--ink); font-weight: 760; box-shadow: var(--sh); }
.mk-why .wt .n { flex: none; font-size: 12.5px; font-weight: 800; color: var(--dim); font-variant-numeric: tabular-nums; }
.mk-why .wt[aria-pressed="true"] .n { color: var(--acci); }
.mk-why .wt span { flex: 1; min-width: 0; line-height: 1.4; text-wrap: pretty; }
.mk-why .wt svg { flex: none; opacity: 0; transition: opacity .2s var(--ez); }
.mk-why .wt[aria-pressed="true"] svg { opacity: 1; }
.mk-why .panel { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--ln2); border-radius: 18px; background: var(--pn); box-shadow: var(--sh2); padding: clamp(22px, 3vw, 32px); }
.mk-why .panel.a { animation: sfUpA .32s var(--ez) both; }
.mk-why .panel.b { animation: sfUpB .32s var(--ez) both; }
.mk-why .prob { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px; background: var(--negw); color: var(--negi); font-size: 12px; font-weight: 800; margin-bottom: 14px; }
.mk-why .prob i { width: 6px; height: 6px; border-radius: 50%; background: var(--neg); display: inline-block; }
.mk-why .panel h3 { margin: 0 0 12px; font-size: clamp(19px, 2vw, 23px); font-weight: 820; letter-spacing: -.03em; line-height: 1.2; text-wrap: balance; }
.mk-why .panel p { margin: 0 0 20px; font-size: 14px; color: var(--ink2); line-height: 1.65; text-wrap: pretty; }
.mk-why .fix { margin-top: auto; display: flex; gap: 12px; padding: 16px 18px; border-radius: 13px; background: var(--posw); }
.mk-why .fix svg { flex: none; margin-top: 2px; color: var(--posi); }
.mk-why .fix span { min-width: 0; font-size: 13.5px; color: var(--posi); line-height: 1.6; }
.mk-quote { display: flex; gap: 16px; align-items: flex-start; margin: clamp(24px, 3vw, 36px) auto 0; max-width: 760px; padding: 0; }
.mk-quote img { width: 40px; height: 40px; border-radius: 11px; flex: none; }
.mk-quote blockquote { margin: 0 0 10px; font-size: 15px; color: var(--ink); line-height: 1.6; letter-spacing: -.01em; text-wrap: pretty; }
.mk-quote figcaption { font-size: 13px; font-weight: 800; }
.mk-quote figcaption span { font-weight: 600; color: var(--dim); }

/* --------------------------------- inside --------------------------------- */
.mk-inside { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(250px, calc(33.34% - 16px))), 1fr)); gap: clamp(14px, 2vw, 22px); align-items: start; }
.mk-shot { border: 1px solid var(--ln2); border-radius: 16px; background: var(--pn); box-shadow: var(--sh2); overflow: hidden; }
.mk-shot .top { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--ln); background: var(--pn2); }
.mk-shot .top b { font-size: 12.5px; font-weight: 780; }
.mk-shot .top span { margin-left: auto; font-size: 12px; color: var(--dim); font-weight: 650; }
.mk-shot .top .ok { padding: 2px 8px; border-radius: 999px; background: var(--posw); color: var(--posi); font-weight: 750; }
.mk-shot .in { padding: 14px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 7px; }
.mk-shot .in.g10 { gap: 10px; }
.mk-shot .k { display: block; font-size: 12px; font-weight: 750; color: var(--dim); margin-bottom: 2px; }
.mk-shot .r { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 10px; font-size: 12.5px; font-weight: 650; }
.mk-shot .r i { width: 6px; height: 6px; border-radius: 50%; flex: none; background: currentColor; }
.mk-shot .r span { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-shot .r b { flex: none; font-size: 12px; }
.mk-shot .r.warn { background: var(--warnw); color: var(--warni); }
.mk-shot .r.neg { background: var(--negw); color: var(--negi); }
.mk-shot .r.flat { background: var(--pn2); border: 1px solid var(--ln); color: var(--ink2); }
.mk-shot .r.flat i { opacity: .5; }
.mk-shot .title { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; padding: 9px 11px; border: 1px solid var(--ln2); border-radius: 10px; background: var(--pn2); }
.mk-shot .title span { min-width: 0; font-size: 12.5px; font-weight: 650; color: var(--ink2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-shot .title b { font-size: 12px; color: var(--dim); font-variant-numeric: tabular-nums; }
.mk-shot .nums { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.mk-shot .nums div { padding: 9px 10px; border-radius: 10px; background: var(--pn2); border: 1px solid var(--ln); }
.mk-shot .nums div.pos { background: var(--posw); border-color: transparent; color: var(--posi); }
.mk-shot .nums small { display: block; font-size: 12px; color: var(--dim); font-weight: 700; }
.mk-shot .nums div.pos small { color: var(--posi); }
.mk-shot .nums b { font-size: 15px; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.mk-shot .pub { display: block; padding: 10px 12px; border-radius: 10px; background: var(--acc); color: #fff; font-size: 12.5px; font-weight: 750; text-align: center; }
.mk-shot .msg { max-width: 88%; padding: 9px 12px; border-radius: 12px 12px 12px 4px; background: var(--pn3); font-size: 12.5px; color: var(--ink); line-height: 1.45; }
.mk-shot .msg.me { margin-left: auto; border-radius: 12px 12px 4px 12px; background: var(--accw); color: var(--acci); }
.mk-shot .fine { font-size: 12px; color: var(--dim); font-weight: 650; }
.mk-inside h3 { margin: 14px 0 4px; font-size: 15px; font-weight: 780; letter-spacing: -.02em; }
.mk-inside p { margin: 0; font-size: 13px; color: var(--dim); line-height: 1.55; }

/* --------------------------------- truths --------------------------------- */
.mk-two { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 48px); align-items: start; }
.mk-two .lede { max-width: 40ch; }
.mk-truths { min-width: 0; display: grid; gap: 0; }
.mk-truth { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--ln2); }
.mk-truth .tk { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--posw); color: var(--posi); margin-top: 1px; }
.mk-truth b { display: block; font-size: 14.5px; font-weight: 780; letter-spacing: -.015em; margin-bottom: 3px; }
.mk-truth small { display: block; font-size: 13px; color: var(--dim); line-height: 1.55; }

/* --------------------------------- roadmap -------------------------------- */
.mk-road { border-radius: 20px; padding: clamp(22px, 3vw, 34px); }
.mk-road .mk-headrow { margin-bottom: 22px; }
.mk-road .mk-headrow > p { max-width: 44ch; font-size: 13.5px; }
.mk-live { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; background: var(--posw); color: var(--posi); font-size: 12.5px; font-weight: 750; margin-bottom: 12px; }
.mk-road h2 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); font-weight: 820; letter-spacing: -.032em; line-height: 1.12; }
.mk-roadcols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(230px, calc(33.34% - 16px))), 1fr)); gap: clamp(14px, 2vw, 22px); }
.mk-roadcol { min-width: 0; border-radius: 14px; background: var(--pn2); border: 1px solid var(--ln); padding: 16px 18px; }
.mk-roadcol .tg { display: inline-flex; align-items: center; gap: 8px; padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 780; margin-bottom: 12px; }
.mk-roadcol .tg small { font-size: 12px; font-weight: 700; opacity: .75; font-variant-numeric: tabular-nums; }
.mk-roadcol .tg i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; background: currentColor; }
.mk-roadcol.ok .tg { background: var(--posw); color: var(--posi); }
.mk-roadcol.acc .tg { background: var(--accw); color: var(--acci); }
.mk-roadcol.mut .tg { background: var(--pn3); color: var(--dim); }
.mk-roadcol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mk-roadcol li { display: flex; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--ink2); line-height: 1.5; }
.mk-roadcol li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; margin-top: 8px; background: var(--off); }
.mk-roadcol.ok li::before { background: var(--pos); }
.mk-roadcol.acc li::before { background: var(--acc); }

/* --------------------------------- pricing -------------------------------- */
.mk-price { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: center; }
.mk-price .lede { max-width: 44ch; margin-bottom: 20px; }
.mk-price .chips { display: grid; gap: 8px; justify-items: start; }
.mk-price .chips span { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border: 1px solid var(--ln); border-radius: 999px; background: var(--pn); font-size: 12.5px; color: var(--ink2); font-weight: 650; }
.mk-price .chips svg { flex: none; color: var(--pos); }
.mk-price .mk-link { display: inline-block; margin-top: 20px; }
.mk-plan { position: relative; border: 1px solid var(--ln2); border-radius: 20px; background: var(--pn); box-shadow: var(--sh2); overflow: hidden; }
.mk-plan .top { display: block; height: 5px; background: linear-gradient(90deg, #3B86FF, var(--acc) 40%, var(--acc2)); }
.mk-plan .in { padding: clamp(22px, 3vw, 30px); }
.mk-plan .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; background: var(--accw); color: var(--acci); font-size: 12.5px; font-weight: 800; }
.mk-plan p { margin: 14px 0 18px; font-size: 13.5px; color: var(--dim); line-height: 1.6; text-wrap: pretty; }
.mk-plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.mk-plan li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink2); line-height: 1.5; }
.mk-plan li svg { flex: none; margin-top: 2px; color: var(--pos); }
.mk-plan .mk-btn { width: 100%; padding: 14px 18px; font-size: 14.5px; box-shadow: 0 8px 20px rgba(23, 104, 242, .24); }
.mk-plan small { display: block; margin-top: 12px; font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.mk-plan small .mk-link { font-size: 12.5px; }

/* ----------------------------------- faq ---------------------------------- */
.mk-faq .lede { max-width: 36ch; margin-bottom: 18px; }
.mk-faqs { min-width: 0; }
.mk-q { border-top: 1px solid var(--ln2); }
.mk-q button { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 0; border: 0; background: none; color: var(--ink); font-size: 14.5px; font-weight: 750; letter-spacing: -.015em; text-align: left; cursor: pointer; line-height: 1.4; }
.mk-q button:hover { color: var(--acci); }
.mk-q button > span:first-child { flex: 1; min-width: 0; }
.mk-q .chev { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--ln2); background: var(--pn); color: var(--dim); transition: transform .25s var(--ez); }
.mk-q button[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mk-q .a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ez); }
.mk-q.open .a { grid-template-rows: 1fr; }
.mk-q .a > div { overflow: hidden; }
.mk-q .a p { margin: 0; padding: 0 40px 18px 0; font-size: 13.5px; color: var(--ink2); line-height: 1.7; text-wrap: pretty; }
.mk-faqs .end { display: block; border-top: 1px solid var(--ln2); }

/* ---------------------------------- beta ---------------------------------- */
.mk-beta { padding: 0 clamp(20px, 4vw, 52px) clamp(56px, 7vw, 96px); }
.mk-betain { position: relative; border-radius: 24px; padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 56px); background: var(--grad-cta); color: #fff; box-shadow: 0 24px 60px rgba(11, 77, 184, .32); overflow: hidden; }
.mk-betain .glow { position: absolute; top: -200px; right: -120px; width: 620px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 68%); pointer-events: none; }
.mk-betain .grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 40px); align-items: center; }
.mk-betain h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 46px); font-weight: 830; letter-spacing: -.04em; line-height: 1.05; text-wrap: balance; color: #fff; }
.mk-betain .lede { margin: 0; max-width: 50ch; font-size: 15px; color: rgba(255, 255, 255, .90); line-height: 1.6; }
.mk-betain .acts { min-width: 0; display: grid; gap: 12px; justify-items: start; }
.mk-betain .note { margin: 0; max-width: 46ch; font-size: 12.5px; color: rgba(255, 255, 255, .82); line-height: 1.6; }
.mk-betain .note a { color: #fff; font-weight: 700; }

/* ----------------------------------- doc ---------------------------------- */
.mk-doc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; }
.mk-doc .side { min-width: 0; position: sticky; top: 84px; }
.mk-doc .side .mk-lede { font-size: 15px; max-width: 44ch; margin-bottom: 16px; }
.mk-doc .eye { display: inline-flex; align-items: center; gap: 7px; color: var(--posi); font-size: 12.5px; font-weight: 750; }
.mk-doc .side .mk-link { display: inline-block; margin-top: 16px; }
.mk-doc .side nav { display: grid; gap: 2px; margin-top: 18px; }
.mk-doc .side nav a { display: flex; gap: 9px; padding: 6px 0; color: var(--ink2); font-size: 13px; font-weight: 650; text-decoration: none; line-height: 1.45; }
.mk-doc .side nav a:hover { color: var(--acci); text-decoration: none; }
.mk-doc .side nav a i { flex: none; color: var(--faint); font-style: normal; font-variant-numeric: tabular-nums; font-weight: 750; }
.mk-blocks { min-width: 0; }
.mk-block { display: flex; flex-wrap: wrap; gap: 8px 28px; padding: 22px 0; border-top: 1px solid var(--ln2); scroll-margin-top: 80px; }
.mk-block .tg { flex: 0 0 118px; font-size: 12.5px; font-weight: 750; color: var(--dim); font-variant-numeric: tabular-nums; padding-top: 3px; }
.mk-block .bd { flex: 1 1 300px; min-width: 0; }
.mk-block h2 { margin: 0 0 8px; font-size: 18px; font-weight: 800; letter-spacing: -.025em; line-height: 1.3; }
.mk-block h3 { margin: 16px 0 6px; font-size: 14.5px; font-weight: 780; letter-spacing: -.015em; }
.mk-block p { margin: 0 0 10px; font-size: 14px; color: var(--ink2); line-height: 1.7; max-width: 64ch; text-wrap: pretty; }
.mk-block p:last-child { margin-bottom: 0; }
.mk-block ul, .mk-block ol { margin: 0 0 10px; padding-left: 20px; font-size: 14px; color: var(--ink2); line-height: 1.7; max-width: 64ch; }
.mk-block ol { padding-left: 22px; }
.mk-block strong, .mk-block b, .mk-clause strong, .mk-clause b { color: var(--ink); font-weight: 750; }
.mk-block .callout p:last-child, .mk-block .callout ul:last-child, .mk-clause .callout p:last-child { margin-bottom: 0; }
.mk-block li { margin-bottom: 4px; }
.mk-block a { color: var(--acci); }
.mk-block code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; padding: 1px 5px; border-radius: 5px; background: var(--pn3); }
.mk-block .callout { padding: 12px 14px; border-radius: 11px; background: var(--pn2); border: 1px solid var(--ln); }
.mk-block .btnrow a.mk-btn { margin-top: 6px; }
.mk-block a.mk-btn { color: #fff; text-decoration: none; }
.mk-blocks .end { display: block; border-top: 1px solid var(--ln2); }
.mk-block table { border-collapse: collapse; width: 100%; font-size: 13px; line-height: 1.55; margin: 6px 0 12px; }
.mk-block th, .mk-block td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--ln); color: var(--ink2); }
.mk-block th { color: var(--ink); font-weight: 780; font-size: 12.5px; }
.mk-block .table-scroll { overflow-x: auto; }

/* ---------------------------------- legal --------------------------------- */
.mk-legal { max-width: 840px; margin: 0 auto; min-width: 0; }
.mk-legal .tabs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 26px; }
.mk-legal .tabs a { padding: 8px 15px; border: 1px solid var(--ln2); border-radius: 999px; background: var(--pn); color: var(--dim); font-size: 13px; font-weight: 750; text-decoration: none; }
.mk-legal .tabs a:hover { border-color: var(--acc); text-decoration: none; }
.mk-legal .tabs a[aria-current="page"] { border-color: var(--acc); background: var(--accw); color: var(--acci); }
.mk-legal .mk-lede { font-size: 15.5px; max-width: 64ch; margin-bottom: 20px; }
.mk-legal .meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.mk-legal .meta span { padding: 5px 12px; border-radius: 999px; background: var(--pn3); color: var(--dim); font-size: 12.5px; font-weight: 700; }
.mk-legal .short { padding: 16px 18px; margin-bottom: 14px; font-size: 13.5px; color: var(--ink2); line-height: 1.65; }
.mk-legal .short p { margin: 0; }
.mk-legal .toc { padding: 16px 18px; margin-bottom: 14px; }
.mk-legal .toc > span { display: block; font-size: 12px; font-weight: 800; color: var(--faint); margin-bottom: 10px; }
.mk-legal .toc div { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px 20px; }
.mk-legal .toc a { display: flex; gap: 9px; padding: 6px 0; color: var(--ink2); font-size: 13px; font-weight: 650; text-align: left; text-decoration: none; line-height: 1.45; }
.mk-legal .toc a:hover { color: var(--acci); text-decoration: none; }
.mk-legal .toc a i { flex: none; color: var(--faint); font-style: normal; font-variant-numeric: tabular-nums; font-weight: 750; }
.mk-legal .paper { border-radius: 16px; padding: clamp(22px, 3.4vw, 38px); }
.mk-clause { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--ln); scroll-margin-top: 80px; }
.mk-clause h2 { display: flex; gap: 11px; margin: 0 0 11px; font-size: 17px; font-weight: 790; letter-spacing: -.022em; line-height: 1.3; }
.mk-clause h2 i { flex: none; color: var(--acci); font-style: normal; font-variant-numeric: tabular-nums; }
.mk-clause .bd { display: grid; gap: 11px; padding-left: 26px; }
.mk-clause p { margin: 0; font-size: 13.5px; color: var(--ink2); line-height: 1.7; max-width: 78ch; text-wrap: pretty; }
.mk-clause h3 { margin: 6px 0 0; font-size: 14px; font-weight: 780; letter-spacing: -.015em; }
.mk-clause ul, .mk-clause ol { margin: 0; padding-left: 20px; font-size: 13.5px; color: var(--ink2); line-height: 1.7; max-width: 78ch; }
.mk-clause li { margin-bottom: 4px; }
.mk-clause a { color: var(--acci); }
.mk-clause code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; padding: 1px 5px; border-radius: 5px; background: var(--pn3); }
.mk-clause table { border-collapse: collapse; width: 100%; font-size: 12.5px; line-height: 1.55; }
.mk-clause th, .mk-clause td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--ln); color: var(--ink2); }
.mk-clause th { color: var(--ink); font-weight: 780; }
.mk-clause .table-scroll { overflow-x: auto; }
.mk-clause .callout { padding: 12px 14px; border-radius: 11px; background: var(--pn2); border: 1px solid var(--ln); }
.mk-legal .others { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mk-legal .others span { font-size: 13px; color: var(--dim); font-weight: 650; }
.mk-legal .others a { color: var(--acci); font-size: 13px; font-weight: 750; text-decoration: none; }
.mk-legal .others a:hover { text-decoration: underline; }
.mk-legal .bug { margin: 14px 0 0; font-size: 12px; color: var(--faint); line-height: 1.6; max-width: 80ch; }
.mk-legal .bug b { color: var(--dim); }
/* "Legal · Privacy" is a name, not a shout: the redesign leaves this kicker
   in the case it was written in, unlike the numbered ones on the front page. */
.mk-legal .mk-kicker { text-transform: none; }

/* --------------------------------- status --------------------------------- */
.mk-status .banner { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: 14px; background: var(--posw); margin-bottom: 14px; flex-wrap: wrap; }
.mk-status .banner.warn { background: var(--warnw); }
.mk-status .banner.bad { background: var(--negw); }
.mk-status .banner .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pos); flex: none; animation: sfPulse 2.6s var(--ez) infinite; }
.mk-status .banner.warn .dot { background: var(--warn); }
.mk-status .banner.bad .dot { background: var(--neg); animation: none; }
.mk-status .banner b { font-size: 16px; font-weight: 780; color: var(--posi); letter-spacing: -.02em; }
.mk-status .banner.warn b { color: var(--warni); }
.mk-status .banner.bad b { color: var(--negi); }
.mk-status .banner small { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--posi); white-space: nowrap; }
.mk-status .banner.warn small { color: var(--warni); }
.mk-status .banner.bad small { color: var(--negi); }
.mk-status .banner.wait { background: var(--pn3); }
.mk-status .banner.wait .dot { background: var(--faint); animation: none; }
.mk-status .banner.wait b, .mk-status .banner.wait small { color: var(--dim); }
.mk-status .rows { overflow: hidden; }
.mk-srow { display: flex; align-items: center; gap: 13px; padding: 14px 20px; border-bottom: 1px solid var(--ln); }
.mk-srow:last-child { border-bottom: 0; }
.mk-srow .dot { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--faint); }
.mk-srow.ok .dot { background: var(--pos); }
.mk-srow.warn .dot { background: var(--warn); }
.mk-srow.bad .dot { background: var(--neg); }
.mk-srow .tx { flex: 1; min-width: 0; }
.mk-srow .tx b { display: block; font-size: 13.5px; font-weight: 700; }
.mk-srow .tx small { display: block; font-size: 12.5px; color: var(--faint); line-height: 1.45; }
.mk-srow .st { flex: none; display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; background: var(--pn3); color: var(--dim); font-size: 12px; font-weight: 750; white-space: nowrap; }
.mk-srow.ok .st { background: var(--posw); color: var(--posi); }
.mk-srow.warn .st { background: var(--warnw); color: var(--warni); }
.mk-srow.bad .st { background: var(--negw); color: var(--negi); }
.mk-prose { margin-top: 28px; }
.mk-prose h2 { margin: 24px 0 8px; font-size: 17px; font-weight: 800; letter-spacing: -.022em; }
.mk-prose p, .mk-prose li { font-size: 14px; color: var(--ink2); line-height: 1.7; max-width: 72ch; }
.mk-prose p { margin: 0 0 10px; }
.mk-prose ul { margin: 0 0 10px; padding-left: 20px; }
.mk-prose a { color: var(--acci); }

/* ---------------------------------- tools --------------------------------- */
.mk-tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; margin-top: 30px; }
.mk-tool { padding: 20px 22px; transition: transform .18s var(--ez), border-color .18s var(--ez); }
.mk-tool:hover { transform: translateY(-3px); border-color: var(--ln2); }
.mk-tool .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; background: var(--accw); color: var(--acci); }
.mk-tool .ic.ok { background: var(--posw); color: var(--posi); }
.mk-tool .ic img { width: 30px; height: 30px; }
.mk-tool .hd { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.mk-tool h2 { margin: 0; font-size: 15.5px; font-weight: 780; letter-spacing: -.02em; }
.mk-tool .hd span { margin-left: auto; font-size: 12px; color: var(--faint); white-space: nowrap; }
.mk-tool p { margin: 0 0 16px; font-size: 13px; color: var(--dim); line-height: 1.55; }
.mk-tool small { display: block; margin-top: 12px; font-size: 12px; color: var(--faint); line-height: 1.5; }

/* -------------------------------- feedback -------------------------------- */
.mk-fb { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px; align-items: start; }
.mk-fb .lab, .mk-sup .lab { display: block; font-size: 12.5px; font-weight: 700; color: var(--dim); margin-bottom: 8px; }
.mk-fb .types { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.mk-fb .types button { padding: 8px 14px; border: 1px solid var(--ln2); border-radius: 999px; background: var(--pn2); color: var(--ink2); font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .15s var(--ez), box-shadow .15s var(--ez); }
.mk-fb .types button:hover { transform: translateY(-1px); border-color: var(--acc); }
.mk-fb .types button[aria-pressed="true"] { border-color: var(--acc); background: var(--accw); color: var(--acci); }
.mk-fb textarea, .mk-fb input[type="email"], .mk-sup textarea, .mk-sup input[type="email"] { width: 100%; padding: 12px; border: 1px solid var(--ln); border-radius: 10px; background: var(--pn2); color: var(--ink); font: inherit; font-size: 13px; line-height: 1.55; resize: vertical; margin-bottom: 16px; }
.mk-fb input[type="email"], .mk-sup input[type="email"] { padding: 11px 13px; font-size: 13.5px; margin-bottom: 4px; }
.mk-fb textarea:focus, .mk-fb input:focus, .mk-sup textarea:focus, .mk-sup input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--accw); }
.mk-fb .atts { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.mk-fb .atts .sfc-file, .mk-fb .att { display: inline-flex; align-items: center; gap: 8px; padding: 7px 8px 7px 12px; border: 1px solid var(--ln); border-radius: 9px; background: var(--pn3); font-size: 12px; font-weight: 650; color: var(--ink2); }
.mk-fb .atts .sfc-file img.sfc-thumb { width: 26px; height: 26px; object-fit: cover; border-radius: 6px; }
.mk-fb .atts .sfc-file b { font-weight: 650; max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-fb .atts .sfc-file button, .mk-fb .att button { display: grid; place-items: center; width: 18px; height: 18px; min-height: 18px; border: 0; border-radius: 6px; background: var(--pn); color: var(--faint); font-size: 14px; line-height: 1; cursor: pointer; position: relative; }
/* Small on screen, 36px to a thumb: the invisible target sits over it. */
.mk-fb .atts .sfc-file button::before, .mk-fb .att button::before { content: ""; position: absolute; left: -9px; right: -9px; top: 50%; height: 36px; transform: translateY(-18px); }
.mk-fb .atts .sfc-file button:hover, .mk-fb .att button:hover { color: var(--negi); background: var(--negw); }
.mk-fb .attlist { display: contents; }
.mk-fb .rectime { font-size: 12px; font-weight: 750; color: var(--negi); font-variant-numeric: tabular-nums; }
/* Signed out the whole form is inert, because a message here is attached to
   an account. Half-fading a chip that was still painted as chosen read as
   broken rather than unavailable, so a disabled control drops the chosen
   colours instead of dimming them. */
.mk-fb .types button:disabled { opacity: 1; border-color: var(--ln); background: var(--pn2); color: var(--faint); cursor: not-allowed; transform: none; }
.mk-fb .dash:disabled, .mk-fb .mk-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.mk-fb textarea:disabled, .mk-fb input:disabled { background: var(--pn3); color: var(--faint); cursor: not-allowed; }
.mk-fb .dash { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border: 1px dashed var(--ln2); border-radius: 9px; background: var(--pn2); color: var(--ink2); font-size: 12px; font-weight: 700; cursor: pointer; }
.mk-fb .dash:hover { border-color: var(--acc); color: var(--acci); }
.mk-fb .dash.rec { border-color: var(--neg); color: var(--negi); background: var(--negw); }
.mk-fb .dash:disabled { opacity: .5; cursor: not-allowed; }
.mk-fb .atts small { font-size: 12px; color: var(--faint); }
.mk-fb .signin { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 10px; background: var(--accw); margin-bottom: 16px; flex-wrap: wrap; }
.mk-fb .signin span { flex: 1; min-width: 200px; font-size: 12px; color: var(--acci); line-height: 1.5; font-weight: 600; }
.mk-fb .steps { display: grid; grid-template-columns: 1fr; gap: 12px; counter-reset: none; }
.mk-fb .steps > span { display: flex; gap: 11px; font-size: 13px; color: var(--ink2); line-height: 1.55; }
.mk-fb .steps > span > span { min-width: 0; }
.mk-fb .steps a { color: var(--acci); }
.mk-fb .steps b { flex: none; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; background: var(--accw); color: var(--acci); font-size: 12px; font-weight: 800; }
.mk-fb .bugs { margin: 14px 0 0; padding: 10px 13px; border-radius: 9px; background: var(--posw); font-size: 12px; color: var(--posi); line-height: 1.5; }
.mk-fb .note, .mk-sup .note { margin: 12px 0 0; font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.mk-fb .note.err, .mk-sup .note.err { color: var(--negi); font-weight: 650; }
.mk-fb .note.ok, .mk-sup .note.ok { color: var(--posi); font-weight: 650; }
.mk-fb h2 { margin: 0 0 14px; font-size: 16px; font-weight: 780; letter-spacing: -.02em; }
.mk-fb h3 { margin: 0 0 8px; font-size: 14px; font-weight: 780; letter-spacing: -.015em; }
.mk-fb .side p { margin: 0 0 14px; font-size: 13px; color: var(--dim); line-height: 1.6; }
.mk-fb .links { display: grid; gap: 8px; justify-items: start; }
.mk-fb .links a { color: var(--acci); font-size: 13px; font-weight: 650; text-decoration: none; }
.mk-fb .links a:hover { text-decoration: underline; }
.mk-fb .row, .mk-sup .row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mk-fb .row span, .mk-sup .row span { font-size: 12.5px; color: var(--faint); }
.mk-fb .row a, .mk-sup .row a { color: var(--acci); text-decoration: none; }
.mk-fb .hint, .mk-sup .hint { display: block; font-size: 12px; color: var(--faint); margin-bottom: 14px; }
.mk-sup .mine { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--ln); display: grid; gap: 4px; }
.mk-sup .mine h3 { margin-bottom: 6px; }
.mk-sup .mine .sup-th { width: 100%; }

/* ----------------------------------- 404 ---------------------------------- */
.mk-404 { padding: clamp(56px, 10vh, 120px) clamp(20px, 4vw, 52px); text-align: center; }
.mk-404 .code { display: block; font-size: clamp(64px, 12vw, 110px); font-weight: 850; letter-spacing: -.06em; line-height: 1; color: var(--pn3); }
.mk-404 h1 { margin: 8px 0 10px; font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -.03em; }
.mk-404 p { margin: 0 0 24px; font-size: 14.5px; color: var(--dim); line-height: 1.6; }
.mk-404 .acts { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }
.mk-404 .fine { display: grid; gap: 6px; justify-items: center; margin-top: 28px; }
.mk-404 code { display: inline-block; padding: 5px 10px; border: 1px solid var(--ln); border-radius: 7px; background: var(--pn2); color: var(--dim); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.mk-404 small { font-size: 12px; color: var(--dim); }

/* --------------------------------- footer --------------------------------- */
.mk-foot { border-top: 1px solid var(--ln); background: var(--pn2); padding: clamp(36px, 5vw, 56px) clamp(20px, 4vw, 52px) 22px; }
.mk-foot .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; padding-bottom: clamp(24px, 3vw, 36px); border-bottom: 1px solid var(--ln); }
.mk-foot .fbrand { flex: 1 1 280px; min-width: 0; max-width: 420px; }
.mk-foot .fbrand span { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mk-foot .fbrand img { width: 32px; height: 32px; border-radius: 9px; }
.mk-foot .fbrand b { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.mk-foot .fbrand p { margin: 0; font-size: 13.5px; color: var(--dim); line-height: 1.6; text-wrap: pretty; }
.mk-foot .social { display: flex; gap: 8px; flex-wrap: wrap; }
.mk-foot .social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--ln); border-radius: 11px; background: var(--pn); color: var(--dim); text-decoration: none; transition: transform .15s var(--ez), color .15s var(--ez), border-color .15s var(--ez); }
.mk-foot .social a:hover { color: var(--ink); border-color: var(--ln2); transform: translateY(-2px); }
.mk-foot .social svg { width: 14px; height: 14px; }
.mk-foot .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(20px, 3vw, 32px); padding: clamp(24px, 3vw, 36px) 0; }
.mk-foot .cols h3 { margin: 0 0 12px; font-size: 12px; font-weight: 800; color: var(--dim); letter-spacing: .08em; text-transform: uppercase; }
.mk-foot .cols div > div { display: grid; gap: 9px; justify-items: start; }
.mk-foot .cols a { color: var(--ink2); font-size: 13.5px; font-weight: 650; text-decoration: none; line-height: 1.4; }
.mk-foot .cols a:hover { color: var(--acci); text-decoration: none; }
.mk-foot .legal { display: flex; align-items: center; gap: 8px 14px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--ln); font-size: 12.5px; color: var(--dim); }
.mk-foot .legal .grow { flex: 1; }
.mk-foot .legal a { color: var(--ink2); font-weight: 650; text-decoration: none; }
.mk-foot .legal a:hover { color: var(--ink); text-decoration: none; }

/* -------------------------------- support --------------------------------- */
.mk-sup { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 14px; align-items: start; }
.mk-sup h2 { margin: 0 0 14px; font-size: 16px; font-weight: 780; letter-spacing: -.02em; }
.mk-sup h3 { margin: 0 0 8px; font-size: 14px; font-weight: 780; letter-spacing: -.015em; }
.mk-sup .side { display: grid; gap: 12px; }
.mk-sup .side p { margin: 0 0 14px; font-size: 13px; color: var(--dim); line-height: 1.6; }
.mk-sup .links { display: grid; gap: 8px; justify-items: start; }
.mk-sup .links a { color: var(--acci); font-size: 13px; font-weight: 650; text-decoration: none; }
.mk-sup .links a:hover { text-decoration: underline; }
.mk-sup .sent { text-align: center; padding: 26px 0 10px; }
.mk-sup .sent .tk { width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 14px; display: grid; place-items: center; background: var(--posw); color: var(--posi); animation: sfTick .5s var(--ez) both; }
.mk-sup .sent b { display: block; font-size: 15px; font-weight: 780; margin-bottom: 6px; }
.mk-sup .sent p { margin: 0 0 14px; font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ---------------------------- the dark theme ------------------------------ */
/* site.css paints every link with html[data-theme="dark"] a { color:
   var(--blue-400) }. That selector is one type selector heavier than .mk-btn
   and .mk-brand and one heavier than .mk-nav a, so in the dark it was winning:
   the wordmark and the whole navigation came out sky blue, and every accent
   call to action had pale blue text sitting on a blue button. These restate
   the intended colours at a weight that holds. Link-coloured things are
   unaffected either way, because --acci and --blue-400 are the same value in
   the dark palette. */
html[data-theme="dark"] .mk-brand, html[data-theme="dark"] .mk-brand:hover { color: var(--ink); }
html[data-theme="dark"] .mk-nav a { color: var(--dim); }
html[data-theme="dark"] .mk-nav a:hover, html[data-theme="dark"] .mk-nav a[aria-current="page"] { color: var(--ink); }
html[data-theme="dark"] a.mk-btn, html[data-theme="dark"] a.mk-btn:hover { color: #fff; }
html[data-theme="dark"] a.mk-btn.soft, html[data-theme="dark"] a.mk-btn.soft:hover,
html[data-theme="dark"] a.mk-btn.quiet, html[data-theme="dark"] a.mk-btn.quiet:hover { color: var(--ink); }
html[data-theme="dark"] a.mk-btn.white, html[data-theme="dark"] a.mk-btn.white:hover { color: var(--acc2); }

@media (max-width: 720px) {
  /* THE NAVIGATION GETS ITS OWN ROW. Squeezed onto the same line as the
     wordmark and two buttons it was about fifty pixels wide: six of the seven
     public destinations existed only behind a sideways swipe on a strip with
     no visible scrollbar. Same header, same parts, wrapped. */
  .mk-head { flex-wrap: wrap; gap: 0 10px; padding: 4px 14px; }
  .mk-brand { order: 0; }
  .mk-head .grow { order: 1; }
  .mk-head .mk-btn { order: 2; }
  .mk-nav { order: 3; flex: 1 0 100%; margin-left: 0; }
  .mk-brand b { display: none; }
  /* The header is two rows here, so a #hash landing has to clear both of
     them or the heading it jumped to sits behind the navigation. */
  .mk-block, .mk-clause { scroll-margin-top: 110px; }
  .mk-anchor { top: -104px; }
  .mk-doc .side { position: static; }
  .mk-block .tg { flex-basis: 100%; padding-top: 0; }
  .mk-top { right: 14px; bottom: 14px; }
}
