* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  background: #fff;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px;
}

a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

/* Header */
.header {
  margin-bottom: 80px;
}

.header-top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.photo {
  width: 120px;
  height: 120px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
}

.header-text {
  flex: 1;
}

.name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tagline {
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

.links {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.links a:hover {
  border-bottom-color: transparent;
}

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

h2 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
}

/* Current */
.current-item {
  margin-bottom: 16px;
}

.current-item .title {
  font-weight: 500;
  font-size: 17px;
}

.current-item .company {
  font-weight: 300;
}

.current-item .description {
  font-size: 15px;
  margin-top: 8px;
  color: #333;
}

.current-item .backers {
  font-size: 13px;
  margin-top: 6px;
  color: #666;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.year {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  min-width: 70px;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-content .role {
  font-weight: 400;
}

.timeline-content .org {
  font-weight: 300;
}

.timeline-content .detail {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* Projects */
.project {
  margin-bottom: 24px;
}

.project-title {
  font-weight: 500;
  font-size: 16px;
}

.project-desc {
  font-size: 15px;
  color: #333;
  margin-top: 4px;
}

/* Writing placeholder */
.placeholder {
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 48px 20px;
  }

  .header-top {
    flex-direction: column;
    gap: 24px;
  }

  .photo {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 22px;
  }

  .links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 4px;
  }

  .year {
    min-width: auto;
  }
}
