:root {
  --bg: #f6f7f9;
  --ink: #0a0f1c;
  --ink-soft: #4a5468;
  --line: #e6e8ee;
  --accent: #0a0f1c;
  --accent-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 48px 20px;
}

.card {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand img {
  height: 55px;
  width: auto;
  display: block;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  align-self: center;
}

.profile h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.profile .title {
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 400;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.link:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.link .label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.link .value {
  font-size: 16px;
  font-weight: 500;
}

.link.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.link.primary .label {
  color: rgba(255, 255, 255, 0.7);
}

.link.primary:hover {
  transform: translateY(-1px);
  background: #1a2238;
}

footer {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  display: flex;
  justify-content: flex-end;
}

footer p {
  margin: 0;
}
