:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --ink: #181818;
  --muted: #6b6b6b;
  --line: #e5e1da;
  --accent: #0f6b52;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.link-hub {
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 10vw, 80px) 0;
}

.intro {
  margin-bottom: 28px;
}

.avatar {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0;
}

p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.link-section {
  display: grid;
  gap: 10px;
}

.link-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--surface);
}

.link-row:hover,
.link-row:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.link-row strong {
  font-size: 1rem;
}

.link-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.link-meta {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

@media (max-width: 520px) {
  .link-hub {
    width: min(100% - 24px, 560px);
    padding-top: 34px;
  }

  .link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .link-meta {
    text-align: left;
  }
}
