:root{
  --bg:#f3f2ef;
  --card:#ffffff;
  --text:#1f2328;
  --muted:#5f6b7a;
  --border:rgba(15,23,42,.12);
  --shadow: 0 1px 0 rgba(0,0,0,.08), 0 8px 24px rgba(15,23,42,.08);
  --brand:#006241;
  --brand2:#004b3a;
  --success:#137333;
  --chip:#eef3f8;
  --focus:#ffbf47;
  --radius:14px;
  --radius2:18px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit}
.link{color:var(--brand);text-decoration:none}
.link:hover{text-decoration:underline}
.small{font-size:12.5px;color:var(--muted)}

.skip-link{
  position:absolute;left:-999px;top:12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 12px;
  box-shadow:var(--shadow);
}
.skip-link:focus{left:12px;outline:3px solid var(--focus)}

.container{max-width:1120px;margin:0 auto;padding:0 14px}

.topbar{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{display:flex;align-items:center;gap:14px;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px;min-width:170px}
.brand__logo{
  width:34px;height:34px;border-radius:8px;
  background:linear-gradient(135deg,var(--brand),#1f8f64);
  display:grid;place-items:center;
  color:#fff;font-weight:800;letter-spacing:-.5px;
  box-shadow:0 10px 30px rgba(0,98,65,.25);
}
.brand__text{font-weight:700}

.search{
  flex:1;
  display:flex;align-items:center;gap:10px;
  background:#edf3f8;
  border:1px solid rgba(0,98,65,.12);
  border-radius:999px;
  padding:9px 12px;
  min-width:180px;
}
.search__icon{color:var(--muted)}
.search__input{
  width:100%;
  border:none;background:transparent;outline:none;
  font-size:14px;
}
.nav{display:flex;gap:10px;align-items:center}
.nav__item{
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.nav__item:hover{background:rgba(0,98,65,.08);color:var(--brand2)}

.page{padding:18px 0 22px}
.grid{display:grid;grid-template-columns: 330px 1fr 330px;gap:18px;align-items:start}
.col{min-width:0}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}
.card__title{
  font-size:16px;
  margin:0;
}

.profile{overflow:hidden}
.profile__cover{
  height:74px;
  background:
    radial-gradient(1100px 120px at 10% 10%, rgba(255,255,255,.30), transparent 60%),
    linear-gradient(135deg, rgba(0,98,65,.92), rgba(0,75,58,.92));
}
.profile__body{padding:0 16px 16px}
.profile__avatar{
  width:86px;height:86px;border-radius:24px;
  margin-top:-40px;
  border:5px solid #fff;
  background:linear-gradient(135deg,#006241,#53b786);
  display:grid;place-items:center;
  color:#fff;
  font-weight:800;
  font-size:28px;
  letter-spacing:-.5px;
  user-select:none;
  box-shadow:0 18px 40px rgba(0,98,65,.22);
}
.profile__meta{padding-top:10px}
.profile__name{font-size:20px;margin:0 0 2px}
.profile__headline{color:var(--muted);font-weight:600;margin-bottom:8px}
.profile__sub{display:flex;gap:8px;align-items:center;color:var(--muted);font-size:13px}
.dot{opacity:.6}
.profile__cta{display:flex;gap:10px;margin-top:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--brand);
  border-color:rgba(0,98,65,.5);
  color:#fff;
}
.btn--primary:hover{background:var(--brand2)}
.btn--ghost{
  background:transparent;
  color:var(--brand2);
  border-color:rgba(0,98,65,.35);
}
.btn--ghost:hover{background:rgba(0,98,65,.08)}
.profile__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding-top:12px;
  margin-top:14px;
  border-top:1px solid var(--border);
}
.stat__label{font-size:12px;color:var(--muted)}
.stat__value{font-weight:800;font-size:16px;margin-top:2px}

.quick{padding:14px 14px 8px}
.quick__list{display:flex;flex-direction:column;gap:8px;margin-top:10px}
.quick__item{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
}
.quick__item:hover{border-color:rgba(0,98,65,.25);background:rgba(0,98,65,.06)}
.quick__left{display:flex;gap:10px;align-items:center;min-width:0}
.quick__icon{
  width:30px;height:30px;border-radius:10px;
  background:var(--chip);
  display:grid;place-items:center;
  color:var(--brand2);
  font-weight:900;
}
.quick__text{min-width:0}
.quick__label{font-weight:700;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.quick__hint{font-size:12px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.section{padding:14px}
.section__header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
.section__hint{font-size:12.5px;color:var(--muted)}
.pill{
  font-size:12px;
  color:var(--success);
  border:1px solid rgba(19,115,51,.30);
  background:rgba(19,115,51,.08);
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
}
.prose{margin:0;color:#2c313a}

.timeline{display:flex;flex-direction:column;gap:10px}
.titem{
  display:flex;gap:12px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(0,98,65,.04), transparent 70%);
}
.tlogo{
  width:42px;height:42px;border-radius:14px;
  background:var(--chip);
  display:grid;place-items:center;
  color:var(--brand2);
  font-weight:900;
  flex:0 0 auto;
  user-select:none;
}
.tmain{min-width:0}
.ttitle{display:flex;flex-wrap:wrap;gap:8px;align-items:baseline}
.ttitle__role{font-weight:800}
.ttitle__org{color:var(--muted);font-weight:700}
.tmeta{font-size:12.5px;color:var(--muted);margin-top:2px}
.tdesc{margin:8px 0 0;color:#2c313a;font-size:13.5px}
.tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.tag{
  font-size:12px;
  background:var(--chip);
  color:#334155;
  border:1px solid rgba(51,65,85,.12);
  padding:5px 9px;
  border-radius:999px;
  font-weight:600;
}

.cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.pcard{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.8), rgba(0,98,65,.04));
  display:flex;flex-direction:column;gap:10px;
}
.pcard__top{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.pcard__name{font-weight:900}
.pcard__desc{color:#2c313a;font-size:13.5px;margin:0}
.pcard__links{display:flex;gap:10px;flex-wrap:wrap}

.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  border:1px solid rgba(0,98,65,.2);
  background:rgba(0,98,65,.08);
  color:#004b3a;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12.5px;
}
.chip[hidden]{display:none !important}

.bullets{margin:0;padding-left:18px;color:#2c313a}
.bullets li{margin:8px 0}

.contact{display:flex;flex-direction:column;gap:10px}
.contact__item{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
}
.contact__item:hover{border-color:rgba(0,98,65,.25);background:rgba(0,98,65,.06)}
.contact__left{display:flex;gap:10px;align-items:center;min-width:0}
.contact__icon{
  width:30px;height:30px;border-radius:10px;
  background:var(--chip);
  display:grid;place-items:center;
  color:var(--brand2);
  font-weight:900;
}
.contact__label{font-weight:800;font-size:13px}
.contact__value{font-size:12.5px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.divider{height:1px;background:var(--border);margin:12px 0}

.footer{padding:18px 0}
.footer__inner{display:flex;justify-content:space-between;gap:10px;align-items:center}

@media (max-width: 1060px){
  .grid{grid-template-columns: 320px 1fr; }
  .col--right{display:none}
}
@media (max-width: 860px){
  .nav{display:none}
  .grid{grid-template-columns: 1fr}
  .col--left{order:0}
  .col--main{order:1}
  .cards{grid-template-columns: 1fr}
  .brand{min-width:auto}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important;transition:none !important}
}

