:root{
  --mc-ink:#0b1020;
  --mc-navy:#071640;
  --mc-blue:#24439c;
  --mc-muted:#667085;
  --mc-soft:#f5f7fb;
  --mc-line:#e5e7eb;
  --mc-line-blue:#dbe4ff;
  --mc-green:#047857;
  --mc-amber:#b45309;
}
*{box-sizing:border-box}
body{
  margin:0;
  background:var(--mc-soft);
  color:var(--mc-ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
}
a{color:inherit}
.mc-header{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid #edf2f7;
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
}
.mc-header-inner{
  width:min(1160px,calc(100% - 44px));
  margin:0 auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.mc-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.mc-logo{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,#173b8f,#0f766e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}
.mc-brand strong{display:block;color:var(--mc-navy);font-size:20px;line-height:1.15}
.mc-brand span{display:block;color:var(--mc-muted);font-size:12px;margin-top:2px}
.mc-nav{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.mc-nav a{
  text-decoration:none;
  color:#344054;
  font-weight:800;
  padding:9px 11px;
  border-radius:999px;
}
.mc-nav a:hover{background:#f1f5f9}
.mc-shell{
  width:min(1160px,calc(100% - 44px));
  margin:0 auto;
  padding:34px 0 70px;
}
.mc-hero,.mc-card{
  background:#fff;
  border:1px solid var(--mc-line);
  border-radius:28px;
  padding:28px;
  box-shadow:0 16px 42px rgba(15,23,42,.07);
}
.mc-hero{
  background:
    radial-gradient(circle at 88% 8%,rgba(17,133,121,.16),transparent 34%),
    radial-gradient(circle at 6% 16%,rgba(36,67,156,.12),transparent 32%),
    linear-gradient(135deg,#fff,#f5f7ff);
  border-color:var(--mc-line-blue);
}
.mc-eyebrow{
  margin:0 0 8px;
  color:var(--mc-blue);
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:13px;
}
.mc-title{
  margin:0;
  color:var(--mc-ink);
  font-size:clamp(38px,7vw,68px);
  line-height:1.04;
  letter-spacing:-.06em;
}
.mc-subtitle{
  margin:16px 0 0;
  color:#526077;
  line-height:1.85;
  font-size:18px;
}
.mc-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:18px}
.mc-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:18px}
.mc-card h2{
  margin:0 0 12px;
  color:#071640;
  font-size:28px;
  letter-spacing:-.035em;
}
.mc-card h3{
  margin:0 0 8px;
  color:#071640;
  font-size:20px;
}
.mc-card p,
.mc-card li{
  color:#526077;
  line-height:1.82;
  font-size:16px;
}
.mc-card ul{
  margin:8px 0 0;
  padding-left:20px;
}
.mc-form{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.mc-form label strong{
  display:block;
  margin:0 0 8px;
  color:#071640;
}
.mc-form input{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:16px;
  padding:14px 16px;
  font-size:16px;
}
.mc-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.mc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border-radius:999px;
  padding:0 17px;
  border:1px solid #cbd5e1;
  background:#fff;
  color:var(--mc-navy);
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
  font-family:inherit;
  font-size:15px;
}
.mc-btn-primary{background:var(--mc-navy);border-color:var(--mc-navy);color:#fff}
.mc-btn-green{background:#047857;border-color:#047857;color:#fff}
.mc-note{
  margin-top:16px;
  border:1px solid #fed7aa;
  background:#fff7ed;
  color:#344054;
  border-radius:18px;
  padding:16px;
  line-height:1.78;
}
.mc-small{
  color:#98a2b3!important;
  font-size:12px!important;
  line-height:1.7!important;
}
.mc-metric{
  background:#071640;
  color:#fff;
  border-radius:24px;
  padding:22px;
}
.mc-metric span{color:rgba(255,255,255,.75)}
.mc-metric strong{
  display:block;
  font-size:56px;
  line-height:1;
  margin:8px 0;
}
.mc-linkbox{
  background:#f8fafc;
  border:1px solid #dbe4ff;
  border-radius:18px;
  padding:14px;
  word-break:break-all;
  color:#071640;
  line-height:1.7;
}
.mc-tag{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:6px 10px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:13px;
  font-weight:900;
  margin:0 6px 6px 0;
}
.mc-ledger{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
}
.mc-ledger th,
.mc-ledger td{
  border-bottom:1px solid #edf2f7;
  padding:10px 8px;
  text-align:left;
  color:#526077;
  line-height:1.5;
  vertical-align:top;
}
.mc-ledger th{
  color:#071640;
  font-weight:900;
}
.mc-copy-tip{
  display:none;
  color:#047857;
  font-weight:900;
  margin-top:8px;
}
.mc-copy-tip.is-show{display:block}
@media(max-width:860px){
  .mc-header-inner,.mc-shell{width:min(100% - 28px,1160px)}
  .mc-header-inner{display:grid;padding:14px 0}
  .mc-grid-2,.mc-grid-3{grid-template-columns:1fr}
  .mc-hero,.mc-card{padding:20px;border-radius:22px}
  .mc-actions,.mc-nav{display:grid;width:100%}
  .mc-btn{width:100%}
}

/* S88F polish: public member-center close */
.mc-status{
  display:inline-flex;
  border-radius:999px;
  padding:5px 10px;
  background:#eff6ff;
  color:#1d4ed8;
  font-weight:900;
  font-size:13px;
}
.mc-status-submitted{background:#fff7ed;color:#b45309}
.mc-status-approved{background:#ecfdf3;color:#047857}
.mc-status-rejected{background:#fef3f2;color:#b42318}
.mc-section-gap{margin-top:18px}
@media(max-width:720px){
  .mc-ledger{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
  .mc-linkbox{
    font-size:13px;
  }
}
