:root{
  --bg0:#0b0b0b;
  --bg1:#1a1a1a;
  --text:#d7d7d7;
  --muted:#b9b9b9;
  --icons:#6f6f6f;
  --icons-hover:#9a9a9a;
}

*{ box-sizing:border-box; }

html,body{
  height:100%;
  margin:0;
}

body{
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 30% 40%, #2a2a2a 0%, rgba(42,42,42,0) 60%),
    radial-gradient(900px 500px at 85% 20%, #242424 0%, rgba(36,36,36,0) 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  color: var(--text);
}

.stage{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 24px;
}

/* The centered content block */
.card{
  width:min(980px, 100%);
  display:flex;
  align-items:center;
  gap:64px;
  padding:24px 8px;
}

/* Avatar */
.avatar-wrap{
  flex:0 0 auto;
}

.avatar{
  width:300px;
  height:300px;
  border-radius:999px;
  object-fit:cover;
  filter: grayscale(100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

/* Text column */
.content{
  flex:1 1 auto;
  padding-top:8px;
}

h1{
  margin:0 0 18px 0;
  font-weight:300;
  letter-spacing:0.2px;
  font-size: clamp(44px, 5vw, 64px);
  color: var(--text);
}

.titles{
  margin:0 0 26px 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height:1.65;
  color: var(--muted);
  font-weight:300;
}

/* Icon row */
.icons{
  display:flex;
  gap:22px;
  align-items:center;
}

.icon-btn{
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  color: var(--icons);
}

.icon-btn svg{
  width:48px;
  height:48px;
  fill: currentColor;
  opacity:0.85;
  transition: opacity 140ms ease, transform 140ms ease, color 140ms ease;
}

.icon-btn:hover svg,
.icon-btn:focus-visible svg{
  opacity:1;
  color: var(--icons-hover);
  transform: translateY(-1px);
}

.icon-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.18);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 860px){
  .card{
    flex-direction:column;
    text-align:center;
    gap:28px;
  }

  .avatar{
    width:220px;
    height:220px;
  }

  .icons{
    justify-content:center;
  }
}
