:root {
  color-scheme: light;
  --bg: #f3fbf7;
  --bg-2: #ecf8f3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-alt: #e7f7ef;
  --text: #0f241e;
  --muted: #49655c;
  --primary: #0f766e;
  --primary-2: #16a34a;
  --accent: #0ea5a3;
  --line: rgba(15, 118, 110, 0.16);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(10, 71, 64, 0.14);
  --shadow-soft: 0 10px 34px rgba(10, 71, 64, 0.08);
}
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #081511;
  --bg-2: #0c1d17;
  --surface: rgba(14, 31, 25, 0.72);
  --surface-solid: #10261f;
  --surface-alt: #113228;
  --text: #dff7ec;
  --muted: #9cc5b4;
  --primary: #34d399;
  --primary-2: #22c55e;
  --accent: #2dd4bf;
  --line: rgba(52, 211, 153, 0.24);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(1000px 550px at -10% -10%, rgba(22, 163, 74, 0.16), transparent 56%),
    radial-gradient(1100px 560px at 110% -8%, rgba(14, 165, 163, 0.2), transparent 56%),
    linear-gradient(180deg, #f8fffc 0%, var(--bg) 38%, var(--bg-2) 100%);
  line-height: 1.65;
  min-height: 100vh;
}
.login-page {
  background: #ffffff !important;
}

h1, h2, h3, h4 { line-height: 1.14; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
p { margin: 0 0 0.75rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92vw); margin: 0 auto; }
.section { padding: 5rem 0; position: relative; }
.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.3));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.page-hero { padding: 4rem 0 2.1rem; }
.eyebrow {
  width: fit-content;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.2);
}
.lead { color: var(--muted); max-width: 64ch; font-size: clamp(1.02rem, 1.8vw, 1.14rem); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem;
}
.skip-link:focus { left: 0.6rem; z-index: 9999; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 260;
  border-bottom: 1px solid rgba(6, 78, 59, 0.38);
  background:
    linear-gradient(120deg, rgba(12, 74, 58, 0.93), rgba(15, 118, 110, 0.9)),
    rgba(11, 93, 73, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 0.78rem; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.22);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.2);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.brand-text small { display: block; color: var(--muted); font-size: 0.72rem; }
.brand-text strong,
.brand-text small {
  color: #ffffff;
}
.desktop-nav, .auth-actions { display: flex; align-items: center; gap: 0.6rem; }
.desktop-nav a, .dropdown-toggle {
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  font-family: inherit;
  color: #ffffff;
}
.desktop-nav a:hover, .dropdown-toggle:hover {
  background: rgba(16, 185, 129, 0.28);
  color: #ffffff;
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 230px;
  background: rgba(4, 74, 55, 0.97);
  border: 1px solid rgba(167, 243, 208, 0.28);
  border-radius: 14px;
  padding: 0.42rem;
  box-shadow: 0 16px 34px rgba(10, 71, 64, 0.16);
}
.dropdown.open .dropdown-menu { display: grid; }
.dropdown-menu a { padding: 0.55rem 0.72rem; border-radius: 10px; }
.dropdown-menu a:hover {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: rgba(5, 102, 75, 0.58);
  border-color: rgba(167, 243, 208, 0.28);
  color: #dcfce7;
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  font-weight: 700;
  cursor: pointer;
}
.theme-toggle .theme-icon { font-size: 0.95rem; line-height: 1; }
.mobile-theme-toggle { margin-bottom: 0.4rem; justify-content: center; }

.menu-toggle { display: none; flex-direction: column; gap: 4px; border: none; background: transparent; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); }
.mobile-drawer {
  position: fixed;
  inset: 82px 0 auto auto;
  width: min(360px, 84vw);
  background: rgba(4, 74, 55, 0.98);
  border-left: 1px solid rgba(167, 243, 208, 0.28);
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: var(--shadow);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav { display: grid; padding: 1rem; }
.mobile-drawer a { padding: 0.7rem 0.75rem; border-radius: 10px; }
.mobile-drawer a:hover {
  background: rgba(16, 185, 129, 0.32);
  color: #ffffff;
}
.mobile-accordion {
  border-radius: 10px;
  border: 1px solid rgba(167, 243, 208, 0.24);
  margin: 0.2rem 0;
  overflow: hidden;
}
.mobile-accordion summary {
  list-style: none;
  padding: 0.7rem 0.75rem;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
}
.mobile-accordion[open] summary {
  background: rgba(16, 185, 129, 0.18);
}
.mobile-accordion a {
  display: block;
  padding-left: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  padding: 0.68rem 1.02rem;
  border-radius: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #34d399;
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.28);
}
.btn-primary:hover { box-shadow: 0 18px 30px rgba(15, 118, 110, 0.34); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--text);
}
.btn-lg { padding: 0.88rem 1.28rem; border-radius: 14px; }
.w-full { width: 100%; }
.text-link { color: var(--primary); font-weight: 750; }

