:root {
  --bg: #09090b;
  --panel: rgba(24, 24, 27, 0.8);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --accent: #38bdf8;
  --accent-2: #a855f7;
  --border: rgba(255, 255, 255, 0.05);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(168, 85, 247, 0.06), transparent 55%);
  display: grid;
  place-items: center;
  padding: 2rem;
}

main {
  width: 100%;
  max-width: 40rem;
  padding: 2.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: stretch;
}

.content {
  min-width: 0;
}

.avatar-frame {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.avatar {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.intro {
  margin: 0 0 1.5rem;
}

.eyebrow {
  font-family: 'Roboto Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
}

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

p:last-of-type {
  margin-bottom: 0;
}

.links {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.links a {
  font-family: 'Roboto Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.links a:hover,
.links a:focus-visible {
  border-color: var(--accent-2);
  color: #fff;
  background: rgba(168, 85, 247, 0.12);
  outline: none;
}

@media (max-width: 480px) {
  main {
    padding: 1.75rem;
    border-radius: 16px;
    gap: 1rem;
  }
  h1 { font-size: 1.75rem; }
  .avatar-frame { padding-left: 0.75rem; }
  .avatar { width: 96px; height: 96px; }
}
