/* ============================================================
   Corporate finance skin
   Light sections, navy banners, teal accent, gold tick marks.
   ============================================================ */

:root {
  --navy:      #17293f;
  --navy-2:    #1e3653;
  --navy-3:    #24425f;
  --teal:      #4cb5ba;
  --teal-dk:   #379ba0;
  --teal-lt:   #eaf6f7;
  --gold:      #f0a93c;
  --bg:        #ffffff;
  --bg-alt:    #f4f6f8;
  --bg-tint:   #dfe7ed;
  --heading:   #17293f;
  --text:      #61717f;
  --text-lt:   #8996a4;
  --line:      #e4e8ed;
  --line-dk:   rgba(255,255,255,.18);
  --danger:    #d9534f;
  --radius:    4px;
  --radius-lg: 6px;
  --maxw:      1170px;
  --shadow:    0 2px 14px rgba(23,41,63,.07);
  --shadow-lg: 0 10px 34px rgba(23,41,63,.11);
  --head:  "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  --body:  "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.mk {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.mk img { max-width: 100%; height: auto; display: block; }
body.mk a { color: inherit; text-decoration: none; }
body.mk h1, body.mk h2, body.mk h3, body.mk h4 {
  font-family: var(--head); color: var(--heading);
  margin: 0 0 .5em; line-height: 1.28; font-weight: 700; letter-spacing: -.01em;
}
body.mk p { margin: 0 0 1em; }
body.mk p:last-child { margin-bottom: 0; }
body.mk [hidden] { display: none !important; }

.mk-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

/* ---------- Header ---------- */
.mk-head { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 90; }
.mk-head__in { display: flex; align-items: center; gap: 26px; height: 76px; }
.mk-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; min-width: 0;
  font-family: var(--head); font-weight: 700; font-size: 19px; color: var(--heading); }
body.mk .mk-logo img { height: 44px; width: auto; max-width: 215px; object-fit: contain; }
.mk-logo__mark {
  width: 34px; height: 34px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  font-family: var(--head); font-weight: 700; font-size: 16px;
}
.mk-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.mk-nav a {
  padding: 9px 14px; font-family: var(--head); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--heading);
  transition: color .15s; white-space: nowrap;
}
.mk-nav a:hover, .mk-nav a.is-active { color: var(--teal); }
.mk-head__cta { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.mk-burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--radius); cursor: pointer; color: var(--heading);
  align-items: center; justify-content: center; padding: 0;
}
.mk-burger span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.mk-burger span::before, .mk-burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.mk-burger span::before { top: -6px; }
.mk-burger span::after { top: 6px; }