.hero { padding: 6.1rem 0 4.3rem; }
.hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.95fr; gap: 1.25rem; align-items: stretch; }
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 4.1rem); max-width: 15ch; }
.hero-actions { display: flex; gap: .75rem; margin-top: 1.35rem; flex-wrap: wrap; }
.badge-row { margin-top: 1.1rem; display: flex; gap: .52rem; flex-wrap: wrap; }
.badge, .pill {
  font-size: .75rem;
  font-weight: 700;
  padding: .33rem .72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  display: inline-flex;
}
.highlight { background: #d1fae5; }

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.85) 0%, rgba(231, 247, 239, 0.95) 60%),
    linear-gradient(130deg, rgba(14, 165, 163, 0.18), rgba(22, 163, 74, 0.1));
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -30px;
  top: -30px;
  background: radial-gradient(circle, rgba(14, 165, 163, 0.28), transparent 70%);
  pointer-events: none;
}
.hero-stack {
  display: grid;
  gap: 0.6rem;
}
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.hero-kpi .kpi {
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}
.kpi strong { display: block; font-size: 1.28rem; color: var(--primary); }
.kpi small { color: var(--muted); }
.trust-line {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.trust-chip {
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  font-size: 0.79rem;
  font-weight: 700;
  color: #245246;
}

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.15rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 1.22rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.team-grid {
  align-items: stretch;
}
.team-card {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}
.team-photo {
  width: min(100%, 240px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
  margin-bottom: 0.5rem;
}
.team-card h3 {
  margin-bottom: 0.2rem;
}
.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.lift { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 118, 110, 0.24);
}
.featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1rem;
}
.section.alt.featured-section {
  background: #ffffff;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}
[data-theme="dark"] .section.alt.featured-section {
  background: #ffffff;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}
.featured-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.35rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(229, 248, 238, 0.88) 65%),
    linear-gradient(135deg, rgba(22, 163, 74, 0.14), rgba(14, 165, 163, 0.08));
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
}
.featured-spotlight-glow {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 137, 0.32), transparent 70%);
  pointer-events: none;
}
.spotlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.spotlight-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: #0f766e;
  font-weight: 700;
}
.spotlight-category {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.featured-spotlight h3 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}
.featured-spotlight p {
  color: var(--muted);
}
.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.spotlight-stats > div {
  padding: 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}
