/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:            #0e0e0e;
  --card-bg:       #1a1a1a;
  --card-hover-bg: #242424;
  --card-border:   #2a2a2a;
  --text:          #ffffff;
  --text-muted:    #888888;
  --radius:        12px;
  --max-width:     480px;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Body ───────────────────────────────────────────────── */
body {
  background:   var(--bg);
  color:        var(--text);
  font-family:  var(--font);
  min-height:   100vh;
  display:      flex;
  justify-content: center;
  align-items:  flex-start;
}

/* ── Page container ─────────────────────────────────────── */
.page {
  max-width:      var(--max-width);
  width:          100%;
  padding:        3rem 1.25rem;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            0;
}

/* ── Avatar ─────────────────────────────────────────────── */
.avatar {
  width:         96px;
  height:        96px;
  border-radius: 50%;
  object-fit:    cover;
  margin-bottom: 1.25rem;
  border:        2px solid var(--card-border);
}

/* ── Name & tagline ─────────────────────────────────────── */
.name {
  font-size:   1.5rem;
  font-weight: 700;
  margin:      0 0 0.25rem;
  text-align:  center;
}

.tagline {
  font-size:  0.875rem;
  color:      var(--text-muted);
  margin:     0 0 2rem;
  text-align: center;
}

/* ── Link buttons ───────────────────────────────────────── */
.links {
  width:          100%;
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.btn {
  display:         flex;
  align-items:     center;
  gap:             14px;
  background:      var(--card-bg);
  border:          1px solid var(--card-border);
  border-radius:   var(--radius);
  padding:         14px 20px;
  text-decoration: none;
  color:           var(--text);
  transition:      background 0.15s ease, transform 0.15s ease;
  cursor:          pointer;
}

.btn:hover {
  background: var(--card-hover-bg);
  transform:  translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-icon {
  width:       28px;
  height:      28px;
  flex-shrink: 0;
}

.btn-body {
  display:        flex;
  flex-direction: column;
  gap:            2px;
}

.btn-label {
  font-size:   1rem;
  font-weight: 600;
  line-height: 1.2;
}

.btn-sub {
  font-size:   0.75rem;
  color:       var(--text-muted);
  line-height: 1.2;
}

/* ── Social icons ───────────────────────────────────────── */
.socials {
  display:         flex;
  gap:             16px;
  justify-content: center;
  margin-top:      2.5rem;
}

.social-link {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           48px;
  height:          48px;
  border-radius:   50%;
  background:      var(--card-bg);
  border:          1px solid var(--card-border);
  transition:      background 0.15s ease, transform 0.15s ease;
}

.social-link:hover {
  background: var(--card-hover-bg);
  transform:  scale(1.08);
}

.social-link img {
  width:  22px;
  height: 22px;
}

/* ── Icon badge (fallback for icons not in Simple Icons) ── */
.btn-icon-badge {
  display:        flex;
  align-items:    center;
  justify-content: center;
  background:     var(--card-border);
  border-radius:  4px;
  font-size:      0.6rem;
  font-weight:    700;
  letter-spacing: 0.05em;
  color:          var(--text-muted);
}
