/* Self-hosted Acumin */
@font-face {
  font-family: "Acumin EC";
  src: url("acumin-extracondensed-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-main: #121212;
  --c-muted: #7E7E7E;
  --dash: #d8d8d8;

  --frame-max: 720px;
  --pad-x: 44px;
  --pad-y: 40px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: #fff;
  color: var(--c-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  padding: 40px 20px;
}

.frame {
  max-width: var(--frame-max);
  margin: 0 auto;
  border: 2px dotted var(--dash);
  padding: var(--pad-y) var(--pad-x);
}

/* HERO */
.hero {
  text-align: center;
  padding-bottom: 30px;
}

/* Requested picture size + crisp rendering helpers */
.avatar {
  width: 120px;
  height: 136px;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  margin: 0 auto 18px;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

/* Typography map */
.name {
  font-family: "Acumin EC", "Acumin Pro", sans-serif;
  font-size: 46px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--c-main);
}

.subtitle {
  font-family: "Acumin EC", "Acumin Pro", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--c-muted);
  margin: 8px 0 0;
}

.block {
  border-top: 2px dotted var(--dash);
  padding: 28px 0;
}

.block:first-of-type {
  border-top: none;
}

.label {
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--c-main);
}

.para {
  font-family: "Acumin EC", "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

/* WHAT I DO */
.items {
  display: grid;
  gap: 28px;
}

.item {
  transition: transform 180ms ease, opacity 180ms ease;
  will-change: transform;
}

@media (hover: hover) {
  .item:hover {
    transform: translateY(-2px);
  }
}

.item-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ico {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 3px;
}

.ico img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 180ms ease;
}

@media (hover: hover) {
  .item:hover .ico img {
    transform: scale(1.03);
  }
}

.item-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--c-main);
}

.item-meta {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.item-text {
  font-family: "Acumin EC", "Acumin Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 10px 0 0 36px;
}

/* TABLE */
.table {
  display: grid;
  gap: 12px;
}

.tr {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.td.left {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--c-main);
}

.td.right {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--c-muted);
  text-align: right;
  white-space: nowrap;
}

/* Professional link styling */
.link {
  color: var(--c-muted);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 160ms ease;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (hover: hover) {
  .link:hover {
    color: var(--c-main);
  }
  .link:hover::after {
    transform: scaleX(1);
    opacity: 0.6;
  }
}

/* Responsive */
@media (max-width: 520px) {
  :root {
    --pad-x: 18px;
    --pad-y: 22px;
  }

  .name { font-size: 40px; }
  .subtitle { font-size: 20px; }

  .item-text {
    margin-left: 0;
  }

  .td.right {
    white-space: normal;
  }
}