.spotlight-stats strong {
  display: block;
  color: var(--primary);
}
.spotlight-stats small {
  color: var(--muted);
}
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.featured-rail {
  display: grid;
  gap: 0.8rem;
}
.featured-rail-card {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}
.featured-rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
}
.featured-rail-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.featured-rail-card p {
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.impact-story-section {
  padding-top: 3.2rem;
}
.impact-story-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1.35rem;
}
.impact-story-intro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  margin-bottom: 0.5rem;
}
.impact-story-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}
.impact-story-shell {
  border-radius: 28px;
  padding: 1rem;
  background: linear-gradient(145deg, #07140f, #0e2019);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.impact-stage {
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  background: #0d1f18;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.impact-stage {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.impact-stage-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}
.impact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.impact-dot.red { background: #ef4444; }
.impact-dot.yellow { background: #f59e0b; }
.impact-dot.green { background: #22c55e; }
.impact-stage-head small {
  margin-left: 0.35rem;
  color: #b8d3c9;
}
.impact-stage-body {
  position: relative;
  padding: 1rem;
  display: grid;
  align-content: end;
  gap: 0.65rem;
  background: linear-gradient(155deg, #d8f2ea, #b7d4ee);
}
.impact-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  pointer-events: none;
}
.impact-orb.orb-a {
  width: 230px;
  height: 230px;
  top: -70px;
  left: -50px;
  background: rgba(20, 184, 137, 0.28);
}
.impact-orb.orb-b {
  width: 270px;
  height: 270px;
  right: -65px;
  bottom: -90px;
  background: rgba(14, 165, 163, 0.28);
}
.impact-person {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 16px;
  padding: 0.75rem;
  max-width: 290px;
}
.impact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--accent));
}
.impact-person small {
  display: block;
  color: var(--muted);
}
.impact-kpi-card {
  position: relative;
  z-index: 2;
  width: fit-content;
  background: rgba(6, 17, 13, 0.85);
  color: #eafff6;
  border-radius: 13px;
  padding: 0.55rem 0.7rem;
}
.impact-kpi-card strong {
  display: block;
  font-size: 1.1rem;
}
.impact-kpi-card small {
  color: #b6d8cb;
}
.impact-play-faux {
  position: relative;
  z-index: 2;
  width: fit-content;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #d5e4ec;
  font-size: 0.78rem;
  font-weight: 700;
  color: #11211d;
}
.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}
.impact-tags span {
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 118, 110, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
}
.impact-stage-foot {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}
.impact-progress {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.impact-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #2dd4bf);
}
.impact-stage-foot small {
  color: #c7e1d8;
}
.impact-story-panel {
  color: #ecfff7;
  padding: 0.2rem 0.15rem;
  display: grid;
  align-content: start;
  gap: 0.95rem;
}
.impact-story-panel h3 {
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  margin: 0;
}
.impact-story-panel p {
  color: #b7d4c9;
  margin: 0;
}
.impact-micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
.impact-micro-grid article {
  border-radius: 12px;
  padding: 0.55rem 0.62rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.impact-micro-grid strong {
  display: block;
  font-size: 0.92rem;
}
.impact-micro-grid small {
  color: #b8d6ca;
}
.impact-journey {
  display: grid;
  gap: 0.45rem;
}
.impact-journey-step {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.5rem;
  align-items: start;
}
.impact-journey-step .step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #34d399, #2dd4bf);
  margin-top: 0.28rem;
}
.impact-journey-step small {
  color: #b5d3c8;
}
.impact-story-switcher {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.impact-tab {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ddf7ec;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}
.impact-tab.active {
  background: #ffffff;
  color: #0f241e;
  border-color: #ffffff;
}
.impact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.alumni-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(3, 8, 7, 0.66);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.alumni-modal.open {
  display: flex;
}
.alumni-modal-card {
  width: min(760px, 96vw);
  border-radius: 18px;
  background: #091610;
  color: #e8fff6;
  border: 1px solid rgba(52, 211, 153, 0.24);
  padding: 1rem;
  position: relative;
}
.alumni-modal-close {
  position: absolute;
  right: 0.8rem;
  top: 0.7rem;
  border: 0;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  color: #dff7ec;
  cursor: pointer;
}
.alumni-video-placeholder {
  margin-top: 0.8rem;
  border-radius: 14px;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(140deg, rgba(17, 50, 40, 0.9), rgba(8, 26, 20, 0.9));
  border: 1px dashed rgba(52, 211, 153, 0.3);
}
.alumni-video-placeholder p {
  margin-bottom: 0.2rem;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}
.stat strong { font-size: 2rem; display: block; color: var(--primary); }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mini-list {
  display: grid;
  gap: 0.62rem;
  margin: 0.75rem 0 0.9rem;
}
.mini-list-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  padding: 0.65rem 0.72rem;
}
.mini-list-item strong {
  display: block;
  font-size: 0.94rem;
}
.mini-list-item small {
  color: var(--muted);
}
.logo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 700;
}
.partner-mini-logo {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 6px;
}
.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.person-card .person-role {
  color: var(--primary);
  font-weight: 700;
  margin-top: -0.1rem;
}
.event-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}
.event-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.72rem;
}
.event-item strong {
  display: block;
}
.event-item p {
  margin: 0.2rem 0;
  color: var(--muted);
}
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card h3 a {
  color: inherit;
}
.blog-card h3 a:hover {
  color: var(--primary);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roadmap {
  border-left: 2px solid rgba(15, 118, 110, 0.26);
  padding-left: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.login-public-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.login-public-shell {
  display: grid;
  place-items: center;
}
.login-public-box {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  font-family: "Avenir Next", "SF Pro Text", "Segoe UI", sans-serif;
}
.login-public-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.login-simple-alert {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.08);
  color: #b42318;
  border-radius: 10px;
  padding: 0.6rem 0.72rem;
  font-weight: 600;
}
.login-simple-form {
  display: grid;
  gap: 0.7rem;
}
.login-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 0.76rem;
  color: #28463e;
}
.login-input::placeholder {
  color: #6f8b82;
}
.login-password-wrap {
  position: relative;
}
.login-password-wrap .login-input {
  padding-right: 64px;
}
.login-eye-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #1e5145;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.28rem 0.45rem;
}
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.login-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #355a4f;
}
.login-link {
  color: #0f766e;
  font-weight: 700;
}
.login-primary-btn {
  margin-top: 0.25rem;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(140deg, #0f766e, #0f5a35);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.login-divider {
  margin: 1.1rem 0 0.95rem;
  text-align: center;
  position: relative;
  color: #5f7a70;
}
.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: rgba(15, 118, 110, 0.18);
}
.login-divider::before { left: 0; }
.login-divider::after { right: 0; }
.login-divider span {
  background: rgba(255, 255, 255, 0.88);
  padding: 0 0.5rem;
}
.login-google-btn {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  background: #ffffff;
  border-radius: 10px;
  color: #1f4339;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.google-mark {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  background: conic-gradient(#ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
}
.login-register-text {
  margin-top: 0.95rem;
  text-align: center;
  color: #44685d;
}
.login-terms {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(15, 118, 110, 0.15);
  padding-top: 0.9rem;
  text-align: center;
  color: #58786e;
  font-size: 0.86rem;
}
.login-terms p + p {
  margin-top: 0.42rem;
}
.login-terms a {
  text-decoration: underline;
}
.login-simple-box,
.login-simple-box input,
.login-simple-box button,
.login-simple-box a,
.login-simple-box p,
.login-simple-box span {
  font-family: "Avenir Next", "SF Pro Text", "Segoe UI", sans-serif;
}
.register-simple-box {
  width: min(520px, 100%);
}
.register-simple-form .errorlist {
  margin: 0.15rem 0 0.3rem;
  color: #b42318;
  font-size: 0.82rem;
  list-style: none;
  padding: 0;
}
.roadmap-item { display: grid; grid-template-columns: 14px 1fr; gap: .72rem; margin-bottom: .8rem; }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: .3rem;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.learning-shell {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.learning-topbar {
  border-radius: 20px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1.3fr 1.4fr auto;
  gap: 0.75rem;
  align-items: center;
}
.learning-search input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(246, 253, 250, 0.92);
  padding: 0.72rem 0.88rem;
}
.learning-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.learning-quicklinks a {
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: #28584d;
  font-weight: 700;
}
.learning-quicklinks a:hover {
  background: rgba(15, 118, 110, 0.1);
}
.learning-auth {
  display: flex;
  gap: 0.45rem;
}
.learning-auth .btn {
  padding-inline: 1rem;
}
.learning-category-strip {
  margin-top: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.5rem;
  display: flex;
  gap: 0.42rem;
  overflow-x: auto;
}
.learning-chip {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  color: #2f4f46;
  font-weight: 700;
}
.learning-chip.active {
  background: rgba(15, 118, 110, 0.13);
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.18);
}
.learning-hero {
  margin-top: 0.85rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 251, 244, 0.92)),
    repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0.06) 1px, transparent 1px, transparent 88px);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.1vw, 2rem);
  text-align: center;
}
.learning-hero h1 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 0.45rem;
}
.learning-hero p {
  max-width: 68ch;
  margin: 0.2rem auto 0;
  color: var(--muted);
}
.learning-hero-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.learning-roadmap {
  display: grid;
  gap: 0.95rem;
}
.learning-step {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 56px minmax(260px, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}
.learning-step-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.learning-step-label {
  display: inline-block;
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.learning-step-card h3 {
  margin-bottom: 0.4rem;
}
.learning-step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}
.learning-step-meta span {
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(240, 252, 246, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  color: #245246;
}
.learning-step-index {
  position: relative;
  display: grid;
  place-items: center;
}
.learning-step-index::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.26), rgba(15, 118, 110, 0.4));
}
.learning-step-index span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #0f766e;
  border: 2px solid rgba(15, 118, 110, 0.26);
  font-weight: 800;
}
.learning-step-copy {
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}
.learning-step-copy h3 {
  margin-bottom: 0.4rem;
}
.learning-step-copy p {
  color: var(--muted);
}
.learning-step-copy small {
  color: #2f5e52;
  font-weight: 700;
}
.week-roadmap {
  display: grid;
  gap: 0.75rem;
}
.week-item {
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
}
.week-item h3 {
  margin-bottom: 0.35rem;
}
.week-item p {
  margin-bottom: 0.45rem;
}
.week-item ul {
  margin: 0;
  padding-left: 1.1rem;
}
.week-item li {
  margin-bottom: 0.2rem;
}
.week-features {
  display: grid;
  gap: 0.42rem;
}
.feature-dropdown {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}
.feature-dropdown summary {
  cursor: pointer;
  padding: 0.62rem 0.72rem;
  font-weight: 700;
  list-style: none;
}
.feature-dropdown summary::-webkit-details-marker {
  display: none;
}
.feature-dropdown summary::after {
  content: "+";
  float: right;
  color: #0f766e;
  font-weight: 800;
}
.feature-dropdown[open] summary::after {
  content: "−";
}
.feature-dropdown p {
  margin: 0;
  padding: 0 0.72rem 0.72rem;
  color: var(--muted);
}

