:root{
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --primary: #0f172a;
  --primary-contrast: #ffffff;
  --cta-from: #0f172a;
  --cta-to: #1f2937;
}

*{box-sizing:border-box}
body.body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}

.container{max-width: 1200px; margin: 0 auto; padding: 0 16px;}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.85);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(6px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.brand{display:flex; gap:12px; align-items:center;}
.brand__logo{
  height:36px;
  width:36px;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
}
.brand__name{font-weight:600}
.brand__tag{font-size:12px; color:var(--muted-2)}

.nav{
  display:none;
  gap:18px;
  font-size:14px;
}
.nav__link{
  color:#334155;
  text-decoration:none;
}
.nav__link:hover{color:#0f172a;}
.nav__toggle{
  display:inline-flex;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:6px 10px;
}
@media (min-width: 768px){
  .nav{display:flex}
  .nav__toggle{display:none}
}
.nav--open{
  display:flex;
  position:absolute;
  right:16px;
  top:58px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  flex-direction:column;
  gap:10px;
}

/* Hero */
.hero{
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}
.hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding:64px 0;
}
@media (min-width: 768px){
  .hero__grid{
    grid-template-columns:1fr 1fr;
    padding:96px 0;
  }
}
.hero__title{
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.02em;
}
@media (min-width:768px){
  .hero__title{font-size:48px;}
}
.hero__lead{
  margin-top:12px;
  color: var(--muted);
  font-size:18px;
}
.hero__actions{
  display:flex;
  gap:12px;
  margin-top:16px;
}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  border:1px solid var(--border);
}
.btn--primary{
  background: var(--primary);
  color: var(--primary-contrast);
  border-color:var(--primary);
  box-shadow:0 1px 1px rgba(0,0,0,.05);
}
.btn--primary:hover{filter:brightness(1.05);}
.btn--outline{
  color:#0f172a;
  background:#fff;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
  padding:0;
  list-style:none;
}
.chip{
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
  color:#475569;
  font-size:13px;
}

/* Mock Bode */
.mock{
  border:1px solid var(--border);
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.mock__title{
  font-size:14px;
  color:#475569;
  font-weight:600;
}
.mock__box{
  margin-top:8px;
  background:linear-gradient(135deg,#f1f5f9,#e2e8f0);
  border-radius:14px;
  padding:12px;
  height:200px;
}
.mock__label{font-size:12px; color:#64748b;}
.mock__line{
  height:8px;
  border-radius:6px;
  background:#cbd5e1;
  margin-top:10px;
}
.w80{width:80%;}
.w60{width:60%;}
.mock__panel{
  margin-top:8px;
  height:96px;
  background:#e2e8f0;
  border-radius:10px;
}

/* Stats */
.stats{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stats__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:20px 0;
}
.stat{
  display:flex;
  gap:12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.stat__icon{
  display:grid;
  place-items:center;
  height:36px;
  width:36px;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
}
.stat__label{font-size:12px; color:#64748b;}
.stat__value{font-size:18px; font-weight:700;}

/* Sections */
.section{
  padding:64px 0;
  background:var(--bg);
}
.section--alt{background:#fff;}
.section__title{
  font-size:24px;
  font-weight:700;
}
.section__title--light{color:#fff;}
.section__lead{
  margin-top:8px;
  color:#475569;
}

/* Cards */
.cards{
  display:grid;
  gap:16px;
  margin-top:24px;
}
.cards--areas{
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
}
.cards--projects{
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
}
.cards--members{
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
}
.card{
  background:linear-gradient(135deg,#ffffff,#f8fafc);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.card__title{
  font-weight:700;
  color:#0f172a;
}
.card__text{
  margin-top:10px;
  font-size:14px;
  color:#475569;
}
.card__meta{
  margin-top:10px;
  font-size:12px;
  color:#64748b;
}
.card__role{
  font-size:12px;
  color:#64748b;
}
.card__name{
  margin-top:4px;
  font-size:18px;
  font-weight:700;
}

/* Publications */
.list{
  margin-top:24px;
  display:grid;
  gap:16px;
}
.paper{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.paper__year{
  font-size:12px;
  color:#64748b;
}
.paper__title{
  margin-top:6px;
  font-weight:600;
}
.paper__authors{
  font-size:14px;
  color:#475569;
}
.paper__venue{
  font-size:14px;
  color:#64748b;
}
.pubs__hint{
  margin-top:12px;
  font-size:12px;
  color:#64748b;
}

/* News */
.news{
  margin-top:16px;
  display:grid;
  gap:12px;
  padding:0;
  list-style:none;
}
.news__item{
  display:flex;
  gap:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.news__date{
  width:110px;
  font-size:12px;
  color:#64748b;
}
.news__text{
  font-size:14px;
  color:#334155;
}

/* CTA */
.cta{
  background:linear-gradient(135deg,var(--cta-from),var(--cta-to));
  color:#fff;
  padding:48px 0;
}
.cta__lead{
  margin:8px 0 16px;
  color:#e2e8f0;
}
.btn--light{
  background:#fff;
  color:#0f172a;
  border-color:#fff;
}

/* Access */
.access{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:16px;
}
@media (min-width: 900px){
  .access{grid-template-columns:1fr 1fr;}
}
.access__card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.access__title{font-weight:600;}
.access__text{
  margin-top:10px;
  font-size:14px;
  color:#475569;
}
.access__map{
  height:260px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#e5e7eb;
}

/* Contact */
.contact{
  margin-top:16px;
  border:1px solid var(--border);
  background:#f1f5f9;
  border-radius:16px;
  padding:16px;
}
.contact__text{
  font-size:14px;
  color:#334155;
}
.contact__mail{
  margin-top:8px;
  font-size:14px;
}
.contact__mail a{
  color:#0f172a;
}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
}
.footer__copy{
  font-size:14px;
  color:#475569;
}
.footer__note{
  font-size:12px;
  color:#64748b;
}
