:root {
  --fg: rgba(28, 32, 44, 0.96);
  --muted: rgba(28, 32, 44, 0.58);
  --line: rgba(28, 32, 44, 0.12);
  --hover: rgba(28, 32, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  font-family: Inter, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  opacity: 0.55;
  transform: rotate(7deg) scale(1.15);
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      rgba(28, 32, 44, 0.045) 23px,
      rgba(28, 32, 44, 0.045) 24px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 22px,
      rgba(28, 32, 44, 0.018) 23px,
      rgba(28, 32, 44, 0.018) 24px
    );
  filter: blur(0.2px);
  pointer-events: none;
}

body {
  position: relative;
  color: var(--fg);

  background:
    radial-gradient(
      circle at top left,
      rgba(90, 110, 255, 0.045),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(90, 200, 170, 0.03),
      transparent 42%
    ),
    #ffffff;
}

.profile {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
}

.profile img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(28, 32, 44, 0.08);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}

main {
  position: absolute;
  left: 12vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 76vw);
  z-index: 1;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 44px;
}

.intro-location {
  color: rgba(28, 32, 44, 0.46);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.intro-role {
  color: var(--fg);
  font-size: 1.02rem;
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.intro-org {
  width: fit-content;
  color: rgba(28, 32, 44, 0.64);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition:
    opacity 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.intro-org:hover {
  color: rgba(28, 32, 44, 0.9);
  transform: translateX(5px);
}

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

.item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--fg);
  text-decoration: none;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  transition:
    opacity 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

a:hover {
  opacity: 0.72;
  transform: translateX(5px);
}

.sub {
  color: var(--muted);

  font-size: 0.88rem;

  letter-spacing: 0.03em;
}

footer {
  position: absolute;

  left: 40px;
  right: 40px;
  bottom: 28px;

  display: flex;
  justify-content: space-between;

  color: var(--muted);

  font-size: 0.82rem;

  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .profile {
    top: 24px;
    left: 24px;
  }

  .profile img {
    width: 74px;
    height: 74px;
  }

  main {
    left: 24px;
    right: 24px;
    width: auto;
  }

  footer {
    left: 24px;
    right: 24px;

    flex-direction: column;

    gap: 6px;
  }
}
