
:root{
  --bg:#0b1730;
  --bg-alt:#0a162a;
  --accent:#2ea44f;
  --text:#e9eef7;
  --muted:#9fb3d1;
  --card:#0f2347;
  --ring: rgba(46, 164, 79, .4);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: url('../img/dna-bg.svg') center/cover no-repeat fixed, var(--bg);
  display:flex; align-items:center; justify-content:center;
  padding:28px;
}
.container{
  width:min(1000px, 100%);
}
.card{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
}
img.portrait{
  width:100%;
  height:auto;
  border-radius:20px;
  display:block;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.header{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;
}
.brand{
  font-weight:700; letter-spacing:.3px; opacity:.9;
}
h1{
  font-size:clamp(26px, 3.5vw, 40px);
  line-height:1.1; margin:0 0 8px 0;
}
.role{color:var(--muted); margin-bottom:18px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; padding:6px 10px; border-radius:999px;
  background:rgba(122,163,255,0.12); color:#cfe0ff; border:1px solid rgba(122,163,255,.2);
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
button,a.button{
  appearance:none; border:none; text-decoration:none; cursor:pointer;
  padding:12px 16px; border-radius:14px; font-weight:600; font-size:16px;
  background:var(--accent); color:white;
  box-shadow: 0 6px 20px rgba(46,164,79,.35);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
a.button.secondary{
  background:transparent; color:var(--text); border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
button:focus, a.button:focus{outline:3px solid var(--ring); outline-offset:2px}
button:hover, a.button:hover{ transform: translateY(-1px); box-shadow:0 10px 28px rgba(46,164,79,.45);}
.info{
  font-size:15px; color:var(--muted); line-height:1.6;
  border-top:1px dashed rgba(255,255,255,.18); padding-top:16px; margin-top:20px;
}
.footer{
  text-align:center; margin-top:18px; font-size:12px; color:var(--muted);
}
@media (max-width: 820px){
  .card{ grid-template-columns: 1fr; padding:20px }
  .actions{justify-content:stretch}
  a.button{ width:100%; text-align:center }
}
