﻿@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root{
  --brand:#f97316;
  --brand-2:#f59e0b;
  --ink:#17161d;
  --muted:#5e6575;
  --line:#e8e6ef;
  --line-2:#dcd9e7;
  --card:#ffffff;
  --surface:#fff9ef;
  --surface-2:#fff5de;
  --deep:#10131b;
  --deep-2:#1b2231;
  --ok:#177a3c;
  --ok-bg:#ecfdf3;
  --ok-line:#9ce3b8;
  --bad:#9f1239;
  --bad-bg:#fff1f4;
  --bad-line:#fecdd6;
  --shadow:0 16px 38px rgba(16,19,27,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font-family:"Outfit", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(249,115,22,.16), transparent 65%),
    radial-gradient(900px 420px at 100% 0%, rgba(245,158,11,.16), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, #ffffff 44%, #ffffff 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}

/* Reusable layout */
.wrap,
.mba-page,
.page-shell{
  max-width:1160px;
  margin:0 auto;
  padding:24px 16px;
}
@media (max-width:640px){
  .wrap,
  .mba-page,
  .page-shell{padding:18px 12px}
}

/* Header */
.mba-header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(12px);
  background:rgba(255,251,241,.86);
  border-bottom:1px solid rgba(220,217,231,.75);
}
.mba-header__in{
  max-width:1160px;
  margin:0 auto;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
}
.mba-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}
.mba-logo-image{
  display:block;
  width:290px;
  max-width:68vw;
  height:auto;
  object-fit:contain;
}
.mba-logo{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 26px rgba(249,115,22,.36);
}
.mba-title{
  font-family:"Sora","Outfit",sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.15px;
  color:#9a3412;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:62vw;
}
.mba-menu-btn{
  display:none;
  border:1px solid var(--line-2);
  background:#fff;
  border-radius:12px;
  padding:8px 11px;
  font-weight:700;
  color:var(--deep);
}
.mba-nav{display:flex;align-items:center;gap:8px}
.mba-nav a{
  padding:9px 11px;
  border-radius:11px;
  font-size:13px;
  font-weight:600;
  color:#1f2937;
}
.mba-nav a:hover{background:rgba(249,115,22,.12)}
.mba-nav .cta{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 20px rgba(249,115,22,.26);
}
.mba-mini{
  border:1px solid var(--line-2);
  background:#fff;
  font-size:12px;
  font-weight:700;
}
.mba-nav a.is-active{
  background:rgba(249,115,22,.16);
  color:#9a3412;
}
.mba-nav a.is-active.cta{color:#fff}

@media (max-width:920px){
  .mba-logo-image{
    width:220px;
    max-width:60vw;
  }
  .mba-menu-btn{display:inline-flex;align-items:center}
  .mba-nav{display:none}
  .mba-nav.is-open{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    right:12px;
    top:62px;
    background:#fff;
    border:1px solid var(--line-2);
    border-radius:14px;
    padding:10px;
    min-width:220px;
    box-shadow:0 18px 40px rgba(16,19,27,.18);
  }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all .2s ease;
}
.btn.primary,
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 12px 24px rgba(249,115,22,.24);
}
.btn.primary:hover,
.btn-primary:hover{transform:translateY(-1px)}
.btn.secondary{
  color:#fff;
  background:rgba(16,19,27,.60);
  border-color:rgba(255,255,255,.22);
}
.btn-ghost{
  background:#fff;
  color:var(--deep);
  border:1px solid var(--line-2);
}

/* Home hero */
.hero-shell{
  border:1px solid rgba(249,115,22,.28);
  border-radius:26px;
  background:
    linear-gradient(120deg, rgba(11,15,24,.92), rgba(21,28,41,.90)),
    linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  padding:22px;
  box-shadow:0 24px 58px rgba(11,15,24,.22);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero h1,
.hero-main h1{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:32px;
  line-height:1.16;
  letter-spacing:.2px;
}
.hero-logo-wrap{
  margin-bottom:10px;
}
.hero-logo-wrap img{
  width:420px;
  max-width:100%;
  height:auto;
  display:block;
}
.hero-tagline{
  margin-top:10px;
  font-size:14px;
  opacity:.96;
  line-height:1.45;
}
.hero-tagline-hi{
  font-weight:600;
  font-size:13px;
  opacity:.95;
}
.hero-sub{
  margin-top:12px;
  color:rgba(255,255,255,.90);
  line-height:1.6;
  max-width:720px;
}
.hero-badges{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.badge,
.stat-pill{
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.12);
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  padding:7px 11px;
}
.hero-cta{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}

.hero-panel{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  border-radius:18px;
  padding:14px;
}
.hero-panel h3{
  margin:0;
  font-size:15px;
  letter-spacing:.2px;
}
.metric-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.metric-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  padding:11px;
}
.metric-card strong{display:block;font-size:20px;line-height:1.1}
.metric-card span{display:block;font-size:12px;opacity:.9;margin-top:4px}

