/* Mid South Multimode Network - simple responsive theme */

:root{
  --bg:#0b1020;
  --panel:#0f1830;
  --card:#111c38;
  --text:#e8eefc;
  --muted:#b5c3e6;
  --link:#9cc3ff;
  --border:rgba(255,255,255,.12);
  --shadow:0 10px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  background:linear-gradient(180deg, var(--bg), #070a14);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

/* ================= HEADER ================= */

.site-header{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  gap:16px;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
  min-width:0;
}

.brand-mark{
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  font-weight:800;
  letter-spacing:.5px;
}

.brand-text h1{
  margin:0;
  font-size:20px;
  line-height:1.1;
}

.tagline{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--border);
  color:var(--text);
  white-space:nowrap;
}

.cta:hover{
  background:rgba(255,255,255,.14);
  text-decoration:none;
}

/* ================= NAV ================= */

.site-nav{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(11,16,32,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.site-nav .wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:10px 16px;
}

.nav-link{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}

.nav-link:hover{
  background:rgba(255,255,255,.08);
  color:var(--text);
  text-decoration:none;
}

.nav-link.active{
  background:rgba(255,255,255,.10);
  color:var(--text);
}

/* ================= HERO ================= */

.hero{
  padding:44px 0 18px;
}

.hero h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.1;
}

.hero p{
  max-width:850px;
  color:var(--muted);
  font-size:16px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  box-shadow:var(--shadow);
}

.button:hover{
  background:rgba(255,255,255,.10);
  text-decoration:none;
}

.button.primary{
  background:rgba(156,195,255,.18);
}

/* ================= CONTENT ================= */

.page{
  padding:26px 0 40px;
}

.page h2{
  margin:10px 0 14px;
  font-size:30px;
}

.page p{
  color:var(--muted);
}

/* ?? FIXED GRID (NO LEFT SHIFT) */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-block:16px; /* vertical spacing only */
}

@media (max-width:780px){
  .grid-2{grid-template-columns:1fr}
  .hero h2{font-size:28px}
}

.card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}

.card h3{margin:0 0 10px}
.card p{margin:0 0 10px}

.card.callout{
  background:rgba(156,195,255,.10);
}

.clean{
  list-style:none;
  padding-left:0;
}

.clean li{
  padding:6px 0;
  border-bottom:1px dashed rgba(255,255,255,.10);
}

.clean li:last-child{
  border-bottom:none;
}

/* ================= FOOTER ================= */

.site-footer{
  border-top:1px solid var(--border);
  margin-top:22px;
  background:rgba(255,255,255,.04);
}

.footer-inner{
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
}
