*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

body {
  background: #0f0f0f;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

/* ── Page column ──────────────────────────────────────────────────── */
.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0 0;
}

/* ── Portrait ─────────────────────────────────────────────────────── */
.portrait {
  border: 0.5px solid #fff;
  background: #2a2a2a;
  overflow: hidden;
  margin-bottom: 16px;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Social icons ─────────────────────────────────────────────────── */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.social-icon {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  transition: opacity 0.15s;
}

.social-icon:hover { opacity: 0.4; }

/* ── Sections ─────────────────────────────────────────────────────── */
section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* ── Lists ────────────────────────────────────────────────────────── */
.list {
  border: 0.5px solid #fff;
  background: #0f0f0f;
  font-size: 12px;
}

.list li {
  border-bottom: 0.5px solid #fff;
}

.list li:last-child {
  border-bottom: none;
}

.list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  transition: background 0.1s;
}

.list li a:hover {
  background: #fff;
  color: #0f0f0f;
}

.list li a:hover .arr {
  color: #0f0f0f;
}

.list-text {
  display: block;
  padding: 7px 10px;
}

.item-main {
  flex: 1;
  line-height: 1.5;
}

/* ── Arrow ────────────────────────────────────────────────────────── */
.arr {
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Footer illustration ──────────────────────────────────────────── */
.footer-art {
  margin-top: 52px;
  margin-bottom: 52px;
  display: flex;
  justify-content: center;
}

.footer-art img {
  width: min(220px, 55%);
  mix-blend-mode: screen;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .page {
    padding: 16px 16px 0;
  }
}