.filter-wrap { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
}

.pricing-card .price { font-size: 2rem; margin: .3rem 0; color: var(--primary); font-weight: 800; }
.pricing-card.popular { border-color: rgba(22, 163, 74, 0.45); box-shadow: 0 16px 35px rgba(22, 163, 74, 0.17); }
.toggle-row { display: flex; gap: .5rem; margin-bottom: 1rem; }
.toggle-row .active { background: var(--surface-alt); border-color: rgba(14, 165, 163, 0.5); }
.accordion-item { border-bottom: 1px solid rgba(15, 118, 110, 0.16); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 1rem 0;
  font-weight: 700;
}
.accordion-content { display: none; padding-bottom: .8rem; color: var(--muted); }
.accordion-item.open .accordion-content { display: block; }

.form-grid { display: grid; gap: .8rem; }
.form-grid label { display: grid; gap: .35rem; font-weight: 600; }
.errorlist {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: .72rem .82rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}
select {
  width: 100%;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: .72rem .82rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 4.6rem;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 9px;
  padding: 0.22rem 0.48rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.map-placeholder, .logo-placeholder {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px dashed rgba(15, 118, 110, 0.4);
  border-radius: 16px;
  color: var(--muted);
  background: linear-gradient(145deg, #effbf5, #f9fffc);
}
.logo-placeholder { min-height: 72px; font-weight: 800; font-size: 1.25rem; }
.map-frame {
  min-height: 520px;
  width: 100%;
}

.auth-section { min-height: 70vh; display: grid; place-items: center; }
.auth-card { max-width: 520px; }
.dashboard-shell {
  padding-top: 2.6rem;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  align-items: start;
}
.dashboard-side {
  position: sticky;
  top: 98px;
}
.dashboard-menu {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.dashboard-menu a {
  border-radius: 10px;
  padding: 0.52rem 0.7rem;
  color: var(--muted);
  font-weight: 700;
}
.dashboard-menu a:hover,
.dashboard-menu a.active {
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
}
.dashboard-main {
  display: grid;
  gap: 1rem;
}
.dashboard-head h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 0.25rem;
}
.dashboard-panels {
  align-items: start;
}
.mentorship-market {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 1rem;
  align-items: start;
}
.mentorship-shop {
  display: grid;
  gap: 0.9rem;
}
.mentorship-toolbar {
  display: grid;
  gap: 0.7rem;
}
.mentorship-search {
  display: flex;
  gap: 0.45rem;
}
.mentorship-search .btn {
  white-space: nowrap;
}
.mentorship-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mentorship-skill-row .pill.active {
  background: rgba(15, 118, 110, 0.14);
  border-color: rgba(15, 118, 110, 0.22);
  color: #0f766e;
}
.mentorship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.mentor-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}
.mentor-card:hover {
  transform: translateY(-4px);
  transition: transform .24s ease;
}
.mentor-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(140deg, var(--primary), var(--accent));
}
.mentor-skill {
  margin-bottom: 0;
  color: #0f766e;
  font-weight: 700;
}
.mentor-bio {
  color: var(--muted);
  margin-bottom: 0;
}
.mentor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}
.mentor-meta span {
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(243, 252, 247, 0.9);
  color: #245246;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.22rem 0.54rem;
}
.mentorship-booking {
  position: sticky;
  top: 98px;
}
.list-stack { display: grid; gap: .75rem; }
.list-item { padding-bottom: .7rem; border-bottom: 1px solid rgba(15, 118, 110, 0.14); }
.progress-track { height: 11px; background: #d7efe4; border-radius: 999px; overflow: hidden; margin-bottom: 1rem; }
.progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.table-scroll {
  overflow-x: auto;
}
.mgmt-center-wrap {
  padding: 0;
}
.mgmt-center-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: calc(100vh - 82px);
  background: #f6f9fc;
}
.mgmt-left {
  border-right: 1px solid #d9e4ea;
  background: #ffffff;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}
.mgmt-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.mgmt-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(140deg, #22c55e, #14b8a6);
}
.mgmt-side-nav {
  display: grid;
  align-content: start;
  gap: 0.3rem;
}
.mgmt-side-nav a {
  border-radius: 10px;
  padding: 0.52rem 0.62rem;
  color: #49655c;
  font-weight: 700;
}
.mgmt-side-nav a.active,
.mgmt-side-nav a:hover {
  background: #e8f1ff;
  color: #1f6feb;
}
.mgmt-promo {
  border: 1px solid #bbe6d0;
  border-radius: 16px;
  background: #ecfdf5;
  padding: 0.8rem;
}
.mgmt-main {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}
.mgmt-topbar {
  border: 1px solid #d9e4ea;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.mgmt-search {
  width: min(520px, 100%);
}
.mgmt-search input {
  width: 100%;
  border-radius: 999px;
  background: #f2f6fa;
  border: 1px solid #d9e4ea;
}
.mgmt-top-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mgmt-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.mgmt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 0.75rem;
}
.mgmt-kpi-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.mgmt-kpi-card {
  background: #ffffff;
  border: 1px solid #d9e4ea;
  border-radius: 14px;
  padding: 0.8rem;
}
.mgmt-kpi-card strong {
  display: block;
  font-size: 1.65rem;
  margin-top: 0.3rem;
}
.mgmt-metric-card {
  background: #ffffff;
  border: 1px solid #d9e4ea;
  border-radius: 14px;
  padding: 0.82rem;
}
.mgmt-metric-card strong {
  display: block;
  font-size: 1.8rem;
  margin: 0.3rem 0;
}
.mgmt-metric-card small {
  color: #64748b;
}
.mgmt-analytic-panel {
  border: 1px solid #d9e4ea;
  background: #ffffff;
}
.mgmt-summary-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}
.mgmt-summary-row small {
  color: #64748b;
}
.mgmt-summary-row strong {
  display: block;
  font-size: 1.35rem;
}
.mgmt-line-chart {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(0deg, #f3f7fb 0, #f3f7fb 1px, transparent 1px, transparent 46px),
    linear-gradient(180deg, #f8fbff, #f2f7fc);
  border: 1px solid #d9e4ea;
}
.mgmt-line-chart polyline {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mgmt-line-chart polyline.ghost {
  stroke: #22c55e;
  stroke-width: 2.5;
  stroke-dasharray: 6 5;
  opacity: 0.72;
}
.mgmt-chart-faux {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.4rem;
}
.mgmt-chart-faux span {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.22), rgba(20, 184, 166, 0.24));
  border: 1px solid rgba(30, 64, 175, 0.12);
}
.mgmt-module-grid {
  display: grid;
  gap: 1rem;
}
.mgmt-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mgmt-bar-list {
  display: grid;
  gap: 0.62rem;
}
.mgmt-bar-list div {
  display: grid;
  gap: 0.3rem;
}
.mgmt-bar-list small {
  color: #64748b;
}
.mgmt-bar-list span {
  height: 12px;
  border-radius: 999px;
  display: block;
  background: linear-gradient(90deg, rgba(59,130,246,.35), rgba(34,197,94,.35));
  border: 1px solid rgba(59,130,246,.22);
}
.mgmt-mini-table {
  width: 100%;
  border-collapse: collapse;
}
.mgmt-mini-table th,
.mgmt-mini-table td {
  border-bottom: 1px solid #e2eaf0;
  padding: 0.54rem 0.42rem;
}
.mgmt-mini-table th {
  text-align: left;
  color: #64748b;
  font-size: 0.82rem;
}
.mgmt-mini-table .up {
  color: #059669;
  font-weight: 700;
}
.mgmt-mini-table .down {
  color: #dc2626;
  font-weight: 700;
}
.mgmt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.mgmt-table th,
.mgmt-table td {
  text-align: left;
  padding: 0.62rem 0.56rem;
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  vertical-align: top;
}
.mgmt-table th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.cta-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(22, 163, 74, 0.08));
}
.cta-row {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(680px 280px at 0% 0%, rgba(14, 165, 163, 0.12), transparent 60%),
    radial-gradient(680px 280px at 100% 0%, rgba(22, 163, 74, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(233,248,240,.82));
  padding-top: 2rem;
}
.footer-shell {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 1rem;
}
.footer-headline {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.84);
  background: rgba(255,255,255,.72);
  padding: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: #e8fbf2;
  border: 1px solid rgba(15,118,110,.2);
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.footer-headline h3 {
  margin-bottom: 0.22rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.footer-col h4 {
  margin-bottom: 0.35rem;
}
.footer-col a {
  display: block;
  margin: 0.3rem 0;
  color: var(--muted);
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.footer-chip-row a {
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,118,110,.18);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
}
.footer-email {
  margin-top: 0.45rem;
  display: inline-block;
  font-weight: 700;
}
.footer-bottom {
  padding: 0.8rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links {
  display: flex;
  gap: 0.75rem;
}
.footer-bottom-links a {
  color: var(--muted);
}
.muted { color: var(--muted); }
.message-stack { padding-top: 1rem; }
.alert { padding: .8rem 1rem; border-radius: 12px; border: 1px solid; }
.alert-success { background: #ecfdf5; border-color: #6ee7b7; }
.alert-info { background: #ecfeff; border-color: #67e8f9; }
[data-theme="dark"] body {
  background:
    radial-gradient(1000px 550px at -10% -10%, rgba(52, 211, 153, 0.18), transparent 56%),
    radial-gradient(1100px 560px at 110% -8%, rgba(45, 212, 191, 0.16), transparent 56%),
    linear-gradient(180deg, #06120e 0%, var(--bg) 38%, var(--bg-2) 100%);
}
[data-theme="dark"] .site-header {
  background:
    linear-gradient(120deg, rgba(10, 28, 22, 0.88), rgba(8, 24, 19, 0.84)),
    rgba(7, 20, 16, 0.78);
}
[data-theme="dark"] .desktop-nav a,
[data-theme="dark"] .dropdown-toggle {
  color: #d9fbed;
}
[data-theme="dark"] .desktop-nav a:hover,
[data-theme="dark"] .dropdown-toggle:hover,
[data-theme="dark"] .theme-toggle {
  background: rgba(21, 63, 51, 0.72);
  color: #e6fff5;
}
[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .mobile-drawer {
  background: rgba(9, 31, 24, 0.95);
  border-color: var(--line);
}
[data-theme="dark"] .mobile-drawer a:hover,
[data-theme="dark"] .dropdown-menu a:hover {
  background: rgba(24, 72, 58, 0.72);
  color: #e6fff5;
}
[data-theme="dark"] .btn-ghost {
  background: rgba(17, 50, 40, 0.7);
}
[data-theme="dark"] .btn-primary {
  color: #072018;
}
[data-theme="dark"] .card,
[data-theme="dark"] .stat,
[data-theme="dark"] .hero-panel,
[data-theme="dark"] .cta-row,
[data-theme="dark"] .featured-spotlight,
[data-theme="dark"] .featured-rail-card,
[data-theme="dark"] .spotlight-stats > div {
  border-color: rgba(52, 211, 153, 0.2);
}
[data-theme="dark"] .hero-panel,
[data-theme="dark"] .section.alt,
[data-theme="dark"] .cta-strip,
[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, rgba(9, 24, 19, 0.7), rgba(8, 20, 16, 0.78));
}
[data-theme="dark"] .badge,
[data-theme="dark"] .pill,
[data-theme="dark"] .trust-chip,
[data-theme="dark"] .kpi,
[data-theme="dark"] .featured-spotlight,
[data-theme="dark"] .featured-rail-card,
[data-theme="dark"] .logo-placeholder,
[data-theme="dark"] .map-placeholder {
  background: rgba(16, 45, 36, 0.72);
  border-color: rgba(52, 211, 153, 0.25);
  color: #d5f5e8;
}
[data-theme="dark"] .impact-story-shell {
  background: linear-gradient(145deg, #040b08, #07140f);
  border-color: rgba(52, 211, 153, 0.2);
}
[data-theme="dark"] .impact-stage {
  background: #06110d;
  border-color: rgba(52, 211, 153, 0.2);
}
[data-theme="dark"] .impact-stage-body {
  background: linear-gradient(160deg, rgba(20, 46, 38, 0.86), rgba(19, 43, 61, 0.82));
}
[data-theme="dark"] .impact-person,
[data-theme="dark"] .impact-tags span,
[data-theme="dark"] .impact-tab,
[data-theme="dark"] .impact-micro-grid article {
  background: rgba(16, 45, 36, 0.8);
  border-color: rgba(52, 211, 153, 0.26);
  color: #dcf7eb;
}
[data-theme="dark"] .impact-tab.active,
[data-theme="dark"] .impact-actions .btn-ghost {
  background: rgba(16, 45, 36, 0.82);
  color: #dff7ec;
  border-color: rgba(52, 211, 153, 0.26);
}
[data-theme="dark"] .impact-actions .btn-primary {
  color: #072018;
}
[data-theme="dark"] .impact-micro-grid small,
[data-theme="dark"] .impact-journey-step small {
  color: #a3cbb9;
}
[data-theme="dark"] .impact-story-section .pill,
[data-theme="dark"] .impact-story-section .impact-tab,
[data-theme="dark"] .impact-story-section .impact-micro-grid article,
[data-theme="dark"] .impact-story-section .impact-person,
[data-theme="dark"] .impact-story-section .impact-tags span {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 118, 110, 0.2);
  color: #0f241e;
}
[data-theme="dark"] .impact-story-section .impact-tab.active {
  background: #ffffff;
  color: #0f241e;
  border-color: #ffffff;
}
[data-theme="dark"] .impact-story-section .impact-person small,
[data-theme="dark"] .impact-story-section .impact-micro-grid small,
[data-theme="dark"] .impact-story-section .impact-journey-step small {
  color: #49655c;
}
[data-theme="dark"] .impact-story-section .impact-story-panel p {
  color: #b7d4c9;
}
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(13, 37, 30, 0.88);
  color: #def6eb;
  border-color: rgba(52, 211, 153, 0.26);
}
[data-theme="dark"] .mentor-card,
[data-theme="dark"] .mentor-meta span {
  background: rgba(16, 45, 36, 0.8);
  border-color: rgba(52, 211, 153, 0.24);
  color: #d8f4e8;
}
[data-theme="dark"] .mgmt-center-shell {
  background: #081511;
}
[data-theme="dark"] .mgmt-left {
  background: #ffffff;
  border-color: #d9e4ea;
}
[data-theme="dark"] .mgmt-topbar,
[data-theme="dark"] .mgmt-metric-card,
[data-theme="dark"] .mgmt-analytic-panel,
[data-theme="dark"] .mgmt-kpi-card,
[data-theme="dark"] .mgmt-mini-table th,
[data-theme="dark"] .mgmt-mini-table td {
  background: #10261f;
  border-color: rgba(52, 211, 153, 0.22);
}
[data-theme="dark"] .mgmt-line-chart {
  background:
    repeating-linear-gradient(0deg, rgba(16, 45, 36, 0.75) 0, rgba(16, 45, 36, 0.75) 1px, transparent 1px, transparent 46px),
    linear-gradient(180deg, rgba(8, 21, 17, 0.96), rgba(7, 18, 14, 0.95));
  border-color: rgba(52, 211, 153, 0.2);
}
[data-theme="dark"] .mgmt-summary-row small,
[data-theme="dark"] .mgmt-bar-list small,
[data-theme="dark"] .mgmt-mini-table th {
  color: #9bcab7;
}
[data-theme="dark"] .mgmt-mini-table .up {
  color: #34d399;
}
[data-theme="dark"] .mgmt-mini-table .down {
  color: #fca5a5;
}
[data-theme="dark"] .mgmt-side-nav a {
  color: #49655c;
}
[data-theme="dark"] .mgmt-side-nav a.active,
[data-theme="dark"] .mgmt-side-nav a:hover {
  background: #e8f1ff;
  color: #1f6feb;
}
[data-theme="dark"] .mgmt-search input {
  background: rgba(16, 45, 36, 0.8);
  border-color: rgba(52, 211, 153, 0.24);
  color: #def6eb;
}
[data-theme="dark"] .mgmt-promo {
  background: rgba(16, 45, 36, 0.84);
  border-color: rgba(52, 211, 153, 0.24);
}
[data-theme="dark"] .dashboard-menu a:hover,
[data-theme="dark"] .dashboard-menu a.active {
  background: rgba(52, 211, 153, 0.22);
  color: #e6fff4;
}
[data-theme="dark"] .mgmt-table th,
[data-theme="dark"] .mgmt-table td {
  border-bottom-color: rgba(52, 211, 153, 0.2);
}
[data-theme="dark"] .mentorship-skill-row .pill.active {
  background: rgba(52, 211, 153, 0.22);
  border-color: rgba(52, 211, 153, 0.28);
  color: #dff7ec;
}
[data-theme="dark"] .errorlist {
  color: #fca5a5;
}
[data-theme="dark"] .password-toggle {
  background: rgba(16, 45, 36, 0.85);
  border-color: rgba(52, 211, 153, 0.28);
  color: #dff7ec;
}
[data-theme="dark"] .site-footer a,
[data-theme="dark"] .muted,
[data-theme="dark"] .lead,
[data-theme="dark"] .kpi small,
[data-theme="dark"] small {
  color: #9bcab7;
}
[data-theme="dark"] .footer-shell,
[data-theme="dark"] .footer-headline,
[data-theme="dark"] .footer-chip-row a,
[data-theme="dark"] .footer-kicker {
  background: rgba(16, 45, 36, 0.8);
  border-color: rgba(52, 211, 153, 0.24);
  color: #dcf7eb;
}
[data-theme="dark"] .footer-col a:hover,
[data-theme="dark"] .footer-bottom-links a:hover {
  color: #dff7ec;
}
[data-theme="dark"] .brand-logo {
  background: #0a1f19;
  border-color: rgba(52, 211, 153, 0.3);
}
[data-theme="dark"] .learning-topbar,
[data-theme="dark"] .learning-category-strip,
[data-theme="dark"] .learning-hero,
[data-theme="dark"] .learning-step-card,
[data-theme="dark"] .learning-step-copy,
[data-theme="dark"] .week-item,
[data-theme="dark"] .feature-dropdown {
  background: rgba(16, 45, 36, 0.85);
  border-color: rgba(52, 211, 153, 0.24);
}
[data-theme="dark"] .learning-quicklinks a,
[data-theme="dark"] .learning-step-copy small {
  color: #ccecdc;
}
[data-theme="dark"] .learning-chip {
  color: #d0efe0;
}
[data-theme="dark"] .learning-chip.active {
  background: rgba(52, 211, 153, 0.22);
  color: #e6fff4;
}
[data-theme="dark"] .learning-step-meta span,
[data-theme="dark"] .learning-step-label,
[data-theme="dark"] .learning-step-index span {
  background: rgba(16, 45, 36, 0.84);
  border-color: rgba(52, 211, 153, 0.28);
  color: #ddf7ec;
}
[data-theme="dark"] .learning-step-index::before {
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.4), rgba(45, 212, 191, 0.5));
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .55s ease;
}
.js-enabled .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .desktop-nav, .auth-actions { display: none; }
  .nav-wrap > .theme-toggle { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .impact-story-shell { grid-template-columns: 1fr; }
  .featured-layout { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: 100%; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-headline { flex-direction: column; align-items: flex-start; }
  .trust-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-kpi { grid-template-columns: repeat(3, 1fr); }
  .impact-micro-grid { grid-template-columns: 1fr 1fr; }
  .login-row { flex-direction: column; align-items: flex-start; }
  .learning-topbar {
    grid-template-columns: 1fr;
  }
  .learning-quicklinks {
    justify-content: flex-start;
  }
  .learning-step {
    grid-template-columns: 1fr;
  }
  .learning-step-index {
    display: none;
  }
  .mentorship-market {
    grid-template-columns: 1fr;
  }
  .mgmt-center-shell {
    grid-template-columns: 1fr;
  }
  .mgmt-hero-grid,
  .mgmt-insight-grid {
    grid-template-columns: 1fr;
  }
  .mgmt-kpi-stack {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-side {
    position: static;
  }
  .mentorship-grid {
    grid-template-columns: 1fr;
  }
  .mentorship-booking {
    position: static;
  }
  .mgmt-table {
    min-width: 560px;
  }
}

@media (max-width: 640px) {
  .section { padding: 3.8rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .blog-grid,
  .people-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: .45rem; }
  .footer-bottom-links { display: flex; flex-wrap: wrap; }
  .cta-row { display: grid; }
  .hero-kpi { grid-template-columns: 1fr; }
  .spotlight-stats { grid-template-columns: 1fr; }
  .impact-micro-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 380px; }
  .learning-auth {
    width: 100%;
  }
  .learning-auth .btn {
    flex: 1;
  }
}