/* ---------- Buttons ---------- */
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); border: 1px solid transparent;
  font-family: var(--head); font-size: 13px; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; transition: background .16s, color .16s, border-color .16s;
  white-space: nowrap; line-height: 1.3;
}
.mk-btn--primary { background: var(--teal); color: #fff; }
.mk-btn--primary:hover { background: var(--teal-dk); }
.mk-btn--ghost { border-color: var(--line); color: var(--heading); background: #fff; }
.mk-btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.mk-btn--block { width: 100%; }
.mk-btn--lg { padding: 15px 30px; font-size: 14px; }
/* On dark grounds */
.mk-band .mk-btn--ghost, .mk-banner .mk-btn--ghost,
.mk-auth__aside .mk-btn--ghost {
  background: transparent; border-color: rgba(255,255,255,.4); color: #fff;
}
.mk-band .mk-btn--ghost:hover, .mk-banner .mk-btn--ghost:hover,
.mk-auth__aside .mk-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Typography helpers ---------- */
.mk-section { padding-block: 84px; }
.mk-section--tight { padding-block: 60px; }
.mk-section--alt { background: var(--bg-alt); }
.mk-section__head { max-width: 640px; margin-bottom: 44px; }
.mk-section__head--center { margin-inline: auto; text-align: center; }

/* Eyebrow: gold bar + teal uppercase label, straight from the reference. */
.mk-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.mk-eyebrow::before { content: ""; width: 3px; height: 15px; background: var(--gold); flex-shrink: 0; }
.mk-section__head--center .mk-eyebrow { justify-content: center; }

.mk-h1 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; }
.mk-h2 { font-size: clamp(25px, 3.1vw, 35px); }
.mk-h3 { font-size: 19px; }
.mk-lead { font-size: 15.5px; color: var(--text); line-height: 1.85; }
.mk-muted { color: var(--text); }
.mk-dim { color: var(--text-lt); }
.mk-accent { color: var(--teal); }

/* ---------- Page banner (navy + chart motif) ---------- */
.mk-banner {
  position: relative; background: var(--navy); overflow: hidden;
  padding-block: 72px;
}
.mk-banner::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    linear-gradient(105deg, var(--navy) 22%, rgba(23,41,63,.72) 55%, rgba(30,54,83,.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='320' viewBox='0 0 1200 320'%3E%3Cg fill='none' stroke='%234cb5ba' stroke-width='2' opacity='.5'%3E%3Cpath d='M0 250 L80 210 L160 228 L240 160 L320 186 L400 120 L480 148 L560 96 L640 130 L720 74 L800 108 L880 60 L960 92 L1040 48 L1120 78 L1200 30'/%3E%3C/g%3E%3Cg fill='%234cb5ba' opacity='.28'%3E%3Crect x='72' y='262' width='7' height='40'/%3E%3Crect x='152' y='240' width='7' height='62'/%3E%3Crect x='232' y='206' width='7' height='96'/%3E%3Crect x='312' y='230' width='7' height='72'/%3E%3Crect x='392' y='170' width='7' height='132'/%3E%3Crect x='472' y='196' width='7' height='106'/%3E%3Crect x='552' y='150' width='7' height='152'/%3E%3Crect x='632' y='178' width='7' height='124'/%3E%3Crect x='712' y='126' width='7' height='176'/%3E%3Crect x='792' y='156' width='7' height='146'/%3E%3Crect x='872' y='110' width='7' height='192'/%3E%3Crect x='952' y='140' width='7' height='162'/%3E%3Crect x='1032' y='96' width='7' height='206'/%3E%3Crect x='1112' y='124' width='7' height='178'/%3E%3C/g%3E%3C/svg%3E") right bottom / auto 100% no-repeat;
}
.mk-banner__in { position: relative; }
body.mk .mk-banner h1 { color: #fff; font-size: clamp(30px, 4.2vw, 44px); margin-bottom: 8px; }
.mk-banner p { color: rgba(255,255,255,.78); max-width: 620px; font-size: 15.5px; }
.mk-crumb {
  font-family: var(--head); font-size: 11.5px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.62);
}
.mk-crumb a { color: var(--teal); }
.mk-crumb a:hover { color: #fff; }
.mk-crumb span { margin-inline: 8px; opacity: .55; }
/* Breadcrumb used on a light page instead of in a banner */
.mk-crumb--light { color: var(--text-lt); }
.mk-crumb--light a { color: var(--teal); }
.mk-crumb--light a:hover { color: var(--heading); }

/* ---------- Dark band section ---------- */
.mk-band { position: relative; background: var(--navy-2); overflow: hidden; padding-block: 80px; color: rgba(255,255,255,.8); }
.mk-band::before {
  content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M0 300 L100 260 L200 285 L300 200 L400 235 L500 150 L600 190 L700 110 L800 145'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
}
.mk-band__in { position: relative; }
body.mk .mk-band h2, body.mk .mk-band h3 { color: #fff; }
.mk-band p { color: rgba(255,255,255,.78); }
.mk-quote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 18px; margin: 22px 0 0;
  color: #fff; font-family: var(--head); font-size: 16px; font-weight: 500; line-height: 1.55;
}

/* ---------- Home hero ---------- */
.mk-hero { position: relative; background: var(--bg-alt); overflow: hidden; padding-block: 78px; border-bottom: 1px solid var(--line); }
.mk-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%234cb5ba' stroke-width='1.5' opacity='.25'%3E%3Cpath d='M0 470 L100 430 L200 452 L300 372 L400 404 L500 326 L600 360 L700 282 L800 316 L900 240 L1000 274 L1100 200 L1200 232'/%3E%3C/g%3E%3C/svg%3E") right bottom / 100% auto no-repeat;
}
.mk-hero__in { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.mk-hero h1 { font-size: clamp(31px, 4.4vw, 47px); margin-bottom: 18px; }
.mk-hero p.mk-lead { max-width: 540px; }
.mk-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.mk-hero__note { margin-top: 22px; font-size: 13px; color: var(--text-lt); }

/* Market board card */
.mk-board { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.mk-board__bar {
  display: flex; align-items: center; gap: 9px; padding: 15px 20px; background: var(--navy); color: #fff;
}
.mk-board__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mk-board__dot:first-child { background: var(--teal); }
.mk-board__title {
  margin-left: 6px; font-family: var(--head); font-size: 11px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.mk-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--line); transition: background .15s;
}
.mk-row:hover { background: var(--teal-lt); }
.mk-row__name { font-family: var(--head); font-size: 14.5px; font-weight: 600; color: var(--heading); }
.mk-row__tick { font-family: var(--mono); font-size: 11px; color: var(--text-lt); letter-spacing: .04em; }
.mk-row__val { font-size: 12.5px; color: var(--text-lt); }
.mk-chip {
  font-family: var(--head); font-size: 12px; font-weight: 700; padding: 4px 9px;
  border-radius: 3px; min-width: 66px; text-align: center;
}
.mk-chip--up { background: var(--teal-lt); color: var(--teal-dk); }
.mk-chip--down { background: #fdf0ef; color: var(--danger); }
.mk-board__foot { padding: 14px 20px; background: #fafbfc; }

/* Logo strip */
.mk-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 46px; }
.mk-logos div {
  font-family: var(--head); font-size: 18px; font-weight: 700; color: #aab6c2;
  letter-spacing: .04em; transition: color .15s;
}
.mk-logos div:hover { color: var(--teal); }

@media (max-width: 1080px) { .mk-hero__in { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Stats strip ---------- */
.mk-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg-alt); border-block: 1px solid var(--line); }
.mk-stat { padding: 30px 26px; border-right: 1px solid var(--line); }
.mk-stat:last-child { border-right: 0; }
.mk-stat__v { font-family: var(--head); font-size: clamp(25px, 3vw, 33px); font-weight: 700; color: var(--teal); line-height: 1.1; }
.mk-stat__l { font-size: 13.5px; color: var(--text); margin-top: 5px; }

/* ---------- Cards ---------- */
.mk-grid { display: grid; gap: 26px; }
.mk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mk-grid > *, .mk-detail > *, .mk-assets > *, .mk-tiers > *, .mk-split > * { min-width: 0; }

.mk-desk {
  display: flex; flex-direction: column; padding: 32px 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.mk-desk:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.mk-desk__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--teal-lt); color: var(--teal); border-radius: var(--radius);
}
.mk-desk__icon svg { width: 22px; height: 22px; }
.mk-desk p { font-size: 14.5px; flex-grow: 1; }
.mk-desk__meta {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0; padding-top: 18px;
  border-top: 1px solid var(--line); font-size: 12.5px; color: var(--text-lt);
}
.mk-desk__meta b { display: block; font-family: var(--head); color: var(--heading); font-size: 17px; font-weight: 700; }
.mk-link {
  display: inline-flex; align-items: center; gap: 7px; color: var(--teal);
  font-family: var(--head); font-weight: 600; font-size: 13px; letter-spacing: .03em;
}
.mk-link:hover { color: var(--teal-dk); gap: 11px; }
/* Inline SVGs have no intrinsic size; without this they render enormous. */
.mk-link svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform .15s; }
.mk-split__img img { width: 100%; }

/* Highlighted card — the teal one in the reference row */
.mk-desk--feat { background: linear-gradient(150deg, var(--teal) 0%, #2f8f95 100%); border-color: transparent; }
body.mk .mk-desk--feat h3, .mk-desk--feat p, .mk-desk--feat .mk-link { color: #fff; }
.mk-desk--feat .mk-desk__icon { background: rgba(255,255,255,.2); color: #fff; }
.mk-desk--feat .mk-desk__meta { border-top-color: rgba(255,255,255,.28); color: rgba(255,255,255,.8); }
.mk-desk--feat .mk-desk__meta b { color: #fff; }

/* ---------- Instrument grid ---------- */
.mk-assets { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 20px; }
.mk-asset {
  display: flex; flex-direction: column; padding: 24px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: box-shadow .16s, transform .16s, border-color .16s;
}
.mk-asset:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: transparent; }
.mk-asset__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.mk-asset__name { font-family: var(--head); font-size: 16px; font-weight: 600; color: var(--heading); }
.mk-asset__tick {
  font-family: var(--mono); font-size: 10.5px; color: var(--teal); background: var(--teal-lt);
  padding: 3px 7px; border-radius: 3px; flex-shrink: 0; white-space: nowrap; letter-spacing: .04em;
}
.mk-asset__sum { font-size: 13.5px; flex-grow: 1; margin-bottom: 16px; line-height: 1.7; }
.mk-asset__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12px; padding-top: 14px; border-top: 1px solid var(--line);
}
.mk-asset__sector { color: var(--text-lt); }
.mk-asset__go { color: var(--teal); font-family: var(--head); font-weight: 600; }

.mk-tag {
  display: inline-block; font-family: var(--head); font-size: 10px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px;
}
.mk-tag--private { background: #fdf2e0; color: #b9791b; }
.mk-tag--listed  { background: var(--teal-lt); color: var(--teal-dk); }

/* ---------- Filters ---------- */
.mk-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.mk-filter button {
  padding: 9px 17px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
  font-family: var(--head); font-size: 12.5px; font-weight: 600; color: var(--text); cursor: pointer;
  transition: all .15s;
}
.mk-filter button:hover { border-color: var(--teal); color: var(--teal); }
.mk-filter button.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Detail layout ---------- */
.mk-detail { display: grid; grid-template-columns: 1fr 330px; gap: 46px; align-items: start; }
.mk-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.mk-panel + .mk-panel { margin-top: 22px; }
.mk-panel h3 { font-size: 18px; margin-bottom: 14px; }
.mk-side { position: sticky; top: 100px; }

.mk-facts { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.mk-fact { padding: 14px 18px; display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.mk-fact:last-child { border-bottom: 0; }
.mk-fact span { color: var(--text-lt); }
.mk-fact b { font-family: var(--head); color: var(--heading); font-weight: 600; text-align: right; }

.mk-drivers { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mk-drivers li { position: relative; padding-left: 22px; font-size: 14.5px; }
.mk-drivers li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  background: var(--teal); border-radius: 1px;
}
.mk-prose p { font-size: 15.5px; line-height: 1.85; }
.mk-prose strong { color: var(--heading); font-weight: 600; }

/* ---------- Tier cards ---------- */
.mk-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 22px; }
.mk-tier {
  display: flex; flex-direction: column; padding: 28px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .18s, transform .18s;
}
.mk-tier:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.mk-tier--feat { background: linear-gradient(150deg, var(--teal) 0%, #2f8f95 100%); border-color: transparent; }
.mk-tier__name {
  font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.mk-tier__amt { font-family: var(--head); font-size: 26px; font-weight: 700; color: var(--heading); line-height: 1.15; }
.mk-tier__cap { font-size: 12.5px; color: var(--text-lt); margin-top: 3px; }
.mk-tier__hz {
  display: inline-block; margin: 15px 0 13px; font-family: var(--head); font-size: 11.5px; font-weight: 600;
  color: var(--text); background: var(--bg-alt); border-radius: 3px; padding: 5px 11px;
}
.mk-tier__sig { font-size: 13.5px; flex-grow: 1; margin-bottom: 20px; line-height: 1.7; }
.mk-tier--feat .mk-tier__name, .mk-tier--feat .mk-tier__amt,
.mk-tier--feat .mk-tier__cap, .mk-tier--feat .mk-tier__sig { color: #fff; }
.mk-tier--feat .mk-tier__cap, .mk-tier--feat .mk-tier__sig { color: rgba(255,255,255,.88); }
.mk-tier--feat .mk-tier__hz { background: rgba(255,255,255,.2); color: #fff; }
.mk-tier--feat .mk-btn--ghost { background: #fff; border-color: #fff; color: var(--teal-dk); }
.mk-tier--feat .mk-btn--ghost:hover { background: rgba(255,255,255,.9); color: var(--teal-dk); }

/* ---------- Tables ---------- */
.mk-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.mk-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.mk-table th {
  text-align: left; padding: 15px 20px; background: var(--navy); color: #fff;
  font-family: var(--head); font-size: 11px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; white-space: nowrap;
}
.mk-table td { padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.mk-table tbody tr:last-child td { border-bottom: 0; }
.mk-table tbody tr:nth-child(even) { background: #fafbfc; }
.mk-table tbody tr:hover { background: var(--teal-lt); }
.mk-table b { font-family: var(--head); color: var(--heading); }
.mk-table .mk-rate { font-family: var(--head); font-weight: 700; color: var(--teal); font-size: 17px; }
.mk-table .mk-amt { font-family: var(--body); white-space: nowrap; color: var(--heading); }
.mk-table .mk-note { color: var(--text-lt); font-size: 13px; }

/* ---------- Account cards (CD) ---------- */
.mk-acct { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.mk-acct__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
  font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
}
.mk-acct__badge::before { content: ""; width: 3px; height: 15px; background: var(--gold); }
.mk-acct-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: end; margin-bottom: 30px; }
.mk-acct-head > div { min-width: 0; }

/* Checklist — teal squares, as in the reference */
.mk-feat { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.mk-feat li { position: relative; padding-left: 40px; font-size: 14.5px; }
.mk-feat li::before {
  content: ""; position: absolute; left: 0; top: .05em; width: 26px; height: 26px; border-radius: 3px;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.mk-feat--titled li { padding-left: 44px; }
body.mk .mk-feat h4 { font-size: 15.5px; margin: 0 0 3px; color: var(--heading); }

/* ---------- Split (image + content) ---------- */
.mk-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mk-split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.mk-split__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Notice ---------- */
.mk-notice {
  display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius);
  background: #fdf7ec; border: 1px solid #f3e0be; font-size: 13.5px; color: #7a5a22; line-height: 1.7;
}
.mk-notice svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.mk-notice b { color: #5c3f12; }

/* ---------- Steps ---------- */
.mk-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: s; }
.mk-step { counter-increment: s; }
.mk-step::before {
  content: "0" counter(s); display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--teal-lt); color: var(--teal); border-radius: var(--radius);
  font-family: var(--head); font-size: 14px; font-weight: 700; margin-bottom: 16px;
}
.mk-step h3 { font-size: 17px; margin-bottom: 7px; }
.mk-step p { font-size: 14px; }

/* ---------- CTA band ---------- */
.mk-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: var(--bg-tint); border-radius: var(--radius); padding: 40px 44px;
}
.mk-cta h2 { font-size: clamp(21px, 2.5vw, 28px); margin: 0; }
.mk-cta p { margin: 8px 0 0; max-width: 540px; }
.mk-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mk-cta--center { flex-direction: column; text-align: center; justify-content: center; }
.mk-cta--center p { margin-inline: auto; }

/* ---------- Footer ---------- */
.mk-foot { background: var(--navy); color: rgba(255,255,255,.72); padding-block: 62px 26px; font-size: 14px; }
.mk-foot__grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.3fr; gap: 40px; margin-bottom: 44px; }
body.mk .mk-foot h4 {
  color: #fff; font-size: 14px; margin-bottom: 18px; padding-left: 11px;
  border-left: 3px solid var(--teal); line-height: 1.2;
}
.mk-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.mk-foot a { color: rgba(255,255,255,.72); }
.mk-foot a:hover { color: var(--teal); }
.mk-foot .mk-logo { color: #fff; margin-bottom: 14px; }
body.mk .mk-foot .mk-logo img { height: 40px; max-width: 200px; filter: brightness(0) invert(1); opacity: .92; }
.mk-foot__about { max-width: 320px; }
.mk-fcontact { display: grid; gap: 11px; margin-top: 14px; }
.mk-fcontact li { display: flex; gap: 11px; align-items: flex-start; }
.mk-fcontact svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.mk-risk {
  font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.55);
  padding-top: 26px; border-top: 1px solid var(--line-dk);
}
.mk-risk b { color: rgba(255,255,255,.85); }
.mk-foot__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line-dk);
  font-size: 12.5px; color: rgba(255,255,255,.55);
}

/* ============================================================
   Content pages
   ============================================================ */
.mk-doc { font-size: 15px; line-height: 1.85; }
.mk-doc > *:first-child { margin-top: 0; }
.mk-doc > *:last-child { margin-bottom: 0; }
.mk-doc p { margin: 0 0 1.15em; }
.mk-doc h1, .mk-doc h2, .mk-doc h3, .mk-doc h4 { margin: 1.9em 0 .6em; }
.mk-doc h1 { font-size: 25px; } .mk-doc h2 { font-size: 21px; } .mk-doc h3, .mk-doc h4 { font-size: 17px; }
.mk-doc strong, .mk-doc b { color: var(--heading); font-weight: 600; }
.mk-doc a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.mk-doc ul, .mk-doc ol { margin: 0 0 1.15em; padding-left: 22px; }
.mk-doc li { margin-bottom: .5em; }
.mk-doc li::marker { color: var(--teal); }
.mk-doc hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.mk-doc blockquote { margin: 1.4em 0; padding: 2px 0 2px 18px; border-left: 3px solid var(--gold); }
.mk-doc table { width: 100%; border-collapse: collapse; margin: 0 0 1.3em; }
.mk-doc th, .mk-doc td { padding: 11px 15px; border: 1px solid var(--line); text-align: left; font-size: 14px; }
.mk-doc th { background: var(--bg-alt); color: var(--heading); font-weight: 600; }
.mk-doc :is(p, li, h1, h2, h3, h4) { overflow-wrap: break-word; }
.mk-doc-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 46px; align-items: start; }
.mk-doc-col { max-width: 780px; min-width: 0; }

/* ---------- Accordion ---------- */
.mk-acc { display: grid; gap: 12px; }
.mk-acc__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.mk-acc__item[open] { border-color: var(--teal); box-shadow: var(--shadow); }
.mk-acc__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  padding: 18px 22px; font-family: var(--head); font-size: 15px; font-weight: 600;
  color: var(--heading); list-style: none;
}
.mk-acc__q::-webkit-details-marker { display: none; }
.mk-acc__q:hover { color: var(--teal); }
.mk-acc__q::after {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; border-radius: 3px; background: var(--teal-lt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234cb5ba' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 13px; transition: transform .2s;
}
.mk-acc__item[open] .mk-acc__q::after { transform: rotate(180deg); }
.mk-acc__a { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.8; }
.mk-acc__a > *:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.mk-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: start; }
.mk-contact__list { display: grid; gap: 14px; }
.mk-ccard { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.mk-ccard__icon { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; background: var(--teal-lt); color: var(--teal); border-radius: var(--radius); }
.mk-ccard__icon svg { width: 19px; height: 19px; }
.mk-ccard h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-lt); margin: 0 0 5px; font-weight: 700; }
.mk-ccard p { font-size: 14.5px; margin: 0; color: var(--heading); overflow-wrap: break-word; }
.mk-ccard a { color: var(--heading); }
.mk-ccard a:hover { color: var(--teal); }

/* ---------- Values ---------- */
.mk-value { padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .18s; }
.mk-value:hover { box-shadow: var(--shadow-lg); }
.mk-value__n { font-family: var(--head); font-size: 30px; font-weight: 700; color: var(--bg-tint); line-height: 1; margin-bottom: 12px; }
.mk-value h3 { font-size: 17px; margin-bottom: 8px; }
.mk-value p { font-size: 14.5px; margin: 0; }

/* ============================================================
   Forms + auth
   ============================================================ */
.mk-field { margin-bottom: 18px; }
.mk-field__label { display: block; font-family: var(--head); font-size: 13px; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.mk-field__wrap { position: relative; display: flex; align-items: center; }
.mk-field__wrap > svg { position: absolute; left: 15px; width: 17px; height: 17px; color: var(--text-lt); pointer-events: none; }
.mk-input {
  width: 100%; padding: 13px 15px 13px 42px; font-family: var(--body); font-size: 14.5px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--heading);
  transition: border-color .15s, box-shadow .15s;
}
.mk-input::placeholder { color: var(--text-lt); }
.mk-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(76,181,186,.16); }
.mk-input--bare { padding-left: 15px; }
textarea.mk-input { padding-left: 15px; min-height: 140px; resize: vertical; line-height: 1.7; }
.mk-eye {
  position: absolute; right: 9px; width: 32px; height: 32px; display: grid; place-items: center;
  background: transparent; border: 0; cursor: pointer; color: var(--text-lt); border-radius: 3px; padding: 0;
}
.mk-eye:hover { color: var(--teal); background: var(--teal-lt); }
.mk-eye svg { width: 17px; height: 17px; }
.mk-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mk-check { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; margin: 8px 0 22px; }
.mk-check input { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--teal); flex-shrink: 0; cursor: pointer; }
.mk-check a { color: var(--teal); }

.mk-alert { padding: 14px 17px; border-radius: var(--radius); font-size: 13.5px; margin-bottom: 20px; line-height: 1.65; }
.mk-alert--err { background: #fdf0ef; border: 1px solid #f2ccca; color: #99322e; }
.mk-alert--ok { background: var(--teal-lt); border: 1px solid #b9e2e4; color: #1f6b6f; }
.mk-alert ul { margin: 0; padding-left: 18px; }

.mk-secure {
  display: flex; align-items: center; gap: 11px; padding: 12px 15px; margin-bottom: 24px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 12.5px; color: var(--text);
}
.mk-secure svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
.mk-secure b { font-family: var(--mono); color: var(--heading); font-weight: 600; }

/* Auth shell */
.mk-auth { min-height: 100vh; display: grid; grid-template-columns: 1.02fr .98fr; }
.mk-auth__aside {
  position: relative; padding: 46px; display: flex; flex-direction: column;
  background: var(--navy); overflow: hidden;
}
.mk-auth__aside::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background:
    linear-gradient(160deg, rgba(23,41,63,.2), var(--navy) 78%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='500' viewBox='0 0 700 500'%3E%3Cg fill='none' stroke='%234cb5ba' stroke-width='2.5' opacity='.6'%3E%3Cpath d='M0 400 L70 350 L140 372 L210 288 L280 318 L350 236 L420 268 L490 186 L560 220 L630 140 L700 172'/%3E%3C/g%3E%3Cg fill='%234cb5ba' opacity='.22'%3E%3Crect x='64' y='412' width='9' height='68'/%3E%3Crect x='134' y='386' width='9' height='94'/%3E%3Crect x='204' y='330' width='9' height='150'/%3E%3Crect x='274' y='358' width='9' height='122'/%3E%3Crect x='344' y='280' width='9' height='200'/%3E%3Crect x='414' y='308' width='9' height='172'/%3E%3Crect x='484' y='230' width='9' height='250'/%3E%3Crect x='554' y='262' width='9' height='218'/%3E%3Crect x='624' y='184' width='9' height='296'/%3E%3C/g%3E%3C/svg%3E") left bottom / 100% auto no-repeat;
}
.mk-auth__aside > * { position: relative; }
body.mk .mk-auth__aside .mk-logo img { height: 46px; max-width: 230px; filter: brightness(0) invert(1); }
.mk-auth__aside .mk-logo { color: #fff; }
.mk-auth__pitch { margin-top: auto; }
body.mk .mk-auth__pitch h2 { color: #fff; font-size: clamp(24px, 2.6vw, 33px); max-width: 450px; }
.mk-auth__pitch p { color: rgba(255,255,255,.76); max-width: 430px; font-size: 15px; }
.mk-auth__marks { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line-dk); }
.mk-auth__mark b { display: block; font-family: var(--head); font-size: 23px; font-weight: 700; color: var(--teal); }
.mk-auth__mark span { font-size: 12.5px; color: rgba(255,255,255,.62); }

.mk-auth__main { display: flex; flex-direction: column; padding: 34px 46px 46px; overflow-y: auto; background: var(--bg-alt); }
.mk-auth__top { display: flex; justify-content: flex-end; margin-bottom: auto; }
.mk-auth__card { width: 100%; max-width: 460px; margin: 30px auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.mk-auth__card--wide { max-width: 580px; }
.mk-auth__card h1 { font-size: 26px; }
.mk-auth__sub { font-size: 14.5px; margin-bottom: 26px; }
.mk-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border-bottom: 2px solid var(--line); }
.mk-tabs a {
  text-align: center; padding: 12px 10px; margin-bottom: -2px; font-family: var(--head);
  font-size: 13.5px; font-weight: 600; color: var(--text-lt); border-bottom: 2px solid transparent;
  transition: all .15s;
}
.mk-tabs a:hover { color: var(--teal); }
.mk-tabs a.is-active { color: var(--teal); border-bottom-color: var(--teal); }
.mk-auth__alt { text-align: center; font-size: 14px; margin-top: 24px; }
.mk-auth__alt a { color: var(--teal); font-weight: 600; }
.mk-forgot { float: right; font-family: var(--body); font-size: 12.5px; color: var(--teal); font-weight: 600; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .mk-detail, .mk-doc-wrap, .mk-contact { grid-template-columns: 1fr; gap: 30px; }
  .mk-side { position: static; }
  .mk-foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .mk-split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .mk-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 20px 16px; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .mk-nav.is-open { display: flex; }
  .mk-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
  .mk-nav a:last-child { border-bottom: 0; }
  .mk-burger { display: flex; }
  .mk-head__cta .mk-btn--ghost { display: none; }
  .mk-grid--3, .mk-grid--2, .mk-steps { grid-template-columns: 1fr; }
  .mk-stats { grid-template-columns: 1fr 1fr; }
  .mk-stat:nth-child(2) { border-right: 0; }
  .mk-stat:nth-child(1), .mk-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .mk-auth { grid-template-columns: 1fr; }
  .mk-auth__aside { display: none; }
  .mk-auth__main { padding: 22px 18px 38px; }
  .mk-acct-head { grid-template-columns: 1fr; align-items: start; }
  .mk-section { padding-block: 58px; }
  .mk-banner { padding-block: 52px; }
  .mk-cta { padding: 32px 26px; }
}
@media (max-width: 560px) {
  .mk-wrap { padding-inline: 16px; }
  .mk-stats { grid-template-columns: 1fr; }
  .mk-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .mk-row2, .mk-assets { grid-template-columns: 1fr; }
  .mk-foot__grid { grid-template-columns: 1fr; }
  .mk-acct, .mk-desk, .mk-panel, .mk-auth__card { padding: 24px 20px; }
  .mk-hero__actions .mk-btn, .mk-cta__actions .mk-btn { width: 100%; }
}
