:root{
  --bg:#0b0b12;
  --card:#121222;
  --text:#d4d4e0; /* softer text */
  --muted:#9a9ab5;
  --accent-start:#6ea8ff;
  --accent-end:#9b6bff;
}

body{
  margin:0;
  background: var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height:1.6;
  display:grid;
  place-items:center;
  height:100vh;
  padding:20px;
}

.card{
  width:100%;
  max-width:700px;
  border-radius:16px;
  background: var(--card);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  border:1px solid rgba(255,255,255,0.06);
  padding:28px;
  display:flex;
  align-items:flex-start;
  gap:20px;
  text-align:left;
}

.photo{
  width:72px; height:72px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(255,255,255,0.1);
}
.photo img{ width:100%; height:100%; object-fit:cover; }

.content{ flex:1; }
.name{ font-size:24px; font-weight:600; margin-bottom:4px; color:#f0f0fa; }
.title{ color:var(--muted); font-size:15px; margin-bottom:14px; }

.blurb{ font-size:15px; margin-bottom:18px; color:var(--text); }
.blurb strong { color:#f8f8ff; }

h2{
  font-size:18px;
  font-weight:600;
  margin:24px 0 10px 0;
  color:#f0f0fa;
}

h2:first-of-type{
  margin-top:0;
}

.tech{
  font-size:13px;
  margin:0 0 18px 0;
  color:var(--muted);
  font-weight:500;
}

.btn{
  display:inline-block;
  padding:8px 16px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  color:#fdfdff;
  background:linear-gradient(135deg,var(--accent-start),var(--accent-end));
  transition:opacity .2s;
  font-size:14px;
}
.btn:hover{ opacity:.9; }

.links{ margin-top:16px; }
.link{ color:var(--text); text-decoration:none; margin-right:14px; font-size:13px; }
.link:hover{ text-decoration:underline; }

footer{ margin-top:16px; font-size:12px; color:var(--muted); }

