.intro {
  padding: 6rem 0 3rem;
}

.intro h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.intro p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 440px;
}

.projects {
  padding: 3rem 0 5rem;
}

.project {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  transition: border-color 200ms;
}

.project:hover {
  border-bottom-color: var(--dim);
}

.project--featured {
  border: 1px solid var(--blue);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.02));
  padding: 1.5rem;
}

.tag--featured {
  background: var(--blue);
  color: #fff;
}

.project-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.1);
  color: #93bbfc;
  line-height: 1.4;
  white-space: nowrap;
}

.project-logo img {
  width: 40px;
  height: 40px;
  display: block;
}

.project-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.project-desc {
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 560px;
}

.project-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project-stack {
  color: var(--dim);
  font-size: 0.8rem;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  transition: color 200ms;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms;
}

.link:hover {
  color: var(--text);
}

.link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
