:root{
  --bg1:#0b0f14;
  --bg2:#141a22;
  --accent:#d6b15a;
  --accent2:#f0c36a;
  --glass: rgba(255,255,255,0.07);
  --glass2: rgba(255,255,255,0.12);
  --stroke: rgba(255,255,255,0.14);
  --text:#f2f4f7;
  --muted: rgba(242,244,247,.72);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --radius: 28px;
  --max: 640px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  color:var(--text);
  background:
    radial-gradient(900px 600px at 18% 18%, rgba(214,177,90,.18), transparent 60%),
    radial-gradient(700px 500px at 82% 34%, rgba(240,195,106,.10), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(255,255,255,.06), transparent 70%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

/* subtle grain */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.22;
  z-index:-1;
}

/* layout */
.page{
  min-height:100dvh;
  padding: 18px 14px 28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.shell{
  width:100%;
  max-width: var(--max);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
}
.brand img{
  height:34px;
  width:auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.55));
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__sub{font-size:12px; color:rgba(242,244,247,.68); font-weight:700}

.lang{
  display:flex;
  gap:8px;
}
.lang button{
  border:0;
  cursor:pointer;
  background: var(--glass);
  color:#fff;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 15px;
  line-height:1;
  transition: transform .12s ease, background .12s ease;
}
.lang button:hover{transform: translateY(-1px); background: var(--glass2)}
.lang button.active{background: rgba(214,177,90,.22); outline:1px solid rgba(214,177,90,.22)}

/* card */
.card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  border-radius: 30px;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 32px;
  background: radial-gradient(500px 300px at 20% 0%, rgba(214,177,90,.18), transparent 60%);
  pointer-events:none;
}

.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding: 6px 4px 12px;
  position:relative;
  z-index:1;
}

.avatar{
  width: 112px;
  height: 112px;
  border-radius: 999px;
  overflow:hidden;
  border: 2px solid rgba(214,177,90,.45);
  box-shadow: 0 18px 34px rgba(0,0,0,.45);
}
.avatar img{width:100%; height:100%; object-fit:cover}

.name{font-size: 22px; font-weight: 900; letter-spacing:.25px}
.role{font-size: 14px; color: var(--muted); font-weight: 750}

.badge{
  margin-top:2px;
  font-size: 12px;
  color: rgba(242,244,247,.86);
  background: rgba(214,177,90,.14);
  border: 1px solid rgba(214,177,90,.22);
  padding: 6px 10px;
  border-radius: 999px;
}

/* buttons */
.btnlist{display:flex; flex-direction:column; gap:12px; margin-top: 10px; position:relative; z-index:1;}

.btn{
  display:flex;
  align-items:center;
  gap: 12px;
  width:100%;
  padding: 14px 14px;
  border-radius: 26px;
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: rgba(214,177,90,.20)}

.btn .ico{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(214,177,90,.10);
  border: 1px solid rgba(214,177,90,.18);
}
.btn .ico img{width:20px; height:20px; display:block}

/* make all monochrome icons match text color */
.btn .ico img,
.footer img,
.modal__btn img{
  filter: invert(1);
  opacity: .92;
}
.btn .text{flex:1; font-weight: 900; letter-spacing:.2px}
.btn .hint{font-size: 12px; color: rgba(242,244,247,.62); font-weight: 650}

/* directory grid */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
  position:relative;
  z-index:1;
}

.person{
  border:0;
  width:100%;
  text-align:left;
  cursor:pointer;
  color:inherit;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.person:hover{transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(214,177,90,.20)}
.person:focus{outline:2px solid rgba(214,177,90,.45); outline-offset:2px;}

.person .pimg{
  width:100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
}
.person .pimg img{width:100%; height:100%; object-fit:cover}
.person .ptitle{margin-top:10px; font-weight: 950; font-size: 16px}
.person .psub{margin-top:4px; font-size: 12px; color: rgba(242,244,247,.68); font-weight: 700}

/* social icons */
.footer{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top: 16px;
  padding-top: 12px;
  position:relative;
  z-index:1;
}
.footer a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
  transition: transform .12s ease, background .12s ease;
}
.footer a:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.footer img{width:18px; height:18px; display:block}

.smallnote{
  text-align:center;
  margin-top:10px;
  font-size: 12px;
  color: rgba(242,244,247,.58);
}

/* modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding: 18px 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index:50;
}
.modal.open{display:flex}
.modal__sheet{
  width:100%;
  max-width: 520px;
  background: rgba(20,26,34,.86);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0,0,0,.65);
  overflow:hidden;
}
.modal__top{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 14px 14px 12px;
}
.modal__avatar{
  width:56px;height:56px;border-radius:16px;overflow:hidden;
  border:1px solid rgba(214,177,90,.22);
}
.modal__avatar img{width:100%;height:100%;object-fit:cover}
.modal__title{font-weight:950}
.modal__sub{font-size:12px;color:rgba(242,244,247,.68);font-weight:700}
.modal__actions{padding: 0 14px 14px; display:flex; gap:10px; flex-wrap:wrap}
.modal__btn{
  flex:1;
  min-width: 140px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  text-decoration:none;
  font-weight:900;
}
.modal__btn.primary{
  background: rgba(214,177,90,.18);
  border-color: rgba(214,177,90,.28);
}
.modal__btn img{width:18px;height:18px}
.modal__close{
  margin-left:auto;
  background: transparent;
  border:0;
  color: rgba(242,244,247,.7);
  font-size: 22px;
  cursor:pointer;
}

/* responsive tweaks */
@media (max-width: 420px){
  .grid{grid-template-columns: 1fr 1fr; gap:10px;}
  .brand img{height:30px}
  .avatar{width:96px; height:96px}
  .person{padding:12px; border-radius:20px;}
  .person .pimg{border-radius:14px;}
  .person .ptitle{font-size:14px;}
  .person .psub{font-size:11px;}
  .footer a{width:36px; height:36px}
  .footer img{width:16px; height:16px}
}
CSS