:root{
  --bg0:#070A12;
  --bg1:#0B1224;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}
*{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", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(122,92,255,.22), transparent 55%),
    radial-gradient(900px 500px at 85% 35%, rgba(0,180,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}
.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:32px 16px;
  max-width:980px;
  margin:0 auto;
}
.card{
  border:1px solid var(--stroke);
  background:var(--card);
  border-radius:22px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow:hidden;
}
.hero{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:22px;
  padding:24px;
  align-items:center;
}
.photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.25);
}
.photo img{
  width:100%;
  height:auto;
  display:block;
}
.text h1{
  margin:0 0 10px 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height:1.06;
  letter-spacing:-0.02em;
}
.lead{
  margin:0 0 14px 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.45;
}
.meta{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 14px 0;}
.pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
}
.note{margin:0; color:rgba(234,240,255,.62); font-size:13px; line-height:1.45;}
.footer{
  margin-top:14px;
  color:rgba(234,240,255,.55);
  font-size:12px;
  display:flex;
  justify-content:flex-end;
}
@media (max-width: 760px){
  .hero{grid-template-columns:1fr; padding:18px;}
}