.contact-strip{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.contact-item{
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px;
}
.contact-item .label{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.86);
  margin-bottom:8px;
}
.contact-item .pill{
  display:inline-flex;
  align-items:center;
  margin-right:8px;
  margin-bottom:6px;
  background:#fff;
  color:#111827;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  padding:8px 12px;
  font-size:12px;
  font-weight:700;
}
.contact-item .pill.wa-btn{background:#dcfce7;color:#166534}

/* Generic content blocks */
.global-section{margin-top:24px}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap}
.section-head h2{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:24px;
}
.section-head p{margin:0;color:var(--muted);font-size:14px;line-height:1.45}

.mba-story-shell{
  border:1px solid rgba(249,115,22,.26);
  border-radius:20px;
  background:linear-gradient(160deg,#fffdf8,#fff5df);
  padding:16px;
  box-shadow:var(--shadow);
  display:grid;
  gap:12px;
}
.mba-story-intro{
  border:1px solid #f3d7ab;
  border-radius:16px;
  background:#fff;
  padding:14px;
}
.mba-story-intro h2{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:30px;
  color:#162952;
  line-height:1.2;
}
.story-kicker{
  margin:8px 0 2px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.6px;
  color:#92400e;
}
.story-formula{
  margin:3px 0 2px;
  font-size:16px;
  font-weight:800;
  color:#1f2937;
}
.story-formula-hi{
  margin:2px 0 10px;
  font-size:14px;
  font-weight:700;
  color:#334155;
}
.mba-story-intro p{
  margin:0;
  color:#3e4657;
  line-height:1.6;
}

.mba-story-card{
  border:1px solid #e7e8f1;
  border-radius:16px;
  background:#fff;
  padding:14px;
}
.mba-story-card h3{
  margin:0 0 6px;
  font-family:"Sora","Outfit",sans-serif;
  font-size:22px;
  color:#183462;
}
.mba-story-card p{
  margin:0;
  color:#4a5263;
  line-height:1.55;
}
.mba-story-card p + p{
  margin-top:8px;
}
.story-muted{
  font-weight:700;
  color:#9a3412;
}
.story-points{
  margin-top:10px !important;
  font-weight:700;
  color:#1e293b !important;
}
.mba-story-card ul{
  margin:10px 0 0;
  padding-left:18px;
}
.mba-story-card li{
  margin:7px 0;
  color:#384152;
}

.mba-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.story-solution{
  border-color:#b8e2ca;
  background:linear-gradient(180deg,#ffffff,#f0fdf4);
}

.mba-story-foot{
  border:1px solid #f4cc95;
  border-radius:16px;
  background:linear-gradient(135deg,#152747,#203a66);
  color:#fff;
  padding:14px;
}
.mba-story-foot h3{
  margin:0 0 6px;
  font-family:"Sora","Outfit",sans-serif;
  font-size:24px;
}
.mba-story-foot p{
  margin:0;
  color:rgba(255,255,255,.9);
  line-height:1.55;
}
.mba-story-foot p + p{
  margin-top:8px;
}
.mba-story-foot .story-formula{
  color:#fde68a;
}
.mba-story-foot .story-formula-hi{
  color:#fef3c7;
}

.chapter-visual-shell{
  margin-top:14px;
}
.chapter-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 12px;
}
.chapter-meta span{
  border:1px solid #f4cf98;
  background:#fff5df;
  color:#9a3412;
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  font-weight:700;
}
.chapter-visual-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:12px;
}
.chapter-visual-card{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}
.chapter-visual-card img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  background:#1d3467;
}
.chapter-visual-copy{
  padding:13px 14px;
}
.chapter-visual-copy h3{
  margin:0 0 6px;
  font-size:22px;
  font-family:"Sora","Outfit",sans-serif;
  color:#1d3467;
}
.chapter-visual-copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.grid,
.card-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:12px;
}
.card,
.surface-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow);
}
.card strong,
.surface-card strong{display:block;font-size:16px;margin-bottom:6px}
.card p,
.surface-card p{margin:0;color:var(--muted);line-height:1.55}
.card ul,
.surface-card ul{margin:9px 0 0;padding-left:18px}
.card li,
.surface-card li{margin:6px 0;color:#3b4150}

.split-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.timeline{margin-top:8px;display:grid;gap:10px}
.timeline-item{
  position:relative;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 12px 12px 44px;
}
.timeline-item:before{
  content:attr(data-step);
  position:absolute;
  left:12px;
  top:12px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:12px;
}
.timeline-item h4{margin:0;font-size:15px}
.timeline-item p{margin:6px 0 0;color:var(--muted);font-size:14px;line-height:1.45}

.matrix{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.matrix-item{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:linear-gradient(180deg,#fff,#fffcf7);
}
.matrix-item h4{margin:0;font-size:14px}
.matrix-item p{margin:6px 0 0;font-size:13px;color:var(--muted)}

.cta-strip{
  margin-top:18px;
  border:1px solid rgba(249,115,22,.26);
  background:linear-gradient(120deg,#fffbf3,#fff5df);
  border-radius:18px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cta-strip h3{margin:0;font-size:19px;font-family:"Sora","Outfit",sans-serif}
.cta-strip p{margin:4px 0 0;color:#666d7d;font-size:14px}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}

/* Forms common */
.mba-hero{
  background:linear-gradient(135deg,var(--deep),var(--deep-2));
  color:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 40px rgba(16,19,27,.2);
}
.mba-hero h1{margin:0;font-family:"Sora","Outfit",sans-serif;font-size:24px;line-height:1.2}
.mba-hero p{margin:8px 0 0;color:rgba(255,255,255,.88);line-height:1.5}
.pillrow{margin-top:11px;display:flex;flex-wrap:wrap;gap:8px}
.pill{
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:600;
}

.mba-card{
  margin-top:12px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.mba-cardhead{
  padding:14px 15px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.mba-badge{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #fbcf97;
  background:#fff3e2;
  color:#8a3f0a;
  font-size:12px;
  font-weight:600;
}

.mba-form{padding:15px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:11px}
.grid3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:11px}

label{display:block;margin:0 0 6px;font-size:12px;font-weight:600;color:#5f6676}
.req{color:#b91c1c}
input,select,textarea{
  width:100%;
  border:1px solid var(--line-2);
  border-radius:12px;
  background:#fff;
  padding:11px 12px;
  font-size:14px;
  color:#17161d;
  font-family:"Outfit","Segoe UI",Tahoma,sans-serif;
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:#f59e0b;
  box-shadow:0 0 0 4px rgba(245,158,11,.18);
}
textarea{min-height:100px;resize:vertical}
.help{margin-top:6px;font-size:12px;color:#667085;line-height:1.4}
.divider{height:1px;background:var(--line);margin:14px 0}

.check{
  border:1px dashed #f5ba71;
  background:#fff8ee;
  border-radius:13px;
  padding:10px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.check input{width:auto;margin-top:2px}

.actions{margin-top:14px;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:10px}

.successbox{
  margin:14px;
  border:1px solid var(--ok-line);
  background:var(--ok-bg);
  color:var(--ok);
  border-radius:14px;
  padding:12px;
  font-weight:700;
}
.countdown{margin-top:8px;font-size:12px;color:#1f8d48}
.status-bad{
  margin:14px;
  border:1px solid var(--bad-line);
  background:var(--bad-bg);
  color:var(--bad);
  border-radius:14px;
  padding:11px;
  font-weight:700;
}

.mba-foot{
  border-top:1px solid var(--line);
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:12px;
  color:#6a7282;
}
.smalllink{color:#8a3f0a;font-weight:600}

/* Event promo strip */
.promo-banner{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 12px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(120deg,#131927,#1c2740);
  color:#fff;
  border-radius:14px;
  padding:12px;
}
.promo-badge{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:11px;
}
.promo-text{font-size:13px;font-weight:600;opacity:.92}
.promo-cta{
  margin-left:auto;
  font-size:12px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
  padding:7px 10px;
  background:rgba(255,255,255,.08);
}

.hero-inline-note{
  opacity:.75;
  font-size:.58em;
}

.event-top-card{margin-top:14px}
.event-top-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:9px;
}
.event-chip{
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  border:1px solid #f5cc95;
  background:#fff4e4;
  color:#8a3f0a;
}

.zoom-link-wrap{
  margin-top:10px;
}

.wa-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  background:rgba(6,9,14,.6);
}
.wa-modal{
  width:760px;
  max-width:100%;
  background:#fff;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow:0 30px 80px rgba(6,9,14,.32);
  overflow:hidden;
}
.wa-modal-head{
  padding:14px;
  background:linear-gradient(130deg,#111827,#1e293b);
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.wa-modal-sub{
  font-size:12px;
  opacity:.88;
}
.wa-close{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.09);
  color:#fff;
  border-radius:11px;
  padding:8px 11px;
  cursor:pointer;
  font-weight:700;
}
.wa-modal-body{padding:14px}
.wa-note{
  border:1px solid var(--line);
  border-radius:14px;
  background:#f8fafc;
  padding:12px;
}
.wa-note-sub{
  font-size:12px;
  color:#60687a;
}
.wa-countdown{
  margin-top:10px;
  font-size:13px;
  color:#1f2b43;
  font-weight:600;
}
.wa-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.btn-wa{
  background:#25D366;
  color:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.wa-toast{
  display:none;
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  padding:10px;
  font-size:12px;
  color:#495163;
}

.legal-section{
  margin-top:14px;
}

/* Floating WhatsApp */
.wa-fab{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:65;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.wa-fab a{
  border-radius:999px;
  padding:11px 14px;
  color:#fff;
  background:#25D366;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.wa-fab a.secondary{background:#10131b}
.wa-icon{
  width:22px;
  height:22px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.18);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}
.wa-fab small{
  display:block;
  font-size:11px;
  opacity:.9;
  margin-top:2px;
}

/* Footer */
.mba-footer{
  margin-top:34px;
  background:#0d1119;
  color:rgba(255,255,255,.92);
  border-top:1px solid rgba(255,255,255,.08);
}
.mba-footer__wrap{max-width:1160px;margin:0 auto;padding:14px}
.mba-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:12px;
  color:rgba(255,255,255,.78);
}
.mba-footer__link{color:rgba(255,255,255,.88)}
.mba-footer__link:hover{text-decoration:underline}

/* MBN community layout */
.mbn-page{
  display:grid;
  gap:14px;
}
.mbn-hero-lite{
  border:1px solid rgba(30,58,138,.22);
  border-radius:22px;
  background:
    radial-gradient(900px 320px at 100% 0%, rgba(14,165,233,.18), transparent 62%),
    radial-gradient(740px 280px at 0% 100%, rgba(249,115,22,.18), transparent 65%),
    linear-gradient(135deg,#11203a,#1e3a66);
  color:#fff;
  padding:18px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  box-shadow:0 20px 42px rgba(10,18,32,.22);
}
.mbn-kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.5px;
  color:#fde68a;
  text-transform:uppercase;
}
.mbn-hero-main h1{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:34px;
  line-height:1.16;
}
.mbn-sub{
  margin:10px 0 0;
  color:rgba(255,255,255,.92);
  line-height:1.6;
}
.mbn-switch-row{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mbn-switch-link{
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:700;
}
.mbn-switch-link.is-active{
  background:#f59e0b;
  border-color:#f59e0b;
  color:#111827;
}
.mbn-sub a{
  color:#fde68a;
  text-decoration:underline;
}
.mbn-action-row{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.mbn-action-row .btn-ghost{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.mbn-hero-aside{
  display:grid;
  gap:9px;
  align-content:start;
}
.mbn-stat-card{
  border:1px solid rgba(255,255,255,.2);
  border-radius:14px;
  background:rgba(255,255,255,.12);
  padding:12px;
}
.mbn-stat-label{
  display:block;
  color:rgba(255,255,255,.88);
  font-size:12px;
  margin-bottom:6px;
}
.mbn-stat-card strong{
  display:block;
  font-size:15px;
  line-height:1.3;
}
.mbn-layout{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
  gap:12px;
}
.mbn-main-column,
.mbn-side-column{
  display:grid;
  gap:12px;
  align-content:start;
}
.mbn-feed-card{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.mbn-feed-head{
  display:flex;
  align-items:center;
  gap:10px;
}
.mbn-avatar{
  width:44px;
  height:44px;
  border-radius:12px;
  background:linear-gradient(135deg,#1d4ed8,#0ea5e9);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
}
.mbn-feed-head h2{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:20px;
  color:#163063;
}
.mbn-feed-head p{
  margin:3px 0 0;
  color:#64748b;
  font-size:13px;
}
.mbn-feed-copy{
  margin:12px 0 0;
  color:#334155;
  font-size:15px;
  line-height:1.6;
}
.mbn-pill-row{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mbn-pill{
  border:1px solid #d9e2f2;
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  font-weight:700;
  color:#1d3467;
  background:#f5f9ff;
}
.mbn-side-card{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.mbn-side-card h3{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:18px;
  color:#14294f;
}
.mbn-side-card p{
  margin:8px 0 0;
  color:#5f6676;
  line-height:1.55;
}
.mbn-side-actions{
  margin-top:12px;
  display:grid;
  gap:9px;
}
.mbn-list{
  margin:10px 0 0;
  padding-left:18px;
}
.mbn-list li{
  margin:7px 0;
  color:#3f4858;
  line-height:1.45;
}

/* IDSA community page */
.idsac-body{
  margin:0;
  color:var(--ink);
  font-family:"Outfit", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(900px 380px at 0% -10%, rgba(14,165,233,.12), transparent 62%),
    radial-gradient(1000px 420px at 100% -10%, rgba(249,115,22,.12), transparent 60%),
    linear-gradient(180deg,#f8fbff 0%,#ffffff 46%,#ffffff 100%);
}
.idsac-shell{
  max-width:1180px;
  margin:0 auto;
  padding:18px 16px 28px;
  display:grid;
  gap:12px;
}
.idsac-top{
  border:1px solid #d8e2f3;
  border-radius:16px;
  background:#fff;
  padding:12px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.idsac-brand{
  font-family:"Sora","Outfit",sans-serif;
  font-size:21px;
  font-weight:800;
  color:#12305f;
}
.idsac-nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.idsac-nav a{
  border:1px solid #d8e2f3;
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:700;
  color:#1d3467;
  background:#f8fbff;
}
.idsac-nav a.active{
  background:#1d4ed8;
  border-color:#1d4ed8;
  color:#fff;
}
.idsac-hero{
  border:1px solid rgba(30,58,138,.2);
  border-radius:20px;
  background:linear-gradient(135deg,#101e37,#1d3e6e);
  color:#fff;
  padding:18px;
}
.idsac-hero h1{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:30px;
  line-height:1.2;
}
.idsac-hero p{
  margin:10px 0 0;
  color:rgba(255,255,255,.9);
  line-height:1.6;
  max-width:760px;
}
.idsac-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}
.idsac-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:10px;
}
.idsac-card{
  border:1px solid #e6ebf5;
  border-radius:16px;
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.idsac-card h3{
  margin:0;
  font-family:"Sora","Outfit",sans-serif;
  font-size:19px;
  color:#12305f;
}
.idsac-card p{
  margin:8px 0 0;
  color:#5b6475;
  line-height:1.52;
}
.idsac-list{
  margin:10px 0 0;
  padding-left:18px;
}
.idsac-list li{
  margin:7px 0;
  color:#3f4858;
}

/* Success body skin */
body.mba-success{
  background:
    radial-gradient(1000px 420px at 8% -10%, rgba(22,163,74,.2), transparent 70%),
    linear-gradient(180deg,#f0fdf4 0%, #ffffff 55%, #ffffff 100%) !important;
}

/* Responsive */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .contact-strip{grid-template-columns:1fr}
  .split-grid{grid-template-columns:1fr}
  .matrix{grid-template-columns:1fr 1fr}
  .mba-story-grid{grid-template-columns:1fr}
  .mbn-hero-lite{grid-template-columns:1fr}
  .mbn-layout{grid-template-columns:1fr}
  .idsac-top{flex-direction:column;align-items:flex-start}
}
@media (max-width:780px){
  .mba-logo-image{
    width:180px;
    max-width:54vw;
  }
  .hero-logo-wrap img{
    width:300px;
  }
  .hero-shell{padding:16px}
  .hero h1,
  .hero-main h1{font-size:28px}
  .section-head h2{font-size:22px}
  .mba-story-intro h2{font-size:24px}
  .mba-story-card h3{font-size:20px}
  .grid2,
  .grid3,
  .matrix{grid-template-columns:1fr}
  .cta-strip{padding:13px}
  .cta-actions .btn{width:100%}
  .hero-cta .btn{width:100%}
  .mbn-hero-main h1{font-size:28px}
  .mbn-action-row .btn{width:100%}
  .idsac-hero h1{font-size:26px}
  .idsac-actions .btn{width:100%}
}
